xref: /aosp_15_r20/external/googleapis/google/bigtable/v2/response_params.proto (revision d5c09012810ac0c9f33fe448fb6da8260d444cc9)
1// Copyright 2022 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17package google.bigtable.v2;
18
19option csharp_namespace = "Google.Cloud.Bigtable.V2";
20option go_package = "google.golang.org/genproto/googleapis/bigtable/v2;bigtable";
21option java_multiple_files = true;
22option java_outer_classname = "ResponseParamsProto";
23option java_package = "com.google.bigtable.v2";
24option php_namespace = "Google\\Cloud\\Bigtable\\V2";
25option ruby_package = "Google::Cloud::Bigtable::V2";
26
27// Response metadata proto
28// This is an experimental feature that will be used to get zone_id and
29// cluster_id from response trailers to tag the metrics. This should not be
30// used by customers directly
31message ResponseParams {
32  // The cloud bigtable zone associated with the cluster.
33  optional string zone_id = 1;
34
35  // Identifier for a cluster that represents set of
36  // bigtable resources.
37  optional string cluster_id = 2;
38}
39