View Source GoogleApi.Run.V2.Model.GoogleCloudRunV2TaskTemplate (google_api_run v0.36.1)

TaskTemplate describes the data a task should have when created from a template.

Attributes

  • containers (type: list(GoogleApi.Run.V2.Model.GoogleCloudRunV2Container.t), default: nil) - Holds the single container that defines the unit of execution for this task.
  • encryptionKey (type: String.t, default: nil) - A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek
  • executionEnvironment (type: String.t, default: nil) - Optional. The execution environment being used to host this Task.
  • maxRetries (type: integer(), default: nil) - Number of retries allowed per Task, before marking this Task failed. Defaults to 3.
  • serviceAccount (type: String.t, default: nil) - Optional. Email address of the IAM service account associated with the Task of a Job. 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.
  • timeout (type: String.t, default: nil) - Optional. Max allowed time duration 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. Defaults to 600 seconds.
  • volumes (type: list(GoogleApi.Run.V2.Model.GoogleCloudRunV2Volume.t), default: nil) - Optional. A list of Volumes to make available to containers.
  • vpcAccess (type: GoogleApi.Run.V2.Model.GoogleCloudRunV2VpcAccess.t, default: nil) - Optional. VPC Access configuration to use for this Task. For more information, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Run.V2.Model.GoogleCloudRunV2TaskTemplate{
  containers: [GoogleApi.Run.V2.Model.GoogleCloudRunV2Container.t()] | nil,
  encryptionKey: String.t() | nil,
  executionEnvironment: String.t() | nil,
  maxRetries: integer() | nil,
  serviceAccount: String.t() | nil,
  timeout: String.t() | nil,
  volumes: [GoogleApi.Run.V2.Model.GoogleCloudRunV2Volume.t()] | nil,
  vpcAccess: GoogleApi.Run.V2.Model.GoogleCloudRunV2VpcAccess.t() | nil
}

Functions

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

Unwrap a decoded JSON object into its complex fields.