Class ExecutionSpec (0.1.0)

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

Execution related settings, like retry and service_account.

Attributes

NameDescription
args Sequence[google.cloud.dataplex_v1.types.Task.ExecutionSpec.ArgsEntry]
Optional. The arguments to pass to the task. The args can use placeholders of the format ${placeholder} as part of key/value string. These will be interpolated before passing the args to the driver. Currently supported placeholders: - ${task_id} - ${job_time} To pass positional args, set the key as TASK_ARGS. The value should be a comma-separated string of all the positional arguments. To use a delimiter other than comma, refer to https://cloud.google.com/sdk/gcloud/reference/topic/escaping. In case of other keys being present in the args, then TASK_ARGS will be passed as the last argument.
service_account str
Required. Service account to use to execute a task. If not provided, the default Compute service account for the project is used.
max_job_execution_lifetime google.protobuf.duration_pb2.Duration
Optional. The maximum duration after which the job execution is expired.

Classes

ArgsEntry

ArgsEntry(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.