Package com.google.pubsub.v1
Interface ListTopicSnapshotsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTopicSnapshotsResponse,ListTopicSnapshotsResponse.Builder
public interface ListTopicSnapshotsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new `ListTopicSnapshotsRequest` to get more snapshots.com.google.protobuf.ByteStringgetNextPageTokenBytes()If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new `ListTopicSnapshotsRequest` to get more snapshots.StringgetSnapshots(int index)The names of the snapshots that match the request.com.google.protobuf.ByteStringgetSnapshotsBytes(int index)The names of the snapshots that match the request.intgetSnapshotsCount()The names of the snapshots that match the request.List<String>getSnapshotsList()The names of the snapshots that match the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSnapshotsList
List<String> getSnapshotsList()
The names of the snapshots that match the request.
repeated string snapshots = 1;- Returns:
- A list containing the snapshots.
-
getSnapshotsCount
int getSnapshotsCount()
The names of the snapshots that match the request.
repeated string snapshots = 1;- Returns:
- The count of snapshots.
-
getSnapshots
String getSnapshots(int index)
The names of the snapshots that match the request.
repeated string snapshots = 1;- Parameters:
index- The index of the element to return.- Returns:
- The snapshots at the given index.
-
getSnapshotsBytes
com.google.protobuf.ByteString getSnapshotsBytes(int index)
The names of the snapshots that match the request.
repeated string snapshots = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the snapshots at the given index.
-
getNextPageToken
String getNextPageToken()
If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new `ListTopicSnapshotsRequest` to get more snapshots.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new `ListTopicSnapshotsRequest` to get more snapshots.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-