Class GoogleCloudRunV2TaskTemplate
TaskTemplate describes the data a task should have when created from a template.
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v2.Data
Assembly: Google.Apis.CloudRun.v2.dll
Syntax
public class GoogleCloudRunV2TaskTemplate : IDirectResponseSchema
Properties
Containers
Holds the single container that defines the unit of execution for this task.
Declaration
[JsonProperty("containers")]
public virtual IList<GoogleCloudRunV2Container> Containers { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudRunV2Container> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EncryptionKey
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
Declaration
[JsonProperty("encryptionKey")]
public virtual string EncryptionKey { get; set; }
Property Value
Type | Description |
---|---|
string |
ExecutionEnvironment
Optional. The execution environment being used to host this Task.
Declaration
[JsonProperty("executionEnvironment")]
public virtual string ExecutionEnvironment { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxRetries
Number of retries allowed per Task, before marking this Task failed. Defaults to 3.
Declaration
[JsonProperty("maxRetries")]
public virtual int? MaxRetries { get; set; }
Property Value
Type | Description |
---|---|
int? |
ServiceAccount
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.
Declaration
[JsonProperty("serviceAccount")]
public virtual string ServiceAccount { get; set; }
Property Value
Type | Description |
---|---|
string |
Timeout
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.
Declaration
[JsonProperty("timeout")]
public virtual object Timeout { get; set; }
Property Value
Type | Description |
---|---|
object |
Volumes
Optional. A list of Volumes to make available to containers.
Declaration
[JsonProperty("volumes")]
public virtual IList<GoogleCloudRunV2Volume> Volumes { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudRunV2Volume> |
VpcAccess
Optional. VPC Access configuration to use for this Task. For more information, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.
Declaration
[JsonProperty("vpcAccess")]
public virtual GoogleCloudRunV2VpcAccess VpcAccess { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudRunV2VpcAccess |