Pipeline(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Specifies a series of actions to execute, expressed as Docker containers.
Attributes
Name | Description |
actions |
Sequence[google.cloud.lifesciences_v2beta.types.Action]
The list of actions to execute, in the order they are specified. |
resources |
google.cloud.lifesciences_v2beta.types.Resources
The resources required for execution. |
environment |
Mapping[str, str]
The environment to pass into every action. Each action can also specify additional environment variables but cannot delete an entry from this map (though they can overwrite it with a different value). |
timeout |
google.protobuf.duration_pb2.Duration
The maximum amount of time to give the pipeline to complete. This includes the time spent waiting for a worker to be allocated. If the pipeline fails to complete before the timeout, it will be cancelled and the error code will be set to DEADLINE_EXCEEDED. If unspecified, it will default to 7 days. |
Inheritance
builtins.object > proto.message.Message > PipelineClasses
EnvironmentEntry
EnvironmentEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)
The abstract base class for a message.
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 |