Class Instance (1.4.3)

Instance(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Attributes

NameDescription
name str
Required. Unique name of the resource in this scope including project and location using the form: ``projects/{project_id}/locations/{location_id}/instances/{instance_id}`` Note: Memcached instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which zones Memcached nodes within an instances should be provisioned in. Refer to [zones] field for more details.
display_name str
User provided name for the instance only used for display purposes. Cannot be more than 80 characters.
labels Mapping[str, str]
Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources
authorized_network str
The full name of the Google Compute Engine `network `__ to which the instance is connected. If left unspecified, the ``default`` network will be used.
zones Sequence[str]
Zones where Memcached nodes should be provisioned in. Memcached nodes will be equally distributed across these zones. If not provided, the service will by default create nodes in all zones in the region for the instance.
node_count int
Required. Number of nodes in the Memcached instance.
node_config google.cloud.memcache_v1.types.Instance.NodeConfig
Required. Configuration for Memcached nodes.
memcache_version google.cloud.memcache_v1.types.MemcacheVersion
The major version of Memcached software. If not provided, latest supported version will be used. Currently the latest supported major version is MEMCACHE_1_5. The minor version will be automatically determined by our system based on the latest supported minor version.
parameters google.cloud.memcache_v1.types.MemcacheParameters
Optional: User defined parameters to apply to the memcached process on each node.
memcache_nodes Sequence[google.cloud.memcache_v1.types.Instance.Node]
Output only. List of Memcached nodes. Refer to [Node] message for more details.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. The time the instance was created.
update_time google.protobuf.timestamp_pb2.Timestamp
Output only. The time the instance was updated.
state google.cloud.memcache_v1.types.Instance.State
Output only. The state of this Memcached instance.
memcache_full_version str
Output only. The full version of memcached server running on this instance. System automatically determines the full memcached version for an instance based on the input MemcacheVersion. The full version format will be "memcached-1.5.16".
instance_messages Sequence[google.cloud.memcache_v1.types.Instance.InstanceMessage]
List of messages that describe current statuses of memcached instance.
discovery_endpoint str
Output only. Endpoint for Discovery API

Inheritance

builtins.object > proto.message.Message > Instance

Classes

InstanceMessage

InstanceMessage(mapping=None, *, ignore_unknown_fields=False, **kwargs)

LabelsEntry

LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, `.Message`]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.

Node

Node(mapping=None, *, ignore_unknown_fields=False, **kwargs)

NodeConfig

NodeConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Configuration for a Memcached Node.

State

State(value)

Different states of a Memcached instance.