Interface ListSnapshotsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSnapshotsResponse
,ListSnapshotsResponse.Builder
public interface ListSnapshotsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
The token you can use to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token you can use to retrieve the next page of results.Snapshot
getSnapshots(int index)
A list of snapshots in the project for the specified instance.int
getSnapshotsCount()
A list of snapshots in the project for the specified instance.List<Snapshot>
getSnapshotsList()
A list of snapshots in the project for the specified instance.SnapshotOrBuilder
getSnapshotsOrBuilder(int index)
A list of snapshots in the project for the specified instance.List<? extends SnapshotOrBuilder>
getSnapshotsOrBuilderList()
A list of snapshots in the project for the specified instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSnapshotsList
List<Snapshot> getSnapshotsList()
A list of snapshots in the project for the specified instance.
repeated .google.cloud.filestore.v1beta1.Snapshot snapshots = 1;
-
getSnapshots
Snapshot getSnapshots(int index)
A list of snapshots in the project for the specified instance.
repeated .google.cloud.filestore.v1beta1.Snapshot snapshots = 1;
-
getSnapshotsCount
int getSnapshotsCount()
A list of snapshots in the project for the specified instance.
repeated .google.cloud.filestore.v1beta1.Snapshot snapshots = 1;
-
getSnapshotsOrBuilderList
List<? extends SnapshotOrBuilder> getSnapshotsOrBuilderList()
A list of snapshots in the project for the specified instance.
repeated .google.cloud.filestore.v1beta1.Snapshot snapshots = 1;
-
getSnapshotsOrBuilder
SnapshotOrBuilder getSnapshotsOrBuilder(int index)
A list of snapshots in the project for the specified instance.
repeated .google.cloud.filestore.v1beta1.Snapshot snapshots = 1;
-
getNextPageToken
String getNextPageToken()
The token you can use to retrieve the next page of results. Not returned if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token you can use to retrieve the next page of results. Not returned if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-