Package com.google.bigtable.admin.v2
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 String
getFailedLocations(int index)
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition.com.google.protobuf.ByteString
getFailedLocationsBytes(int index)
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition.int
getFailedLocationsCount()
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition.List<String>
getFailedLocationsList()
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition.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()
DEPRECATED: This field is unused and ignored.com.google.protobuf.ByteString
getNextPageTokenBytes()
DEPRECATED: This field is unused and ignored.-
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.bigtable.admin.v2.Instance instances = 1;
-
getInstances
Instance getInstances(int index)
The list of requested instances.
repeated .google.bigtable.admin.v2.Instance instances = 1;
-
getInstancesCount
int getInstancesCount()
The list of requested instances.
repeated .google.bigtable.admin.v2.Instance instances = 1;
-
getInstancesOrBuilderList
List<? extends InstanceOrBuilder> getInstancesOrBuilderList()
The list of requested instances.
repeated .google.bigtable.admin.v2.Instance instances = 1;
-
getInstancesOrBuilder
InstanceOrBuilder getInstancesOrBuilder(int index)
The list of requested instances.
repeated .google.bigtable.admin.v2.Instance instances = 1;
-
getFailedLocationsList
List<String> getFailedLocationsList()
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition. Instances whose Clusters are all in one of the failed locations may be missing from `instances`, and Instances with at least one Cluster in a failed location may only have partial information returned. Values are of the form `projects/<project>/locations/<zone_id>`
repeated string failed_locations = 2;
- Returns:
- A list containing the failedLocations.
-
getFailedLocationsCount
int getFailedLocationsCount()
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition. Instances whose Clusters are all in one of the failed locations may be missing from `instances`, and Instances with at least one Cluster in a failed location may only have partial information returned. Values are of the form `projects/<project>/locations/<zone_id>`
repeated string failed_locations = 2;
- Returns:
- The count of failedLocations.
-
getFailedLocations
String getFailedLocations(int index)
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition. Instances whose Clusters are all in one of the failed locations may be missing from `instances`, and Instances with at least one Cluster in a failed location may only have partial information returned. Values are of the form `projects/<project>/locations/<zone_id>`
repeated string failed_locations = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The failedLocations at the given index.
-
getFailedLocationsBytes
com.google.protobuf.ByteString getFailedLocationsBytes(int index)
Locations from which Instance information could not be retrieved, due to an outage or some other transient condition. Instances whose Clusters are all in one of the failed locations may be missing from `instances`, and Instances with at least one Cluster in a failed location may only have partial information returned. Values are of the form `projects/<project>/locations/<zone_id>`
repeated string failed_locations = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the failedLocations at the given index.
-
getNextPageToken
String getNextPageToken()
DEPRECATED: This field is unused and ignored.
string next_page_token = 3;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
DEPRECATED: This field is unused and ignored.
string next_page_token = 3;
- Returns:
- The bytes for nextPageToken.
-
-