View Source GoogleApi.Batch.V1.Model.TaskSpec (google_api_batch v0.6.1)
Spec of a task
Attributes
-
computeResource
(type:GoogleApi.Batch.V1.Model.ComputeResource.t
, default:nil
) - ComputeResource requirements. -
environment
(type:GoogleApi.Batch.V1.Model.Environment.t
, default:nil
) - Environment variables to set before running the Task. -
environments
(type:map()
, default:nil
) - Deprecated: please use environment(non-plural) instead. -
lifecyclePolicies
(type:list(GoogleApi.Batch.V1.Model.LifecyclePolicy.t)
, default:nil
) - Lifecycle management schema when any task in a task group is failed. Currently we only support one lifecycle policy. When the lifecycle policy condition is met, the action in the policy will execute. If task execution result does not meet with the defined lifecycle policy, we consider it as the default policy. Default policy means if the exit code is 0, exit task. If task ends with non-zero exit code, retry the task with max_retry_count. -
maxRetryCount
(type:integer()
, default:nil
) - Maximum number of retries on failures. The default, 0, which means never retry. The valid value range is [0, 10]. -
maxRunDuration
(type:String.t
, default:nil
) - Maximum duration the task should run before being automatically retried (if enabled) or automatically failed. Format the value of this field as a time limit in seconds followed bys
—for example,3600s
for 1 hour. The field accepts any value between 0 and the maximum listed for theDuration
field type at https://protobuf.dev/reference/protobuf/google.protobuf/#duration; however, the actual maximum run time for a job will be limited to the maximum run time for a job listed at https://cloud.google.com/batch/quotas#max-job-duration. -
runnables
(type:list(GoogleApi.Batch.V1.Model.Runnable.t)
, default:nil
) - Required. The sequence of one or more runnables (executable scripts, executable containers, and/or barriers) for each task in this task group to run. Each task runs this list of runnables in order. For a task to succeed, all of its script and container runnables each must meet at least one of the following conditions: + The runnable exited with a zero status. + The runnable didn't finish, but you enabled itsbackground
subfield. + The runnable exited with a non-zero status, but you enabled itsignore_exit_status
subfield. -
volumes
(type:list(GoogleApi.Batch.V1.Model.Volume.t)
, default:nil
) - Volumes to mount before running Tasks using this TaskSpec.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Batch.V1.Model.TaskSpec{ computeResource: GoogleApi.Batch.V1.Model.ComputeResource.t() | nil, environment: GoogleApi.Batch.V1.Model.Environment.t() | nil, environments: map() | nil, lifecyclePolicies: [GoogleApi.Batch.V1.Model.LifecyclePolicy.t()] | nil, maxRetryCount: integer() | nil, maxRunDuration: String.t() | nil, runnables: [GoogleApi.Batch.V1.Model.Runnable.t()] | nil, volumes: [GoogleApi.Batch.V1.Model.Volume.t()] | nil }
Functions
Unwrap a decoded JSON object into its complex fields.