Package com.google.bigtable.admin.v2
Interface ListClustersResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListClustersResponse,ListClustersResponse.Builder
public interface ListClustersResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClustergetClusters(int index)The list of requested clusters.intgetClustersCount()The list of requested clusters.List<Cluster>getClustersList()The list of requested clusters.ClusterOrBuildergetClustersOrBuilder(int index)The list of requested clusters.List<? extends ClusterOrBuilder>getClustersOrBuilderList()The list of requested clusters.StringgetFailedLocations(int index)Locations from which Cluster information could not be retrieved, due to an outage or some other transient condition.com.google.protobuf.ByteStringgetFailedLocationsBytes(int index)Locations from which Cluster information could not be retrieved, due to an outage or some other transient condition.intgetFailedLocationsCount()Locations from which Cluster information could not be retrieved, due to an outage or some other transient condition.List<String>getFailedLocationsList()Locations from which Cluster information could not be retrieved, due to an outage or some other transient condition.StringgetNextPageToken()DEPRECATED: This field is unused and ignored.com.google.protobuf.ByteStringgetNextPageTokenBytes()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
-
getClustersList
List<Cluster> getClustersList()
The list of requested clusters.
repeated .google.bigtable.admin.v2.Cluster clusters = 1;
-
getClusters
Cluster getClusters(int index)
The list of requested clusters.
repeated .google.bigtable.admin.v2.Cluster clusters = 1;
-
getClustersCount
int getClustersCount()
The list of requested clusters.
repeated .google.bigtable.admin.v2.Cluster clusters = 1;
-
getClustersOrBuilderList
List<? extends ClusterOrBuilder> getClustersOrBuilderList()
The list of requested clusters.
repeated .google.bigtable.admin.v2.Cluster clusters = 1;
-
getClustersOrBuilder
ClusterOrBuilder getClustersOrBuilder(int index)
The list of requested clusters.
repeated .google.bigtable.admin.v2.Cluster clusters = 1;
-
getFailedLocationsList
List<String> getFailedLocationsList()
Locations from which Cluster information could not be retrieved, due to an outage or some other transient condition. Clusters from these locations may be missing from `clusters`, or 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 Cluster information could not be retrieved, due to an outage or some other transient condition. Clusters from these locations may be missing from `clusters`, or 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 Cluster information could not be retrieved, due to an outage or some other transient condition. Clusters from these locations may be missing from `clusters`, or 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 Cluster information could not be retrieved, due to an outage or some other transient condition. Clusters from these locations may be missing from `clusters`, or 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.
-
-