Class Run (0.3.5)

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

A lineage run represents an execution of a process that creates lineage events.

Attributes

NameDescription
name str
Immutable. The resource name of the run. Format: projects/{project}/locations/{location}/processes/{process}/runs/{run}. Can be specified or auto-assigned. {run} must be not longer than 200 characters and only contain characters in a set: a-zA-Z0-9_-:.
display_name str
Optional. A human-readable name you can set to display in a user interface. Must be not longer than 1024 characters and only contain UTF-8 letters or numbers, spaces or characters like _-:&.
attributes MutableMapping[str, google.protobuf.struct_pb2.Value]
Optional. The attributes of the run. Should only be used for the purpose of non-semantic management (classifying, describing or labeling the run). Up to 100 attributes are allowed.
start_time google.protobuf.timestamp_pb2.Timestamp
Required. The timestamp of the start of the run.
end_time google.protobuf.timestamp_pb2.Timestamp
Optional. The timestamp of the end of the run.
state google.cloud.datacatalog_lineage_v1.types.Run.State
Required. The state of the run.

Classes

AttributesEntry

AttributesEntry(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)

The current state of the run.

Values: UNKNOWN (0): The state is unknown. The true state may be any of the below or a different state that is not supported here explicitly. STARTED (1): The run is still executing. COMPLETED (2): The run completed. FAILED (3): The run failed. ABORTED (4): The run aborted.