Package com.google.cloud.aiplatform.v1
Interface ContainerSpecOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ContainerSpec,ContainerSpec.Builder
@Generated
public interface ContainerSpecOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetArgs(int index) The arguments to be passed when starting the container.com.google.protobuf.ByteStringgetArgsBytes(int index) The arguments to be passed when starting the container.intThe arguments to be passed when starting the container.The arguments to be passed when starting the container.getCommand(int index) The command to be invoked when the container is started.com.google.protobuf.ByteStringgetCommandBytes(int index) The command to be invoked when the container is started.intThe command to be invoked when the container is started.The command to be invoked when the container is started.getEnv(int index) Environment variables to be passed to the container.intEnvironment variables to be passed to the container.Environment variables to be passed to the container.getEnvOrBuilder(int index) Environment variables to be passed to the container.List<? extends EnvVarOrBuilder>Environment variables to be passed to the container.Required.com.google.protobuf.ByteStringRequired.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getImageUri
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];- Returns:
- The imageUri.
-
getImageUriBytes
com.google.protobuf.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];- Returns:
- The bytes for imageUri.
-
getCommandList
The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
repeated string command = 2;- Returns:
- A list containing the command.
-
getCommandCount
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;- Returns:
- The count of command.
-
getCommand
The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.
repeated string command = 2;- Parameters:
index- The index of the element to return.- Returns:
- The command at the given index.
-
getCommandBytes
com.google.protobuf.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;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the command at the given index.
-
getArgsList
The arguments to be passed when starting the container.
repeated string args = 3;- Returns:
- A list containing the args.
-
getArgsCount
int getArgsCount()The arguments to be passed when starting the container.
repeated string args = 3;- Returns:
- The count of args.
-
getArgs
The arguments to be passed when starting the container.
repeated string args = 3;- Parameters:
index- The index of the element to return.- Returns:
- The args at the given index.
-
getArgsBytes
com.google.protobuf.ByteString getArgsBytes(int index) The arguments to be passed when starting the container.
repeated string args = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the args at the given index.
-
getEnvList
Environment variables to be passed to the container. Maximum limit is 100.
repeated .google.cloud.aiplatform.v1.EnvVar env = 4; -
getEnv
Environment variables to be passed to the container. Maximum limit is 100.
repeated .google.cloud.aiplatform.v1.EnvVar env = 4; -
getEnvCount
int getEnvCount()Environment variables to be passed to the container. Maximum limit is 100.
repeated .google.cloud.aiplatform.v1.EnvVar env = 4; -
getEnvOrBuilderList
List<? extends EnvVarOrBuilder> getEnvOrBuilderList()Environment variables to be passed to the container. Maximum limit is 100.
repeated .google.cloud.aiplatform.v1.EnvVar env = 4; -
getEnvOrBuilder
Environment variables to be passed to the container. Maximum limit is 100.
repeated .google.cloud.aiplatform.v1.EnvVar env = 4;
-