Interface TaskTemplateOrBuilder (0.14.0)

publicinterface TaskTemplateOrBuilderextendsMessageOrBuilder

Implements

MessageOrBuilder

Methods

getContainers(int index)

publicabstractContainergetContainers(intindex)

Holds the single container that defines the unit of execution for this task.

repeated .google.cloud.run.v2.Container containers = 1;

Parameter
Name Description
index int
Returns
Type Description
Container

getContainersCount()

publicabstractintgetContainersCount()

Holds the single container that defines the unit of execution for this task.

repeated .google.cloud.run.v2.Container containers = 1;

Returns
Type Description
int

getContainersList()

publicabstractList<Container>getContainersList()

Holds the single container that defines the unit of execution for this task.

repeated .google.cloud.run.v2.Container containers = 1;

Returns
Type Description
List<Container>

getContainersOrBuilder(int index)

publicabstractContainerOrBuildergetContainersOrBuilder(intindex)

Holds the single container that defines the unit of execution for this task.

repeated .google.cloud.run.v2.Container containers = 1;

Parameter
Name Description
index int
Returns
Type Description
ContainerOrBuilder

getContainersOrBuilderList()

publicabstractList<?extendsContainerOrBuilder>getContainersOrBuilderList()

Holds the single container that defines the unit of execution for this task.

repeated .google.cloud.run.v2.Container containers = 1;

Returns
Type Description
List<? extends com.google.cloud.run.v2.ContainerOrBuilder>

getEncryptionKey()

publicabstractStringgetEncryptionKey()

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

string encryption_key = 7 [(.google.api.resource_reference) = { ... }

Returns
Type Description
String

The encryptionKey.

getEncryptionKeyBytes()

publicabstractByteStringgetEncryptionKeyBytes()

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

string encryption_key = 7 [(.google.api.resource_reference) = { ... }

Returns
Type Description
ByteString

The bytes for encryptionKey.

getExecutionEnvironment()

publicabstractExecutionEnvironmentgetExecutionEnvironment()

The execution environment being used to host this Task.

.google.cloud.run.v2.ExecutionEnvironment execution_environment = 6;

Returns
Type Description
ExecutionEnvironment

The executionEnvironment.

getExecutionEnvironmentValue()

publicabstractintgetExecutionEnvironmentValue()

The execution environment being used to host this Task.

.google.cloud.run.v2.ExecutionEnvironment execution_environment = 6;

Returns
Type Description
int

The enum numeric value on the wire for executionEnvironment.

getMaxRetries()

publicabstractintgetMaxRetries()

Number of retries allowed per Task, before marking this Task failed.

int32 max_retries = 3;

Returns
Type Description
int

The maxRetries.

getRetriesCase()

publicabstractTaskTemplate.RetriesCasegetRetriesCase()
Returns
Type Description
TaskTemplate.RetriesCase

getServiceAccount()

publicabstractStringgetServiceAccount()

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.

string service_account = 5;

Returns
Type Description
String

The serviceAccount.

getServiceAccountBytes()

publicabstractByteStringgetServiceAccountBytes()

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.

string service_account = 5;

Returns
Type Description
ByteString

The bytes for serviceAccount.

getTimeout()

publicabstractDurationgetTimeout()

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.

.google.protobuf.Duration timeout = 4;

Returns
Type Description
Duration

The timeout.

getTimeoutOrBuilder()

publicabstractDurationOrBuildergetTimeoutOrBuilder()

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.

.google.protobuf.Duration timeout = 4;

Returns
Type Description
DurationOrBuilder

getVolumes(int index)

publicabstractVolumegetVolumes(intindex)

A list of Volumes to make available to containers.

repeated .google.cloud.run.v2.Volume volumes = 2;

Parameter
Name Description
index int
Returns
Type Description
Volume

getVolumesCount()

publicabstractintgetVolumesCount()

A list of Volumes to make available to containers.

repeated .google.cloud.run.v2.Volume volumes = 2;

Returns
Type Description
int

getVolumesList()

publicabstractList<Volume>getVolumesList()

A list of Volumes to make available to containers.

repeated .google.cloud.run.v2.Volume volumes = 2;

Returns
Type Description
List<Volume>

getVolumesOrBuilder(int index)

publicabstractVolumeOrBuildergetVolumesOrBuilder(intindex)

A list of Volumes to make available to containers.

repeated .google.cloud.run.v2.Volume volumes = 2;

Parameter
Name Description
index int
Returns
Type Description
VolumeOrBuilder

getVolumesOrBuilderList()

publicabstractList<?extendsVolumeOrBuilder>getVolumesOrBuilderList()

A list of Volumes to make available to containers.

repeated .google.cloud.run.v2.Volume volumes = 2;

Returns
Type Description
List<? extends com.google.cloud.run.v2.VolumeOrBuilder>

getVpcAccess()

publicabstractVpcAccessgetVpcAccess()

VPC Access configuration to use for this Task. For more information, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.

.google.cloud.run.v2.VpcAccess vpc_access = 8;

Returns
Type Description
VpcAccess

The vpcAccess.

getVpcAccessOrBuilder()

publicabstractVpcAccessOrBuildergetVpcAccessOrBuilder()

VPC Access configuration to use for this Task. For more information, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.

.google.cloud.run.v2.VpcAccess vpc_access = 8;

Returns
Type Description
VpcAccessOrBuilder

hasMaxRetries()

publicabstractbooleanhasMaxRetries()

Number of retries allowed per Task, before marking this Task failed.

int32 max_retries = 3;

Returns
Type Description
boolean

Whether the maxRetries field is set.

hasTimeout()

publicabstractbooleanhasTimeout()

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.

.google.protobuf.Duration timeout = 4;

Returns
Type Description
boolean

Whether the timeout field is set.

hasVpcAccess()

publicabstractbooleanhasVpcAccess()

VPC Access configuration to use for this Task. For more information, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.

.google.cloud.run.v2.VpcAccess vpc_access = 8;

Returns
Type Description
boolean

Whether the vpcAccess field is set.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年10月30日 UTC.