1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package cluster
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 proto "github.com/golang/protobuf/proto"
28 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
29 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
30 timestamppb "google.golang.org/protobuf/types/known/timestamppb"
31 )
32
33 const (
34
35 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
36
37 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
38 )
39
40
41
42 const _ = proto.ProtoPackageIsVersion4
43
44
45 type ListZonesRequest struct {
46 state protoimpl.MessageState
47 sizeCache protoimpl.SizeCache
48 unknownFields protoimpl.UnknownFields
49
50
51
52
53 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
54 }
55
56 func (x *ListZonesRequest) Reset() {
57 *x = ListZonesRequest{}
58 if protoimpl.UnsafeEnabled {
59 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[0]
60 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
61 ms.StoreMessageInfo(mi)
62 }
63 }
64
65 func (x *ListZonesRequest) String() string {
66 return protoimpl.X.MessageStringOf(x)
67 }
68
69 func (*ListZonesRequest) ProtoMessage() {}
70
71 func (x *ListZonesRequest) ProtoReflect() protoreflect.Message {
72 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[0]
73 if protoimpl.UnsafeEnabled && x != nil {
74 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
75 if ms.LoadMessageInfo() == nil {
76 ms.StoreMessageInfo(mi)
77 }
78 return ms
79 }
80 return mi.MessageOf(x)
81 }
82
83
84 func (*ListZonesRequest) Descriptor() ([]byte, []int) {
85 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{0}
86 }
87
88 func (x *ListZonesRequest) GetName() string {
89 if x != nil {
90 return x.Name
91 }
92 return ""
93 }
94
95
96 type ListZonesResponse struct {
97 state protoimpl.MessageState
98 sizeCache protoimpl.SizeCache
99 unknownFields protoimpl.UnknownFields
100
101
102 Zones []*Zone `protobuf:"bytes,1,rep,name=zones,proto3" json:"zones,omitempty"`
103 }
104
105 func (x *ListZonesResponse) Reset() {
106 *x = ListZonesResponse{}
107 if protoimpl.UnsafeEnabled {
108 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[1]
109 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
110 ms.StoreMessageInfo(mi)
111 }
112 }
113
114 func (x *ListZonesResponse) String() string {
115 return protoimpl.X.MessageStringOf(x)
116 }
117
118 func (*ListZonesResponse) ProtoMessage() {}
119
120 func (x *ListZonesResponse) ProtoReflect() protoreflect.Message {
121 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[1]
122 if protoimpl.UnsafeEnabled && x != nil {
123 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
124 if ms.LoadMessageInfo() == nil {
125 ms.StoreMessageInfo(mi)
126 }
127 return ms
128 }
129 return mi.MessageOf(x)
130 }
131
132
133 func (*ListZonesResponse) Descriptor() ([]byte, []int) {
134 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{1}
135 }
136
137 func (x *ListZonesResponse) GetZones() []*Zone {
138 if x != nil {
139 return x.Zones
140 }
141 return nil
142 }
143
144
145 type GetClusterRequest struct {
146 state protoimpl.MessageState
147 sizeCache protoimpl.SizeCache
148 unknownFields protoimpl.UnknownFields
149
150
151
152 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
153 }
154
155 func (x *GetClusterRequest) Reset() {
156 *x = GetClusterRequest{}
157 if protoimpl.UnsafeEnabled {
158 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[2]
159 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
160 ms.StoreMessageInfo(mi)
161 }
162 }
163
164 func (x *GetClusterRequest) String() string {
165 return protoimpl.X.MessageStringOf(x)
166 }
167
168 func (*GetClusterRequest) ProtoMessage() {}
169
170 func (x *GetClusterRequest) ProtoReflect() protoreflect.Message {
171 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[2]
172 if protoimpl.UnsafeEnabled && x != nil {
173 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
174 if ms.LoadMessageInfo() == nil {
175 ms.StoreMessageInfo(mi)
176 }
177 return ms
178 }
179 return mi.MessageOf(x)
180 }
181
182
183 func (*GetClusterRequest) Descriptor() ([]byte, []int) {
184 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{2}
185 }
186
187 func (x *GetClusterRequest) GetName() string {
188 if x != nil {
189 return x.Name
190 }
191 return ""
192 }
193
194
195 type ListClustersRequest struct {
196 state protoimpl.MessageState
197 sizeCache protoimpl.SizeCache
198 unknownFields protoimpl.UnknownFields
199
200
201
202 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
203 }
204
205 func (x *ListClustersRequest) Reset() {
206 *x = ListClustersRequest{}
207 if protoimpl.UnsafeEnabled {
208 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[3]
209 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
210 ms.StoreMessageInfo(mi)
211 }
212 }
213
214 func (x *ListClustersRequest) String() string {
215 return protoimpl.X.MessageStringOf(x)
216 }
217
218 func (*ListClustersRequest) ProtoMessage() {}
219
220 func (x *ListClustersRequest) ProtoReflect() protoreflect.Message {
221 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[3]
222 if protoimpl.UnsafeEnabled && x != nil {
223 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
224 if ms.LoadMessageInfo() == nil {
225 ms.StoreMessageInfo(mi)
226 }
227 return ms
228 }
229 return mi.MessageOf(x)
230 }
231
232
233 func (*ListClustersRequest) Descriptor() ([]byte, []int) {
234 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{3}
235 }
236
237 func (x *ListClustersRequest) GetName() string {
238 if x != nil {
239 return x.Name
240 }
241 return ""
242 }
243
244
245 type ListClustersResponse struct {
246 state protoimpl.MessageState
247 sizeCache protoimpl.SizeCache
248 unknownFields protoimpl.UnknownFields
249
250
251 Clusters []*Cluster `protobuf:"bytes,1,rep,name=clusters,proto3" json:"clusters,omitempty"`
252
253 FailedZones []*Zone `protobuf:"bytes,2,rep,name=failed_zones,json=failedZones,proto3" json:"failed_zones,omitempty"`
254 }
255
256 func (x *ListClustersResponse) Reset() {
257 *x = ListClustersResponse{}
258 if protoimpl.UnsafeEnabled {
259 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[4]
260 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
261 ms.StoreMessageInfo(mi)
262 }
263 }
264
265 func (x *ListClustersResponse) String() string {
266 return protoimpl.X.MessageStringOf(x)
267 }
268
269 func (*ListClustersResponse) ProtoMessage() {}
270
271 func (x *ListClustersResponse) ProtoReflect() protoreflect.Message {
272 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[4]
273 if protoimpl.UnsafeEnabled && x != nil {
274 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
275 if ms.LoadMessageInfo() == nil {
276 ms.StoreMessageInfo(mi)
277 }
278 return ms
279 }
280 return mi.MessageOf(x)
281 }
282
283
284 func (*ListClustersResponse) Descriptor() ([]byte, []int) {
285 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{4}
286 }
287
288 func (x *ListClustersResponse) GetClusters() []*Cluster {
289 if x != nil {
290 return x.Clusters
291 }
292 return nil
293 }
294
295 func (x *ListClustersResponse) GetFailedZones() []*Zone {
296 if x != nil {
297 return x.FailedZones
298 }
299 return nil
300 }
301
302
303 type CreateClusterRequest struct {
304 state protoimpl.MessageState
305 sizeCache protoimpl.SizeCache
306 unknownFields protoimpl.UnknownFields
307
308
309
310 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
311
312
313
314 ClusterId string `protobuf:"bytes,2,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
315
316
317
318 Cluster *Cluster `protobuf:"bytes,3,opt,name=cluster,proto3" json:"cluster,omitempty"`
319 }
320
321 func (x *CreateClusterRequest) Reset() {
322 *x = CreateClusterRequest{}
323 if protoimpl.UnsafeEnabled {
324 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[5]
325 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
326 ms.StoreMessageInfo(mi)
327 }
328 }
329
330 func (x *CreateClusterRequest) String() string {
331 return protoimpl.X.MessageStringOf(x)
332 }
333
334 func (*CreateClusterRequest) ProtoMessage() {}
335
336 func (x *CreateClusterRequest) ProtoReflect() protoreflect.Message {
337 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[5]
338 if protoimpl.UnsafeEnabled && x != nil {
339 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
340 if ms.LoadMessageInfo() == nil {
341 ms.StoreMessageInfo(mi)
342 }
343 return ms
344 }
345 return mi.MessageOf(x)
346 }
347
348
349 func (*CreateClusterRequest) Descriptor() ([]byte, []int) {
350 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{5}
351 }
352
353 func (x *CreateClusterRequest) GetName() string {
354 if x != nil {
355 return x.Name
356 }
357 return ""
358 }
359
360 func (x *CreateClusterRequest) GetClusterId() string {
361 if x != nil {
362 return x.ClusterId
363 }
364 return ""
365 }
366
367 func (x *CreateClusterRequest) GetCluster() *Cluster {
368 if x != nil {
369 return x.Cluster
370 }
371 return nil
372 }
373
374
375
376 type CreateClusterMetadata struct {
377 state protoimpl.MessageState
378 sizeCache protoimpl.SizeCache
379 unknownFields protoimpl.UnknownFields
380
381
382 OriginalRequest *CreateClusterRequest `protobuf:"bytes,1,opt,name=original_request,json=originalRequest,proto3" json:"original_request,omitempty"`
383
384 RequestTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=request_time,json=requestTime,proto3" json:"request_time,omitempty"`
385
386 FinishTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=finish_time,json=finishTime,proto3" json:"finish_time,omitempty"`
387 }
388
389 func (x *CreateClusterMetadata) Reset() {
390 *x = CreateClusterMetadata{}
391 if protoimpl.UnsafeEnabled {
392 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[6]
393 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
394 ms.StoreMessageInfo(mi)
395 }
396 }
397
398 func (x *CreateClusterMetadata) String() string {
399 return protoimpl.X.MessageStringOf(x)
400 }
401
402 func (*CreateClusterMetadata) ProtoMessage() {}
403
404 func (x *CreateClusterMetadata) ProtoReflect() protoreflect.Message {
405 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[6]
406 if protoimpl.UnsafeEnabled && x != nil {
407 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
408 if ms.LoadMessageInfo() == nil {
409 ms.StoreMessageInfo(mi)
410 }
411 return ms
412 }
413 return mi.MessageOf(x)
414 }
415
416
417 func (*CreateClusterMetadata) Descriptor() ([]byte, []int) {
418 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{6}
419 }
420
421 func (x *CreateClusterMetadata) GetOriginalRequest() *CreateClusterRequest {
422 if x != nil {
423 return x.OriginalRequest
424 }
425 return nil
426 }
427
428 func (x *CreateClusterMetadata) GetRequestTime() *timestamppb.Timestamp {
429 if x != nil {
430 return x.RequestTime
431 }
432 return nil
433 }
434
435 func (x *CreateClusterMetadata) GetFinishTime() *timestamppb.Timestamp {
436 if x != nil {
437 return x.FinishTime
438 }
439 return nil
440 }
441
442
443
444 type UpdateClusterMetadata struct {
445 state protoimpl.MessageState
446 sizeCache protoimpl.SizeCache
447 unknownFields protoimpl.UnknownFields
448
449
450 OriginalRequest *Cluster `protobuf:"bytes,1,opt,name=original_request,json=originalRequest,proto3" json:"original_request,omitempty"`
451
452 RequestTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=request_time,json=requestTime,proto3" json:"request_time,omitempty"`
453
454
455
456 CancelTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=cancel_time,json=cancelTime,proto3" json:"cancel_time,omitempty"`
457
458 FinishTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=finish_time,json=finishTime,proto3" json:"finish_time,omitempty"`
459 }
460
461 func (x *UpdateClusterMetadata) Reset() {
462 *x = UpdateClusterMetadata{}
463 if protoimpl.UnsafeEnabled {
464 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[7]
465 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
466 ms.StoreMessageInfo(mi)
467 }
468 }
469
470 func (x *UpdateClusterMetadata) String() string {
471 return protoimpl.X.MessageStringOf(x)
472 }
473
474 func (*UpdateClusterMetadata) ProtoMessage() {}
475
476 func (x *UpdateClusterMetadata) ProtoReflect() protoreflect.Message {
477 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[7]
478 if protoimpl.UnsafeEnabled && x != nil {
479 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
480 if ms.LoadMessageInfo() == nil {
481 ms.StoreMessageInfo(mi)
482 }
483 return ms
484 }
485 return mi.MessageOf(x)
486 }
487
488
489 func (*UpdateClusterMetadata) Descriptor() ([]byte, []int) {
490 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{7}
491 }
492
493 func (x *UpdateClusterMetadata) GetOriginalRequest() *Cluster {
494 if x != nil {
495 return x.OriginalRequest
496 }
497 return nil
498 }
499
500 func (x *UpdateClusterMetadata) GetRequestTime() *timestamppb.Timestamp {
501 if x != nil {
502 return x.RequestTime
503 }
504 return nil
505 }
506
507 func (x *UpdateClusterMetadata) GetCancelTime() *timestamppb.Timestamp {
508 if x != nil {
509 return x.CancelTime
510 }
511 return nil
512 }
513
514 func (x *UpdateClusterMetadata) GetFinishTime() *timestamppb.Timestamp {
515 if x != nil {
516 return x.FinishTime
517 }
518 return nil
519 }
520
521
522 type DeleteClusterRequest struct {
523 state protoimpl.MessageState
524 sizeCache protoimpl.SizeCache
525 unknownFields protoimpl.UnknownFields
526
527
528
529 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
530 }
531
532 func (x *DeleteClusterRequest) Reset() {
533 *x = DeleteClusterRequest{}
534 if protoimpl.UnsafeEnabled {
535 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[8]
536 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
537 ms.StoreMessageInfo(mi)
538 }
539 }
540
541 func (x *DeleteClusterRequest) String() string {
542 return protoimpl.X.MessageStringOf(x)
543 }
544
545 func (*DeleteClusterRequest) ProtoMessage() {}
546
547 func (x *DeleteClusterRequest) ProtoReflect() protoreflect.Message {
548 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[8]
549 if protoimpl.UnsafeEnabled && x != nil {
550 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
551 if ms.LoadMessageInfo() == nil {
552 ms.StoreMessageInfo(mi)
553 }
554 return ms
555 }
556 return mi.MessageOf(x)
557 }
558
559
560 func (*DeleteClusterRequest) Descriptor() ([]byte, []int) {
561 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{8}
562 }
563
564 func (x *DeleteClusterRequest) GetName() string {
565 if x != nil {
566 return x.Name
567 }
568 return ""
569 }
570
571
572 type UndeleteClusterRequest struct {
573 state protoimpl.MessageState
574 sizeCache protoimpl.SizeCache
575 unknownFields protoimpl.UnknownFields
576
577
578
579 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
580 }
581
582 func (x *UndeleteClusterRequest) Reset() {
583 *x = UndeleteClusterRequest{}
584 if protoimpl.UnsafeEnabled {
585 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[9]
586 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
587 ms.StoreMessageInfo(mi)
588 }
589 }
590
591 func (x *UndeleteClusterRequest) String() string {
592 return protoimpl.X.MessageStringOf(x)
593 }
594
595 func (*UndeleteClusterRequest) ProtoMessage() {}
596
597 func (x *UndeleteClusterRequest) ProtoReflect() protoreflect.Message {
598 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[9]
599 if protoimpl.UnsafeEnabled && x != nil {
600 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
601 if ms.LoadMessageInfo() == nil {
602 ms.StoreMessageInfo(mi)
603 }
604 return ms
605 }
606 return mi.MessageOf(x)
607 }
608
609
610 func (*UndeleteClusterRequest) Descriptor() ([]byte, []int) {
611 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{9}
612 }
613
614 func (x *UndeleteClusterRequest) GetName() string {
615 if x != nil {
616 return x.Name
617 }
618 return ""
619 }
620
621
622
623 type UndeleteClusterMetadata struct {
624 state protoimpl.MessageState
625 sizeCache protoimpl.SizeCache
626 unknownFields protoimpl.UnknownFields
627
628
629 RequestTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=request_time,json=requestTime,proto3" json:"request_time,omitempty"`
630
631 FinishTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=finish_time,json=finishTime,proto3" json:"finish_time,omitempty"`
632 }
633
634 func (x *UndeleteClusterMetadata) Reset() {
635 *x = UndeleteClusterMetadata{}
636 if protoimpl.UnsafeEnabled {
637 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[10]
638 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
639 ms.StoreMessageInfo(mi)
640 }
641 }
642
643 func (x *UndeleteClusterMetadata) String() string {
644 return protoimpl.X.MessageStringOf(x)
645 }
646
647 func (*UndeleteClusterMetadata) ProtoMessage() {}
648
649 func (x *UndeleteClusterMetadata) ProtoReflect() protoreflect.Message {
650 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[10]
651 if protoimpl.UnsafeEnabled && x != nil {
652 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
653 if ms.LoadMessageInfo() == nil {
654 ms.StoreMessageInfo(mi)
655 }
656 return ms
657 }
658 return mi.MessageOf(x)
659 }
660
661
662 func (*UndeleteClusterMetadata) Descriptor() ([]byte, []int) {
663 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{10}
664 }
665
666 func (x *UndeleteClusterMetadata) GetRequestTime() *timestamppb.Timestamp {
667 if x != nil {
668 return x.RequestTime
669 }
670 return nil
671 }
672
673 func (x *UndeleteClusterMetadata) GetFinishTime() *timestamppb.Timestamp {
674 if x != nil {
675 return x.FinishTime
676 }
677 return nil
678 }
679
680
681
682 type V2OperationMetadata struct {
683 state protoimpl.MessageState
684 sizeCache protoimpl.SizeCache
685 unknownFields protoimpl.UnknownFields
686 }
687
688 func (x *V2OperationMetadata) Reset() {
689 *x = V2OperationMetadata{}
690 if protoimpl.UnsafeEnabled {
691 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[11]
692 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
693 ms.StoreMessageInfo(mi)
694 }
695 }
696
697 func (x *V2OperationMetadata) String() string {
698 return protoimpl.X.MessageStringOf(x)
699 }
700
701 func (*V2OperationMetadata) ProtoMessage() {}
702
703 func (x *V2OperationMetadata) ProtoReflect() protoreflect.Message {
704 mi := &file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[11]
705 if protoimpl.UnsafeEnabled && x != nil {
706 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
707 if ms.LoadMessageInfo() == nil {
708 ms.StoreMessageInfo(mi)
709 }
710 return ms
711 }
712 return mi.MessageOf(x)
713 }
714
715
716 func (*V2OperationMetadata) Descriptor() ([]byte, []int) {
717 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP(), []int{11}
718 }
719
720 var File_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto protoreflect.FileDescriptor
721
722 var file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDesc = []byte{
723 0x0a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c,
724 0x65, 0x2f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2f,
725 0x76, 0x31, 0x2f, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6c, 0x75, 0x73,
726 0x74, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6d, 0x65, 0x73, 0x73,
727 0x61, 0x67, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x67, 0x6f, 0x6f, 0x67,
728 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69,
729 0x6e, 0x2e, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x1a, 0x3c, 0x67, 0x6f,
730 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x61, 0x64,
731 0x6d, 0x69, 0x6e, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x62,
732 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f,
733 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
734 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65,
735 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x26, 0x0a, 0x10, 0x4c,
736 0x69, 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
737 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
738 0x61, 0x6d, 0x65, 0x22, 0x51, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73,
739 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x05, 0x7a, 0x6f, 0x6e, 0x65,
740 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
741 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e,
742 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x52,
743 0x05, 0x7a, 0x6f, 0x6e, 0x65, 0x73, 0x22, 0x27, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x43, 0x6c, 0x75,
744 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
745 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22,
746 0x29, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x52,
747 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
748 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xa8, 0x01, 0x0a, 0x14, 0x4c,
749 0x69, 0x73, 0x74, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
750 0x6e, 0x73, 0x65, 0x12, 0x45, 0x0a, 0x08, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18,
751 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62,
752 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x63, 0x6c,
753 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
754 0x52, 0x08, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x12, 0x49, 0x0a, 0x0c, 0x66, 0x61,
755 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,
756 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62,
757 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
758 0x2e, 0x76, 0x31, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x0b, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
759 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x22, 0x8e, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
760 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
761 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
762 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64,
763 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49,
764 0x64, 0x12, 0x43, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
765 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74,
766 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x63, 0x6c, 0x75, 0x73, 0x74,
767 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x07, 0x63,
768 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x22, 0xf6, 0x01, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74,
769 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
770 0x12, 0x61, 0x0a, 0x10, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x71,
771 0x75, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f,
772 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d,
773 0x69, 0x6e, 0x2e, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72,
774 0x65, 0x61, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
775 0x73, 0x74, 0x52, 0x0f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75,
776 0x65, 0x73, 0x74, 0x12, 0x3d, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74,
777 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
778 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
779 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x69,
780 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x5f, 0x74, 0x69, 0x6d,
781 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
782 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
783 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22,
784 0xa6, 0x02, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
785 0x72, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x54, 0x0a, 0x10, 0x6f, 0x72, 0x69,
786 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20,
787 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x62, 0x69, 0x67,
788 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x63, 0x6c, 0x75, 0x73,
789 0x74, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x0f,
790 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
791 0x3d, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
792 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
793 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
794 0x70, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3b,
795 0x0a, 0x0b, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
796 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
797 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
798 0x0a, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x66,
799 0x69, 0x6e, 0x69, 0x73, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
800 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
801 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x66, 0x69,
802 0x6e, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x2a, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65,
803 0x74, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
804 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
805 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x2c, 0x0a, 0x16, 0x55, 0x6e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
806 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
807 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
808 0x6d, 0x65, 0x22, 0x95, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,
809 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x3d,
810 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01,
811 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
812 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
813 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3b, 0x0a,
814 0x0b, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
815 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
816 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
817 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x32,
818 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
819 0x61, 0x42, 0x96, 0x01, 0x0a, 0x24, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
820 0x2e, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e,
821 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x42, 0x23, 0x42, 0x69, 0x67, 0x74,
822 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69,
823 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
824 0x01, 0x5a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
825 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
826 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x62, 0x69, 0x67, 0x74, 0x61, 0x62, 0x6c,
827 0x65, 0x2f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2f,
828 0x76, 0x31, 0x3b, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
829 0x6f, 0x33,
830 }
831
832 var (
833 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescOnce sync.Once
834 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescData = file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDesc
835 )
836
837 func file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescGZIP() []byte {
838 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescOnce.Do(func() {
839 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescData)
840 })
841 return file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDescData
842 }
843
844 var file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
845 var file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_goTypes = []interface{}{
846 (*ListZonesRequest)(nil),
847 (*ListZonesResponse)(nil),
848 (*GetClusterRequest)(nil),
849 (*ListClustersRequest)(nil),
850 (*ListClustersResponse)(nil),
851 (*CreateClusterRequest)(nil),
852 (*CreateClusterMetadata)(nil),
853 (*UpdateClusterMetadata)(nil),
854 (*DeleteClusterRequest)(nil),
855 (*UndeleteClusterRequest)(nil),
856 (*UndeleteClusterMetadata)(nil),
857 (*V2OperationMetadata)(nil),
858 (*Zone)(nil),
859 (*Cluster)(nil),
860 (*timestamppb.Timestamp)(nil),
861 }
862 var file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_depIdxs = []int32{
863 12,
864 13,
865 12,
866 13,
867 5,
868 14,
869 14,
870 13,
871 14,
872 14,
873 14,
874 14,
875 14,
876 13,
877 13,
878 13,
879 13,
880 0,
881 }
882
883 func init() { file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_init() }
884 func file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_init() {
885 if File_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto != nil {
886 return
887 }
888 file_google_bigtable_admin_cluster_v1_bigtable_cluster_data_proto_init()
889 if !protoimpl.UnsafeEnabled {
890 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
891 switch v := v.(*ListZonesRequest); i {
892 case 0:
893 return &v.state
894 case 1:
895 return &v.sizeCache
896 case 2:
897 return &v.unknownFields
898 default:
899 return nil
900 }
901 }
902 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
903 switch v := v.(*ListZonesResponse); i {
904 case 0:
905 return &v.state
906 case 1:
907 return &v.sizeCache
908 case 2:
909 return &v.unknownFields
910 default:
911 return nil
912 }
913 }
914 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
915 switch v := v.(*GetClusterRequest); i {
916 case 0:
917 return &v.state
918 case 1:
919 return &v.sizeCache
920 case 2:
921 return &v.unknownFields
922 default:
923 return nil
924 }
925 }
926 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
927 switch v := v.(*ListClustersRequest); i {
928 case 0:
929 return &v.state
930 case 1:
931 return &v.sizeCache
932 case 2:
933 return &v.unknownFields
934 default:
935 return nil
936 }
937 }
938 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
939 switch v := v.(*ListClustersResponse); i {
940 case 0:
941 return &v.state
942 case 1:
943 return &v.sizeCache
944 case 2:
945 return &v.unknownFields
946 default:
947 return nil
948 }
949 }
950 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
951 switch v := v.(*CreateClusterRequest); i {
952 case 0:
953 return &v.state
954 case 1:
955 return &v.sizeCache
956 case 2:
957 return &v.unknownFields
958 default:
959 return nil
960 }
961 }
962 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
963 switch v := v.(*CreateClusterMetadata); i {
964 case 0:
965 return &v.state
966 case 1:
967 return &v.sizeCache
968 case 2:
969 return &v.unknownFields
970 default:
971 return nil
972 }
973 }
974 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
975 switch v := v.(*UpdateClusterMetadata); i {
976 case 0:
977 return &v.state
978 case 1:
979 return &v.sizeCache
980 case 2:
981 return &v.unknownFields
982 default:
983 return nil
984 }
985 }
986 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
987 switch v := v.(*DeleteClusterRequest); i {
988 case 0:
989 return &v.state
990 case 1:
991 return &v.sizeCache
992 case 2:
993 return &v.unknownFields
994 default:
995 return nil
996 }
997 }
998 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
999 switch v := v.(*UndeleteClusterRequest); i {
1000 case 0:
1001 return &v.state
1002 case 1:
1003 return &v.sizeCache
1004 case 2:
1005 return &v.unknownFields
1006 default:
1007 return nil
1008 }
1009 }
1010 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
1011 switch v := v.(*UndeleteClusterMetadata); i {
1012 case 0:
1013 return &v.state
1014 case 1:
1015 return &v.sizeCache
1016 case 2:
1017 return &v.unknownFields
1018 default:
1019 return nil
1020 }
1021 }
1022 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
1023 switch v := v.(*V2OperationMetadata); i {
1024 case 0:
1025 return &v.state
1026 case 1:
1027 return &v.sizeCache
1028 case 2:
1029 return &v.unknownFields
1030 default:
1031 return nil
1032 }
1033 }
1034 }
1035 type x struct{}
1036 out := protoimpl.TypeBuilder{
1037 File: protoimpl.DescBuilder{
1038 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1039 RawDescriptor: file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDesc,
1040 NumEnums: 0,
1041 NumMessages: 12,
1042 NumExtensions: 0,
1043 NumServices: 0,
1044 },
1045 GoTypes: file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_goTypes,
1046 DependencyIndexes: file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_depIdxs,
1047 MessageInfos: file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_msgTypes,
1048 }.Build()
1049 File_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto = out.File
1050 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_rawDesc = nil
1051 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_goTypes = nil
1052 file_google_bigtable_admin_cluster_v1_bigtable_cluster_service_messages_proto_depIdxs = nil
1053 }
1054
View as plain text