Class OperationMetadata (0.3.5)

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

Metadata describing the operation.

Attributes

NameDescription
state google.cloud.datacatalog_lineage_v1.types.OperationMetadata.State
Output only. The current operation state.
operation_type google.cloud.datacatalog_lineage_v1.types.OperationMetadata.Type
Output only. The type of the operation being performed.
resource str
Output only. The [relative name] (https://cloud.google.com//apis/design/resource_names#relative_resource_name) of the resource being operated on.
resource_uuid str
Output only. The UUID of the resource being operated on.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp of the operation submission to the server.
end_time google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp of the operation termination, regardless of its success. This field is unset if the operation is still ongoing.

Classes

State

State(value)

An enum with the state of the operation.

Values: STATE_UNSPECIFIED (0): Unused. PENDING (1): The operation has been created but is not yet started. RUNNING (2): The operation is underway. SUCCEEDED (3): The operation completed successfully. FAILED (4): The operation is no longer running and did not succeed.

Type

Type(value)

Type of the long running operation.

Values: TYPE_UNSPECIFIED (0): Unused. DELETE (1): The resource deletion operation. CREATE (2): The resource creation operation.