Package com.google.bigtable.admin.v2
Interface AppProfile.MultiClusterRoutingUseAnyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AppProfile.MultiClusterRoutingUseAny
,AppProfile.MultiClusterRoutingUseAny.Builder
- Enclosing class:
- AppProfile
public static interface AppProfile.MultiClusterRoutingUseAnyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getClusterIds(int index)
The set of clusters to route to.com.google.protobuf.ByteString
getClusterIdsBytes(int index)
The set of clusters to route to.int
getClusterIdsCount()
The set of clusters to route to.List<String>
getClusterIdsList()
The set of clusters to route to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getClusterIdsList
List<String> getClusterIdsList()
The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
repeated string cluster_ids = 1;
- Returns:
- A list containing the clusterIds.
-
getClusterIdsCount
int getClusterIdsCount()
The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
repeated string cluster_ids = 1;
- Returns:
- The count of clusterIds.
-
getClusterIds
String getClusterIds(int index)
The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
repeated string cluster_ids = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The clusterIds at the given index.
-
getClusterIdsBytes
com.google.protobuf.ByteString getClusterIdsBytes(int index)
The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
repeated string cluster_ids = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the clusterIds at the given index.
-
-