Interface ListDockerImagesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDockerImagesResponse
,ListDockerImagesResponse.Builder
public interface ListDockerImagesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DockerImage
getDockerImages(int index)
The docker images returned.int
getDockerImagesCount()
The docker images returned.List<DockerImage>
getDockerImagesList()
The docker images returned.DockerImageOrBuilder
getDockerImagesOrBuilder(int index)
The docker images returned.List<? extends DockerImageOrBuilder>
getDockerImagesOrBuilderList()
The docker images returned.String
getNextPageToken()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDockerImagesList
List<DockerImage> getDockerImagesList()
The docker images returned.
repeated .google.devtools.artifactregistry.v1.DockerImage docker_images = 1;
-
getDockerImages
DockerImage getDockerImages(int index)
The docker images returned.
repeated .google.devtools.artifactregistry.v1.DockerImage docker_images = 1;
-
getDockerImagesCount
int getDockerImagesCount()
The docker images returned.
repeated .google.devtools.artifactregistry.v1.DockerImage docker_images = 1;
-
getDockerImagesOrBuilderList
List<? extends DockerImageOrBuilder> getDockerImagesOrBuilderList()
The docker images returned.
repeated .google.devtools.artifactregistry.v1.DockerImage docker_images = 1;
-
getDockerImagesOrBuilder
DockerImageOrBuilder getDockerImagesOrBuilder(int index)
The docker images returned.
repeated .google.devtools.artifactregistry.v1.DockerImage docker_images = 1;
-
getNextPageToken
String getNextPageToken()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-