Class OrchestrationCluster (0.2.2)

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

Orchestration cluster represents a GKE cluster with config controller and TNA specific components installed on it.

Attributes

NameDescription
name str
Name of the orchestration cluster. The name of orchestration cluster cannot be more than 24 characters.
management_config google.cloud.telcoautomation_v1.types.ManagementConfig
Management configuration of the underlying GKE cluster.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. [Output only] Create time stamp.
update_time google.protobuf.timestamp_pb2.Timestamp
Output only. [Output only] Update time stamp.
labels MutableMapping[str, str]
Labels as key value pairs.
tna_version str
Output only. Provides the TNA version installed on the cluster.
state google.cloud.telcoautomation_v1.types.OrchestrationCluster.State
Output only. State of the Orchestration Cluster.

Classes

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.

State

State(value)

Possible states that the Orchestration Cluster can be in.

Values: STATE_UNSPECIFIED (0): Unspecified state. CREATING (1): OrchestrationCluster is being created. ACTIVE (2): OrchestrationCluster has been created and is ready for use. DELETING (3): OrchestrationCluster is being deleted. FAILED (4): OrchestrationCluster encountered an error and is in an indeterministic state. User can still initiate a delete operation on this state.