Interface ListInstancesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListInstancesResponse
,ListInstancesResponse.Builder
public interface ListInstancesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Instance
getInstances(int index)
The list of requested instances.int
getInstancesCount()
The list of requested instances.List<Instance>
getInstancesList()
The list of requested instances.InstanceOrBuilder
getInstancesOrBuilder(int index)
The list of requested instances.List<? extends InstanceOrBuilder>
getInstancesOrBuilderList()
The list of requested instances.String
getNextPageToken()
`next_page_token` can be sent in a subsequent [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances] call to fetch more of the matching instances.com.google.protobuf.ByteString
getNextPageTokenBytes()
`next_page_token` can be sent in a subsequent [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances] call to fetch more of the matching instances.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInstancesList
List<Instance> getInstancesList()
The list of requested instances.
repeated .google.spanner.admin.instance.v1.Instance instances = 1;
-
getInstances
Instance getInstances(int index)
The list of requested instances.
repeated .google.spanner.admin.instance.v1.Instance instances = 1;
-
getInstancesCount
int getInstancesCount()
The list of requested instances.
repeated .google.spanner.admin.instance.v1.Instance instances = 1;
-
getInstancesOrBuilderList
List<? extends InstanceOrBuilder> getInstancesOrBuilderList()
The list of requested instances.
repeated .google.spanner.admin.instance.v1.Instance instances = 1;
-
getInstancesOrBuilder
InstanceOrBuilder getInstancesOrBuilder(int index)
The list of requested instances.
repeated .google.spanner.admin.instance.v1.Instance instances = 1;
-
getNextPageToken
String getNextPageToken()
`next_page_token` can be sent in a subsequent [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances] call to fetch more of the matching instances.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
`next_page_token` can be sent in a subsequent [ListInstances][google.spanner.admin.instance.v1.InstanceAdmin.ListInstances] call to fetch more of the matching instances.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-