1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package labels
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 _ "google.golang.org/genproto/googleapis/api/annotations"
28 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
29 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
30 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
31 )
32
33 const (
34
35 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
36
37 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
38 )
39
40
41
42
43 type LabelView int32
44
45 const (
46
47
48 LabelView_LABEL_VIEW_BASIC LabelView = 0
49
50 LabelView_LABEL_VIEW_FULL LabelView = 1
51 )
52
53
54 var (
55 LabelView_name = map[int32]string{
56 0: "LABEL_VIEW_BASIC",
57 1: "LABEL_VIEW_FULL",
58 }
59 LabelView_value = map[string]int32{
60 "LABEL_VIEW_BASIC": 0,
61 "LABEL_VIEW_FULL": 1,
62 }
63 )
64
65 func (x LabelView) Enum() *LabelView {
66 p := new(LabelView)
67 *p = x
68 return p
69 }
70
71 func (x LabelView) String() string {
72 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
73 }
74
75 func (LabelView) Descriptor() protoreflect.EnumDescriptor {
76 return file_google_apps_drive_labels_v2_requests_proto_enumTypes[0].Descriptor()
77 }
78
79 func (LabelView) Type() protoreflect.EnumType {
80 return &file_google_apps_drive_labels_v2_requests_proto_enumTypes[0]
81 }
82
83 func (x LabelView) Number() protoreflect.EnumNumber {
84 return protoreflect.EnumNumber(x)
85 }
86
87
88 func (LabelView) EnumDescriptor() ([]byte, []int) {
89 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{0}
90 }
91
92
93
94 type WriteControl struct {
95 state protoimpl.MessageState
96 sizeCache protoimpl.SizeCache
97 unknownFields protoimpl.UnknownFields
98
99
100
101
102
103
104
105
106 Control isWriteControl_Control `protobuf_oneof:"control"`
107 }
108
109 func (x *WriteControl) Reset() {
110 *x = WriteControl{}
111 if protoimpl.UnsafeEnabled {
112 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[0]
113 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
114 ms.StoreMessageInfo(mi)
115 }
116 }
117
118 func (x *WriteControl) String() string {
119 return protoimpl.X.MessageStringOf(x)
120 }
121
122 func (*WriteControl) ProtoMessage() {}
123
124 func (x *WriteControl) ProtoReflect() protoreflect.Message {
125 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[0]
126 if protoimpl.UnsafeEnabled && x != nil {
127 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
128 if ms.LoadMessageInfo() == nil {
129 ms.StoreMessageInfo(mi)
130 }
131 return ms
132 }
133 return mi.MessageOf(x)
134 }
135
136
137 func (*WriteControl) Descriptor() ([]byte, []int) {
138 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{0}
139 }
140
141 func (m *WriteControl) GetControl() isWriteControl_Control {
142 if m != nil {
143 return m.Control
144 }
145 return nil
146 }
147
148 func (x *WriteControl) GetRequiredRevisionId() string {
149 if x, ok := x.GetControl().(*WriteControl_RequiredRevisionId); ok {
150 return x.RequiredRevisionId
151 }
152 return ""
153 }
154
155 type isWriteControl_Control interface {
156 isWriteControl_Control()
157 }
158
159 type WriteControl_RequiredRevisionId struct {
160
161
162
163
164 RequiredRevisionId string `protobuf:"bytes,1,opt,name=required_revision_id,json=requiredRevisionId,proto3,oneof"`
165 }
166
167 func (*WriteControl_RequiredRevisionId) isWriteControl_Control() {}
168
169
170 type GetUserCapabilitiesRequest struct {
171 state protoimpl.MessageState
172 sizeCache protoimpl.SizeCache
173 unknownFields protoimpl.UnknownFields
174
175
176
177 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
178
179
180
181 Customer string `protobuf:"bytes,2,opt,name=customer,proto3" json:"customer,omitempty"`
182 }
183
184 func (x *GetUserCapabilitiesRequest) Reset() {
185 *x = GetUserCapabilitiesRequest{}
186 if protoimpl.UnsafeEnabled {
187 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[1]
188 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
189 ms.StoreMessageInfo(mi)
190 }
191 }
192
193 func (x *GetUserCapabilitiesRequest) String() string {
194 return protoimpl.X.MessageStringOf(x)
195 }
196
197 func (*GetUserCapabilitiesRequest) ProtoMessage() {}
198
199 func (x *GetUserCapabilitiesRequest) ProtoReflect() protoreflect.Message {
200 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[1]
201 if protoimpl.UnsafeEnabled && x != nil {
202 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
203 if ms.LoadMessageInfo() == nil {
204 ms.StoreMessageInfo(mi)
205 }
206 return ms
207 }
208 return mi.MessageOf(x)
209 }
210
211
212 func (*GetUserCapabilitiesRequest) Descriptor() ([]byte, []int) {
213 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{1}
214 }
215
216 func (x *GetUserCapabilitiesRequest) GetName() string {
217 if x != nil {
218 return x.Name
219 }
220 return ""
221 }
222
223 func (x *GetUserCapabilitiesRequest) GetCustomer() string {
224 if x != nil {
225 return x.Customer
226 }
227 return ""
228 }
229
230
231 type CreateLabelRequest struct {
232 state protoimpl.MessageState
233 sizeCache protoimpl.SizeCache
234 unknownFields protoimpl.UnknownFields
235
236
237 Label *Label `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
238
239
240 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
241
242
243
244 LanguageCode string `protobuf:"bytes,3,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
245 }
246
247 func (x *CreateLabelRequest) Reset() {
248 *x = CreateLabelRequest{}
249 if protoimpl.UnsafeEnabled {
250 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[2]
251 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
252 ms.StoreMessageInfo(mi)
253 }
254 }
255
256 func (x *CreateLabelRequest) String() string {
257 return protoimpl.X.MessageStringOf(x)
258 }
259
260 func (*CreateLabelRequest) ProtoMessage() {}
261
262 func (x *CreateLabelRequest) ProtoReflect() protoreflect.Message {
263 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[2]
264 if protoimpl.UnsafeEnabled && x != nil {
265 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
266 if ms.LoadMessageInfo() == nil {
267 ms.StoreMessageInfo(mi)
268 }
269 return ms
270 }
271 return mi.MessageOf(x)
272 }
273
274
275 func (*CreateLabelRequest) Descriptor() ([]byte, []int) {
276 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{2}
277 }
278
279 func (x *CreateLabelRequest) GetLabel() *Label {
280 if x != nil {
281 return x.Label
282 }
283 return nil
284 }
285
286 func (x *CreateLabelRequest) GetUseAdminAccess() bool {
287 if x != nil {
288 return x.UseAdminAccess
289 }
290 return false
291 }
292
293 func (x *CreateLabelRequest) GetLanguageCode() string {
294 if x != nil {
295 return x.LanguageCode
296 }
297 return ""
298 }
299
300
301 type GetLabelRequest struct {
302 state protoimpl.MessageState
303 sizeCache protoimpl.SizeCache
304 unknownFields protoimpl.UnknownFields
305
306
307
308
309
310
311
312
313
314 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
315
316
317 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
318
319
320 LanguageCode string `protobuf:"bytes,3,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
321
322
323 View LabelView `protobuf:"varint,4,opt,name=view,proto3,enum=google.apps.drive.labels.v2.LabelView" json:"view,omitempty"`
324 }
325
326 func (x *GetLabelRequest) Reset() {
327 *x = GetLabelRequest{}
328 if protoimpl.UnsafeEnabled {
329 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[3]
330 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
331 ms.StoreMessageInfo(mi)
332 }
333 }
334
335 func (x *GetLabelRequest) String() string {
336 return protoimpl.X.MessageStringOf(x)
337 }
338
339 func (*GetLabelRequest) ProtoMessage() {}
340
341 func (x *GetLabelRequest) ProtoReflect() protoreflect.Message {
342 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[3]
343 if protoimpl.UnsafeEnabled && x != nil {
344 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
345 if ms.LoadMessageInfo() == nil {
346 ms.StoreMessageInfo(mi)
347 }
348 return ms
349 }
350 return mi.MessageOf(x)
351 }
352
353
354 func (*GetLabelRequest) Descriptor() ([]byte, []int) {
355 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{3}
356 }
357
358 func (x *GetLabelRequest) GetName() string {
359 if x != nil {
360 return x.Name
361 }
362 return ""
363 }
364
365 func (x *GetLabelRequest) GetUseAdminAccess() bool {
366 if x != nil {
367 return x.UseAdminAccess
368 }
369 return false
370 }
371
372 func (x *GetLabelRequest) GetLanguageCode() string {
373 if x != nil {
374 return x.LanguageCode
375 }
376 return ""
377 }
378
379 func (x *GetLabelRequest) GetView() LabelView {
380 if x != nil {
381 return x.View
382 }
383 return LabelView_LABEL_VIEW_BASIC
384 }
385
386
387
388 type DeltaUpdateLabelRequest struct {
389 state protoimpl.MessageState
390 sizeCache protoimpl.SizeCache
391 unknownFields protoimpl.UnknownFields
392
393
394 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
395
396 WriteControl *WriteControl `protobuf:"bytes,2,opt,name=write_control,json=writeControl,proto3" json:"write_control,omitempty"`
397
398
399 Requests []*DeltaUpdateLabelRequest_Request `protobuf:"bytes,3,rep,name=requests,proto3" json:"requests,omitempty"`
400
401
402 UseAdminAccess bool `protobuf:"varint,4,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
403
404
405 View LabelView `protobuf:"varint,5,opt,name=view,proto3,enum=google.apps.drive.labels.v2.LabelView" json:"view,omitempty"`
406
407
408 LanguageCode string `protobuf:"bytes,6,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
409 }
410
411 func (x *DeltaUpdateLabelRequest) Reset() {
412 *x = DeltaUpdateLabelRequest{}
413 if protoimpl.UnsafeEnabled {
414 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[4]
415 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
416 ms.StoreMessageInfo(mi)
417 }
418 }
419
420 func (x *DeltaUpdateLabelRequest) String() string {
421 return protoimpl.X.MessageStringOf(x)
422 }
423
424 func (*DeltaUpdateLabelRequest) ProtoMessage() {}
425
426 func (x *DeltaUpdateLabelRequest) ProtoReflect() protoreflect.Message {
427 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[4]
428 if protoimpl.UnsafeEnabled && x != nil {
429 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
430 if ms.LoadMessageInfo() == nil {
431 ms.StoreMessageInfo(mi)
432 }
433 return ms
434 }
435 return mi.MessageOf(x)
436 }
437
438
439 func (*DeltaUpdateLabelRequest) Descriptor() ([]byte, []int) {
440 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4}
441 }
442
443 func (x *DeltaUpdateLabelRequest) GetName() string {
444 if x != nil {
445 return x.Name
446 }
447 return ""
448 }
449
450 func (x *DeltaUpdateLabelRequest) GetWriteControl() *WriteControl {
451 if x != nil {
452 return x.WriteControl
453 }
454 return nil
455 }
456
457 func (x *DeltaUpdateLabelRequest) GetRequests() []*DeltaUpdateLabelRequest_Request {
458 if x != nil {
459 return x.Requests
460 }
461 return nil
462 }
463
464 func (x *DeltaUpdateLabelRequest) GetUseAdminAccess() bool {
465 if x != nil {
466 return x.UseAdminAccess
467 }
468 return false
469 }
470
471 func (x *DeltaUpdateLabelRequest) GetView() LabelView {
472 if x != nil {
473 return x.View
474 }
475 return LabelView_LABEL_VIEW_BASIC
476 }
477
478 func (x *DeltaUpdateLabelRequest) GetLanguageCode() string {
479 if x != nil {
480 return x.LanguageCode
481 }
482 return ""
483 }
484
485
486 type DeltaUpdateLabelResponse struct {
487 state protoimpl.MessageState
488 sizeCache protoimpl.SizeCache
489 unknownFields protoimpl.UnknownFields
490
491
492
493 Responses []*DeltaUpdateLabelResponse_Response `protobuf:"bytes,1,rep,name=responses,proto3" json:"responses,omitempty"`
494
495
496
497 UpdatedLabel *Label `protobuf:"bytes,6,opt,name=updated_label,json=updatedLabel,proto3" json:"updated_label,omitempty"`
498 }
499
500 func (x *DeltaUpdateLabelResponse) Reset() {
501 *x = DeltaUpdateLabelResponse{}
502 if protoimpl.UnsafeEnabled {
503 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[5]
504 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
505 ms.StoreMessageInfo(mi)
506 }
507 }
508
509 func (x *DeltaUpdateLabelResponse) String() string {
510 return protoimpl.X.MessageStringOf(x)
511 }
512
513 func (*DeltaUpdateLabelResponse) ProtoMessage() {}
514
515 func (x *DeltaUpdateLabelResponse) ProtoReflect() protoreflect.Message {
516 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[5]
517 if protoimpl.UnsafeEnabled && x != nil {
518 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
519 if ms.LoadMessageInfo() == nil {
520 ms.StoreMessageInfo(mi)
521 }
522 return ms
523 }
524 return mi.MessageOf(x)
525 }
526
527
528 func (*DeltaUpdateLabelResponse) Descriptor() ([]byte, []int) {
529 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5}
530 }
531
532 func (x *DeltaUpdateLabelResponse) GetResponses() []*DeltaUpdateLabelResponse_Response {
533 if x != nil {
534 return x.Responses
535 }
536 return nil
537 }
538
539 func (x *DeltaUpdateLabelResponse) GetUpdatedLabel() *Label {
540 if x != nil {
541 return x.UpdatedLabel
542 }
543 return nil
544 }
545
546
547
548
549 type UpdateLabelCopyModeRequest struct {
550 state protoimpl.MessageState
551 sizeCache protoimpl.SizeCache
552 unknownFields protoimpl.UnknownFields
553
554
555 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
556
557
558 CopyMode Label_AppliedLabelPolicy_CopyMode `protobuf:"varint,2,opt,name=copy_mode,json=copyMode,proto3,enum=google.apps.drive.labels.v2.Label_AppliedLabelPolicy_CopyMode" json:"copy_mode,omitempty"`
559
560
561 UseAdminAccess bool `protobuf:"varint,3,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
562
563
564 LanguageCode string `protobuf:"bytes,4,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
565
566
567 View LabelView `protobuf:"varint,5,opt,name=view,proto3,enum=google.apps.drive.labels.v2.LabelView" json:"view,omitempty"`
568 }
569
570 func (x *UpdateLabelCopyModeRequest) Reset() {
571 *x = UpdateLabelCopyModeRequest{}
572 if protoimpl.UnsafeEnabled {
573 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[6]
574 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
575 ms.StoreMessageInfo(mi)
576 }
577 }
578
579 func (x *UpdateLabelCopyModeRequest) String() string {
580 return protoimpl.X.MessageStringOf(x)
581 }
582
583 func (*UpdateLabelCopyModeRequest) ProtoMessage() {}
584
585 func (x *UpdateLabelCopyModeRequest) ProtoReflect() protoreflect.Message {
586 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[6]
587 if protoimpl.UnsafeEnabled && x != nil {
588 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
589 if ms.LoadMessageInfo() == nil {
590 ms.StoreMessageInfo(mi)
591 }
592 return ms
593 }
594 return mi.MessageOf(x)
595 }
596
597
598 func (*UpdateLabelCopyModeRequest) Descriptor() ([]byte, []int) {
599 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{6}
600 }
601
602 func (x *UpdateLabelCopyModeRequest) GetName() string {
603 if x != nil {
604 return x.Name
605 }
606 return ""
607 }
608
609 func (x *UpdateLabelCopyModeRequest) GetCopyMode() Label_AppliedLabelPolicy_CopyMode {
610 if x != nil {
611 return x.CopyMode
612 }
613 return Label_AppliedLabelPolicy_COPY_MODE_UNSPECIFIED
614 }
615
616 func (x *UpdateLabelCopyModeRequest) GetUseAdminAccess() bool {
617 if x != nil {
618 return x.UseAdminAccess
619 }
620 return false
621 }
622
623 func (x *UpdateLabelCopyModeRequest) GetLanguageCode() string {
624 if x != nil {
625 return x.LanguageCode
626 }
627 return ""
628 }
629
630 func (x *UpdateLabelCopyModeRequest) GetView() LabelView {
631 if x != nil {
632 return x.View
633 }
634 return LabelView_LABEL_VIEW_BASIC
635 }
636
637
638 type GetLabelLimitsRequest struct {
639 state protoimpl.MessageState
640 sizeCache protoimpl.SizeCache
641 unknownFields protoimpl.UnknownFields
642
643
644
645 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
646 }
647
648 func (x *GetLabelLimitsRequest) Reset() {
649 *x = GetLabelLimitsRequest{}
650 if protoimpl.UnsafeEnabled {
651 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[7]
652 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
653 ms.StoreMessageInfo(mi)
654 }
655 }
656
657 func (x *GetLabelLimitsRequest) String() string {
658 return protoimpl.X.MessageStringOf(x)
659 }
660
661 func (*GetLabelLimitsRequest) ProtoMessage() {}
662
663 func (x *GetLabelLimitsRequest) ProtoReflect() protoreflect.Message {
664 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[7]
665 if protoimpl.UnsafeEnabled && x != nil {
666 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
667 if ms.LoadMessageInfo() == nil {
668 ms.StoreMessageInfo(mi)
669 }
670 return ms
671 }
672 return mi.MessageOf(x)
673 }
674
675
676 func (*GetLabelLimitsRequest) Descriptor() ([]byte, []int) {
677 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{7}
678 }
679
680 func (x *GetLabelLimitsRequest) GetName() string {
681 if x != nil {
682 return x.Name
683 }
684 return ""
685 }
686
687
688 type ListLabelsRequest struct {
689 state protoimpl.MessageState
690 sizeCache protoimpl.SizeCache
691 unknownFields protoimpl.UnknownFields
692
693
694
695
696
697 Access isListLabelsRequest_Access `protobuf_oneof:"access"`
698
699
700
701
702
703
704
705
706 PublishedOnly bool `protobuf:"varint,1,opt,name=published_only,json=publishedOnly,proto3" json:"published_only,omitempty"`
707
708
709
710 Customer string `protobuf:"bytes,2,opt,name=customer,proto3" json:"customer,omitempty"`
711
712
713 LanguageCode string `protobuf:"bytes,5,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
714
715 PageSize int32 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
716
717 PageToken string `protobuf:"bytes,7,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
718
719
720 View LabelView `protobuf:"varint,8,opt,name=view,proto3,enum=google.apps.drive.labels.v2.LabelView" json:"view,omitempty"`
721 }
722
723 func (x *ListLabelsRequest) Reset() {
724 *x = ListLabelsRequest{}
725 if protoimpl.UnsafeEnabled {
726 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[8]
727 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
728 ms.StoreMessageInfo(mi)
729 }
730 }
731
732 func (x *ListLabelsRequest) String() string {
733 return protoimpl.X.MessageStringOf(x)
734 }
735
736 func (*ListLabelsRequest) ProtoMessage() {}
737
738 func (x *ListLabelsRequest) ProtoReflect() protoreflect.Message {
739 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[8]
740 if protoimpl.UnsafeEnabled && x != nil {
741 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
742 if ms.LoadMessageInfo() == nil {
743 ms.StoreMessageInfo(mi)
744 }
745 return ms
746 }
747 return mi.MessageOf(x)
748 }
749
750
751 func (*ListLabelsRequest) Descriptor() ([]byte, []int) {
752 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{8}
753 }
754
755 func (m *ListLabelsRequest) GetAccess() isListLabelsRequest_Access {
756 if m != nil {
757 return m.Access
758 }
759 return nil
760 }
761
762 func (x *ListLabelsRequest) GetUseAdminAccess() bool {
763 if x, ok := x.GetAccess().(*ListLabelsRequest_UseAdminAccess); ok {
764 return x.UseAdminAccess
765 }
766 return false
767 }
768
769 func (x *ListLabelsRequest) GetMinimumRole() LabelPermission_LabelRole {
770 if x, ok := x.GetAccess().(*ListLabelsRequest_MinimumRole); ok {
771 return x.MinimumRole
772 }
773 return LabelPermission_LABEL_ROLE_UNSPECIFIED
774 }
775
776 func (x *ListLabelsRequest) GetPublishedOnly() bool {
777 if x != nil {
778 return x.PublishedOnly
779 }
780 return false
781 }
782
783 func (x *ListLabelsRequest) GetCustomer() string {
784 if x != nil {
785 return x.Customer
786 }
787 return ""
788 }
789
790 func (x *ListLabelsRequest) GetLanguageCode() string {
791 if x != nil {
792 return x.LanguageCode
793 }
794 return ""
795 }
796
797 func (x *ListLabelsRequest) GetPageSize() int32 {
798 if x != nil {
799 return x.PageSize
800 }
801 return 0
802 }
803
804 func (x *ListLabelsRequest) GetPageToken() string {
805 if x != nil {
806 return x.PageToken
807 }
808 return ""
809 }
810
811 func (x *ListLabelsRequest) GetView() LabelView {
812 if x != nil {
813 return x.View
814 }
815 return LabelView_LABEL_VIEW_BASIC
816 }
817
818 type isListLabelsRequest_Access interface {
819 isListLabelsRequest_Access()
820 }
821
822 type ListLabelsRequest_UseAdminAccess struct {
823
824
825 UseAdminAccess bool `protobuf:"varint,3,opt,name=use_admin_access,json=useAdminAccess,proto3,oneof"`
826 }
827
828 type ListLabelsRequest_MinimumRole struct {
829
830
831
832 MinimumRole LabelPermission_LabelRole `protobuf:"varint,4,opt,name=minimum_role,json=minimumRole,proto3,enum=google.apps.drive.labels.v2.LabelPermission_LabelRole,oneof"`
833 }
834
835 func (*ListLabelsRequest_UseAdminAccess) isListLabelsRequest_Access() {}
836
837 func (*ListLabelsRequest_MinimumRole) isListLabelsRequest_Access() {}
838
839
840 type ListLabelsResponse struct {
841 state protoimpl.MessageState
842 sizeCache protoimpl.SizeCache
843 unknownFields protoimpl.UnknownFields
844
845
846 Labels []*Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels,omitempty"`
847
848 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
849 }
850
851 func (x *ListLabelsResponse) Reset() {
852 *x = ListLabelsResponse{}
853 if protoimpl.UnsafeEnabled {
854 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[9]
855 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
856 ms.StoreMessageInfo(mi)
857 }
858 }
859
860 func (x *ListLabelsResponse) String() string {
861 return protoimpl.X.MessageStringOf(x)
862 }
863
864 func (*ListLabelsResponse) ProtoMessage() {}
865
866 func (x *ListLabelsResponse) ProtoReflect() protoreflect.Message {
867 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[9]
868 if protoimpl.UnsafeEnabled && x != nil {
869 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
870 if ms.LoadMessageInfo() == nil {
871 ms.StoreMessageInfo(mi)
872 }
873 return ms
874 }
875 return mi.MessageOf(x)
876 }
877
878
879 func (*ListLabelsResponse) Descriptor() ([]byte, []int) {
880 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{9}
881 }
882
883 func (x *ListLabelsResponse) GetLabels() []*Label {
884 if x != nil {
885 return x.Labels
886 }
887 return nil
888 }
889
890 func (x *ListLabelsResponse) GetNextPageToken() string {
891 if x != nil {
892 return x.NextPageToken
893 }
894 return ""
895 }
896
897
898
899 type CreateLabelPermissionRequest struct {
900 state protoimpl.MessageState
901 sizeCache protoimpl.SizeCache
902 unknownFields protoimpl.UnknownFields
903
904
905
906 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
907
908 LabelPermission *LabelPermission `protobuf:"bytes,2,opt,name=label_permission,json=labelPermission,proto3" json:"label_permission,omitempty"`
909
910
911 UseAdminAccess bool `protobuf:"varint,3,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
912 }
913
914 func (x *CreateLabelPermissionRequest) Reset() {
915 *x = CreateLabelPermissionRequest{}
916 if protoimpl.UnsafeEnabled {
917 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[10]
918 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
919 ms.StoreMessageInfo(mi)
920 }
921 }
922
923 func (x *CreateLabelPermissionRequest) String() string {
924 return protoimpl.X.MessageStringOf(x)
925 }
926
927 func (*CreateLabelPermissionRequest) ProtoMessage() {}
928
929 func (x *CreateLabelPermissionRequest) ProtoReflect() protoreflect.Message {
930 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[10]
931 if protoimpl.UnsafeEnabled && x != nil {
932 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
933 if ms.LoadMessageInfo() == nil {
934 ms.StoreMessageInfo(mi)
935 }
936 return ms
937 }
938 return mi.MessageOf(x)
939 }
940
941
942 func (*CreateLabelPermissionRequest) Descriptor() ([]byte, []int) {
943 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{10}
944 }
945
946 func (x *CreateLabelPermissionRequest) GetParent() string {
947 if x != nil {
948 return x.Parent
949 }
950 return ""
951 }
952
953 func (x *CreateLabelPermissionRequest) GetLabelPermission() *LabelPermission {
954 if x != nil {
955 return x.LabelPermission
956 }
957 return nil
958 }
959
960 func (x *CreateLabelPermissionRequest) GetUseAdminAccess() bool {
961 if x != nil {
962 return x.UseAdminAccess
963 }
964 return false
965 }
966
967
968 type ListLabelPermissionsRequest struct {
969 state protoimpl.MessageState
970 sizeCache protoimpl.SizeCache
971 unknownFields protoimpl.UnknownFields
972
973
974
975 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
976
977
978 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
979
980 PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
981
982 PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
983 }
984
985 func (x *ListLabelPermissionsRequest) Reset() {
986 *x = ListLabelPermissionsRequest{}
987 if protoimpl.UnsafeEnabled {
988 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[11]
989 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
990 ms.StoreMessageInfo(mi)
991 }
992 }
993
994 func (x *ListLabelPermissionsRequest) String() string {
995 return protoimpl.X.MessageStringOf(x)
996 }
997
998 func (*ListLabelPermissionsRequest) ProtoMessage() {}
999
1000 func (x *ListLabelPermissionsRequest) ProtoReflect() protoreflect.Message {
1001 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[11]
1002 if protoimpl.UnsafeEnabled && x != nil {
1003 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1004 if ms.LoadMessageInfo() == nil {
1005 ms.StoreMessageInfo(mi)
1006 }
1007 return ms
1008 }
1009 return mi.MessageOf(x)
1010 }
1011
1012
1013 func (*ListLabelPermissionsRequest) Descriptor() ([]byte, []int) {
1014 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{11}
1015 }
1016
1017 func (x *ListLabelPermissionsRequest) GetParent() string {
1018 if x != nil {
1019 return x.Parent
1020 }
1021 return ""
1022 }
1023
1024 func (x *ListLabelPermissionsRequest) GetUseAdminAccess() bool {
1025 if x != nil {
1026 return x.UseAdminAccess
1027 }
1028 return false
1029 }
1030
1031 func (x *ListLabelPermissionsRequest) GetPageSize() int32 {
1032 if x != nil {
1033 return x.PageSize
1034 }
1035 return 0
1036 }
1037
1038 func (x *ListLabelPermissionsRequest) GetPageToken() string {
1039 if x != nil {
1040 return x.PageToken
1041 }
1042 return ""
1043 }
1044
1045
1046 type ListLabelPermissionsResponse struct {
1047 state protoimpl.MessageState
1048 sizeCache protoimpl.SizeCache
1049 unknownFields protoimpl.UnknownFields
1050
1051
1052 LabelPermissions []*LabelPermission `protobuf:"bytes,1,rep,name=label_permissions,json=labelPermissions,proto3" json:"label_permissions,omitempty"`
1053
1054 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
1055 }
1056
1057 func (x *ListLabelPermissionsResponse) Reset() {
1058 *x = ListLabelPermissionsResponse{}
1059 if protoimpl.UnsafeEnabled {
1060 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[12]
1061 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1062 ms.StoreMessageInfo(mi)
1063 }
1064 }
1065
1066 func (x *ListLabelPermissionsResponse) String() string {
1067 return protoimpl.X.MessageStringOf(x)
1068 }
1069
1070 func (*ListLabelPermissionsResponse) ProtoMessage() {}
1071
1072 func (x *ListLabelPermissionsResponse) ProtoReflect() protoreflect.Message {
1073 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[12]
1074 if protoimpl.UnsafeEnabled && x != nil {
1075 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1076 if ms.LoadMessageInfo() == nil {
1077 ms.StoreMessageInfo(mi)
1078 }
1079 return ms
1080 }
1081 return mi.MessageOf(x)
1082 }
1083
1084
1085 func (*ListLabelPermissionsResponse) Descriptor() ([]byte, []int) {
1086 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{12}
1087 }
1088
1089 func (x *ListLabelPermissionsResponse) GetLabelPermissions() []*LabelPermission {
1090 if x != nil {
1091 return x.LabelPermissions
1092 }
1093 return nil
1094 }
1095
1096 func (x *ListLabelPermissionsResponse) GetNextPageToken() string {
1097 if x != nil {
1098 return x.NextPageToken
1099 }
1100 return ""
1101 }
1102
1103
1104
1105 type UpdateLabelPermissionRequest struct {
1106 state protoimpl.MessageState
1107 sizeCache protoimpl.SizeCache
1108 unknownFields protoimpl.UnknownFields
1109
1110
1111 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
1112
1113 LabelPermission *LabelPermission `protobuf:"bytes,2,opt,name=label_permission,json=labelPermission,proto3" json:"label_permission,omitempty"`
1114
1115
1116 UseAdminAccess bool `protobuf:"varint,3,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1117 }
1118
1119 func (x *UpdateLabelPermissionRequest) Reset() {
1120 *x = UpdateLabelPermissionRequest{}
1121 if protoimpl.UnsafeEnabled {
1122 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[13]
1123 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1124 ms.StoreMessageInfo(mi)
1125 }
1126 }
1127
1128 func (x *UpdateLabelPermissionRequest) String() string {
1129 return protoimpl.X.MessageStringOf(x)
1130 }
1131
1132 func (*UpdateLabelPermissionRequest) ProtoMessage() {}
1133
1134 func (x *UpdateLabelPermissionRequest) ProtoReflect() protoreflect.Message {
1135 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[13]
1136 if protoimpl.UnsafeEnabled && x != nil {
1137 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1138 if ms.LoadMessageInfo() == nil {
1139 ms.StoreMessageInfo(mi)
1140 }
1141 return ms
1142 }
1143 return mi.MessageOf(x)
1144 }
1145
1146
1147 func (*UpdateLabelPermissionRequest) Descriptor() ([]byte, []int) {
1148 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{13}
1149 }
1150
1151 func (x *UpdateLabelPermissionRequest) GetParent() string {
1152 if x != nil {
1153 return x.Parent
1154 }
1155 return ""
1156 }
1157
1158 func (x *UpdateLabelPermissionRequest) GetLabelPermission() *LabelPermission {
1159 if x != nil {
1160 return x.LabelPermission
1161 }
1162 return nil
1163 }
1164
1165 func (x *UpdateLabelPermissionRequest) GetUseAdminAccess() bool {
1166 if x != nil {
1167 return x.UseAdminAccess
1168 }
1169 return false
1170 }
1171
1172
1173
1174 type DeleteLabelPermissionRequest struct {
1175 state protoimpl.MessageState
1176 sizeCache protoimpl.SizeCache
1177 unknownFields protoimpl.UnknownFields
1178
1179
1180 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1181
1182
1183 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1184 }
1185
1186 func (x *DeleteLabelPermissionRequest) Reset() {
1187 *x = DeleteLabelPermissionRequest{}
1188 if protoimpl.UnsafeEnabled {
1189 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[14]
1190 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1191 ms.StoreMessageInfo(mi)
1192 }
1193 }
1194
1195 func (x *DeleteLabelPermissionRequest) String() string {
1196 return protoimpl.X.MessageStringOf(x)
1197 }
1198
1199 func (*DeleteLabelPermissionRequest) ProtoMessage() {}
1200
1201 func (x *DeleteLabelPermissionRequest) ProtoReflect() protoreflect.Message {
1202 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[14]
1203 if protoimpl.UnsafeEnabled && x != nil {
1204 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1205 if ms.LoadMessageInfo() == nil {
1206 ms.StoreMessageInfo(mi)
1207 }
1208 return ms
1209 }
1210 return mi.MessageOf(x)
1211 }
1212
1213
1214 func (*DeleteLabelPermissionRequest) Descriptor() ([]byte, []int) {
1215 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{14}
1216 }
1217
1218 func (x *DeleteLabelPermissionRequest) GetName() string {
1219 if x != nil {
1220 return x.Name
1221 }
1222 return ""
1223 }
1224
1225 func (x *DeleteLabelPermissionRequest) GetUseAdminAccess() bool {
1226 if x != nil {
1227 return x.UseAdminAccess
1228 }
1229 return false
1230 }
1231
1232
1233 type BatchUpdateLabelPermissionsRequest struct {
1234 state protoimpl.MessageState
1235 sizeCache protoimpl.SizeCache
1236 unknownFields protoimpl.UnknownFields
1237
1238
1239
1240
1241
1242 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
1243
1244 Requests []*UpdateLabelPermissionRequest `protobuf:"bytes,2,rep,name=requests,proto3" json:"requests,omitempty"`
1245
1246
1247
1248
1249
1250 UseAdminAccess bool `protobuf:"varint,3,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1251 }
1252
1253 func (x *BatchUpdateLabelPermissionsRequest) Reset() {
1254 *x = BatchUpdateLabelPermissionsRequest{}
1255 if protoimpl.UnsafeEnabled {
1256 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[15]
1257 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1258 ms.StoreMessageInfo(mi)
1259 }
1260 }
1261
1262 func (x *BatchUpdateLabelPermissionsRequest) String() string {
1263 return protoimpl.X.MessageStringOf(x)
1264 }
1265
1266 func (*BatchUpdateLabelPermissionsRequest) ProtoMessage() {}
1267
1268 func (x *BatchUpdateLabelPermissionsRequest) ProtoReflect() protoreflect.Message {
1269 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[15]
1270 if protoimpl.UnsafeEnabled && x != nil {
1271 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1272 if ms.LoadMessageInfo() == nil {
1273 ms.StoreMessageInfo(mi)
1274 }
1275 return ms
1276 }
1277 return mi.MessageOf(x)
1278 }
1279
1280
1281 func (*BatchUpdateLabelPermissionsRequest) Descriptor() ([]byte, []int) {
1282 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{15}
1283 }
1284
1285 func (x *BatchUpdateLabelPermissionsRequest) GetParent() string {
1286 if x != nil {
1287 return x.Parent
1288 }
1289 return ""
1290 }
1291
1292 func (x *BatchUpdateLabelPermissionsRequest) GetRequests() []*UpdateLabelPermissionRequest {
1293 if x != nil {
1294 return x.Requests
1295 }
1296 return nil
1297 }
1298
1299 func (x *BatchUpdateLabelPermissionsRequest) GetUseAdminAccess() bool {
1300 if x != nil {
1301 return x.UseAdminAccess
1302 }
1303 return false
1304 }
1305
1306
1307 type BatchUpdateLabelPermissionsResponse struct {
1308 state protoimpl.MessageState
1309 sizeCache protoimpl.SizeCache
1310 unknownFields protoimpl.UnknownFields
1311
1312
1313 Permissions []*LabelPermission `protobuf:"bytes,1,rep,name=permissions,proto3" json:"permissions,omitempty"`
1314 }
1315
1316 func (x *BatchUpdateLabelPermissionsResponse) Reset() {
1317 *x = BatchUpdateLabelPermissionsResponse{}
1318 if protoimpl.UnsafeEnabled {
1319 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[16]
1320 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1321 ms.StoreMessageInfo(mi)
1322 }
1323 }
1324
1325 func (x *BatchUpdateLabelPermissionsResponse) String() string {
1326 return protoimpl.X.MessageStringOf(x)
1327 }
1328
1329 func (*BatchUpdateLabelPermissionsResponse) ProtoMessage() {}
1330
1331 func (x *BatchUpdateLabelPermissionsResponse) ProtoReflect() protoreflect.Message {
1332 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[16]
1333 if protoimpl.UnsafeEnabled && x != nil {
1334 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1335 if ms.LoadMessageInfo() == nil {
1336 ms.StoreMessageInfo(mi)
1337 }
1338 return ms
1339 }
1340 return mi.MessageOf(x)
1341 }
1342
1343
1344 func (*BatchUpdateLabelPermissionsResponse) Descriptor() ([]byte, []int) {
1345 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{16}
1346 }
1347
1348 func (x *BatchUpdateLabelPermissionsResponse) GetPermissions() []*LabelPermission {
1349 if x != nil {
1350 return x.Permissions
1351 }
1352 return nil
1353 }
1354
1355
1356 type BatchDeleteLabelPermissionsRequest struct {
1357 state protoimpl.MessageState
1358 sizeCache protoimpl.SizeCache
1359 unknownFields protoimpl.UnknownFields
1360
1361
1362 Requests []*DeleteLabelPermissionRequest `protobuf:"bytes,1,rep,name=requests,proto3" json:"requests,omitempty"`
1363
1364
1365
1366
1367
1368 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1369
1370
1371
1372
1373 Parent string `protobuf:"bytes,3,opt,name=parent,proto3" json:"parent,omitempty"`
1374 }
1375
1376 func (x *BatchDeleteLabelPermissionsRequest) Reset() {
1377 *x = BatchDeleteLabelPermissionsRequest{}
1378 if protoimpl.UnsafeEnabled {
1379 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[17]
1380 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1381 ms.StoreMessageInfo(mi)
1382 }
1383 }
1384
1385 func (x *BatchDeleteLabelPermissionsRequest) String() string {
1386 return protoimpl.X.MessageStringOf(x)
1387 }
1388
1389 func (*BatchDeleteLabelPermissionsRequest) ProtoMessage() {}
1390
1391 func (x *BatchDeleteLabelPermissionsRequest) ProtoReflect() protoreflect.Message {
1392 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[17]
1393 if protoimpl.UnsafeEnabled && x != nil {
1394 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1395 if ms.LoadMessageInfo() == nil {
1396 ms.StoreMessageInfo(mi)
1397 }
1398 return ms
1399 }
1400 return mi.MessageOf(x)
1401 }
1402
1403
1404 func (*BatchDeleteLabelPermissionsRequest) Descriptor() ([]byte, []int) {
1405 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{17}
1406 }
1407
1408 func (x *BatchDeleteLabelPermissionsRequest) GetRequests() []*DeleteLabelPermissionRequest {
1409 if x != nil {
1410 return x.Requests
1411 }
1412 return nil
1413 }
1414
1415 func (x *BatchDeleteLabelPermissionsRequest) GetUseAdminAccess() bool {
1416 if x != nil {
1417 return x.UseAdminAccess
1418 }
1419 return false
1420 }
1421
1422 func (x *BatchDeleteLabelPermissionsRequest) GetParent() string {
1423 if x != nil {
1424 return x.Parent
1425 }
1426 return ""
1427 }
1428
1429
1430 type DisableLabelRequest struct {
1431 state protoimpl.MessageState
1432 sizeCache protoimpl.SizeCache
1433 unknownFields protoimpl.UnknownFields
1434
1435
1436
1437
1438 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
1439
1440 Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
1441
1442
1443 UseAdminAccess bool `protobuf:"varint,3,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1444
1445
1446 WriteControl *WriteControl `protobuf:"bytes,4,opt,name=write_control,json=writeControl,proto3" json:"write_control,omitempty"`
1447
1448 DisabledPolicy *Lifecycle_DisabledPolicy `protobuf:"bytes,5,opt,name=disabled_policy,json=disabledPolicy,proto3" json:"disabled_policy,omitempty"`
1449
1450
1451 LanguageCode string `protobuf:"bytes,6,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
1452 }
1453
1454 func (x *DisableLabelRequest) Reset() {
1455 *x = DisableLabelRequest{}
1456 if protoimpl.UnsafeEnabled {
1457 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[18]
1458 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1459 ms.StoreMessageInfo(mi)
1460 }
1461 }
1462
1463 func (x *DisableLabelRequest) String() string {
1464 return protoimpl.X.MessageStringOf(x)
1465 }
1466
1467 func (*DisableLabelRequest) ProtoMessage() {}
1468
1469 func (x *DisableLabelRequest) ProtoReflect() protoreflect.Message {
1470 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[18]
1471 if protoimpl.UnsafeEnabled && x != nil {
1472 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1473 if ms.LoadMessageInfo() == nil {
1474 ms.StoreMessageInfo(mi)
1475 }
1476 return ms
1477 }
1478 return mi.MessageOf(x)
1479 }
1480
1481
1482 func (*DisableLabelRequest) Descriptor() ([]byte, []int) {
1483 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{18}
1484 }
1485
1486 func (x *DisableLabelRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
1487 if x != nil {
1488 return x.UpdateMask
1489 }
1490 return nil
1491 }
1492
1493 func (x *DisableLabelRequest) GetName() string {
1494 if x != nil {
1495 return x.Name
1496 }
1497 return ""
1498 }
1499
1500 func (x *DisableLabelRequest) GetUseAdminAccess() bool {
1501 if x != nil {
1502 return x.UseAdminAccess
1503 }
1504 return false
1505 }
1506
1507 func (x *DisableLabelRequest) GetWriteControl() *WriteControl {
1508 if x != nil {
1509 return x.WriteControl
1510 }
1511 return nil
1512 }
1513
1514 func (x *DisableLabelRequest) GetDisabledPolicy() *Lifecycle_DisabledPolicy {
1515 if x != nil {
1516 return x.DisabledPolicy
1517 }
1518 return nil
1519 }
1520
1521 func (x *DisableLabelRequest) GetLanguageCode() string {
1522 if x != nil {
1523 return x.LanguageCode
1524 }
1525 return ""
1526 }
1527
1528
1529 type PublishLabelRequest struct {
1530 state protoimpl.MessageState
1531 sizeCache protoimpl.SizeCache
1532 unknownFields protoimpl.UnknownFields
1533
1534
1535 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1536
1537
1538 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1539
1540
1541 WriteControl *WriteControl `protobuf:"bytes,3,opt,name=write_control,json=writeControl,proto3" json:"write_control,omitempty"`
1542
1543
1544 LanguageCode string `protobuf:"bytes,4,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
1545 }
1546
1547 func (x *PublishLabelRequest) Reset() {
1548 *x = PublishLabelRequest{}
1549 if protoimpl.UnsafeEnabled {
1550 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[19]
1551 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1552 ms.StoreMessageInfo(mi)
1553 }
1554 }
1555
1556 func (x *PublishLabelRequest) String() string {
1557 return protoimpl.X.MessageStringOf(x)
1558 }
1559
1560 func (*PublishLabelRequest) ProtoMessage() {}
1561
1562 func (x *PublishLabelRequest) ProtoReflect() protoreflect.Message {
1563 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[19]
1564 if protoimpl.UnsafeEnabled && x != nil {
1565 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1566 if ms.LoadMessageInfo() == nil {
1567 ms.StoreMessageInfo(mi)
1568 }
1569 return ms
1570 }
1571 return mi.MessageOf(x)
1572 }
1573
1574
1575 func (*PublishLabelRequest) Descriptor() ([]byte, []int) {
1576 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{19}
1577 }
1578
1579 func (x *PublishLabelRequest) GetName() string {
1580 if x != nil {
1581 return x.Name
1582 }
1583 return ""
1584 }
1585
1586 func (x *PublishLabelRequest) GetUseAdminAccess() bool {
1587 if x != nil {
1588 return x.UseAdminAccess
1589 }
1590 return false
1591 }
1592
1593 func (x *PublishLabelRequest) GetWriteControl() *WriteControl {
1594 if x != nil {
1595 return x.WriteControl
1596 }
1597 return nil
1598 }
1599
1600 func (x *PublishLabelRequest) GetLanguageCode() string {
1601 if x != nil {
1602 return x.LanguageCode
1603 }
1604 return ""
1605 }
1606
1607
1608 type EnableLabelRequest struct {
1609 state protoimpl.MessageState
1610 sizeCache protoimpl.SizeCache
1611 unknownFields protoimpl.UnknownFields
1612
1613
1614 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1615
1616
1617 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1618
1619
1620 WriteControl *WriteControl `protobuf:"bytes,3,opt,name=write_control,json=writeControl,proto3" json:"write_control,omitempty"`
1621
1622
1623 LanguageCode string `protobuf:"bytes,4,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
1624 }
1625
1626 func (x *EnableLabelRequest) Reset() {
1627 *x = EnableLabelRequest{}
1628 if protoimpl.UnsafeEnabled {
1629 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[20]
1630 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1631 ms.StoreMessageInfo(mi)
1632 }
1633 }
1634
1635 func (x *EnableLabelRequest) String() string {
1636 return protoimpl.X.MessageStringOf(x)
1637 }
1638
1639 func (*EnableLabelRequest) ProtoMessage() {}
1640
1641 func (x *EnableLabelRequest) ProtoReflect() protoreflect.Message {
1642 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[20]
1643 if protoimpl.UnsafeEnabled && x != nil {
1644 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1645 if ms.LoadMessageInfo() == nil {
1646 ms.StoreMessageInfo(mi)
1647 }
1648 return ms
1649 }
1650 return mi.MessageOf(x)
1651 }
1652
1653
1654 func (*EnableLabelRequest) Descriptor() ([]byte, []int) {
1655 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{20}
1656 }
1657
1658 func (x *EnableLabelRequest) GetName() string {
1659 if x != nil {
1660 return x.Name
1661 }
1662 return ""
1663 }
1664
1665 func (x *EnableLabelRequest) GetUseAdminAccess() bool {
1666 if x != nil {
1667 return x.UseAdminAccess
1668 }
1669 return false
1670 }
1671
1672 func (x *EnableLabelRequest) GetWriteControl() *WriteControl {
1673 if x != nil {
1674 return x.WriteControl
1675 }
1676 return nil
1677 }
1678
1679 func (x *EnableLabelRequest) GetLanguageCode() string {
1680 if x != nil {
1681 return x.LanguageCode
1682 }
1683 return ""
1684 }
1685
1686
1687 type DeleteLabelRequest struct {
1688 state protoimpl.MessageState
1689 sizeCache protoimpl.SizeCache
1690 unknownFields protoimpl.UnknownFields
1691
1692
1693 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1694
1695
1696 UseAdminAccess bool `protobuf:"varint,2,opt,name=use_admin_access,json=useAdminAccess,proto3" json:"use_admin_access,omitempty"`
1697
1698
1699 WriteControl *WriteControl `protobuf:"bytes,3,opt,name=write_control,json=writeControl,proto3" json:"write_control,omitempty"`
1700 }
1701
1702 func (x *DeleteLabelRequest) Reset() {
1703 *x = DeleteLabelRequest{}
1704 if protoimpl.UnsafeEnabled {
1705 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[21]
1706 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1707 ms.StoreMessageInfo(mi)
1708 }
1709 }
1710
1711 func (x *DeleteLabelRequest) String() string {
1712 return protoimpl.X.MessageStringOf(x)
1713 }
1714
1715 func (*DeleteLabelRequest) ProtoMessage() {}
1716
1717 func (x *DeleteLabelRequest) ProtoReflect() protoreflect.Message {
1718 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[21]
1719 if protoimpl.UnsafeEnabled && x != nil {
1720 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1721 if ms.LoadMessageInfo() == nil {
1722 ms.StoreMessageInfo(mi)
1723 }
1724 return ms
1725 }
1726 return mi.MessageOf(x)
1727 }
1728
1729
1730 func (*DeleteLabelRequest) Descriptor() ([]byte, []int) {
1731 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{21}
1732 }
1733
1734 func (x *DeleteLabelRequest) GetName() string {
1735 if x != nil {
1736 return x.Name
1737 }
1738 return ""
1739 }
1740
1741 func (x *DeleteLabelRequest) GetUseAdminAccess() bool {
1742 if x != nil {
1743 return x.UseAdminAccess
1744 }
1745 return false
1746 }
1747
1748 func (x *DeleteLabelRequest) GetWriteControl() *WriteControl {
1749 if x != nil {
1750 return x.WriteControl
1751 }
1752 return nil
1753 }
1754
1755
1756 type ListLabelLocksRequest struct {
1757 state protoimpl.MessageState
1758 sizeCache protoimpl.SizeCache
1759 unknownFields protoimpl.UnknownFields
1760
1761
1762
1763 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
1764
1765 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
1766
1767 PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
1768 }
1769
1770 func (x *ListLabelLocksRequest) Reset() {
1771 *x = ListLabelLocksRequest{}
1772 if protoimpl.UnsafeEnabled {
1773 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[22]
1774 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1775 ms.StoreMessageInfo(mi)
1776 }
1777 }
1778
1779 func (x *ListLabelLocksRequest) String() string {
1780 return protoimpl.X.MessageStringOf(x)
1781 }
1782
1783 func (*ListLabelLocksRequest) ProtoMessage() {}
1784
1785 func (x *ListLabelLocksRequest) ProtoReflect() protoreflect.Message {
1786 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[22]
1787 if protoimpl.UnsafeEnabled && x != nil {
1788 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1789 if ms.LoadMessageInfo() == nil {
1790 ms.StoreMessageInfo(mi)
1791 }
1792 return ms
1793 }
1794 return mi.MessageOf(x)
1795 }
1796
1797
1798 func (*ListLabelLocksRequest) Descriptor() ([]byte, []int) {
1799 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{22}
1800 }
1801
1802 func (x *ListLabelLocksRequest) GetParent() string {
1803 if x != nil {
1804 return x.Parent
1805 }
1806 return ""
1807 }
1808
1809 func (x *ListLabelLocksRequest) GetPageSize() int32 {
1810 if x != nil {
1811 return x.PageSize
1812 }
1813 return 0
1814 }
1815
1816 func (x *ListLabelLocksRequest) GetPageToken() string {
1817 if x != nil {
1818 return x.PageToken
1819 }
1820 return ""
1821 }
1822
1823
1824 type ListLabelLocksResponse struct {
1825 state protoimpl.MessageState
1826 sizeCache protoimpl.SizeCache
1827 unknownFields protoimpl.UnknownFields
1828
1829
1830 LabelLocks []*LabelLock `protobuf:"bytes,1,rep,name=label_locks,json=labelLocks,proto3" json:"label_locks,omitempty"`
1831
1832 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
1833 }
1834
1835 func (x *ListLabelLocksResponse) Reset() {
1836 *x = ListLabelLocksResponse{}
1837 if protoimpl.UnsafeEnabled {
1838 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[23]
1839 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1840 ms.StoreMessageInfo(mi)
1841 }
1842 }
1843
1844 func (x *ListLabelLocksResponse) String() string {
1845 return protoimpl.X.MessageStringOf(x)
1846 }
1847
1848 func (*ListLabelLocksResponse) ProtoMessage() {}
1849
1850 func (x *ListLabelLocksResponse) ProtoReflect() protoreflect.Message {
1851 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[23]
1852 if protoimpl.UnsafeEnabled && x != nil {
1853 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1854 if ms.LoadMessageInfo() == nil {
1855 ms.StoreMessageInfo(mi)
1856 }
1857 return ms
1858 }
1859 return mi.MessageOf(x)
1860 }
1861
1862
1863 func (*ListLabelLocksResponse) Descriptor() ([]byte, []int) {
1864 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{23}
1865 }
1866
1867 func (x *ListLabelLocksResponse) GetLabelLocks() []*LabelLock {
1868 if x != nil {
1869 return x.LabelLocks
1870 }
1871 return nil
1872 }
1873
1874 func (x *ListLabelLocksResponse) GetNextPageToken() string {
1875 if x != nil {
1876 return x.NextPageToken
1877 }
1878 return ""
1879 }
1880
1881
1882 type DeltaUpdateLabelRequest_Request struct {
1883 state protoimpl.MessageState
1884 sizeCache protoimpl.SizeCache
1885 unknownFields protoimpl.UnknownFields
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903 Kind isDeltaUpdateLabelRequest_Request_Kind `protobuf_oneof:"kind"`
1904 }
1905
1906 func (x *DeltaUpdateLabelRequest_Request) Reset() {
1907 *x = DeltaUpdateLabelRequest_Request{}
1908 if protoimpl.UnsafeEnabled {
1909 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[24]
1910 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1911 ms.StoreMessageInfo(mi)
1912 }
1913 }
1914
1915 func (x *DeltaUpdateLabelRequest_Request) String() string {
1916 return protoimpl.X.MessageStringOf(x)
1917 }
1918
1919 func (*DeltaUpdateLabelRequest_Request) ProtoMessage() {}
1920
1921 func (x *DeltaUpdateLabelRequest_Request) ProtoReflect() protoreflect.Message {
1922 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[24]
1923 if protoimpl.UnsafeEnabled && x != nil {
1924 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1925 if ms.LoadMessageInfo() == nil {
1926 ms.StoreMessageInfo(mi)
1927 }
1928 return ms
1929 }
1930 return mi.MessageOf(x)
1931 }
1932
1933
1934 func (*DeltaUpdateLabelRequest_Request) Descriptor() ([]byte, []int) {
1935 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 0}
1936 }
1937
1938 func (m *DeltaUpdateLabelRequest_Request) GetKind() isDeltaUpdateLabelRequest_Request_Kind {
1939 if m != nil {
1940 return m.Kind
1941 }
1942 return nil
1943 }
1944
1945 func (x *DeltaUpdateLabelRequest_Request) GetUpdateLabel() *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest {
1946 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_UpdateLabel); ok {
1947 return x.UpdateLabel
1948 }
1949 return nil
1950 }
1951
1952 func (x *DeltaUpdateLabelRequest_Request) GetCreateField() *DeltaUpdateLabelRequest_CreateFieldRequest {
1953 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_CreateField); ok {
1954 return x.CreateField
1955 }
1956 return nil
1957 }
1958
1959 func (x *DeltaUpdateLabelRequest_Request) GetUpdateField() *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest {
1960 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_UpdateField); ok {
1961 return x.UpdateField
1962 }
1963 return nil
1964 }
1965
1966 func (x *DeltaUpdateLabelRequest_Request) GetUpdateFieldType() *DeltaUpdateLabelRequest_UpdateFieldTypeRequest {
1967 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_UpdateFieldType); ok {
1968 return x.UpdateFieldType
1969 }
1970 return nil
1971 }
1972
1973 func (x *DeltaUpdateLabelRequest_Request) GetEnableField() *DeltaUpdateLabelRequest_EnableFieldRequest {
1974 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_EnableField); ok {
1975 return x.EnableField
1976 }
1977 return nil
1978 }
1979
1980 func (x *DeltaUpdateLabelRequest_Request) GetDisableField() *DeltaUpdateLabelRequest_DisableFieldRequest {
1981 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_DisableField); ok {
1982 return x.DisableField
1983 }
1984 return nil
1985 }
1986
1987 func (x *DeltaUpdateLabelRequest_Request) GetDeleteField() *DeltaUpdateLabelRequest_DeleteFieldRequest {
1988 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_DeleteField); ok {
1989 return x.DeleteField
1990 }
1991 return nil
1992 }
1993
1994 func (x *DeltaUpdateLabelRequest_Request) GetCreateSelectionChoice() *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest {
1995 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_CreateSelectionChoice); ok {
1996 return x.CreateSelectionChoice
1997 }
1998 return nil
1999 }
2000
2001 func (x *DeltaUpdateLabelRequest_Request) GetUpdateSelectionChoiceProperties() *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest {
2002 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_UpdateSelectionChoiceProperties); ok {
2003 return x.UpdateSelectionChoiceProperties
2004 }
2005 return nil
2006 }
2007
2008 func (x *DeltaUpdateLabelRequest_Request) GetEnableSelectionChoice() *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest {
2009 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_EnableSelectionChoice); ok {
2010 return x.EnableSelectionChoice
2011 }
2012 return nil
2013 }
2014
2015 func (x *DeltaUpdateLabelRequest_Request) GetDisableSelectionChoice() *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest {
2016 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_DisableSelectionChoice); ok {
2017 return x.DisableSelectionChoice
2018 }
2019 return nil
2020 }
2021
2022 func (x *DeltaUpdateLabelRequest_Request) GetDeleteSelectionChoice() *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest {
2023 if x, ok := x.GetKind().(*DeltaUpdateLabelRequest_Request_DeleteSelectionChoice); ok {
2024 return x.DeleteSelectionChoice
2025 }
2026 return nil
2027 }
2028
2029 type isDeltaUpdateLabelRequest_Request_Kind interface {
2030 isDeltaUpdateLabelRequest_Request_Kind()
2031 }
2032
2033 type DeltaUpdateLabelRequest_Request_UpdateLabel struct {
2034
2035 UpdateLabel *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest `protobuf:"bytes,1,opt,name=update_label,json=updateLabel,proto3,oneof"`
2036 }
2037
2038 type DeltaUpdateLabelRequest_Request_CreateField struct {
2039
2040 CreateField *DeltaUpdateLabelRequest_CreateFieldRequest `protobuf:"bytes,2,opt,name=create_field,json=createField,proto3,oneof"`
2041 }
2042
2043 type DeltaUpdateLabelRequest_Request_UpdateField struct {
2044
2045 UpdateField *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest `protobuf:"bytes,3,opt,name=update_field,json=updateField,proto3,oneof"`
2046 }
2047
2048 type DeltaUpdateLabelRequest_Request_UpdateFieldType struct {
2049
2050 UpdateFieldType *DeltaUpdateLabelRequest_UpdateFieldTypeRequest `protobuf:"bytes,4,opt,name=update_field_type,json=updateFieldType,proto3,oneof"`
2051 }
2052
2053 type DeltaUpdateLabelRequest_Request_EnableField struct {
2054
2055 EnableField *DeltaUpdateLabelRequest_EnableFieldRequest `protobuf:"bytes,5,opt,name=enable_field,json=enableField,proto3,oneof"`
2056 }
2057
2058 type DeltaUpdateLabelRequest_Request_DisableField struct {
2059
2060 DisableField *DeltaUpdateLabelRequest_DisableFieldRequest `protobuf:"bytes,6,opt,name=disable_field,json=disableField,proto3,oneof"`
2061 }
2062
2063 type DeltaUpdateLabelRequest_Request_DeleteField struct {
2064
2065 DeleteField *DeltaUpdateLabelRequest_DeleteFieldRequest `protobuf:"bytes,7,opt,name=delete_field,json=deleteField,proto3,oneof"`
2066 }
2067
2068 type DeltaUpdateLabelRequest_Request_CreateSelectionChoice struct {
2069
2070 CreateSelectionChoice *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest `protobuf:"bytes,8,opt,name=create_selection_choice,json=createSelectionChoice,proto3,oneof"`
2071 }
2072
2073 type DeltaUpdateLabelRequest_Request_UpdateSelectionChoiceProperties struct {
2074
2075 UpdateSelectionChoiceProperties *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest `protobuf:"bytes,9,opt,name=update_selection_choice_properties,json=updateSelectionChoiceProperties,proto3,oneof"`
2076 }
2077
2078 type DeltaUpdateLabelRequest_Request_EnableSelectionChoice struct {
2079
2080 EnableSelectionChoice *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest `protobuf:"bytes,10,opt,name=enable_selection_choice,json=enableSelectionChoice,proto3,oneof"`
2081 }
2082
2083 type DeltaUpdateLabelRequest_Request_DisableSelectionChoice struct {
2084
2085 DisableSelectionChoice *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest `protobuf:"bytes,11,opt,name=disable_selection_choice,json=disableSelectionChoice,proto3,oneof"`
2086 }
2087
2088 type DeltaUpdateLabelRequest_Request_DeleteSelectionChoice struct {
2089
2090 DeleteSelectionChoice *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest `protobuf:"bytes,12,opt,name=delete_selection_choice,json=deleteSelectionChoice,proto3,oneof"`
2091 }
2092
2093 func (*DeltaUpdateLabelRequest_Request_UpdateLabel) isDeltaUpdateLabelRequest_Request_Kind() {}
2094
2095 func (*DeltaUpdateLabelRequest_Request_CreateField) isDeltaUpdateLabelRequest_Request_Kind() {}
2096
2097 func (*DeltaUpdateLabelRequest_Request_UpdateField) isDeltaUpdateLabelRequest_Request_Kind() {}
2098
2099 func (*DeltaUpdateLabelRequest_Request_UpdateFieldType) isDeltaUpdateLabelRequest_Request_Kind() {}
2100
2101 func (*DeltaUpdateLabelRequest_Request_EnableField) isDeltaUpdateLabelRequest_Request_Kind() {}
2102
2103 func (*DeltaUpdateLabelRequest_Request_DisableField) isDeltaUpdateLabelRequest_Request_Kind() {}
2104
2105 func (*DeltaUpdateLabelRequest_Request_DeleteField) isDeltaUpdateLabelRequest_Request_Kind() {}
2106
2107 func (*DeltaUpdateLabelRequest_Request_CreateSelectionChoice) isDeltaUpdateLabelRequest_Request_Kind() {
2108 }
2109
2110 func (*DeltaUpdateLabelRequest_Request_UpdateSelectionChoiceProperties) isDeltaUpdateLabelRequest_Request_Kind() {
2111 }
2112
2113 func (*DeltaUpdateLabelRequest_Request_EnableSelectionChoice) isDeltaUpdateLabelRequest_Request_Kind() {
2114 }
2115
2116 func (*DeltaUpdateLabelRequest_Request_DisableSelectionChoice) isDeltaUpdateLabelRequest_Request_Kind() {
2117 }
2118
2119 func (*DeltaUpdateLabelRequest_Request_DeleteSelectionChoice) isDeltaUpdateLabelRequest_Request_Kind() {
2120 }
2121
2122
2123 type DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest struct {
2124 state protoimpl.MessageState
2125 sizeCache protoimpl.SizeCache
2126 unknownFields protoimpl.UnknownFields
2127
2128
2129
2130
2131 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
2132
2133 Properties *Label_Properties `protobuf:"bytes,2,opt,name=properties,proto3" json:"properties,omitempty"`
2134 }
2135
2136 func (x *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) Reset() {
2137 *x = DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest{}
2138 if protoimpl.UnsafeEnabled {
2139 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[25]
2140 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2141 ms.StoreMessageInfo(mi)
2142 }
2143 }
2144
2145 func (x *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) String() string {
2146 return protoimpl.X.MessageStringOf(x)
2147 }
2148
2149 func (*DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) ProtoMessage() {}
2150
2151 func (x *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) ProtoReflect() protoreflect.Message {
2152 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[25]
2153 if protoimpl.UnsafeEnabled && x != nil {
2154 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2155 if ms.LoadMessageInfo() == nil {
2156 ms.StoreMessageInfo(mi)
2157 }
2158 return ms
2159 }
2160 return mi.MessageOf(x)
2161 }
2162
2163
2164 func (*DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) Descriptor() ([]byte, []int) {
2165 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 1}
2166 }
2167
2168 func (x *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
2169 if x != nil {
2170 return x.UpdateMask
2171 }
2172 return nil
2173 }
2174
2175 func (x *DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest) GetProperties() *Label_Properties {
2176 if x != nil {
2177 return x.Properties
2178 }
2179 return nil
2180 }
2181
2182
2183 type DeltaUpdateLabelRequest_DisableFieldRequest struct {
2184 state protoimpl.MessageState
2185 sizeCache protoimpl.SizeCache
2186 unknownFields protoimpl.UnknownFields
2187
2188
2189
2190
2191 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
2192
2193 Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
2194
2195 DisabledPolicy *Lifecycle_DisabledPolicy `protobuf:"bytes,3,opt,name=disabled_policy,json=disabledPolicy,proto3" json:"disabled_policy,omitempty"`
2196 }
2197
2198 func (x *DeltaUpdateLabelRequest_DisableFieldRequest) Reset() {
2199 *x = DeltaUpdateLabelRequest_DisableFieldRequest{}
2200 if protoimpl.UnsafeEnabled {
2201 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[26]
2202 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2203 ms.StoreMessageInfo(mi)
2204 }
2205 }
2206
2207 func (x *DeltaUpdateLabelRequest_DisableFieldRequest) String() string {
2208 return protoimpl.X.MessageStringOf(x)
2209 }
2210
2211 func (*DeltaUpdateLabelRequest_DisableFieldRequest) ProtoMessage() {}
2212
2213 func (x *DeltaUpdateLabelRequest_DisableFieldRequest) ProtoReflect() protoreflect.Message {
2214 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[26]
2215 if protoimpl.UnsafeEnabled && x != nil {
2216 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2217 if ms.LoadMessageInfo() == nil {
2218 ms.StoreMessageInfo(mi)
2219 }
2220 return ms
2221 }
2222 return mi.MessageOf(x)
2223 }
2224
2225
2226 func (*DeltaUpdateLabelRequest_DisableFieldRequest) Descriptor() ([]byte, []int) {
2227 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 2}
2228 }
2229
2230 func (x *DeltaUpdateLabelRequest_DisableFieldRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
2231 if x != nil {
2232 return x.UpdateMask
2233 }
2234 return nil
2235 }
2236
2237 func (x *DeltaUpdateLabelRequest_DisableFieldRequest) GetId() string {
2238 if x != nil {
2239 return x.Id
2240 }
2241 return ""
2242 }
2243
2244 func (x *DeltaUpdateLabelRequest_DisableFieldRequest) GetDisabledPolicy() *Lifecycle_DisabledPolicy {
2245 if x != nil {
2246 return x.DisabledPolicy
2247 }
2248 return nil
2249 }
2250
2251
2252 type DeltaUpdateLabelRequest_EnableFieldRequest struct {
2253 state protoimpl.MessageState
2254 sizeCache protoimpl.SizeCache
2255 unknownFields protoimpl.UnknownFields
2256
2257
2258 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
2259 }
2260
2261 func (x *DeltaUpdateLabelRequest_EnableFieldRequest) Reset() {
2262 *x = DeltaUpdateLabelRequest_EnableFieldRequest{}
2263 if protoimpl.UnsafeEnabled {
2264 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[27]
2265 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2266 ms.StoreMessageInfo(mi)
2267 }
2268 }
2269
2270 func (x *DeltaUpdateLabelRequest_EnableFieldRequest) String() string {
2271 return protoimpl.X.MessageStringOf(x)
2272 }
2273
2274 func (*DeltaUpdateLabelRequest_EnableFieldRequest) ProtoMessage() {}
2275
2276 func (x *DeltaUpdateLabelRequest_EnableFieldRequest) ProtoReflect() protoreflect.Message {
2277 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[27]
2278 if protoimpl.UnsafeEnabled && x != nil {
2279 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2280 if ms.LoadMessageInfo() == nil {
2281 ms.StoreMessageInfo(mi)
2282 }
2283 return ms
2284 }
2285 return mi.MessageOf(x)
2286 }
2287
2288
2289 func (*DeltaUpdateLabelRequest_EnableFieldRequest) Descriptor() ([]byte, []int) {
2290 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 3}
2291 }
2292
2293 func (x *DeltaUpdateLabelRequest_EnableFieldRequest) GetId() string {
2294 if x != nil {
2295 return x.Id
2296 }
2297 return ""
2298 }
2299
2300
2301 type DeltaUpdateLabelRequest_DeleteFieldRequest struct {
2302 state protoimpl.MessageState
2303 sizeCache protoimpl.SizeCache
2304 unknownFields protoimpl.UnknownFields
2305
2306
2307 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
2308 }
2309
2310 func (x *DeltaUpdateLabelRequest_DeleteFieldRequest) Reset() {
2311 *x = DeltaUpdateLabelRequest_DeleteFieldRequest{}
2312 if protoimpl.UnsafeEnabled {
2313 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[28]
2314 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2315 ms.StoreMessageInfo(mi)
2316 }
2317 }
2318
2319 func (x *DeltaUpdateLabelRequest_DeleteFieldRequest) String() string {
2320 return protoimpl.X.MessageStringOf(x)
2321 }
2322
2323 func (*DeltaUpdateLabelRequest_DeleteFieldRequest) ProtoMessage() {}
2324
2325 func (x *DeltaUpdateLabelRequest_DeleteFieldRequest) ProtoReflect() protoreflect.Message {
2326 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[28]
2327 if protoimpl.UnsafeEnabled && x != nil {
2328 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2329 if ms.LoadMessageInfo() == nil {
2330 ms.StoreMessageInfo(mi)
2331 }
2332 return ms
2333 }
2334 return mi.MessageOf(x)
2335 }
2336
2337
2338 func (*DeltaUpdateLabelRequest_DeleteFieldRequest) Descriptor() ([]byte, []int) {
2339 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 4}
2340 }
2341
2342 func (x *DeltaUpdateLabelRequest_DeleteFieldRequest) GetId() string {
2343 if x != nil {
2344 return x.Id
2345 }
2346 return ""
2347 }
2348
2349
2350 type DeltaUpdateLabelRequest_CreateFieldRequest struct {
2351 state protoimpl.MessageState
2352 sizeCache protoimpl.SizeCache
2353 unknownFields protoimpl.UnknownFields
2354
2355
2356 Field *Field `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
2357 }
2358
2359 func (x *DeltaUpdateLabelRequest_CreateFieldRequest) Reset() {
2360 *x = DeltaUpdateLabelRequest_CreateFieldRequest{}
2361 if protoimpl.UnsafeEnabled {
2362 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[29]
2363 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2364 ms.StoreMessageInfo(mi)
2365 }
2366 }
2367
2368 func (x *DeltaUpdateLabelRequest_CreateFieldRequest) String() string {
2369 return protoimpl.X.MessageStringOf(x)
2370 }
2371
2372 func (*DeltaUpdateLabelRequest_CreateFieldRequest) ProtoMessage() {}
2373
2374 func (x *DeltaUpdateLabelRequest_CreateFieldRequest) ProtoReflect() protoreflect.Message {
2375 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[29]
2376 if protoimpl.UnsafeEnabled && x != nil {
2377 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2378 if ms.LoadMessageInfo() == nil {
2379 ms.StoreMessageInfo(mi)
2380 }
2381 return ms
2382 }
2383 return mi.MessageOf(x)
2384 }
2385
2386
2387 func (*DeltaUpdateLabelRequest_CreateFieldRequest) Descriptor() ([]byte, []int) {
2388 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 5}
2389 }
2390
2391 func (x *DeltaUpdateLabelRequest_CreateFieldRequest) GetField() *Field {
2392 if x != nil {
2393 return x.Field
2394 }
2395 return nil
2396 }
2397
2398
2399 type DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest struct {
2400 state protoimpl.MessageState
2401 sizeCache protoimpl.SizeCache
2402 unknownFields protoimpl.UnknownFields
2403
2404
2405
2406
2407 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
2408
2409 Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
2410
2411 Properties *Field_Properties `protobuf:"bytes,3,opt,name=properties,proto3" json:"properties,omitempty"`
2412 }
2413
2414 func (x *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) Reset() {
2415 *x = DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest{}
2416 if protoimpl.UnsafeEnabled {
2417 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[30]
2418 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2419 ms.StoreMessageInfo(mi)
2420 }
2421 }
2422
2423 func (x *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) String() string {
2424 return protoimpl.X.MessageStringOf(x)
2425 }
2426
2427 func (*DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) ProtoMessage() {}
2428
2429 func (x *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) ProtoReflect() protoreflect.Message {
2430 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[30]
2431 if protoimpl.UnsafeEnabled && x != nil {
2432 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2433 if ms.LoadMessageInfo() == nil {
2434 ms.StoreMessageInfo(mi)
2435 }
2436 return ms
2437 }
2438 return mi.MessageOf(x)
2439 }
2440
2441
2442 func (*DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) Descriptor() ([]byte, []int) {
2443 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 6}
2444 }
2445
2446 func (x *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
2447 if x != nil {
2448 return x.UpdateMask
2449 }
2450 return nil
2451 }
2452
2453 func (x *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) GetId() string {
2454 if x != nil {
2455 return x.Id
2456 }
2457 return ""
2458 }
2459
2460 func (x *DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest) GetProperties() *Field_Properties {
2461 if x != nil {
2462 return x.Properties
2463 }
2464 return nil
2465 }
2466
2467
2468 type DeltaUpdateLabelRequest_UpdateFieldTypeRequest struct {
2469 state protoimpl.MessageState
2470 sizeCache protoimpl.SizeCache
2471 unknownFields protoimpl.UnknownFields
2472
2473
2474
2475
2476
2477
2478
2479
2480 TypeOptions isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions `protobuf_oneof:"type_options"`
2481
2482
2483
2484 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
2485
2486 Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
2487 }
2488
2489 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) Reset() {
2490 *x = DeltaUpdateLabelRequest_UpdateFieldTypeRequest{}
2491 if protoimpl.UnsafeEnabled {
2492 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[31]
2493 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2494 ms.StoreMessageInfo(mi)
2495 }
2496 }
2497
2498 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) String() string {
2499 return protoimpl.X.MessageStringOf(x)
2500 }
2501
2502 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest) ProtoMessage() {}
2503
2504 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) ProtoReflect() protoreflect.Message {
2505 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[31]
2506 if protoimpl.UnsafeEnabled && x != nil {
2507 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2508 if ms.LoadMessageInfo() == nil {
2509 ms.StoreMessageInfo(mi)
2510 }
2511 return ms
2512 }
2513 return mi.MessageOf(x)
2514 }
2515
2516
2517 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest) Descriptor() ([]byte, []int) {
2518 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 7}
2519 }
2520
2521 func (m *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetTypeOptions() isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions {
2522 if m != nil {
2523 return m.TypeOptions
2524 }
2525 return nil
2526 }
2527
2528 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetTextOptions() *Field_TextOptions {
2529 if x, ok := x.GetTypeOptions().(*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_TextOptions); ok {
2530 return x.TextOptions
2531 }
2532 return nil
2533 }
2534
2535 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetIntegerOptions() *Field_IntegerOptions {
2536 if x, ok := x.GetTypeOptions().(*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_IntegerOptions); ok {
2537 return x.IntegerOptions
2538 }
2539 return nil
2540 }
2541
2542 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetDateOptions() *Field_DateOptions {
2543 if x, ok := x.GetTypeOptions().(*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_DateOptions); ok {
2544 return x.DateOptions
2545 }
2546 return nil
2547 }
2548
2549 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetSelectionOptions() *Field_SelectionOptions {
2550 if x, ok := x.GetTypeOptions().(*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_SelectionOptions); ok {
2551 return x.SelectionOptions
2552 }
2553 return nil
2554 }
2555
2556 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetUserOptions() *Field_UserOptions {
2557 if x, ok := x.GetTypeOptions().(*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_UserOptions); ok {
2558 return x.UserOptions
2559 }
2560 return nil
2561 }
2562
2563 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
2564 if x != nil {
2565 return x.UpdateMask
2566 }
2567 return nil
2568 }
2569
2570 func (x *DeltaUpdateLabelRequest_UpdateFieldTypeRequest) GetId() string {
2571 if x != nil {
2572 return x.Id
2573 }
2574 return ""
2575 }
2576
2577 type isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions interface {
2578 isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions()
2579 }
2580
2581 type DeltaUpdateLabelRequest_UpdateFieldTypeRequest_TextOptions struct {
2582
2583 TextOptions *Field_TextOptions `protobuf:"bytes,3,opt,name=text_options,json=textOptions,proto3,oneof"`
2584 }
2585
2586 type DeltaUpdateLabelRequest_UpdateFieldTypeRequest_IntegerOptions struct {
2587
2588 IntegerOptions *Field_IntegerOptions `protobuf:"bytes,5,opt,name=integer_options,json=integerOptions,proto3,oneof"`
2589 }
2590
2591 type DeltaUpdateLabelRequest_UpdateFieldTypeRequest_DateOptions struct {
2592
2593 DateOptions *Field_DateOptions `protobuf:"bytes,6,opt,name=date_options,json=dateOptions,proto3,oneof"`
2594 }
2595
2596 type DeltaUpdateLabelRequest_UpdateFieldTypeRequest_SelectionOptions struct {
2597
2598 SelectionOptions *Field_SelectionOptions `protobuf:"bytes,7,opt,name=selection_options,json=selectionOptions,proto3,oneof"`
2599 }
2600
2601 type DeltaUpdateLabelRequest_UpdateFieldTypeRequest_UserOptions struct {
2602
2603 UserOptions *Field_UserOptions `protobuf:"bytes,8,opt,name=user_options,json=userOptions,proto3,oneof"`
2604 }
2605
2606 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_TextOptions) isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions() {
2607 }
2608
2609 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_IntegerOptions) isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions() {
2610 }
2611
2612 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_DateOptions) isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions() {
2613 }
2614
2615 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_SelectionOptions) isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions() {
2616 }
2617
2618 func (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_UserOptions) isDeltaUpdateLabelRequest_UpdateFieldTypeRequest_TypeOptions() {
2619 }
2620
2621
2622 type DeltaUpdateLabelRequest_CreateSelectionChoiceRequest struct {
2623 state protoimpl.MessageState
2624 sizeCache protoimpl.SizeCache
2625 unknownFields protoimpl.UnknownFields
2626
2627
2628 FieldId string `protobuf:"bytes,1,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
2629
2630 Choice *Field_SelectionOptions_Choice `protobuf:"bytes,2,opt,name=choice,proto3" json:"choice,omitempty"`
2631 }
2632
2633 func (x *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) Reset() {
2634 *x = DeltaUpdateLabelRequest_CreateSelectionChoiceRequest{}
2635 if protoimpl.UnsafeEnabled {
2636 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[32]
2637 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2638 ms.StoreMessageInfo(mi)
2639 }
2640 }
2641
2642 func (x *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) String() string {
2643 return protoimpl.X.MessageStringOf(x)
2644 }
2645
2646 func (*DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) ProtoMessage() {}
2647
2648 func (x *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) ProtoReflect() protoreflect.Message {
2649 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[32]
2650 if protoimpl.UnsafeEnabled && x != nil {
2651 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2652 if ms.LoadMessageInfo() == nil {
2653 ms.StoreMessageInfo(mi)
2654 }
2655 return ms
2656 }
2657 return mi.MessageOf(x)
2658 }
2659
2660
2661 func (*DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) Descriptor() ([]byte, []int) {
2662 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 8}
2663 }
2664
2665 func (x *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) GetFieldId() string {
2666 if x != nil {
2667 return x.FieldId
2668 }
2669 return ""
2670 }
2671
2672 func (x *DeltaUpdateLabelRequest_CreateSelectionChoiceRequest) GetChoice() *Field_SelectionOptions_Choice {
2673 if x != nil {
2674 return x.Choice
2675 }
2676 return nil
2677 }
2678
2679
2680 type DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest struct {
2681 state protoimpl.MessageState
2682 sizeCache protoimpl.SizeCache
2683 unknownFields protoimpl.UnknownFields
2684
2685
2686
2687
2688 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
2689
2690 FieldId string `protobuf:"bytes,2,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
2691
2692 Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
2693
2694 Properties *Field_SelectionOptions_Choice_Properties `protobuf:"bytes,4,opt,name=properties,proto3" json:"properties,omitempty"`
2695 }
2696
2697 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) Reset() {
2698 *x = DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest{}
2699 if protoimpl.UnsafeEnabled {
2700 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[33]
2701 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2702 ms.StoreMessageInfo(mi)
2703 }
2704 }
2705
2706 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) String() string {
2707 return protoimpl.X.MessageStringOf(x)
2708 }
2709
2710 func (*DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) ProtoMessage() {}
2711
2712 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) ProtoReflect() protoreflect.Message {
2713 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[33]
2714 if protoimpl.UnsafeEnabled && x != nil {
2715 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2716 if ms.LoadMessageInfo() == nil {
2717 ms.StoreMessageInfo(mi)
2718 }
2719 return ms
2720 }
2721 return mi.MessageOf(x)
2722 }
2723
2724
2725 func (*DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) Descriptor() ([]byte, []int) {
2726 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 9}
2727 }
2728
2729 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
2730 if x != nil {
2731 return x.UpdateMask
2732 }
2733 return nil
2734 }
2735
2736 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) GetFieldId() string {
2737 if x != nil {
2738 return x.FieldId
2739 }
2740 return ""
2741 }
2742
2743 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) GetId() string {
2744 if x != nil {
2745 return x.Id
2746 }
2747 return ""
2748 }
2749
2750 func (x *DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest) GetProperties() *Field_SelectionOptions_Choice_Properties {
2751 if x != nil {
2752 return x.Properties
2753 }
2754 return nil
2755 }
2756
2757
2758 type DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest struct {
2759 state protoimpl.MessageState
2760 sizeCache protoimpl.SizeCache
2761 unknownFields protoimpl.UnknownFields
2762
2763
2764 FieldId string `protobuf:"bytes,1,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
2765
2766 Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
2767 }
2768
2769 func (x *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) Reset() {
2770 *x = DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest{}
2771 if protoimpl.UnsafeEnabled {
2772 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[34]
2773 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2774 ms.StoreMessageInfo(mi)
2775 }
2776 }
2777
2778 func (x *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) String() string {
2779 return protoimpl.X.MessageStringOf(x)
2780 }
2781
2782 func (*DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) ProtoMessage() {}
2783
2784 func (x *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) ProtoReflect() protoreflect.Message {
2785 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[34]
2786 if protoimpl.UnsafeEnabled && x != nil {
2787 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2788 if ms.LoadMessageInfo() == nil {
2789 ms.StoreMessageInfo(mi)
2790 }
2791 return ms
2792 }
2793 return mi.MessageOf(x)
2794 }
2795
2796
2797 func (*DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) Descriptor() ([]byte, []int) {
2798 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 10}
2799 }
2800
2801 func (x *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) GetFieldId() string {
2802 if x != nil {
2803 return x.FieldId
2804 }
2805 return ""
2806 }
2807
2808 func (x *DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest) GetId() string {
2809 if x != nil {
2810 return x.Id
2811 }
2812 return ""
2813 }
2814
2815
2816 type DeltaUpdateLabelRequest_DisableSelectionChoiceRequest struct {
2817 state protoimpl.MessageState
2818 sizeCache protoimpl.SizeCache
2819 unknownFields protoimpl.UnknownFields
2820
2821
2822
2823
2824 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
2825
2826 FieldId string `protobuf:"bytes,2,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
2827
2828 Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
2829
2830 DisabledPolicy *Lifecycle_DisabledPolicy `protobuf:"bytes,4,opt,name=disabled_policy,json=disabledPolicy,proto3" json:"disabled_policy,omitempty"`
2831 }
2832
2833 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) Reset() {
2834 *x = DeltaUpdateLabelRequest_DisableSelectionChoiceRequest{}
2835 if protoimpl.UnsafeEnabled {
2836 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[35]
2837 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2838 ms.StoreMessageInfo(mi)
2839 }
2840 }
2841
2842 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) String() string {
2843 return protoimpl.X.MessageStringOf(x)
2844 }
2845
2846 func (*DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) ProtoMessage() {}
2847
2848 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) ProtoReflect() protoreflect.Message {
2849 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[35]
2850 if protoimpl.UnsafeEnabled && x != nil {
2851 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2852 if ms.LoadMessageInfo() == nil {
2853 ms.StoreMessageInfo(mi)
2854 }
2855 return ms
2856 }
2857 return mi.MessageOf(x)
2858 }
2859
2860
2861 func (*DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) Descriptor() ([]byte, []int) {
2862 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 11}
2863 }
2864
2865 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
2866 if x != nil {
2867 return x.UpdateMask
2868 }
2869 return nil
2870 }
2871
2872 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) GetFieldId() string {
2873 if x != nil {
2874 return x.FieldId
2875 }
2876 return ""
2877 }
2878
2879 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) GetId() string {
2880 if x != nil {
2881 return x.Id
2882 }
2883 return ""
2884 }
2885
2886 func (x *DeltaUpdateLabelRequest_DisableSelectionChoiceRequest) GetDisabledPolicy() *Lifecycle_DisabledPolicy {
2887 if x != nil {
2888 return x.DisabledPolicy
2889 }
2890 return nil
2891 }
2892
2893
2894 type DeltaUpdateLabelRequest_EnableSelectionChoiceRequest struct {
2895 state protoimpl.MessageState
2896 sizeCache protoimpl.SizeCache
2897 unknownFields protoimpl.UnknownFields
2898
2899
2900 FieldId string `protobuf:"bytes,1,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
2901
2902 Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
2903 }
2904
2905 func (x *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) Reset() {
2906 *x = DeltaUpdateLabelRequest_EnableSelectionChoiceRequest{}
2907 if protoimpl.UnsafeEnabled {
2908 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[36]
2909 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2910 ms.StoreMessageInfo(mi)
2911 }
2912 }
2913
2914 func (x *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) String() string {
2915 return protoimpl.X.MessageStringOf(x)
2916 }
2917
2918 func (*DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) ProtoMessage() {}
2919
2920 func (x *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) ProtoReflect() protoreflect.Message {
2921 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[36]
2922 if protoimpl.UnsafeEnabled && x != nil {
2923 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2924 if ms.LoadMessageInfo() == nil {
2925 ms.StoreMessageInfo(mi)
2926 }
2927 return ms
2928 }
2929 return mi.MessageOf(x)
2930 }
2931
2932
2933 func (*DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) Descriptor() ([]byte, []int) {
2934 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{4, 12}
2935 }
2936
2937 func (x *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) GetFieldId() string {
2938 if x != nil {
2939 return x.FieldId
2940 }
2941 return ""
2942 }
2943
2944 func (x *DeltaUpdateLabelRequest_EnableSelectionChoiceRequest) GetId() string {
2945 if x != nil {
2946 return x.Id
2947 }
2948 return ""
2949 }
2950
2951
2952 type DeltaUpdateLabelResponse_Response struct {
2953 state protoimpl.MessageState
2954 sizeCache protoimpl.SizeCache
2955 unknownFields protoimpl.UnknownFields
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973 Response isDeltaUpdateLabelResponse_Response_Response `protobuf_oneof:"response"`
2974 }
2975
2976 func (x *DeltaUpdateLabelResponse_Response) Reset() {
2977 *x = DeltaUpdateLabelResponse_Response{}
2978 if protoimpl.UnsafeEnabled {
2979 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[37]
2980 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2981 ms.StoreMessageInfo(mi)
2982 }
2983 }
2984
2985 func (x *DeltaUpdateLabelResponse_Response) String() string {
2986 return protoimpl.X.MessageStringOf(x)
2987 }
2988
2989 func (*DeltaUpdateLabelResponse_Response) ProtoMessage() {}
2990
2991 func (x *DeltaUpdateLabelResponse_Response) ProtoReflect() protoreflect.Message {
2992 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[37]
2993 if protoimpl.UnsafeEnabled && x != nil {
2994 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2995 if ms.LoadMessageInfo() == nil {
2996 ms.StoreMessageInfo(mi)
2997 }
2998 return ms
2999 }
3000 return mi.MessageOf(x)
3001 }
3002
3003
3004 func (*DeltaUpdateLabelResponse_Response) Descriptor() ([]byte, []int) {
3005 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 0}
3006 }
3007
3008 func (m *DeltaUpdateLabelResponse_Response) GetResponse() isDeltaUpdateLabelResponse_Response_Response {
3009 if m != nil {
3010 return m.Response
3011 }
3012 return nil
3013 }
3014
3015 func (x *DeltaUpdateLabelResponse_Response) GetUpdateLabel() *DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse {
3016 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_UpdateLabel); ok {
3017 return x.UpdateLabel
3018 }
3019 return nil
3020 }
3021
3022 func (x *DeltaUpdateLabelResponse_Response) GetCreateField() *DeltaUpdateLabelResponse_CreateFieldResponse {
3023 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_CreateField); ok {
3024 return x.CreateField
3025 }
3026 return nil
3027 }
3028
3029 func (x *DeltaUpdateLabelResponse_Response) GetUpdateField() *DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse {
3030 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_UpdateField); ok {
3031 return x.UpdateField
3032 }
3033 return nil
3034 }
3035
3036 func (x *DeltaUpdateLabelResponse_Response) GetUpdateFieldType() *DeltaUpdateLabelResponse_UpdateFieldTypeResponse {
3037 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_UpdateFieldType); ok {
3038 return x.UpdateFieldType
3039 }
3040 return nil
3041 }
3042
3043 func (x *DeltaUpdateLabelResponse_Response) GetEnableField() *DeltaUpdateLabelResponse_EnableFieldResponse {
3044 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_EnableField); ok {
3045 return x.EnableField
3046 }
3047 return nil
3048 }
3049
3050 func (x *DeltaUpdateLabelResponse_Response) GetDisableField() *DeltaUpdateLabelResponse_DisableFieldResponse {
3051 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_DisableField); ok {
3052 return x.DisableField
3053 }
3054 return nil
3055 }
3056
3057 func (x *DeltaUpdateLabelResponse_Response) GetDeleteField() *DeltaUpdateLabelResponse_DeleteFieldResponse {
3058 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_DeleteField); ok {
3059 return x.DeleteField
3060 }
3061 return nil
3062 }
3063
3064 func (x *DeltaUpdateLabelResponse_Response) GetCreateSelectionChoice() *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse {
3065 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_CreateSelectionChoice); ok {
3066 return x.CreateSelectionChoice
3067 }
3068 return nil
3069 }
3070
3071 func (x *DeltaUpdateLabelResponse_Response) GetUpdateSelectionChoiceProperties() *DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse {
3072 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_UpdateSelectionChoiceProperties); ok {
3073 return x.UpdateSelectionChoiceProperties
3074 }
3075 return nil
3076 }
3077
3078 func (x *DeltaUpdateLabelResponse_Response) GetEnableSelectionChoice() *DeltaUpdateLabelResponse_EnableSelectionChoiceResponse {
3079 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_EnableSelectionChoice); ok {
3080 return x.EnableSelectionChoice
3081 }
3082 return nil
3083 }
3084
3085 func (x *DeltaUpdateLabelResponse_Response) GetDisableSelectionChoice() *DeltaUpdateLabelResponse_DisableSelectionChoiceResponse {
3086 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_DisableSelectionChoice); ok {
3087 return x.DisableSelectionChoice
3088 }
3089 return nil
3090 }
3091
3092 func (x *DeltaUpdateLabelResponse_Response) GetDeleteSelectionChoice() *DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse {
3093 if x, ok := x.GetResponse().(*DeltaUpdateLabelResponse_Response_DeleteSelectionChoice); ok {
3094 return x.DeleteSelectionChoice
3095 }
3096 return nil
3097 }
3098
3099 type isDeltaUpdateLabelResponse_Response_Response interface {
3100 isDeltaUpdateLabelResponse_Response_Response()
3101 }
3102
3103 type DeltaUpdateLabelResponse_Response_UpdateLabel struct {
3104
3105 UpdateLabel *DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse `protobuf:"bytes,1,opt,name=update_label,json=updateLabel,proto3,oneof"`
3106 }
3107
3108 type DeltaUpdateLabelResponse_Response_CreateField struct {
3109
3110 CreateField *DeltaUpdateLabelResponse_CreateFieldResponse `protobuf:"bytes,2,opt,name=create_field,json=createField,proto3,oneof"`
3111 }
3112
3113 type DeltaUpdateLabelResponse_Response_UpdateField struct {
3114
3115 UpdateField *DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse `protobuf:"bytes,3,opt,name=update_field,json=updateField,proto3,oneof"`
3116 }
3117
3118 type DeltaUpdateLabelResponse_Response_UpdateFieldType struct {
3119
3120 UpdateFieldType *DeltaUpdateLabelResponse_UpdateFieldTypeResponse `protobuf:"bytes,4,opt,name=update_field_type,json=updateFieldType,proto3,oneof"`
3121 }
3122
3123 type DeltaUpdateLabelResponse_Response_EnableField struct {
3124
3125 EnableField *DeltaUpdateLabelResponse_EnableFieldResponse `protobuf:"bytes,5,opt,name=enable_field,json=enableField,proto3,oneof"`
3126 }
3127
3128 type DeltaUpdateLabelResponse_Response_DisableField struct {
3129
3130 DisableField *DeltaUpdateLabelResponse_DisableFieldResponse `protobuf:"bytes,6,opt,name=disable_field,json=disableField,proto3,oneof"`
3131 }
3132
3133 type DeltaUpdateLabelResponse_Response_DeleteField struct {
3134
3135 DeleteField *DeltaUpdateLabelResponse_DeleteFieldResponse `protobuf:"bytes,7,opt,name=delete_field,json=deleteField,proto3,oneof"`
3136 }
3137
3138 type DeltaUpdateLabelResponse_Response_CreateSelectionChoice struct {
3139
3140 CreateSelectionChoice *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse `protobuf:"bytes,8,opt,name=create_selection_choice,json=createSelectionChoice,proto3,oneof"`
3141 }
3142
3143 type DeltaUpdateLabelResponse_Response_UpdateSelectionChoiceProperties struct {
3144
3145 UpdateSelectionChoiceProperties *DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse `protobuf:"bytes,9,opt,name=update_selection_choice_properties,json=updateSelectionChoiceProperties,proto3,oneof"`
3146 }
3147
3148 type DeltaUpdateLabelResponse_Response_EnableSelectionChoice struct {
3149
3150 EnableSelectionChoice *DeltaUpdateLabelResponse_EnableSelectionChoiceResponse `protobuf:"bytes,10,opt,name=enable_selection_choice,json=enableSelectionChoice,proto3,oneof"`
3151 }
3152
3153 type DeltaUpdateLabelResponse_Response_DisableSelectionChoice struct {
3154
3155 DisableSelectionChoice *DeltaUpdateLabelResponse_DisableSelectionChoiceResponse `protobuf:"bytes,11,opt,name=disable_selection_choice,json=disableSelectionChoice,proto3,oneof"`
3156 }
3157
3158 type DeltaUpdateLabelResponse_Response_DeleteSelectionChoice struct {
3159
3160 DeleteSelectionChoice *DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse `protobuf:"bytes,12,opt,name=delete_selection_choice,json=deleteSelectionChoice,proto3,oneof"`
3161 }
3162
3163 func (*DeltaUpdateLabelResponse_Response_UpdateLabel) isDeltaUpdateLabelResponse_Response_Response() {
3164 }
3165
3166 func (*DeltaUpdateLabelResponse_Response_CreateField) isDeltaUpdateLabelResponse_Response_Response() {
3167 }
3168
3169 func (*DeltaUpdateLabelResponse_Response_UpdateField) isDeltaUpdateLabelResponse_Response_Response() {
3170 }
3171
3172 func (*DeltaUpdateLabelResponse_Response_UpdateFieldType) isDeltaUpdateLabelResponse_Response_Response() {
3173 }
3174
3175 func (*DeltaUpdateLabelResponse_Response_EnableField) isDeltaUpdateLabelResponse_Response_Response() {
3176 }
3177
3178 func (*DeltaUpdateLabelResponse_Response_DisableField) isDeltaUpdateLabelResponse_Response_Response() {
3179 }
3180
3181 func (*DeltaUpdateLabelResponse_Response_DeleteField) isDeltaUpdateLabelResponse_Response_Response() {
3182 }
3183
3184 func (*DeltaUpdateLabelResponse_Response_CreateSelectionChoice) isDeltaUpdateLabelResponse_Response_Response() {
3185 }
3186
3187 func (*DeltaUpdateLabelResponse_Response_UpdateSelectionChoiceProperties) isDeltaUpdateLabelResponse_Response_Response() {
3188 }
3189
3190 func (*DeltaUpdateLabelResponse_Response_EnableSelectionChoice) isDeltaUpdateLabelResponse_Response_Response() {
3191 }
3192
3193 func (*DeltaUpdateLabelResponse_Response_DisableSelectionChoice) isDeltaUpdateLabelResponse_Response_Response() {
3194 }
3195
3196 func (*DeltaUpdateLabelResponse_Response_DeleteSelectionChoice) isDeltaUpdateLabelResponse_Response_Response() {
3197 }
3198
3199
3200 type DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse struct {
3201 state protoimpl.MessageState
3202 sizeCache protoimpl.SizeCache
3203 unknownFields protoimpl.UnknownFields
3204 }
3205
3206 func (x *DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse) Reset() {
3207 *x = DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse{}
3208 if protoimpl.UnsafeEnabled {
3209 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[38]
3210 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3211 ms.StoreMessageInfo(mi)
3212 }
3213 }
3214
3215 func (x *DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse) String() string {
3216 return protoimpl.X.MessageStringOf(x)
3217 }
3218
3219 func (*DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse) ProtoMessage() {}
3220
3221 func (x *DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse) ProtoReflect() protoreflect.Message {
3222 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[38]
3223 if protoimpl.UnsafeEnabled && x != nil {
3224 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3225 if ms.LoadMessageInfo() == nil {
3226 ms.StoreMessageInfo(mi)
3227 }
3228 return ms
3229 }
3230 return mi.MessageOf(x)
3231 }
3232
3233
3234 func (*DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse) Descriptor() ([]byte, []int) {
3235 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 1}
3236 }
3237
3238
3239 type DeltaUpdateLabelResponse_CreateFieldResponse struct {
3240 state protoimpl.MessageState
3241 sizeCache protoimpl.SizeCache
3242 unknownFields protoimpl.UnknownFields
3243
3244
3245
3246 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
3247
3248
3249 Priority int32 `protobuf:"varint,2,opt,name=priority,proto3" json:"priority,omitempty"`
3250 }
3251
3252 func (x *DeltaUpdateLabelResponse_CreateFieldResponse) Reset() {
3253 *x = DeltaUpdateLabelResponse_CreateFieldResponse{}
3254 if protoimpl.UnsafeEnabled {
3255 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[39]
3256 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3257 ms.StoreMessageInfo(mi)
3258 }
3259 }
3260
3261 func (x *DeltaUpdateLabelResponse_CreateFieldResponse) String() string {
3262 return protoimpl.X.MessageStringOf(x)
3263 }
3264
3265 func (*DeltaUpdateLabelResponse_CreateFieldResponse) ProtoMessage() {}
3266
3267 func (x *DeltaUpdateLabelResponse_CreateFieldResponse) ProtoReflect() protoreflect.Message {
3268 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[39]
3269 if protoimpl.UnsafeEnabled && x != nil {
3270 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3271 if ms.LoadMessageInfo() == nil {
3272 ms.StoreMessageInfo(mi)
3273 }
3274 return ms
3275 }
3276 return mi.MessageOf(x)
3277 }
3278
3279
3280 func (*DeltaUpdateLabelResponse_CreateFieldResponse) Descriptor() ([]byte, []int) {
3281 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 2}
3282 }
3283
3284 func (x *DeltaUpdateLabelResponse_CreateFieldResponse) GetId() string {
3285 if x != nil {
3286 return x.Id
3287 }
3288 return ""
3289 }
3290
3291 func (x *DeltaUpdateLabelResponse_CreateFieldResponse) GetPriority() int32 {
3292 if x != nil {
3293 return x.Priority
3294 }
3295 return 0
3296 }
3297
3298
3299 type DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse struct {
3300 state protoimpl.MessageState
3301 sizeCache protoimpl.SizeCache
3302 unknownFields protoimpl.UnknownFields
3303
3304
3305
3306 Priority int32 `protobuf:"varint,1,opt,name=priority,proto3" json:"priority,omitempty"`
3307 }
3308
3309 func (x *DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse) Reset() {
3310 *x = DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse{}
3311 if protoimpl.UnsafeEnabled {
3312 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[40]
3313 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3314 ms.StoreMessageInfo(mi)
3315 }
3316 }
3317
3318 func (x *DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse) String() string {
3319 return protoimpl.X.MessageStringOf(x)
3320 }
3321
3322 func (*DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse) ProtoMessage() {}
3323
3324 func (x *DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse) ProtoReflect() protoreflect.Message {
3325 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[40]
3326 if protoimpl.UnsafeEnabled && x != nil {
3327 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3328 if ms.LoadMessageInfo() == nil {
3329 ms.StoreMessageInfo(mi)
3330 }
3331 return ms
3332 }
3333 return mi.MessageOf(x)
3334 }
3335
3336
3337 func (*DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse) Descriptor() ([]byte, []int) {
3338 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 3}
3339 }
3340
3341 func (x *DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse) GetPriority() int32 {
3342 if x != nil {
3343 return x.Priority
3344 }
3345 return 0
3346 }
3347
3348
3349 type DeltaUpdateLabelResponse_UpdateFieldTypeResponse struct {
3350 state protoimpl.MessageState
3351 sizeCache protoimpl.SizeCache
3352 unknownFields protoimpl.UnknownFields
3353 }
3354
3355 func (x *DeltaUpdateLabelResponse_UpdateFieldTypeResponse) Reset() {
3356 *x = DeltaUpdateLabelResponse_UpdateFieldTypeResponse{}
3357 if protoimpl.UnsafeEnabled {
3358 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[41]
3359 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3360 ms.StoreMessageInfo(mi)
3361 }
3362 }
3363
3364 func (x *DeltaUpdateLabelResponse_UpdateFieldTypeResponse) String() string {
3365 return protoimpl.X.MessageStringOf(x)
3366 }
3367
3368 func (*DeltaUpdateLabelResponse_UpdateFieldTypeResponse) ProtoMessage() {}
3369
3370 func (x *DeltaUpdateLabelResponse_UpdateFieldTypeResponse) ProtoReflect() protoreflect.Message {
3371 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[41]
3372 if protoimpl.UnsafeEnabled && x != nil {
3373 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3374 if ms.LoadMessageInfo() == nil {
3375 ms.StoreMessageInfo(mi)
3376 }
3377 return ms
3378 }
3379 return mi.MessageOf(x)
3380 }
3381
3382
3383 func (*DeltaUpdateLabelResponse_UpdateFieldTypeResponse) Descriptor() ([]byte, []int) {
3384 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 4}
3385 }
3386
3387
3388 type DeltaUpdateLabelResponse_EnableFieldResponse struct {
3389 state protoimpl.MessageState
3390 sizeCache protoimpl.SizeCache
3391 unknownFields protoimpl.UnknownFields
3392 }
3393
3394 func (x *DeltaUpdateLabelResponse_EnableFieldResponse) Reset() {
3395 *x = DeltaUpdateLabelResponse_EnableFieldResponse{}
3396 if protoimpl.UnsafeEnabled {
3397 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[42]
3398 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3399 ms.StoreMessageInfo(mi)
3400 }
3401 }
3402
3403 func (x *DeltaUpdateLabelResponse_EnableFieldResponse) String() string {
3404 return protoimpl.X.MessageStringOf(x)
3405 }
3406
3407 func (*DeltaUpdateLabelResponse_EnableFieldResponse) ProtoMessage() {}
3408
3409 func (x *DeltaUpdateLabelResponse_EnableFieldResponse) ProtoReflect() protoreflect.Message {
3410 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[42]
3411 if protoimpl.UnsafeEnabled && x != nil {
3412 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3413 if ms.LoadMessageInfo() == nil {
3414 ms.StoreMessageInfo(mi)
3415 }
3416 return ms
3417 }
3418 return mi.MessageOf(x)
3419 }
3420
3421
3422 func (*DeltaUpdateLabelResponse_EnableFieldResponse) Descriptor() ([]byte, []int) {
3423 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 5}
3424 }
3425
3426
3427 type DeltaUpdateLabelResponse_DisableFieldResponse struct {
3428 state protoimpl.MessageState
3429 sizeCache protoimpl.SizeCache
3430 unknownFields protoimpl.UnknownFields
3431 }
3432
3433 func (x *DeltaUpdateLabelResponse_DisableFieldResponse) Reset() {
3434 *x = DeltaUpdateLabelResponse_DisableFieldResponse{}
3435 if protoimpl.UnsafeEnabled {
3436 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[43]
3437 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3438 ms.StoreMessageInfo(mi)
3439 }
3440 }
3441
3442 func (x *DeltaUpdateLabelResponse_DisableFieldResponse) String() string {
3443 return protoimpl.X.MessageStringOf(x)
3444 }
3445
3446 func (*DeltaUpdateLabelResponse_DisableFieldResponse) ProtoMessage() {}
3447
3448 func (x *DeltaUpdateLabelResponse_DisableFieldResponse) ProtoReflect() protoreflect.Message {
3449 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[43]
3450 if protoimpl.UnsafeEnabled && x != nil {
3451 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3452 if ms.LoadMessageInfo() == nil {
3453 ms.StoreMessageInfo(mi)
3454 }
3455 return ms
3456 }
3457 return mi.MessageOf(x)
3458 }
3459
3460
3461 func (*DeltaUpdateLabelResponse_DisableFieldResponse) Descriptor() ([]byte, []int) {
3462 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 6}
3463 }
3464
3465
3466 type DeltaUpdateLabelResponse_DeleteFieldResponse struct {
3467 state protoimpl.MessageState
3468 sizeCache protoimpl.SizeCache
3469 unknownFields protoimpl.UnknownFields
3470 }
3471
3472 func (x *DeltaUpdateLabelResponse_DeleteFieldResponse) Reset() {
3473 *x = DeltaUpdateLabelResponse_DeleteFieldResponse{}
3474 if protoimpl.UnsafeEnabled {
3475 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[44]
3476 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3477 ms.StoreMessageInfo(mi)
3478 }
3479 }
3480
3481 func (x *DeltaUpdateLabelResponse_DeleteFieldResponse) String() string {
3482 return protoimpl.X.MessageStringOf(x)
3483 }
3484
3485 func (*DeltaUpdateLabelResponse_DeleteFieldResponse) ProtoMessage() {}
3486
3487 func (x *DeltaUpdateLabelResponse_DeleteFieldResponse) ProtoReflect() protoreflect.Message {
3488 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[44]
3489 if protoimpl.UnsafeEnabled && x != nil {
3490 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3491 if ms.LoadMessageInfo() == nil {
3492 ms.StoreMessageInfo(mi)
3493 }
3494 return ms
3495 }
3496 return mi.MessageOf(x)
3497 }
3498
3499
3500 func (*DeltaUpdateLabelResponse_DeleteFieldResponse) Descriptor() ([]byte, []int) {
3501 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 7}
3502 }
3503
3504
3505 type DeltaUpdateLabelResponse_CreateSelectionChoiceResponse struct {
3506 state protoimpl.MessageState
3507 sizeCache protoimpl.SizeCache
3508 unknownFields protoimpl.UnknownFields
3509
3510
3511 FieldId string `protobuf:"bytes,1,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
3512
3513 Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
3514 }
3515
3516 func (x *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) Reset() {
3517 *x = DeltaUpdateLabelResponse_CreateSelectionChoiceResponse{}
3518 if protoimpl.UnsafeEnabled {
3519 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[45]
3520 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3521 ms.StoreMessageInfo(mi)
3522 }
3523 }
3524
3525 func (x *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) String() string {
3526 return protoimpl.X.MessageStringOf(x)
3527 }
3528
3529 func (*DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) ProtoMessage() {}
3530
3531 func (x *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) ProtoReflect() protoreflect.Message {
3532 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[45]
3533 if protoimpl.UnsafeEnabled && x != nil {
3534 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3535 if ms.LoadMessageInfo() == nil {
3536 ms.StoreMessageInfo(mi)
3537 }
3538 return ms
3539 }
3540 return mi.MessageOf(x)
3541 }
3542
3543
3544 func (*DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) Descriptor() ([]byte, []int) {
3545 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 8}
3546 }
3547
3548 func (x *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) GetFieldId() string {
3549 if x != nil {
3550 return x.FieldId
3551 }
3552 return ""
3553 }
3554
3555 func (x *DeltaUpdateLabelResponse_CreateSelectionChoiceResponse) GetId() string {
3556 if x != nil {
3557 return x.Id
3558 }
3559 return ""
3560 }
3561
3562
3563 type DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse struct {
3564 state protoimpl.MessageState
3565 sizeCache protoimpl.SizeCache
3566 unknownFields protoimpl.UnknownFields
3567
3568
3569
3570 Priority int32 `protobuf:"varint,1,opt,name=priority,proto3" json:"priority,omitempty"`
3571 }
3572
3573 func (x *DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse) Reset() {
3574 *x = DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse{}
3575 if protoimpl.UnsafeEnabled {
3576 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[46]
3577 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3578 ms.StoreMessageInfo(mi)
3579 }
3580 }
3581
3582 func (x *DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse) String() string {
3583 return protoimpl.X.MessageStringOf(x)
3584 }
3585
3586 func (*DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse) ProtoMessage() {}
3587
3588 func (x *DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse) ProtoReflect() protoreflect.Message {
3589 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[46]
3590 if protoimpl.UnsafeEnabled && x != nil {
3591 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3592 if ms.LoadMessageInfo() == nil {
3593 ms.StoreMessageInfo(mi)
3594 }
3595 return ms
3596 }
3597 return mi.MessageOf(x)
3598 }
3599
3600
3601 func (*DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse) Descriptor() ([]byte, []int) {
3602 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 9}
3603 }
3604
3605 func (x *DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse) GetPriority() int32 {
3606 if x != nil {
3607 return x.Priority
3608 }
3609 return 0
3610 }
3611
3612
3613 type DeltaUpdateLabelResponse_EnableSelectionChoiceResponse struct {
3614 state protoimpl.MessageState
3615 sizeCache protoimpl.SizeCache
3616 unknownFields protoimpl.UnknownFields
3617 }
3618
3619 func (x *DeltaUpdateLabelResponse_EnableSelectionChoiceResponse) Reset() {
3620 *x = DeltaUpdateLabelResponse_EnableSelectionChoiceResponse{}
3621 if protoimpl.UnsafeEnabled {
3622 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[47]
3623 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3624 ms.StoreMessageInfo(mi)
3625 }
3626 }
3627
3628 func (x *DeltaUpdateLabelResponse_EnableSelectionChoiceResponse) String() string {
3629 return protoimpl.X.MessageStringOf(x)
3630 }
3631
3632 func (*DeltaUpdateLabelResponse_EnableSelectionChoiceResponse) ProtoMessage() {}
3633
3634 func (x *DeltaUpdateLabelResponse_EnableSelectionChoiceResponse) ProtoReflect() protoreflect.Message {
3635 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[47]
3636 if protoimpl.UnsafeEnabled && x != nil {
3637 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3638 if ms.LoadMessageInfo() == nil {
3639 ms.StoreMessageInfo(mi)
3640 }
3641 return ms
3642 }
3643 return mi.MessageOf(x)
3644 }
3645
3646
3647 func (*DeltaUpdateLabelResponse_EnableSelectionChoiceResponse) Descriptor() ([]byte, []int) {
3648 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 10}
3649 }
3650
3651
3652 type DeltaUpdateLabelResponse_DisableSelectionChoiceResponse struct {
3653 state protoimpl.MessageState
3654 sizeCache protoimpl.SizeCache
3655 unknownFields protoimpl.UnknownFields
3656 }
3657
3658 func (x *DeltaUpdateLabelResponse_DisableSelectionChoiceResponse) Reset() {
3659 *x = DeltaUpdateLabelResponse_DisableSelectionChoiceResponse{}
3660 if protoimpl.UnsafeEnabled {
3661 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[48]
3662 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3663 ms.StoreMessageInfo(mi)
3664 }
3665 }
3666
3667 func (x *DeltaUpdateLabelResponse_DisableSelectionChoiceResponse) String() string {
3668 return protoimpl.X.MessageStringOf(x)
3669 }
3670
3671 func (*DeltaUpdateLabelResponse_DisableSelectionChoiceResponse) ProtoMessage() {}
3672
3673 func (x *DeltaUpdateLabelResponse_DisableSelectionChoiceResponse) ProtoReflect() protoreflect.Message {
3674 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[48]
3675 if protoimpl.UnsafeEnabled && x != nil {
3676 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3677 if ms.LoadMessageInfo() == nil {
3678 ms.StoreMessageInfo(mi)
3679 }
3680 return ms
3681 }
3682 return mi.MessageOf(x)
3683 }
3684
3685
3686 func (*DeltaUpdateLabelResponse_DisableSelectionChoiceResponse) Descriptor() ([]byte, []int) {
3687 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 11}
3688 }
3689
3690
3691 type DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse struct {
3692 state protoimpl.MessageState
3693 sizeCache protoimpl.SizeCache
3694 unknownFields protoimpl.UnknownFields
3695 }
3696
3697 func (x *DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse) Reset() {
3698 *x = DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse{}
3699 if protoimpl.UnsafeEnabled {
3700 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[49]
3701 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3702 ms.StoreMessageInfo(mi)
3703 }
3704 }
3705
3706 func (x *DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse) String() string {
3707 return protoimpl.X.MessageStringOf(x)
3708 }
3709
3710 func (*DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse) ProtoMessage() {}
3711
3712 func (x *DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse) ProtoReflect() protoreflect.Message {
3713 mi := &file_google_apps_drive_labels_v2_requests_proto_msgTypes[49]
3714 if protoimpl.UnsafeEnabled && x != nil {
3715 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3716 if ms.LoadMessageInfo() == nil {
3717 ms.StoreMessageInfo(mi)
3718 }
3719 return ms
3720 }
3721 return mi.MessageOf(x)
3722 }
3723
3724
3725 func (*DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse) Descriptor() ([]byte, []int) {
3726 return file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP(), []int{5, 12}
3727 }
3728
3729 var File_google_apps_drive_labels_v2_requests_proto protoreflect.FileDescriptor
3730
3731 var file_google_apps_drive_labels_v2_requests_proto_rawDesc = []byte{
3732 0x0a, 0x2a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72,
3733 0x69, 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x72, 0x65,
3734 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x67, 0x6f,
3735 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e,
3736 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
3737 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61,
3738 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67,
3739 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e,
3740 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x28, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
3741 0x70, 0x73, 0x2f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2f,
3742 0x76, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
3743 0x27, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72, 0x69,
3744 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x66, 0x69, 0x65,
3745 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
3746 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65,
3747 0x6c, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74,
3748 0x6f, 0x1a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64,
3749 0x72, 0x69, 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x6c,
3750 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
3751 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72, 0x69,
3752 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x61, 0x62,
3753 0x65, 0x6c, 0x5f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72,
3754 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74,
3755 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e,
3756 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4d, 0x0a, 0x0c, 0x57, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f,
3757 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x32, 0x0a, 0x14, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
3758 0x64, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
3759 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x12, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52,
3760 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
3761 0x74, 0x72, 0x6f, 0x6c, 0x22, 0xad, 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
3762 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
3763 0x65, 0x73, 0x74, 0x12, 0x47, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
3764 0x09, 0x42, 0x33, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2d, 0x0a, 0x2b, 0x64, 0x72, 0x69, 0x76, 0x65,
3765 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
3766 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x55, 0x73, 0x65, 0x72, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69,
3767 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x46, 0x0a, 0x08,
3768 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2a,
3769 0xfa, 0x41, 0x27, 0x0a, 0x25, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
3770 0x74, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f,
3771 0x6d, 0x2f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x08, 0x63, 0x75, 0x73, 0x74,
3772 0x6f, 0x6d, 0x65, 0x72, 0x22, 0xa2, 0x01, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c,
3773 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3d, 0x0a, 0x05, 0x6c,
3774 0x61, 0x62, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f,
3775 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
3776 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x42, 0x03,
3777 0xe0, 0x41, 0x02, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73,
3778 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02,
3779 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63,
3780 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
3781 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x6e,
3782 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x22, 0xda, 0x01, 0x0a, 0x0f, 0x47, 0x65,
3783 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a,
3784 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02,
3785 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
3786 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
3787 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x75,
3788 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
3789 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41,
3790 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67,
3791 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61,
3792 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x3a, 0x0a, 0x04, 0x76, 0x69,
3793 0x65, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
3794 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62,
3795 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x56, 0x69, 0x65, 0x77,
3796 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 0xa5, 0x20, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x74, 0x61,
3797 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
3798 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
3799 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c,
3800 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
3801 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
3802 0x12, 0x4e, 0x0a, 0x0d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
3803 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
3804 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65,
3805 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72,
3806 0x6f, 0x6c, 0x52, 0x0c, 0x77, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
3807 0x12, 0x58, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03,
3808 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73,
3809 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32,
3810 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65,
3811 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
3812 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73,
3813 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x04,
3814 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63,
3815 0x63, 0x65, 0x73, 0x73, 0x12, 0x3a, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x05, 0x20, 0x01,
3816 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73,
3817 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32,
3818 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77,
3819 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64,
3820 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67,
3821 0x65, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x9f, 0x0c, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
3822 0x74, 0x12, 0x76, 0x0a, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65,
3823 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
3824 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65,
3825 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74,
3826 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70,
3827 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3828 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x75, 0x70,
3829 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x6c, 0x0a, 0x0c, 0x63, 0x72, 0x65,
3830 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
3831 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
3832 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65,
3833 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65,
3834 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
3835 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61,
3836 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x76, 0x0a, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74,
3837 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x51, 0x2e,
3838 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76,
3839 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74,
3840 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75,
3841 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50,
3842 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
3843 0x48, 0x00, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12,
3844 0x79, 0x0a, 0x11, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f,
3845 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f,
3846 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
3847 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70,
3848 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
3849 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65,
3850 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x75, 0x70, 0x64, 0x61, 0x74,
3851 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x6c, 0x0a, 0x0c, 0x65, 0x6e,
3852 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
3853 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64,
3854 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44,
3855 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52,
3856 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65,
3857 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x65, 0x6e, 0x61,
3858 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x6f, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x61,
3859 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
3860 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
3861 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65,
3862 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65,
3863 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65,
3864 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0c, 0x64, 0x69, 0x73,
3865 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x6c, 0x0a, 0x0c, 0x64, 0x65, 0x6c,
3866 0x65, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,
3867 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
3868 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65,
3869 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65,
3870 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
3871 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x64, 0x65, 0x6c, 0x65,
3872 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x63, 0x72, 0x65, 0x61,
3873 0x74, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f,
3874 0x69, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
3875 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61,
3876 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64,
3877 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
3878 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43,
3879 0x68, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x15,
3880 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43,
3881 0x68, 0x6f, 0x69, 0x63, 0x65, 0x12, 0xaa, 0x01, 0x0a, 0x22, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
3882 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63,
3883 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x09, 0x20, 0x01,
3884 0x28, 0x0b, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73,
3885 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32,
3886 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65,
3887 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
3888 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x72,
3889 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48,
3890 0x00, 0x52, 0x1f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
3891 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69,
3892 0x65, 0x73, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65,
3893 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a,
3894 0x20, 0x01, 0x28, 0x0b, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70,
3895 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e,
3896 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
3897 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c,
3898 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65,
3899 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x15, 0x65, 0x6e, 0x61, 0x62, 0x6c,
3900 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65,
3901 0x12, 0x8e, 0x01, 0x0a, 0x18, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x6c,
3902 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20,
3903 0x01, 0x28, 0x0b, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
3904 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
3905 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62,
3906 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
3907 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65,
3908 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x16, 0x64, 0x69, 0x73, 0x61, 0x62,
3909 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63,
3910 0x65, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x6c,
3911 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0c, 0x20,
3912 0x01, 0x28, 0x0b, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
3913 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
3914 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62,
3915 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
3916 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x52,
3917 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x15, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
3918 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x42,
3919 0x06, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x1a, 0xaf, 0x01, 0x0a, 0x1c, 0x55, 0x70, 0x64, 0x61,
3920 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65,
3921 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61,
3922 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
3923 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
3924 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74,
3925 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x52, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3926 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
3927 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61,
3928 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x50, 0x72,
3929 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x70,
3930 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x1a, 0xcc, 0x01, 0x0a, 0x13, 0x44, 0x69,
3931 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
3932 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b,
3933 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
3934 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61,
3935 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x13,
3936 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52,
3937 0x02, 0x69, 0x64, 0x12, 0x63, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x5f,
3938 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
3939 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65,
3940 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x63,
3941 0x79, 0x63, 0x6c, 0x65, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x50, 0x6f, 0x6c,
3942 0x69, 0x63, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c,
3943 0x65, 0x64, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x1a, 0x29, 0x0a, 0x12, 0x45, 0x6e, 0x61, 0x62,
3944 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13,
3945 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52,
3946 0x02, 0x69, 0x64, 0x1a, 0x29, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x65,
3947 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18,
3948 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64, 0x1a, 0x53,
3949 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x71,
3950 0x75, 0x65, 0x73, 0x74, 0x12, 0x3d, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20,
3951 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
3952 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
3953 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x66, 0x69,
3954 0x65, 0x6c, 0x64, 0x1a, 0xc4, 0x01, 0x0a, 0x1c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69,
3955 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71,
3956 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d,
3957 0x61, 0x73, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
3958 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c,
3959 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73,
3960 0x6b, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0,
3961 0x41, 0x02, 0x52, 0x02, 0x69, 0x64, 0x12, 0x52, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3962 0x74, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f,
3963 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
3964 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x50,
3965 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a,
3966 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x1a, 0xbb, 0x04, 0x0a, 0x16, 0x55,
3967 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65,
3968 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x0c, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6f, 0x70,
3969 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f,
3970 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e,
3971 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e,
3972 0x54, 0x65, 0x78, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x0b, 0x74,
3973 0x65, 0x78, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x5c, 0x0a, 0x0f, 0x69, 0x6e,
3974 0x74, 0x65, 0x67, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20,
3975 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
3976 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
3977 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x65, 0x72, 0x4f,
3978 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x65,
3979 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x53, 0x0a, 0x0c, 0x64, 0x61, 0x74, 0x65,
3980 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e,
3981 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69,
3982 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x46, 0x69, 0x65,
3983 0x6c, 0x64, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00,
3984 0x52, 0x0b, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x62, 0x0a,
3985 0x11, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
3986 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
3987 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62,
3988 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x53, 0x65, 0x6c,
3989 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52,
3990 0x10, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
3991 0x73, 0x12, 0x53, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
3992 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
3993 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65,
3994 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x55, 0x73, 0x65, 0x72,
3995 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x0b, 0x75, 0x73, 0x65, 0x72, 0x4f,
3996 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
3997 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
3998 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69,
3999 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d,
4000 0x61, 0x73, 0x6b, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
4001 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64, 0x42, 0x0e, 0x0a, 0x0c, 0x74, 0x79, 0x70, 0x65,
4002 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x97, 0x01, 0x0a, 0x1c, 0x43, 0x72, 0x65,
4003 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69,
4004 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x08, 0x66, 0x69, 0x65,
4005 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02,
4006 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x64, 0x12, 0x57, 0x0a, 0x06, 0x63, 0x68, 0x6f,
4007 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
4008 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61,
4009 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x53, 0x65,
4010 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43,
4011 0x68, 0x6f, 0x69, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x06, 0x63, 0x68, 0x6f, 0x69,
4012 0x63, 0x65, 0x1a, 0x86, 0x02, 0x0a, 0x26, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c,
4013 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x70,
4014 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a,
4015 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x01, 0x20, 0x01,
4016 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
4017 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a,
4018 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x1e, 0x0a, 0x08, 0x66, 0x69,
4019 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41,
4020 0x02, 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64,
4021 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64, 0x12,
4022 0x6a, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20,
4023 0x01, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
4024 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
4025 0x32, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
4026 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x2e,
4027 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52,
4028 0x0a, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x1a, 0x53, 0x0a, 0x1c, 0x44,
4029 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68,
4030 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x08, 0x66,
4031 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0,
4032 0x41, 0x02, 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x02, 0x69,
4033 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64,
4034 0x1a, 0xf6, 0x01, 0x0a, 0x1d, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65,
4035 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
4036 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73,
4037 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
4038 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d,
4039 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12,
4040 0x1e, 0x0a, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
4041 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x64, 0x12,
4042 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02,
4043 0x52, 0x02, 0x69, 0x64, 0x12, 0x63, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64,
4044 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e,
4045 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76,
4046 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69, 0x66, 0x65,
4047 0x63, 0x79, 0x63, 0x6c, 0x65, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x50, 0x6f,
4048 0x6c, 0x69, 0x63, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x61, 0x62,
4049 0x6c, 0x65, 0x64, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x1a, 0x53, 0x0a, 0x1c, 0x45, 0x6e, 0x61,
4050 0x62, 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69,
4051 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x08, 0x66, 0x69, 0x65,
4052 0x6c, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02,
4053 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18,
4054 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x02, 0x69, 0x64, 0x22, 0xf9,
4055 0x11, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
4056 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x09, 0x72,
4057 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e,
4058 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69,
4059 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c,
4060 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73,
4061 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x09,
4062 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x12, 0x47, 0x0a, 0x0d, 0x75, 0x70, 0x64,
4063 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
4064 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64,
4065 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c,
4066 0x61, 0x62, 0x65, 0x6c, 0x52, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x4c, 0x61, 0x62,
4067 0x65, 0x6c, 0x1a, 0xbc, 0x0c, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
4068 0x78, 0x0a, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18,
4069 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
4070 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4071 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
4072 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x55, 0x70, 0x64,
4073 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69,
4074 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x75, 0x70,
4075 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x6e, 0x0a, 0x0c, 0x63, 0x72, 0x65,
4076 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
4077 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
4078 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65,
4079 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65,
4080 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65,
4081 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x63, 0x72,
4082 0x65, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x78, 0x0a, 0x0c, 0x75, 0x70, 0x64,
4083 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
4084 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
4085 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65,
4086 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65,
4087 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65,
4088 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
4089 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69,
4090 0x65, 0x6c, 0x64, 0x12, 0x7b, 0x0a, 0x11, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x66, 0x69,
4091 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4d,
4092 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69,
4093 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c,
4094 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73,
4095 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
4096 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52,
4097 0x0f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65,
4098 0x12, 0x6e, 0x0a, 0x0c, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64,
4099 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
4100 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c,
4101 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
4102 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x6e,
4103 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
4104 0x65, 0x48, 0x00, 0x52, 0x0b, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64,
4105 0x12, 0x71, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c,
4106 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
4107 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65,
4108 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74,
4109 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44,
4110 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
4111 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69,
4112 0x65, 0x6c, 0x64, 0x12, 0x6e, 0x0a, 0x0c, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x66, 0x69,
4113 0x65, 0x6c, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
4114 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61,
4115 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64,
4116 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
4117 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70,
4118 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69,
4119 0x65, 0x6c, 0x64, 0x12, 0x8d, 0x01, 0x0a, 0x17, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x73,
4120 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x18,
4121 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
4122 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4123 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
4124 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x43, 0x72, 0x65,
4125 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69,
4126 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x15, 0x63, 0x72,
4127 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f,
4128 0x69, 0x63, 0x65, 0x12, 0xac, 0x01, 0x0a, 0x22, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x73,
4129 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x5f,
4130 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b,
4131 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64,
4132 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44,
4133 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52,
4134 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65,
4135 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f,
4136 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48,
4137 0x00, 0x52, 0x1f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
4138 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69,
4139 0x65, 0x73, 0x12, 0x8d, 0x01, 0x0a, 0x17, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65,
4140 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a,
4141 0x20, 0x01, 0x28, 0x0b, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70,
4142 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e,
4143 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
4144 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x6e, 0x61, 0x62,
4145 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63,
4146 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x15, 0x65, 0x6e, 0x61,
4147 0x62, 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69,
4148 0x63, 0x65, 0x12, 0x90, 0x01, 0x0a, 0x18, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73,
4149 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x18,
4150 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
4151 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4152 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
4153 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x69, 0x73,
4154 0x61, 0x62, 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f,
4155 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x16, 0x64,
4156 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43,
4157 0x68, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x8d, 0x01, 0x0a, 0x17, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
4158 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63,
4159 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
4160 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65,
4161 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x55, 0x70, 0x64, 0x61, 0x74,
4162 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44,
4163 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68,
4164 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x15,
4165 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43,
4166 0x68, 0x6f, 0x69, 0x63, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
4167 0x65, 0x1a, 0x1f, 0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c,
4168 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
4169 0x73, 0x65, 0x1a, 0x41, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
4170 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
4171 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69,
4172 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x72, 0x69,
4173 0x6f, 0x72, 0x69, 0x74, 0x79, 0x1a, 0x3b, 0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46,
4174 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x52, 0x65,
4175 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69,
4176 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69,
4177 0x74, 0x79, 0x1a, 0x19, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
4178 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x15, 0x0a,
4179 0x13, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70,
4180 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x16, 0x0a, 0x14, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46,
4181 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x15, 0x0a, 0x13,
4182 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
4183 0x6e, 0x73, 0x65, 0x1a, 0x4a, 0x0a, 0x1d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c,
4184 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70,
4185 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x64,
4186 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x64, 0x12,
4187 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x1a,
4188 0x45, 0x0a, 0x27, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
4189 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69,
4190 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72,
4191 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x72,
4192 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x1a, 0x1f, 0x0a, 0x1d, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
4193 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x52,
4194 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x20, 0x0a, 0x1e, 0x44, 0x69, 0x73, 0x61, 0x62,
4195 0x6c, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69, 0x63,
4196 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x1f, 0x0a, 0x1d, 0x44, 0x65, 0x6c,
4197 0x65, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x6f, 0x69,
4198 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xc7, 0x02, 0x0a, 0x1a, 0x55,
4199 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x4d, 0x6f,
4200 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
4201 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a,
4202 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
4203 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65,
4204 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x60, 0x0a, 0x09, 0x63, 0x6f, 0x70, 0x79, 0x5f,
4205 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f,
4206 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
4207 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x41,
4208 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x6f, 0x6c, 0x69, 0x63,
4209 0x79, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52,
4210 0x08, 0x63, 0x6f, 0x70, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65,
4211 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x03, 0x20,
4212 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63,
4213 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f,
4214 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67,
4215 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x3a, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77,
4216 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
4217 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c,
4218 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04,
4219 0x76, 0x69, 0x65, 0x77, 0x22, 0x55, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c,
4220 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a,
4221 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02,
4222 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4223 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
4224 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xb2, 0x03, 0x0a, 0x11,
4225 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
4226 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61,
4227 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x0e, 0x75,
4228 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x5b, 0x0a,
4229 0x0c, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x04, 0x20,
4230 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
4231 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
4232 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
4233 0x6e, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x6f, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x6d,
4234 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x75,
4235 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01,
4236 0x28, 0x08, 0x52, 0x0d, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x4f, 0x6e, 0x6c,
4237 0x79, 0x12, 0x46, 0x0a, 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18, 0x02, 0x20,
4238 0x01, 0x28, 0x09, 0x42, 0x2a, 0xfa, 0x41, 0x27, 0x0a, 0x25, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x69,
4239 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
4240 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52,
4241 0x08, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e,
4242 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
4243 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
4244 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
4245 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
4246 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
4247 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x3a, 0x0a, 0x04, 0x76, 0x69,
4248 0x65, 0x77, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
4249 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62,
4250 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x56, 0x69, 0x65, 0x77,
4251 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x42, 0x08, 0x0a, 0x06, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
4252 0x22, 0x78, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65,
4253 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4254 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
4255 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c,
4256 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65,
4257 0x6c, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f,
4258 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78,
4259 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xe8, 0x01, 0x0a, 0x1c, 0x43,
4260 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73,
4261 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x06, 0x70,
4262 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02,
4263 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4264 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
4265 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x5c, 0x0a,
4266 0x10, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
4267 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
4268 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65,
4269 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69,
4270 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0f, 0x6c, 0x61, 0x62, 0x65,
4271 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x10, 0x75,
4272 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
4273 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41,
4274 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0xc5, 0x01, 0x0a, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61,
4275 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
4276 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18,
4277 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64,
4278 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
4279 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52,
4280 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61,
4281 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
4282 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73,
4283 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03,
4284 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d,
4285 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01,
4286 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xa1, 0x01,
4287 0x0a, 0x1c, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69,
4288 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59,
4289 0x0a, 0x11, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
4290 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
4291 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61,
4292 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72,
4293 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65,
4294 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78,
4295 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01,
4296 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65,
4297 0x6e, 0x22, 0xe8, 0x01, 0x0a, 0x1c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65,
4298 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
4299 0x73, 0x74, 0x12, 0x40, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
4300 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76,
4301 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
4302 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x70, 0x61,
4303 0x72, 0x65, 0x6e, 0x74, 0x12, 0x5c, 0x0a, 0x10, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x70, 0x65,
4304 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c,
4305 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69,
4306 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62,
4307 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41,
4308 0x02, 0x52, 0x0f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
4309 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f,
4310 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73,
4311 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x90, 0x01, 0x0a,
4312 0x1c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d,
4313 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x46, 0x0a,
4314 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x32, 0xe0, 0x41, 0x02,
4315 0xfa, 0x41, 0x2c, 0x0a, 0x2a, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
4316 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
4317 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52,
4318 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d,
4319 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
4320 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22,
4321 0xec, 0x01, 0x0a, 0x22, 0x42, 0x61, 0x74, 0x63, 0x68, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
4322 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52,
4323 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
4324 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20,
4325 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
4326 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c,
4327 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x5a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75,
4328 0x65, 0x73, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f,
4329 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
4330 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
4331 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65,
4332 0x71, 0x75, 0x65, 0x73, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75,
4333 0x65, 0x73, 0x74, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69,
4334 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e,
4335 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x7a,
4336 0x0a, 0x23, 0x42, 0x61, 0x74, 0x63, 0x68, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x62,
4337 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73,
4338 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
4339 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f,
4340 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
4341 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65,
4342 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x70,
4343 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xec, 0x01, 0x0a, 0x22, 0x42,
4344 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50,
4345 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
4346 0x74, 0x12, 0x5a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20,
4347 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70,
4348 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76,
4349 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x65, 0x72,
4350 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x42, 0x03,
4351 0xe0, 0x41, 0x02, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x12, 0x28, 0x0a,
4352 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73,
4353 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69,
4354 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x40, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e,
4355 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a,
4356 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
4357 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65,
4358 0x6c, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x8f, 0x03, 0x0a, 0x13, 0x44, 0x69,
4359 0x73, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
4360 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b,
4361 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
4362 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61,
4363 0x73, 0x6b, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x3c,
4364 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41,
4365 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c,
4366 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d,
4367 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10,
4368 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
4369 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e,
4370 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x4e, 0x0a, 0x0d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f,
4371 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e,
4372 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76,
4373 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x57, 0x72, 0x69, 0x74,
4374 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x0c, 0x77, 0x72, 0x69, 0x74, 0x65, 0x43,
4375 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x5e, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c,
4376 0x65, 0x64, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
4377 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
4378 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69,
4379 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64,
4380 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64,
4381 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61,
4382 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c,
4383 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x22, 0xf2, 0x01, 0x0a, 0x13,
4384 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75,
4385 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
4386 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65,
4387 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
4388 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d,
4389 0x65, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61,
4390 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65,
4391 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x4e, 0x0a, 0x0d, 0x77,
4392 0x72, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x03, 0x20, 0x01,
4393 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73,
4394 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32,
4395 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x0c, 0x77,
4396 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x23, 0x0a, 0x0d, 0x6c,
4397 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01,
4398 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65,
4399 0x22, 0xf1, 0x01, 0x0a, 0x12, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c,
4400 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
4401 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64,
4402 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
4403 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52,
4404 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x6d,
4405 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
4406 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12,
4407 0x4e, 0x0a, 0x0d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
4408 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
4409 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c,
4410 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
4411 0x6c, 0x52, 0x0c, 0x77, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12,
4412 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
4413 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
4414 0x43, 0x6f, 0x64, 0x65, 0x22, 0xcc, 0x01, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c,
4415 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x04, 0x6e,
4416 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0, 0x41, 0x02, 0xfa, 0x41,
4417 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x67,
4418 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x61,
4419 0x62, 0x65, 0x6c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x75, 0x73, 0x65,
4420 0x5f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20,
4421 0x01, 0x28, 0x08, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x41, 0x63, 0x63,
4422 0x65, 0x73, 0x73, 0x12, 0x4e, 0x0a, 0x0d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
4423 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f,
4424 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c,
4425 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f,
4426 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x52, 0x0c, 0x77, 0x72, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74,
4427 0x72, 0x6f, 0x6c, 0x22, 0x95, 0x01, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65,
4428 0x6c, 0x4c, 0x6f, 0x63, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a,
4429 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xe0,
4430 0x41, 0x02, 0xfa, 0x41, 0x22, 0x0a, 0x20, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6c, 0x61, 0x62, 0x65,
4431 0x6c, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f,
4432 0x6d, 0x2f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12,
4433 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
4434 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
4435 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
4436 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x89, 0x01, 0x0a, 0x16,
4437 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4c, 0x6f, 0x63, 0x6b, 0x73, 0x52, 0x65,
4438 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x47, 0x0a, 0x0b, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f,
4439 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f,
4440 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e,
4441 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4c,
4442 0x6f, 0x63, 0x6b, 0x52, 0x0a, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x4c, 0x6f, 0x63, 0x6b, 0x73, 0x12,
4443 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b,
4444 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61,
4445 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x2a, 0x36, 0x0a, 0x09, 0x4c, 0x61, 0x62, 0x65, 0x6c,
4446 0x56, 0x69, 0x65, 0x77, 0x12, 0x14, 0x0a, 0x10, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f, 0x56, 0x49,
4447 0x45, 0x57, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4c, 0x41,
4448 0x42, 0x45, 0x4c, 0x5f, 0x56, 0x49, 0x45, 0x57, 0x5f, 0x46, 0x55, 0x4c, 0x4c, 0x10, 0x01, 0x42,
4449 0x7c, 0x0a, 0x1f, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70,
4450 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2e,
4451 0x76, 0x32, 0x42, 0x0d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x50, 0x72, 0x6f, 0x74,
4452 0x6f, 0x50, 0x01, 0x5a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
4453 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
4454 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f,
4455 0x64, 0x72, 0x69, 0x76, 0x65, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x2f, 0x76, 0x32, 0x3b,
4456 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0xa2, 0x02, 0x04, 0x44, 0x4c, 0x42, 0x4c, 0x62, 0x06, 0x70,
4457 0x72, 0x6f, 0x74, 0x6f, 0x33,
4458 }
4459
4460 var (
4461 file_google_apps_drive_labels_v2_requests_proto_rawDescOnce sync.Once
4462 file_google_apps_drive_labels_v2_requests_proto_rawDescData = file_google_apps_drive_labels_v2_requests_proto_rawDesc
4463 )
4464
4465 func file_google_apps_drive_labels_v2_requests_proto_rawDescGZIP() []byte {
4466 file_google_apps_drive_labels_v2_requests_proto_rawDescOnce.Do(func() {
4467 file_google_apps_drive_labels_v2_requests_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_apps_drive_labels_v2_requests_proto_rawDescData)
4468 })
4469 return file_google_apps_drive_labels_v2_requests_proto_rawDescData
4470 }
4471
4472 var file_google_apps_drive_labels_v2_requests_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
4473 var file_google_apps_drive_labels_v2_requests_proto_msgTypes = make([]protoimpl.MessageInfo, 50)
4474 var file_google_apps_drive_labels_v2_requests_proto_goTypes = []interface{}{
4475 (LabelView)(0),
4476 (*WriteControl)(nil),
4477 (*GetUserCapabilitiesRequest)(nil),
4478 (*CreateLabelRequest)(nil),
4479 (*GetLabelRequest)(nil),
4480 (*DeltaUpdateLabelRequest)(nil),
4481 (*DeltaUpdateLabelResponse)(nil),
4482 (*UpdateLabelCopyModeRequest)(nil),
4483 (*GetLabelLimitsRequest)(nil),
4484 (*ListLabelsRequest)(nil),
4485 (*ListLabelsResponse)(nil),
4486 (*CreateLabelPermissionRequest)(nil),
4487 (*ListLabelPermissionsRequest)(nil),
4488 (*ListLabelPermissionsResponse)(nil),
4489 (*UpdateLabelPermissionRequest)(nil),
4490 (*DeleteLabelPermissionRequest)(nil),
4491 (*BatchUpdateLabelPermissionsRequest)(nil),
4492 (*BatchUpdateLabelPermissionsResponse)(nil),
4493 (*BatchDeleteLabelPermissionsRequest)(nil),
4494 (*DisableLabelRequest)(nil),
4495 (*PublishLabelRequest)(nil),
4496 (*EnableLabelRequest)(nil),
4497 (*DeleteLabelRequest)(nil),
4498 (*ListLabelLocksRequest)(nil),
4499 (*ListLabelLocksResponse)(nil),
4500 (*DeltaUpdateLabelRequest_Request)(nil),
4501 (*DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest)(nil),
4502 (*DeltaUpdateLabelRequest_DisableFieldRequest)(nil),
4503 (*DeltaUpdateLabelRequest_EnableFieldRequest)(nil),
4504 (*DeltaUpdateLabelRequest_DeleteFieldRequest)(nil),
4505 (*DeltaUpdateLabelRequest_CreateFieldRequest)(nil),
4506 (*DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest)(nil),
4507 (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest)(nil),
4508 (*DeltaUpdateLabelRequest_CreateSelectionChoiceRequest)(nil),
4509 (*DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest)(nil),
4510 (*DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest)(nil),
4511 (*DeltaUpdateLabelRequest_DisableSelectionChoiceRequest)(nil),
4512 (*DeltaUpdateLabelRequest_EnableSelectionChoiceRequest)(nil),
4513 (*DeltaUpdateLabelResponse_Response)(nil),
4514 (*DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse)(nil),
4515 (*DeltaUpdateLabelResponse_CreateFieldResponse)(nil),
4516 (*DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse)(nil),
4517 (*DeltaUpdateLabelResponse_UpdateFieldTypeResponse)(nil),
4518 (*DeltaUpdateLabelResponse_EnableFieldResponse)(nil),
4519 (*DeltaUpdateLabelResponse_DisableFieldResponse)(nil),
4520 (*DeltaUpdateLabelResponse_DeleteFieldResponse)(nil),
4521 (*DeltaUpdateLabelResponse_CreateSelectionChoiceResponse)(nil),
4522 (*DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse)(nil),
4523 (*DeltaUpdateLabelResponse_EnableSelectionChoiceResponse)(nil),
4524 (*DeltaUpdateLabelResponse_DisableSelectionChoiceResponse)(nil),
4525 (*DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse)(nil),
4526 (*Label)(nil),
4527 (Label_AppliedLabelPolicy_CopyMode)(0),
4528 (LabelPermission_LabelRole)(0),
4529 (*LabelPermission)(nil),
4530 (*fieldmaskpb.FieldMask)(nil),
4531 (*Lifecycle_DisabledPolicy)(nil),
4532 (*LabelLock)(nil),
4533 (*Label_Properties)(nil),
4534 (*Field)(nil),
4535 (*Field_Properties)(nil),
4536 (*Field_TextOptions)(nil),
4537 (*Field_IntegerOptions)(nil),
4538 (*Field_DateOptions)(nil),
4539 (*Field_SelectionOptions)(nil),
4540 (*Field_UserOptions)(nil),
4541 (*Field_SelectionOptions_Choice)(nil),
4542 (*Field_SelectionOptions_Choice_Properties)(nil),
4543 }
4544 var file_google_apps_drive_labels_v2_requests_proto_depIdxs = []int32{
4545 51,
4546 0,
4547 1,
4548 25,
4549 0,
4550 38,
4551 51,
4552 52,
4553 0,
4554 53,
4555 0,
4556 51,
4557 54,
4558 54,
4559 54,
4560 14,
4561 54,
4562 15,
4563 55,
4564 1,
4565 56,
4566 1,
4567 1,
4568 1,
4569 57,
4570 26,
4571 30,
4572 31,
4573 32,
4574 28,
4575 27,
4576 29,
4577 33,
4578 34,
4579 37,
4580 36,
4581 35,
4582 55,
4583 58,
4584 55,
4585 56,
4586 59,
4587 55,
4588 60,
4589 61,
4590 62,
4591 63,
4592 64,
4593 65,
4594 55,
4595 66,
4596 55,
4597 67,
4598 55,
4599 56,
4600 39,
4601 40,
4602 41,
4603 42,
4604 43,
4605 44,
4606 45,
4607 46,
4608 47,
4609 48,
4610 49,
4611 50,
4612 67,
4613 67,
4614 67,
4615 67,
4616 0,
4617 }
4618
4619 func init() { file_google_apps_drive_labels_v2_requests_proto_init() }
4620 func file_google_apps_drive_labels_v2_requests_proto_init() {
4621 if File_google_apps_drive_labels_v2_requests_proto != nil {
4622 return
4623 }
4624 file_google_apps_drive_labels_v2_common_proto_init()
4625 file_google_apps_drive_labels_v2_field_proto_init()
4626 file_google_apps_drive_labels_v2_label_proto_init()
4627 file_google_apps_drive_labels_v2_label_lock_proto_init()
4628 file_google_apps_drive_labels_v2_label_permission_proto_init()
4629 if !protoimpl.UnsafeEnabled {
4630 file_google_apps_drive_labels_v2_requests_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
4631 switch v := v.(*WriteControl); i {
4632 case 0:
4633 return &v.state
4634 case 1:
4635 return &v.sizeCache
4636 case 2:
4637 return &v.unknownFields
4638 default:
4639 return nil
4640 }
4641 }
4642 file_google_apps_drive_labels_v2_requests_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
4643 switch v := v.(*GetUserCapabilitiesRequest); i {
4644 case 0:
4645 return &v.state
4646 case 1:
4647 return &v.sizeCache
4648 case 2:
4649 return &v.unknownFields
4650 default:
4651 return nil
4652 }
4653 }
4654 file_google_apps_drive_labels_v2_requests_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
4655 switch v := v.(*CreateLabelRequest); i {
4656 case 0:
4657 return &v.state
4658 case 1:
4659 return &v.sizeCache
4660 case 2:
4661 return &v.unknownFields
4662 default:
4663 return nil
4664 }
4665 }
4666 file_google_apps_drive_labels_v2_requests_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
4667 switch v := v.(*GetLabelRequest); i {
4668 case 0:
4669 return &v.state
4670 case 1:
4671 return &v.sizeCache
4672 case 2:
4673 return &v.unknownFields
4674 default:
4675 return nil
4676 }
4677 }
4678 file_google_apps_drive_labels_v2_requests_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
4679 switch v := v.(*DeltaUpdateLabelRequest); i {
4680 case 0:
4681 return &v.state
4682 case 1:
4683 return &v.sizeCache
4684 case 2:
4685 return &v.unknownFields
4686 default:
4687 return nil
4688 }
4689 }
4690 file_google_apps_drive_labels_v2_requests_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
4691 switch v := v.(*DeltaUpdateLabelResponse); i {
4692 case 0:
4693 return &v.state
4694 case 1:
4695 return &v.sizeCache
4696 case 2:
4697 return &v.unknownFields
4698 default:
4699 return nil
4700 }
4701 }
4702 file_google_apps_drive_labels_v2_requests_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
4703 switch v := v.(*UpdateLabelCopyModeRequest); i {
4704 case 0:
4705 return &v.state
4706 case 1:
4707 return &v.sizeCache
4708 case 2:
4709 return &v.unknownFields
4710 default:
4711 return nil
4712 }
4713 }
4714 file_google_apps_drive_labels_v2_requests_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
4715 switch v := v.(*GetLabelLimitsRequest); i {
4716 case 0:
4717 return &v.state
4718 case 1:
4719 return &v.sizeCache
4720 case 2:
4721 return &v.unknownFields
4722 default:
4723 return nil
4724 }
4725 }
4726 file_google_apps_drive_labels_v2_requests_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
4727 switch v := v.(*ListLabelsRequest); i {
4728 case 0:
4729 return &v.state
4730 case 1:
4731 return &v.sizeCache
4732 case 2:
4733 return &v.unknownFields
4734 default:
4735 return nil
4736 }
4737 }
4738 file_google_apps_drive_labels_v2_requests_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
4739 switch v := v.(*ListLabelsResponse); i {
4740 case 0:
4741 return &v.state
4742 case 1:
4743 return &v.sizeCache
4744 case 2:
4745 return &v.unknownFields
4746 default:
4747 return nil
4748 }
4749 }
4750 file_google_apps_drive_labels_v2_requests_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
4751 switch v := v.(*CreateLabelPermissionRequest); i {
4752 case 0:
4753 return &v.state
4754 case 1:
4755 return &v.sizeCache
4756 case 2:
4757 return &v.unknownFields
4758 default:
4759 return nil
4760 }
4761 }
4762 file_google_apps_drive_labels_v2_requests_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
4763 switch v := v.(*ListLabelPermissionsRequest); i {
4764 case 0:
4765 return &v.state
4766 case 1:
4767 return &v.sizeCache
4768 case 2:
4769 return &v.unknownFields
4770 default:
4771 return nil
4772 }
4773 }
4774 file_google_apps_drive_labels_v2_requests_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
4775 switch v := v.(*ListLabelPermissionsResponse); i {
4776 case 0:
4777 return &v.state
4778 case 1:
4779 return &v.sizeCache
4780 case 2:
4781 return &v.unknownFields
4782 default:
4783 return nil
4784 }
4785 }
4786 file_google_apps_drive_labels_v2_requests_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
4787 switch v := v.(*UpdateLabelPermissionRequest); i {
4788 case 0:
4789 return &v.state
4790 case 1:
4791 return &v.sizeCache
4792 case 2:
4793 return &v.unknownFields
4794 default:
4795 return nil
4796 }
4797 }
4798 file_google_apps_drive_labels_v2_requests_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
4799 switch v := v.(*DeleteLabelPermissionRequest); i {
4800 case 0:
4801 return &v.state
4802 case 1:
4803 return &v.sizeCache
4804 case 2:
4805 return &v.unknownFields
4806 default:
4807 return nil
4808 }
4809 }
4810 file_google_apps_drive_labels_v2_requests_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
4811 switch v := v.(*BatchUpdateLabelPermissionsRequest); i {
4812 case 0:
4813 return &v.state
4814 case 1:
4815 return &v.sizeCache
4816 case 2:
4817 return &v.unknownFields
4818 default:
4819 return nil
4820 }
4821 }
4822 file_google_apps_drive_labels_v2_requests_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
4823 switch v := v.(*BatchUpdateLabelPermissionsResponse); i {
4824 case 0:
4825 return &v.state
4826 case 1:
4827 return &v.sizeCache
4828 case 2:
4829 return &v.unknownFields
4830 default:
4831 return nil
4832 }
4833 }
4834 file_google_apps_drive_labels_v2_requests_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
4835 switch v := v.(*BatchDeleteLabelPermissionsRequest); i {
4836 case 0:
4837 return &v.state
4838 case 1:
4839 return &v.sizeCache
4840 case 2:
4841 return &v.unknownFields
4842 default:
4843 return nil
4844 }
4845 }
4846 file_google_apps_drive_labels_v2_requests_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
4847 switch v := v.(*DisableLabelRequest); i {
4848 case 0:
4849 return &v.state
4850 case 1:
4851 return &v.sizeCache
4852 case 2:
4853 return &v.unknownFields
4854 default:
4855 return nil
4856 }
4857 }
4858 file_google_apps_drive_labels_v2_requests_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
4859 switch v := v.(*PublishLabelRequest); i {
4860 case 0:
4861 return &v.state
4862 case 1:
4863 return &v.sizeCache
4864 case 2:
4865 return &v.unknownFields
4866 default:
4867 return nil
4868 }
4869 }
4870 file_google_apps_drive_labels_v2_requests_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
4871 switch v := v.(*EnableLabelRequest); i {
4872 case 0:
4873 return &v.state
4874 case 1:
4875 return &v.sizeCache
4876 case 2:
4877 return &v.unknownFields
4878 default:
4879 return nil
4880 }
4881 }
4882 file_google_apps_drive_labels_v2_requests_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
4883 switch v := v.(*DeleteLabelRequest); i {
4884 case 0:
4885 return &v.state
4886 case 1:
4887 return &v.sizeCache
4888 case 2:
4889 return &v.unknownFields
4890 default:
4891 return nil
4892 }
4893 }
4894 file_google_apps_drive_labels_v2_requests_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
4895 switch v := v.(*ListLabelLocksRequest); i {
4896 case 0:
4897 return &v.state
4898 case 1:
4899 return &v.sizeCache
4900 case 2:
4901 return &v.unknownFields
4902 default:
4903 return nil
4904 }
4905 }
4906 file_google_apps_drive_labels_v2_requests_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
4907 switch v := v.(*ListLabelLocksResponse); i {
4908 case 0:
4909 return &v.state
4910 case 1:
4911 return &v.sizeCache
4912 case 2:
4913 return &v.unknownFields
4914 default:
4915 return nil
4916 }
4917 }
4918 file_google_apps_drive_labels_v2_requests_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
4919 switch v := v.(*DeltaUpdateLabelRequest_Request); i {
4920 case 0:
4921 return &v.state
4922 case 1:
4923 return &v.sizeCache
4924 case 2:
4925 return &v.unknownFields
4926 default:
4927 return nil
4928 }
4929 }
4930 file_google_apps_drive_labels_v2_requests_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
4931 switch v := v.(*DeltaUpdateLabelRequest_UpdateLabelPropertiesRequest); i {
4932 case 0:
4933 return &v.state
4934 case 1:
4935 return &v.sizeCache
4936 case 2:
4937 return &v.unknownFields
4938 default:
4939 return nil
4940 }
4941 }
4942 file_google_apps_drive_labels_v2_requests_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
4943 switch v := v.(*DeltaUpdateLabelRequest_DisableFieldRequest); i {
4944 case 0:
4945 return &v.state
4946 case 1:
4947 return &v.sizeCache
4948 case 2:
4949 return &v.unknownFields
4950 default:
4951 return nil
4952 }
4953 }
4954 file_google_apps_drive_labels_v2_requests_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
4955 switch v := v.(*DeltaUpdateLabelRequest_EnableFieldRequest); i {
4956 case 0:
4957 return &v.state
4958 case 1:
4959 return &v.sizeCache
4960 case 2:
4961 return &v.unknownFields
4962 default:
4963 return nil
4964 }
4965 }
4966 file_google_apps_drive_labels_v2_requests_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
4967 switch v := v.(*DeltaUpdateLabelRequest_DeleteFieldRequest); i {
4968 case 0:
4969 return &v.state
4970 case 1:
4971 return &v.sizeCache
4972 case 2:
4973 return &v.unknownFields
4974 default:
4975 return nil
4976 }
4977 }
4978 file_google_apps_drive_labels_v2_requests_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
4979 switch v := v.(*DeltaUpdateLabelRequest_CreateFieldRequest); i {
4980 case 0:
4981 return &v.state
4982 case 1:
4983 return &v.sizeCache
4984 case 2:
4985 return &v.unknownFields
4986 default:
4987 return nil
4988 }
4989 }
4990 file_google_apps_drive_labels_v2_requests_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
4991 switch v := v.(*DeltaUpdateLabelRequest_UpdateFieldPropertiesRequest); i {
4992 case 0:
4993 return &v.state
4994 case 1:
4995 return &v.sizeCache
4996 case 2:
4997 return &v.unknownFields
4998 default:
4999 return nil
5000 }
5001 }
5002 file_google_apps_drive_labels_v2_requests_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
5003 switch v := v.(*DeltaUpdateLabelRequest_UpdateFieldTypeRequest); i {
5004 case 0:
5005 return &v.state
5006 case 1:
5007 return &v.sizeCache
5008 case 2:
5009 return &v.unknownFields
5010 default:
5011 return nil
5012 }
5013 }
5014 file_google_apps_drive_labels_v2_requests_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
5015 switch v := v.(*DeltaUpdateLabelRequest_CreateSelectionChoiceRequest); i {
5016 case 0:
5017 return &v.state
5018 case 1:
5019 return &v.sizeCache
5020 case 2:
5021 return &v.unknownFields
5022 default:
5023 return nil
5024 }
5025 }
5026 file_google_apps_drive_labels_v2_requests_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
5027 switch v := v.(*DeltaUpdateLabelRequest_UpdateSelectionChoicePropertiesRequest); i {
5028 case 0:
5029 return &v.state
5030 case 1:
5031 return &v.sizeCache
5032 case 2:
5033 return &v.unknownFields
5034 default:
5035 return nil
5036 }
5037 }
5038 file_google_apps_drive_labels_v2_requests_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
5039 switch v := v.(*DeltaUpdateLabelRequest_DeleteSelectionChoiceRequest); i {
5040 case 0:
5041 return &v.state
5042 case 1:
5043 return &v.sizeCache
5044 case 2:
5045 return &v.unknownFields
5046 default:
5047 return nil
5048 }
5049 }
5050 file_google_apps_drive_labels_v2_requests_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
5051 switch v := v.(*DeltaUpdateLabelRequest_DisableSelectionChoiceRequest); i {
5052 case 0:
5053 return &v.state
5054 case 1:
5055 return &v.sizeCache
5056 case 2:
5057 return &v.unknownFields
5058 default:
5059 return nil
5060 }
5061 }
5062 file_google_apps_drive_labels_v2_requests_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
5063 switch v := v.(*DeltaUpdateLabelRequest_EnableSelectionChoiceRequest); i {
5064 case 0:
5065 return &v.state
5066 case 1:
5067 return &v.sizeCache
5068 case 2:
5069 return &v.unknownFields
5070 default:
5071 return nil
5072 }
5073 }
5074 file_google_apps_drive_labels_v2_requests_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
5075 switch v := v.(*DeltaUpdateLabelResponse_Response); i {
5076 case 0:
5077 return &v.state
5078 case 1:
5079 return &v.sizeCache
5080 case 2:
5081 return &v.unknownFields
5082 default:
5083 return nil
5084 }
5085 }
5086 file_google_apps_drive_labels_v2_requests_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
5087 switch v := v.(*DeltaUpdateLabelResponse_UpdateLabelPropertiesResponse); i {
5088 case 0:
5089 return &v.state
5090 case 1:
5091 return &v.sizeCache
5092 case 2:
5093 return &v.unknownFields
5094 default:
5095 return nil
5096 }
5097 }
5098 file_google_apps_drive_labels_v2_requests_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
5099 switch v := v.(*DeltaUpdateLabelResponse_CreateFieldResponse); i {
5100 case 0:
5101 return &v.state
5102 case 1:
5103 return &v.sizeCache
5104 case 2:
5105 return &v.unknownFields
5106 default:
5107 return nil
5108 }
5109 }
5110 file_google_apps_drive_labels_v2_requests_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
5111 switch v := v.(*DeltaUpdateLabelResponse_UpdateFieldPropertiesResponse); i {
5112 case 0:
5113 return &v.state
5114 case 1:
5115 return &v.sizeCache
5116 case 2:
5117 return &v.unknownFields
5118 default:
5119 return nil
5120 }
5121 }
5122 file_google_apps_drive_labels_v2_requests_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
5123 switch v := v.(*DeltaUpdateLabelResponse_UpdateFieldTypeResponse); i {
5124 case 0:
5125 return &v.state
5126 case 1:
5127 return &v.sizeCache
5128 case 2:
5129 return &v.unknownFields
5130 default:
5131 return nil
5132 }
5133 }
5134 file_google_apps_drive_labels_v2_requests_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
5135 switch v := v.(*DeltaUpdateLabelResponse_EnableFieldResponse); i {
5136 case 0:
5137 return &v.state
5138 case 1:
5139 return &v.sizeCache
5140 case 2:
5141 return &v.unknownFields
5142 default:
5143 return nil
5144 }
5145 }
5146 file_google_apps_drive_labels_v2_requests_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
5147 switch v := v.(*DeltaUpdateLabelResponse_DisableFieldResponse); i {
5148 case 0:
5149 return &v.state
5150 case 1:
5151 return &v.sizeCache
5152 case 2:
5153 return &v.unknownFields
5154 default:
5155 return nil
5156 }
5157 }
5158 file_google_apps_drive_labels_v2_requests_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
5159 switch v := v.(*DeltaUpdateLabelResponse_DeleteFieldResponse); i {
5160 case 0:
5161 return &v.state
5162 case 1:
5163 return &v.sizeCache
5164 case 2:
5165 return &v.unknownFields
5166 default:
5167 return nil
5168 }
5169 }
5170 file_google_apps_drive_labels_v2_requests_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
5171 switch v := v.(*DeltaUpdateLabelResponse_CreateSelectionChoiceResponse); i {
5172 case 0:
5173 return &v.state
5174 case 1:
5175 return &v.sizeCache
5176 case 2:
5177 return &v.unknownFields
5178 default:
5179 return nil
5180 }
5181 }
5182 file_google_apps_drive_labels_v2_requests_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
5183 switch v := v.(*DeltaUpdateLabelResponse_UpdateSelectionChoicePropertiesResponse); i {
5184 case 0:
5185 return &v.state
5186 case 1:
5187 return &v.sizeCache
5188 case 2:
5189 return &v.unknownFields
5190 default:
5191 return nil
5192 }
5193 }
5194 file_google_apps_drive_labels_v2_requests_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
5195 switch v := v.(*DeltaUpdateLabelResponse_EnableSelectionChoiceResponse); i {
5196 case 0:
5197 return &v.state
5198 case 1:
5199 return &v.sizeCache
5200 case 2:
5201 return &v.unknownFields
5202 default:
5203 return nil
5204 }
5205 }
5206 file_google_apps_drive_labels_v2_requests_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
5207 switch v := v.(*DeltaUpdateLabelResponse_DisableSelectionChoiceResponse); i {
5208 case 0:
5209 return &v.state
5210 case 1:
5211 return &v.sizeCache
5212 case 2:
5213 return &v.unknownFields
5214 default:
5215 return nil
5216 }
5217 }
5218 file_google_apps_drive_labels_v2_requests_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
5219 switch v := v.(*DeltaUpdateLabelResponse_DeleteSelectionChoiceResponse); i {
5220 case 0:
5221 return &v.state
5222 case 1:
5223 return &v.sizeCache
5224 case 2:
5225 return &v.unknownFields
5226 default:
5227 return nil
5228 }
5229 }
5230 }
5231 file_google_apps_drive_labels_v2_requests_proto_msgTypes[0].OneofWrappers = []interface{}{
5232 (*WriteControl_RequiredRevisionId)(nil),
5233 }
5234 file_google_apps_drive_labels_v2_requests_proto_msgTypes[8].OneofWrappers = []interface{}{
5235 (*ListLabelsRequest_UseAdminAccess)(nil),
5236 (*ListLabelsRequest_MinimumRole)(nil),
5237 }
5238 file_google_apps_drive_labels_v2_requests_proto_msgTypes[24].OneofWrappers = []interface{}{
5239 (*DeltaUpdateLabelRequest_Request_UpdateLabel)(nil),
5240 (*DeltaUpdateLabelRequest_Request_CreateField)(nil),
5241 (*DeltaUpdateLabelRequest_Request_UpdateField)(nil),
5242 (*DeltaUpdateLabelRequest_Request_UpdateFieldType)(nil),
5243 (*DeltaUpdateLabelRequest_Request_EnableField)(nil),
5244 (*DeltaUpdateLabelRequest_Request_DisableField)(nil),
5245 (*DeltaUpdateLabelRequest_Request_DeleteField)(nil),
5246 (*DeltaUpdateLabelRequest_Request_CreateSelectionChoice)(nil),
5247 (*DeltaUpdateLabelRequest_Request_UpdateSelectionChoiceProperties)(nil),
5248 (*DeltaUpdateLabelRequest_Request_EnableSelectionChoice)(nil),
5249 (*DeltaUpdateLabelRequest_Request_DisableSelectionChoice)(nil),
5250 (*DeltaUpdateLabelRequest_Request_DeleteSelectionChoice)(nil),
5251 }
5252 file_google_apps_drive_labels_v2_requests_proto_msgTypes[31].OneofWrappers = []interface{}{
5253 (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_TextOptions)(nil),
5254 (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_IntegerOptions)(nil),
5255 (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_DateOptions)(nil),
5256 (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_SelectionOptions)(nil),
5257 (*DeltaUpdateLabelRequest_UpdateFieldTypeRequest_UserOptions)(nil),
5258 }
5259 file_google_apps_drive_labels_v2_requests_proto_msgTypes[37].OneofWrappers = []interface{}{
5260 (*DeltaUpdateLabelResponse_Response_UpdateLabel)(nil),
5261 (*DeltaUpdateLabelResponse_Response_CreateField)(nil),
5262 (*DeltaUpdateLabelResponse_Response_UpdateField)(nil),
5263 (*DeltaUpdateLabelResponse_Response_UpdateFieldType)(nil),
5264 (*DeltaUpdateLabelResponse_Response_EnableField)(nil),
5265 (*DeltaUpdateLabelResponse_Response_DisableField)(nil),
5266 (*DeltaUpdateLabelResponse_Response_DeleteField)(nil),
5267 (*DeltaUpdateLabelResponse_Response_CreateSelectionChoice)(nil),
5268 (*DeltaUpdateLabelResponse_Response_UpdateSelectionChoiceProperties)(nil),
5269 (*DeltaUpdateLabelResponse_Response_EnableSelectionChoice)(nil),
5270 (*DeltaUpdateLabelResponse_Response_DisableSelectionChoice)(nil),
5271 (*DeltaUpdateLabelResponse_Response_DeleteSelectionChoice)(nil),
5272 }
5273 type x struct{}
5274 out := protoimpl.TypeBuilder{
5275 File: protoimpl.DescBuilder{
5276 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
5277 RawDescriptor: file_google_apps_drive_labels_v2_requests_proto_rawDesc,
5278 NumEnums: 1,
5279 NumMessages: 50,
5280 NumExtensions: 0,
5281 NumServices: 0,
5282 },
5283 GoTypes: file_google_apps_drive_labels_v2_requests_proto_goTypes,
5284 DependencyIndexes: file_google_apps_drive_labels_v2_requests_proto_depIdxs,
5285 EnumInfos: file_google_apps_drive_labels_v2_requests_proto_enumTypes,
5286 MessageInfos: file_google_apps_drive_labels_v2_requests_proto_msgTypes,
5287 }.Build()
5288 File_google_apps_drive_labels_v2_requests_proto = out.File
5289 file_google_apps_drive_labels_v2_requests_proto_rawDesc = nil
5290 file_google_apps_drive_labels_v2_requests_proto_goTypes = nil
5291 file_google_apps_drive_labels_v2_requests_proto_depIdxs = nil
5292 }
5293
View as plain text