Package com.google.bigtable.v2
Interface ResponseParamsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ResponseParams
,ResponseParams.Builder
public interface ResponseParamsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getClusterId()
Identifier for a cluster that represents set of bigtable resources.com.google.protobuf.ByteString
getClusterIdBytes()
Identifier for a cluster that represents set of bigtable resources.String
getZoneId()
The cloud bigtable zone associated with the cluster.com.google.protobuf.ByteString
getZoneIdBytes()
The cloud bigtable zone associated with the cluster.boolean
hasClusterId()
Identifier for a cluster that represents set of bigtable resources.boolean
hasZoneId()
The cloud bigtable zone associated with the cluster.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasZoneId
boolean hasZoneId()
The cloud bigtable zone associated with the cluster.
optional string zone_id = 1;
- Returns:
- Whether the zoneId field is set.
-
getZoneId
String getZoneId()
The cloud bigtable zone associated with the cluster.
optional string zone_id = 1;
- Returns:
- The zoneId.
-
getZoneIdBytes
com.google.protobuf.ByteString getZoneIdBytes()
The cloud bigtable zone associated with the cluster.
optional string zone_id = 1;
- Returns:
- The bytes for zoneId.
-
hasClusterId
boolean hasClusterId()
Identifier for a cluster that represents set of bigtable resources.
optional string cluster_id = 2;
- Returns:
- Whether the clusterId field is set.
-
getClusterId
String getClusterId()
Identifier for a cluster that represents set of bigtable resources.
optional string cluster_id = 2;
- Returns:
- The clusterId.
-
getClusterIdBytes
com.google.protobuf.ByteString getClusterIdBytes()
Identifier for a cluster that represents set of bigtable resources.
optional string cluster_id = 2;
- Returns:
- The bytes for clusterId.
-
-