Class Runnable (0.17.18)

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

Runnable describes instructions for executing a specific script or container as part of a Task.

This message has oneof_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
container google.cloud.batch_v1.types.Runnable.Container
Container runnable. This field is a member of oneof_ executable.
script google.cloud.batch_v1.types.Runnable.Script
Script runnable. This field is a member of oneof_ executable.
barrier google.cloud.batch_v1.types.Runnable.Barrier
Barrier runnable. This field is a member of oneof_ executable.
display_name str
Optional. DisplayName is an optional field that can be provided by the caller. If provided, it will be used in logs and other outputs to identify the script, making it easier for users to understand the logs. If not provided the index of the runnable will be used for outputs.
ignore_exit_status bool
Normally, a non-zero exit status causes the Task to fail. This flag allows execution of other Runnables to continue instead.
background bool
This flag allows a Runnable to continue running in the background while the Task executes subsequent Runnables. This is useful to provide services to other Runnables (or to provide debugging support tools like SSH servers).
always_run bool
By default, after a Runnable fails, no further Runnable are executed. This flag indicates that this Runnable must be run even if the Task has already failed. This is useful for Runnables that copy output files off of the VM or for debugging. The always_run flag does not override the Task's overall max_run_duration. If the max_run_duration has expired then no further Runnables will execute, not even always_run Runnables.
environment google.cloud.batch_v1.types.Environment
Environment variables for this Runnable (overrides variables set for the whole Task or TaskGroup).
timeout google.protobuf.duration_pb2.Duration
Timeout for this Runnable.
labels MutableMapping[str, str]
Labels for this Runnable.

Classes

Barrier

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

Barrier runnable blocks until all tasks in a taskgroup reach it.

Container

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

Container runnable.

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.

Script

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

Script runnable.

This message has oneof_ fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields