Interface ListArtifactsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListArtifactsResponse
,ListArtifactsResponse.Builder
public interface ListArtifactsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Artifact
getArtifacts(int index)
The artifacts from the specified publisher.int
getArtifactsCount()
The artifacts from the specified publisher.List<Artifact>
getArtifactsList()
The artifacts from the specified publisher.ArtifactOrBuilder
getArtifactsOrBuilder(int index)
The artifacts from the specified publisher.List<? extends ArtifactOrBuilder>
getArtifactsOrBuilderList()
The artifacts from the specified publisher.String
getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getArtifactsList
List<Artifact> getArtifactsList()
The artifacts from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Artifact artifacts = 1;
-
getArtifacts
Artifact getArtifacts(int index)
The artifacts from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Artifact artifacts = 1;
-
getArtifactsCount
int getArtifactsCount()
The artifacts from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Artifact artifacts = 1;
-
getArtifactsOrBuilderList
List<? extends ArtifactOrBuilder> getArtifactsOrBuilderList()
The artifacts from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Artifact artifacts = 1;
-
getArtifactsOrBuilder
ArtifactOrBuilder getArtifactsOrBuilder(int index)
The artifacts from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Artifact artifacts = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-