public interface ContainerSpecOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getArgs(int index)
public abstract String getArgs(int index)The arguments to be passed when starting the container.
repeated string args = 3;
| Name | Description |
| index | intThe index of the element to return. |
| Type | Description |
| String | The args at the given index. |
getArgsBytes(int index)
public abstract ByteString getArgsBytes(int index)The arguments to be passed when starting the container.
repeated string args = 3;
| Name | Description |
| index | intThe index of the value to return. |
| Type | Description |
| ByteString | The bytes of the args at the given index. |
getArgsCount()
public abstract int getArgsCount()The arguments to be passed when starting the container.
repeated string args = 3;
| Type | Description |
| int | The count of args. |
getArgsList()
public abstract List<String> getArgsList()The arguments to be passed when starting the container.
repeated string args = 3;
| Type | Description |
| List<String> | A list containing the args. |
getCommand(int index)
public abstract String getCommand(int index)The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
repeated string command = 2;
| Name | Description |
| index | intThe index of the element to return. |
| Type | Description |
| String | The command at the given index. |
getCommandBytes(int index)
public abstract ByteString getCommandBytes(int index)The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
repeated string command = 2;
| Name | Description |
| index | intThe index of the value to return. |
| Type | Description |
| ByteString | The bytes of the command at the given index. |
getCommandCount()
public abstract int getCommandCount()The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
repeated string command = 2;
| Type | Description |
| int | The count of command. |
getCommandList()
public abstract List<String> getCommandList()The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
repeated string command = 2;
| Type | Description |
| List<String> | A list containing the command. |
getImageUri()
public abstract String getImageUri()Required. The URI of a container image in the Container Registry that is to be run on each worker replica.
string image_uri = 1 [(.google.api.field_behavior) = REQUIRED];
| Type | Description |
| String | The imageUri. |
getImageUriBytes()
public abstract ByteString getImageUriBytes()Required. The URI of a container image in the Container Registry that is to be run on each worker replica.
string image_uri = 1 [(.google.api.field_behavior) = REQUIRED];
| Type | Description |
| ByteString | The bytes for imageUri. |