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 DockerImagegetDockerImages(int index)The docker images returned.intgetDockerImagesCount()The docker images returned.List<DockerImage>getDockerImagesList()The docker images returned.DockerImageOrBuildergetDockerImagesOrBuilder(int index)The docker images returned.List<? extends DockerImageOrBuilder>getDockerImagesOrBuilderList()The docker images returned.StringgetNextPageToken()The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.com.google.protobuf.ByteStringgetNextPageTokenBytes()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.
-
-