Instance(mapping=None, *, ignore_unknown_fields=False, **kwargs)
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
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
Optional. User provided name for the instance only used for display purposes. Cannot be more than 80 characters. |
labels |
Sequence[
Optional. Resource labels to represent user- rovided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling- resources |
authorized_network |
str
Optional. 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]
Optional. 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 |
Required. Configuration for Memcached nodes. |
memcache_version |
Optional. 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 |
Optional: User defined parameters to apply to the memcached process on each node. |
memcache_nodes |
Sequence[
Output only. List of Memcached nodes. Refer to [Node] message for more details. |
create_time |
Output only. The time the instance was created. |
update_time |
Output only. The time the instance was updated. |
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[
List of messages that describe current statuses of memcached instance. |
discovery_endpoint |
str
Output only. Endpoint for Discovery API |
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. LINT.IfChange
Methods
__delattr__
__delattr__(key)
Delete the value on the given field.
This is generally equivalent to setting a falsy value.
__eq__
__eq__(other)
Return True if the messages are equal, False otherwise.
__ne__
__ne__(other)
Return True if the messages are unequal, False otherwise.
__setattr__
__setattr__(key, value)
Set the value on the given field.
For well-known protocol buffer types which are marshalled, either the protocol buffer object or the Python equivalent is accepted.