Interface ListMavenArtifactsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMavenArtifactsResponse
,ListMavenArtifactsResponse.Builder
public interface ListMavenArtifactsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MavenArtifact
getMavenArtifacts(int index)
The maven artifacts returned.int
getMavenArtifactsCount()
The maven artifacts returned.List<MavenArtifact>
getMavenArtifactsList()
The maven artifacts returned.MavenArtifactOrBuilder
getMavenArtifactsOrBuilder(int index)
The maven artifacts returned.List<? extends MavenArtifactOrBuilder>
getMavenArtifactsOrBuilderList()
The maven artifacts 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
-
getMavenArtifactsList
List<MavenArtifact> getMavenArtifactsList()
The maven artifacts returned.
repeated .google.devtools.artifactregistry.v1.MavenArtifact maven_artifacts = 1;
-
getMavenArtifacts
MavenArtifact getMavenArtifacts(int index)
The maven artifacts returned.
repeated .google.devtools.artifactregistry.v1.MavenArtifact maven_artifacts = 1;
-
getMavenArtifactsCount
int getMavenArtifactsCount()
The maven artifacts returned.
repeated .google.devtools.artifactregistry.v1.MavenArtifact maven_artifacts = 1;
-
getMavenArtifactsOrBuilderList
List<? extends MavenArtifactOrBuilder> getMavenArtifactsOrBuilderList()
The maven artifacts returned.
repeated .google.devtools.artifactregistry.v1.MavenArtifact maven_artifacts = 1;
-
getMavenArtifactsOrBuilder
MavenArtifactOrBuilder getMavenArtifactsOrBuilder(int index)
The maven artifacts returned.
repeated .google.devtools.artifactregistry.v1.MavenArtifact maven_artifacts = 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.
-
-