Instance(mapping=None, *, ignore_unknown_fields=False, **kwargs)
A Memorystore for Memcached instance
Attributes | |
---|---|
Name | Description |
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 the
regional level so location_id here refers to a Google
Cloud region; however, users may choose which zones
Memcached nodes should be provisioned in within an instance.
Refer to
zones field
for more details.
|
display_name |
str
User provided name for the instance, which is only used for display purposes. Cannot be more than 80 characters. |
labels |
MutableMapping[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 |
MutableSequence[str]
Zones in which Memcached nodes should be provisioned. 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_v1beta2.types.Instance.NodeConfig
Required. Configuration for Memcached nodes. |
memcache_version |
google.cloud.memcache_v1beta2.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_v1beta2.types.MemcacheParameters
User defined parameters to apply to the memcached process on each node. |
memcache_nodes |
MutableSequence[google.cloud.memcache_v1beta2.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_v1beta2.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 |
MutableSequence[google.cloud.memcache_v1beta2.types.Instance.InstanceMessage]
List of messages that describe the current state of the Memcached instance. |
discovery_endpoint |
str
Output only. Endpoint for the Discovery API. |
update_available |
bool
Output only. Returns true if there is an update waiting to be applied |
maintenance_policy |
google.cloud.memcache_v1beta2.types.MaintenancePolicy
The maintenance policy for the instance. If not provided, the maintenance event will be performed based on Memorystore internal rollout schedule. |
maintenance_schedule |
google.cloud.memcache_v1beta2.types.MaintenanceSchedule
Output only. Published maintenance schedule. |
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 | |
---|---|
Name | Description |
kwargs |
dict
Keys and values corresponding to the fields of the message. |
mapping |
Union[dict,
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 |
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.
Values: STATE_UNSPECIFIED (0): State not set. CREATING (1): Memcached instance is being created. READY (2): Memcached instance has been created and ready to be used. UPDATING (3): Memcached instance is updating configuration such as maintenance policy and schedule. DELETING (4): Memcached instance is being deleted. PERFORMING_MAINTENANCE (5): Memcached instance is going through maintenance, e.g. data plane rollout.