Interface ContainerOrBuilder (0.28.0)

public interface ContainerOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getArgs(int index)

public abstract String getArgs(int index)

Arguments to the entrypoint. The docker image's CMD is used if this is not provided.

repeated string args = 4;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The args at the given index.

getArgsBytes(int index)

public abstract ByteString getArgsBytes(int index)

Arguments to the entrypoint. The docker image's CMD is used if this is not provided.

repeated string args = 4;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the args at the given index.

getArgsCount()

public abstract int getArgsCount()

Arguments to the entrypoint. The docker image's CMD is used if this is not provided.

repeated string args = 4;

Returns
TypeDescription
int

The count of args.

getArgsList()

public abstract List<String> getArgsList()

Arguments to the entrypoint. The docker image's CMD is used if this is not provided.

repeated string args = 4;

Returns
TypeDescription
List<String>

A list containing the args.

getCommand(int index)

public abstract String getCommand(int index)

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.

repeated string command = 3;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The command at the given index.

getCommandBytes(int index)

public abstract ByteString getCommandBytes(int index)

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.

repeated string command = 3;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the command at the given index.

getCommandCount()

public abstract int getCommandCount()

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.

repeated string command = 3;

Returns
TypeDescription
int

The count of command.

getCommandList()

public abstract List<String> getCommandList()

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.

repeated string command = 3;

Returns
TypeDescription
List<String>

A list containing the command.

getDependsOn(int index)

public abstract String getDependsOn(int index)

Names of the containers that must start before this container.

repeated string depends_on = 12;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The dependsOn at the given index.

getDependsOnBytes(int index)

public abstract ByteString getDependsOnBytes(int index)

Names of the containers that must start before this container.

repeated string depends_on = 12;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the dependsOn at the given index.

getDependsOnCount()

public abstract int getDependsOnCount()

Names of the containers that must start before this container.

repeated string depends_on = 12;

Returns
TypeDescription
int

The count of dependsOn.

getDependsOnList()

public abstract List<String> getDependsOnList()

Names of the containers that must start before this container.

repeated string depends_on = 12;

Returns
TypeDescription
List<String>

A list containing the dependsOn.

getEnv(int index)

public abstract EnvVar getEnv(int index)

List of environment variables to set in the container.

repeated .google.cloud.run.v2.EnvVar env = 5;

Parameter
NameDescription
indexint
Returns
TypeDescription
EnvVar

getEnvCount()

public abstract int getEnvCount()

List of environment variables to set in the container.

repeated .google.cloud.run.v2.EnvVar env = 5;

Returns
TypeDescription
int

getEnvList()

public abstract List<EnvVar> getEnvList()

List of environment variables to set in the container.

repeated .google.cloud.run.v2.EnvVar env = 5;

Returns
TypeDescription
List<EnvVar>

getEnvOrBuilder(int index)

public abstract EnvVarOrBuilder getEnvOrBuilder(int index)

List of environment variables to set in the container.

repeated .google.cloud.run.v2.EnvVar env = 5;

Parameter
NameDescription
indexint
Returns
TypeDescription
EnvVarOrBuilder

getEnvOrBuilderList()

public abstract List<? extends EnvVarOrBuilder> getEnvOrBuilderList()

List of environment variables to set in the container.

repeated .google.cloud.run.v2.EnvVar env = 5;

Returns
TypeDescription
List<? extends com.google.cloud.run.v2.EnvVarOrBuilder>

getImage()

public abstract String getImage()

Required. Name of the container image in Dockerhub, Google Artifact Registry, or Google Container Registry. If the host is not provided, Dockerhub is assumed.

string image = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
String

The image.

getImageBytes()

public abstract ByteString getImageBytes()

Required. Name of the container image in Dockerhub, Google Artifact Registry, or Google Container Registry. If the host is not provided, Dockerhub is assumed.

string image = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
ByteString

The bytes for image.

getLivenessProbe()

public abstract Probe getLivenessProbe()

Periodic probe of container liveness. Container will be restarted if the probe fails.

.google.cloud.run.v2.Probe liveness_probe = 10;

Returns
TypeDescription
Probe

The livenessProbe.

getLivenessProbeOrBuilder()

public abstract ProbeOrBuilder getLivenessProbeOrBuilder()

Periodic probe of container liveness. Container will be restarted if the probe fails.

.google.cloud.run.v2.Probe liveness_probe = 10;

Returns
TypeDescription
ProbeOrBuilder

getName()

public abstract String getName()

Name of the container specified as a DNS_LABEL (RFC 1123).

string name = 1;

Returns
TypeDescription
String

The name.

getNameBytes()

public abstract ByteString getNameBytes()

Name of the container specified as a DNS_LABEL (RFC 1123).

string name = 1;

Returns
TypeDescription
ByteString

The bytes for name.

getPorts(int index)

