com.google.bigtable.v2.ResponseParamsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
PROTO library for proto-google-cloud-bigtable-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/bigtable/v2/response_params.proto
// Protobuf Java Version: 3.25.3
package com.google.bigtable.v2;
public interface ResponseParamsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.ResponseParams)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The cloud bigtable zone associated with the cluster.
*
*
* optional string zone_id = 1;
*
* @return Whether the zoneId field is set.
*/
boolean hasZoneId();
/**
*
*
*
* The cloud bigtable zone associated with the cluster.
*
*
* optional string zone_id = 1;
*
* @return The zoneId.
*/
java.lang.String getZoneId();
/**
*
*
*
* The cloud bigtable zone associated with the cluster.
*
*
* optional string zone_id = 1;
*
* @return The bytes for zoneId.
*/
com.google.protobuf.ByteString getZoneIdBytes();
/**
*
*
*
* Identifier for a cluster that represents set of
* bigtable resources.
*
*
* optional string cluster_id = 2;
*
* @return Whether the clusterId field is set.
*/
boolean hasClusterId();
/**
*
*
*
* Identifier for a cluster that represents set of
* bigtable resources.
*
*
* optional string cluster_id = 2;
*
* @return The clusterId.
*/
java.lang.String getClusterId();
/**
*
*
*
* Identifier for a cluster that represents set of
* bigtable resources.
*
*
* optional string cluster_id = 2;
*
* @return The bytes for clusterId.
*/
com.google.protobuf.ByteString getClusterIdBytes();
}