Package com.google.cloud.notebooks.v2
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 String
getRepository()
Required.com.google.protobuf.ByteString
getRepositoryBytes()
Required.String
getTag()
Optional.com.google.protobuf.ByteString
getTagBytes()
Optional.-
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()
Optional. The tag of the container image. If not specified, this defaults to the latest tag.
string tag = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The tag.
-
getTagBytes
com.google.protobuf.ByteString getTagBytes()
Optional. The tag of the container image. If not specified, this defaults to the latest tag.
string tag = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for tag.
-
-