public abstract ContainerPort getPorts(int index)

List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible.

If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.

repeated .google.cloud.run.v2.ContainerPort ports = 7;

Parameter
NameDescription
indexint
Returns
TypeDescription
ContainerPort

getPortsCount()

public abstract int getPortsCount()

List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible.

If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.

repeated .google.cloud.run.v2.ContainerPort ports = 7;

Returns
TypeDescription
int

getPortsList()

public abstract List<ContainerPort> getPortsList()

List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible.

If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.

repeated .google.cloud.run.v2.ContainerPort ports = 7;

Returns
TypeDescription
List<ContainerPort>

getPortsOrBuilder(int index)

public abstract ContainerPortOrBuilder getPortsOrBuilder(int index)

List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible.

If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.

repeated .google.cloud.run.v2.ContainerPort ports = 7;

Parameter
NameDescription
indexint
Returns
TypeDescription
ContainerPortOrBuilder

getPortsOrBuilderList()

public abstract List<? extends ContainerPortOrBuilder> getPortsOrBuilderList()

List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible.

If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.

repeated .google.cloud.run.v2.ContainerPort ports = 7;

Returns
TypeDescription
List<? extends com.google.cloud.run.v2.ContainerPortOrBuilder>

getResources()

public abstract ResourceRequirements getResources()

Compute Resource requirements by this container.

.google.cloud.run.v2.ResourceRequirements resources = 6;

Returns
TypeDescription
ResourceRequirements

The resources.

getResourcesOrBuilder()

public abstract ResourceRequirementsOrBuilder getResourcesOrBuilder()

Compute Resource requirements by this container.

.google.cloud.run.v2.ResourceRequirements resources = 6;

Returns
TypeDescription
ResourceRequirementsOrBuilder

getStartupProbe()

public abstract Probe getStartupProbe()

Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not be added to service endpoints if the probe fails.

.google.cloud.run.v2.Probe startup_probe = 11;

Returns
TypeDescription
Probe

The startupProbe.

getStartupProbeOrBuilder()

public abstract ProbeOrBuilder getStartupProbeOrBuilder()

Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not be added to service endpoints if the probe fails.

.google.cloud.run.v2.Probe startup_probe = 11;

Returns
TypeDescription
ProbeOrBuilder

getVolumeMounts(int index)

public abstract VolumeMount getVolumeMounts(int index)

Volume to mount into the container's filesystem.

repeated .google.cloud.run.v2.VolumeMount volume_mounts = 8;

Parameter
NameDescription
indexint
Returns
TypeDescription
VolumeMount

getVolumeMountsCount()

public abstract int getVolumeMountsCount()

Volume to mount into the container's filesystem.

repeated .google.cloud.run.v2.VolumeMount volume_mounts = 8;

Returns
TypeDescription
int

getVolumeMountsList()

public abstract List<VolumeMount> getVolumeMountsList()

Volume to mount into the container's filesystem.

repeated .google.cloud.run.v2.VolumeMount volume_mounts = 8;

Returns
TypeDescription
List<VolumeMount>

getVolumeMountsOrBuilder(int index)

public abstract VolumeMountOrBuilder getVolumeMountsOrBuilder(int index)

Volume to mount into the container's filesystem.

repeated .google.cloud.run.v2.VolumeMount volume_mounts = 8;

Parameter
NameDescription
indexint
Returns
TypeDescription
VolumeMountOrBuilder

getVolumeMountsOrBuilderList()

public abstract List<? extends VolumeMountOrBuilder> getVolumeMountsOrBuilderList()

Volume to mount into the container's filesystem.

repeated .google.cloud.run.v2.VolumeMount volume_mounts = 8;

Returns
TypeDescription
List<? extends com.google.cloud.run.v2.VolumeMountOrBuilder>

getWorkingDir()

public abstract String getWorkingDir()

Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image.

string working_dir = 9;

Returns
TypeDescription
String

The workingDir.

getWorkingDirBytes()

public abstract ByteString getWorkingDirBytes()

Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image.

string working_dir = 9;

Returns
TypeDescription
ByteString

The bytes for workingDir.

hasLivenessProbe()

public abstract boolean hasLivenessProbe()

Periodic probe of container liveness. Container will be restarted if the probe fails.

.google.cloud.run.v2.Probe liveness_probe = 10;

Returns
TypeDescription
boolean

Whether the livenessProbe field is set.

hasResources()

public abstract boolean hasResources()

Compute Resource requirements by this container.

.google.cloud.run.v2.ResourceRequirements resources = 6;

Returns
TypeDescription
boolean

Whether the resources field is set.

hasStartupProbe()

public abstract boolean hasStartupProbe()

Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not be added to service endpoints if the probe fails.

.google.cloud.run.v2.Probe startup_probe = 11;

Returns
TypeDescription
boolean

Whether the startupProbe field is set.