Class Instance (0.1.0)

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

A Managed Lustre instance.

Attributes

Name Description
name str
Identifier. The name of the instance.
filesystem str
Required. Immutable. The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
capacity_gib int
Required. The storage capacity of the instance in gibibytes (GiB). Allowed values are from 18000 to 936000, in increments of 9000.
network str
Required. Immutable. The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
state google.cloud.lustre_v1.types.Instance.State
Output only. The state of the instance.
mount_point str
Output only. Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. Timestamp when the instance was created.
update_time google.protobuf.timestamp_pb2.Timestamp
Output only. Timestamp when the instance was last updated.
description str
Optional. A user-readable description of the instance.
labels MutableMapping[str, str]
Optional. Labels as key value pairs.
per_unit_storage_throughput int
Optional. The throughput of the instance in MB/s/TiB. Valid values are 250, 500, 1000. Default value is 1000.
gke_support_enabled bool
Optional. Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.

Classes

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, .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.

State

State(value)

The possible states of an instance.