Package com.google.cloud.notebooks.v1
Interface ContainerImageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ContainerImage,ContainerImage.Builder
public interface ContainerImageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetRepository()Required.com.google.protobuf.ByteStringgetRepositoryBytes()Required.StringgetTag()The tag of the container image.com.google.protobuf.ByteStringgetTagBytes()The tag of the container image.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRepository
String getRepository()
Required. The path to the container image repository. For example: `gcr.io/{project_id}/{image_name}`string repository = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The repository.
-
getRepositoryBytes
com.google.protobuf.ByteString getRepositoryBytes()
Required. The path to the container image repository. For example: `gcr.io/{project_id}/{image_name}`string repository = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for repository.
-
getTag
String getTag()
The tag of the container image. If not specified, this defaults to the latest tag.
string tag = 2;- Returns:
- The tag.
-
getTagBytes
com.google.protobuf.ByteString getTagBytes()
The tag of the container image. If not specified, this defaults to the latest tag.
string tag = 2;- Returns:
- The bytes for tag.
-
-