View Source GoogleApi.Run.V1.Model.TaskSpec (quiqup_google_api_run v0.28.0)

TaskSpec is a description of a task.

attributes

Attributes

  • containers (type: list(GoogleApi.Run.V1.Model.Container.t), default: nil) - Optional. List of containers belonging to the task. We disallow a number of fields on this Container. Only a single container may be provided.
  • maxRetries (type: integer(), default: nil) - Optional. Number of retries allowed per task, before marking this job failed.
  • serviceAccountName (type: String.t, default: nil) - Optional. Email address of the IAM service account associated with the task of a job execution. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account. +optional
  • timeoutSeconds (type: String.t, default: nil) - Optional. Optional duration in seconds the task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout. +optional
  • volumes (type: list(GoogleApi.Run.V1.Model.Volume.t), default: nil) - Optional. List of volumes that can be mounted by containers belonging to the task. More info: https://kubernetes.io/docs/concepts/storage/volumes +optional

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

@type t() :: %GoogleApi.Run.V1.Model.TaskSpec{
  containers: [GoogleApi.Run.V1.Model.Container.t()] | nil,
  maxRetries: integer() | nil,
  serviceAccountName: String.t() | nil,
  timeoutSeconds: String.t() | nil,
  volumes: [GoogleApi.Run.V1.Model.Volume.t()] | nil
}

Link to this section Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.