github.com/cloudwan/edgelq-sdk@v1.15.4/iam/client/v1alpha2/group/group_service.pb.go (about) 1 // Code generated by protoc-gen-goten-go 2 // File: edgelq/iam/proto/v1alpha2/group_service.proto 3 // DO NOT EDIT!!! 4 5 package group_client 6 7 import ( 8 "fmt" 9 "reflect" 10 "sync" 11 12 "google.golang.org/protobuf/encoding/protojson" 13 "google.golang.org/protobuf/proto" 14 preflect "google.golang.org/protobuf/reflect/protoreflect" 15 "google.golang.org/protobuf/runtime/protoimpl" 16 ) 17 18 // proto imports 19 import ( 20 group "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/group" 21 organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization" 22 project "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/project" 23 view "github.com/cloudwan/goten-sdk/types/view" 24 watch_type "github.com/cloudwan/goten-sdk/types/watch_type" 25 emptypb "google.golang.org/protobuf/types/known/emptypb" 26 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" 27 timestamppb "google.golang.org/protobuf/types/known/timestamppb" 28 ) 29 30 // Reference imports to suppress errors if they are not otherwise used. 31 var ( 32 _ = fmt.Errorf 33 _ = reflect.Method{} 34 _ = sync.Once{} 35 36 _ = protojson.MarshalOptions{} 37 _ = proto.MarshalOptions{} 38 _ = preflect.Value{} 39 _ = protoimpl.DescBuilder{} 40 ) 41 42 // make sure we're using proto imports 43 var ( 44 _ = &group.Group{} 45 _ = &organization.Organization{} 46 _ = &project.Project{} 47 _ = &emptypb.Empty{} 48 _ = &fieldmaskpb.FieldMask{} 49 _ = ×tamppb.Timestamp{} 50 _ = view.View(0) 51 _ = watch_type.WatchType(0) 52 ) 53 54 const ( 55 // Verify that this generated code is sufficiently up-to-date. 56 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 57 // Verify that runtime/protoimpl is sufficiently up-to-date. 58 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 59 ) 60 61 // A request message of the GetGroup method. 62 type GetGroupRequest struct { 63 state protoimpl.MessageState 64 sizeCache protoimpl.SizeCache 65 unknownFields protoimpl.UnknownFields 66 // Name of ntt.iam.v1alpha2.Group 67 Name *group.Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 68 // A list of extra fields to be obtained for each response item on top of 69 // fields defined by request field view 70 FieldMask *group.Group_FieldMask `protobuf:"bytes,3,opt,customtype=Group_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 71 // View defines list of standard response fields present in response items. 72 // Additional fields can be amended by request field field_mask 73 View view.View `protobuf:"varint,4,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 74 } 75 76 func (m *GetGroupRequest) Reset() { 77 *m = GetGroupRequest{} 78 if protoimpl.UnsafeEnabled { 79 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[0] 80 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 81 ms.StoreMessageInfo(mi) 82 } 83 } 84 85 func (m *GetGroupRequest) String() string { 86 return protoimpl.X.MessageStringOf(m) 87 } 88 89 func (*GetGroupRequest) ProtoMessage() {} 90 91 func (m *GetGroupRequest) ProtoReflect() preflect.Message { 92 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[0] 93 if protoimpl.UnsafeEnabled && m != nil { 94 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 95 if ms.LoadMessageInfo() == nil { 96 ms.StoreMessageInfo(mi) 97 } 98 return ms 99 } 100 return mi.MessageOf(m) 101 } 102 103 func (*GetGroupRequest) GotenMessage() {} 104 105 // Deprecated, Use GetGroupRequest.ProtoReflect.Descriptor instead. 106 func (*GetGroupRequest) Descriptor() ([]byte, []int) { 107 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{0} 108 } 109 110 func (m *GetGroupRequest) Unmarshal(b []byte) error { 111 return proto.Unmarshal(b, m) 112 } 113 114 func (m *GetGroupRequest) Marshal() ([]byte, error) { 115 return proto.Marshal(m) 116 } 117 118 func (m *GetGroupRequest) MarshalJSON() ([]byte, error) { 119 return protojson.MarshalOptions{}.Marshal(m) 120 } 121 122 func (m *GetGroupRequest) UnmarshalJSON(data []byte) error { 123 return protojson.Unmarshal(data, m) 124 } 125 126 func (m *GetGroupRequest) GetName() *group.Name { 127 if m != nil { 128 return m.Name 129 } 130 return nil 131 } 132 133 func (m *GetGroupRequest) GetFieldMask() *group.Group_FieldMask { 134 if m != nil { 135 return m.FieldMask 136 } 137 return nil 138 } 139 140 func (m *GetGroupRequest) GetView() view.View { 141 if m != nil { 142 return m.View 143 } 144 return view.View_UNSPECIFIED 145 } 146 147 func (m *GetGroupRequest) SetName(fv *group.Name) { 148 if m == nil { 149 panic(fmt.Errorf("can't set %s on nil %s", "Name", "GetGroupRequest")) 150 } 151 m.Name = fv 152 } 153 154 func (m *GetGroupRequest) SetFieldMask(fv *group.Group_FieldMask) { 155 if m == nil { 156 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "GetGroupRequest")) 157 } 158 m.FieldMask = fv 159 } 160 161 func (m *GetGroupRequest) SetView(fv view.View) { 162 if m == nil { 163 panic(fmt.Errorf("can't set %s on nil %s", "View", "GetGroupRequest")) 164 } 165 m.View = fv 166 } 167 168 // A request message of the BatchGetGroups method. 169 type BatchGetGroupsRequest struct { 170 state protoimpl.MessageState 171 sizeCache protoimpl.SizeCache 172 unknownFields protoimpl.UnknownFields 173 // Names of Groups 174 Names []*group.Name `protobuf:"bytes,2,rep,customtype=Name,name=names,proto3" json:"names,omitempty"` 175 // A list of extra fields to be obtained for each response item on top of 176 // fields defined by request field view 177 FieldMask *group.Group_FieldMask `protobuf:"bytes,3,opt,customtype=Group_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 178 // View defines list of standard response fields present in response items. 179 // Additional fields can be amended by request field field_mask 180 View view.View `protobuf:"varint,4,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 181 } 182 183 func (m *BatchGetGroupsRequest) Reset() { 184 *m = BatchGetGroupsRequest{} 185 if protoimpl.UnsafeEnabled { 186 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[1] 187 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 188 ms.StoreMessageInfo(mi) 189 } 190 } 191 192 func (m *BatchGetGroupsRequest) String() string { 193 return protoimpl.X.MessageStringOf(m) 194 } 195 196 func (*BatchGetGroupsRequest) ProtoMessage() {} 197 198 func (m *BatchGetGroupsRequest) ProtoReflect() preflect.Message { 199 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[1] 200 if protoimpl.UnsafeEnabled && m != nil { 201 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 202 if ms.LoadMessageInfo() == nil { 203 ms.StoreMessageInfo(mi) 204 } 205 return ms 206 } 207 return mi.MessageOf(m) 208 } 209 210 func (*BatchGetGroupsRequest) GotenMessage() {} 211 212 // Deprecated, Use BatchGetGroupsRequest.ProtoReflect.Descriptor instead. 213 func (*BatchGetGroupsRequest) Descriptor() ([]byte, []int) { 214 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{1} 215 } 216 217 func (m *BatchGetGroupsRequest) Unmarshal(b []byte) error { 218 return proto.Unmarshal(b, m) 219 } 220 221 func (m *BatchGetGroupsRequest) Marshal() ([]byte, error) { 222 return proto.Marshal(m) 223 } 224 225 func (m *BatchGetGroupsRequest) MarshalJSON() ([]byte, error) { 226 return protojson.MarshalOptions{}.Marshal(m) 227 } 228 229 func (m *BatchGetGroupsRequest) UnmarshalJSON(data []byte) error { 230 return protojson.Unmarshal(data, m) 231 } 232 233 func (m *BatchGetGroupsRequest) GetNames() []*group.Name { 234 if m != nil { 235 return m.Names 236 } 237 return nil 238 } 239 240 func (m *BatchGetGroupsRequest) GetFieldMask() *group.Group_FieldMask { 241 if m != nil { 242 return m.FieldMask 243 } 244 return nil 245 } 246 247 func (m *BatchGetGroupsRequest) GetView() view.View { 248 if m != nil { 249 return m.View 250 } 251 return view.View_UNSPECIFIED 252 } 253 254 func (m *BatchGetGroupsRequest) SetNames(fv []*group.Name) { 255 if m == nil { 256 panic(fmt.Errorf("can't set %s on nil %s", "Names", "BatchGetGroupsRequest")) 257 } 258 m.Names = fv 259 } 260 261 func (m *BatchGetGroupsRequest) SetFieldMask(fv *group.Group_FieldMask) { 262 if m == nil { 263 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "BatchGetGroupsRequest")) 264 } 265 m.FieldMask = fv 266 } 267 268 func (m *BatchGetGroupsRequest) SetView(fv view.View) { 269 if m == nil { 270 panic(fmt.Errorf("can't set %s on nil %s", "View", "BatchGetGroupsRequest")) 271 } 272 m.View = fv 273 } 274 275 // A response message of the BatchGetGroups method. 276 type BatchGetGroupsResponse struct { 277 state protoimpl.MessageState 278 sizeCache protoimpl.SizeCache 279 unknownFields protoimpl.UnknownFields 280 // found Groups 281 Groups []*group.Group `protobuf:"bytes,1,rep,name=groups,proto3" json:"groups,omitempty"` 282 // list of not found Groups 283 Missing []*group.Name `protobuf:"bytes,2,rep,customtype=Name,name=missing,proto3" json:"missing,omitempty"` 284 } 285 286 func (m *BatchGetGroupsResponse) Reset() { 287 *m = BatchGetGroupsResponse{} 288 if protoimpl.UnsafeEnabled { 289 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[2] 290 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 291 ms.StoreMessageInfo(mi) 292 } 293 } 294 295 func (m *BatchGetGroupsResponse) String() string { 296 return protoimpl.X.MessageStringOf(m) 297 } 298 299 func (*BatchGetGroupsResponse) ProtoMessage() {} 300 301 func (m *BatchGetGroupsResponse) ProtoReflect() preflect.Message { 302 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[2] 303 if protoimpl.UnsafeEnabled && m != nil { 304 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 305 if ms.LoadMessageInfo() == nil { 306 ms.StoreMessageInfo(mi) 307 } 308 return ms 309 } 310 return mi.MessageOf(m) 311 } 312 313 func (*BatchGetGroupsResponse) GotenMessage() {} 314 315 // Deprecated, Use BatchGetGroupsResponse.ProtoReflect.Descriptor instead. 316 func (*BatchGetGroupsResponse) Descriptor() ([]byte, []int) { 317 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{2} 318 } 319 320 func (m *BatchGetGroupsResponse) Unmarshal(b []byte) error { 321 return proto.Unmarshal(b, m) 322 } 323 324 func (m *BatchGetGroupsResponse) Marshal() ([]byte, error) { 325 return proto.Marshal(m) 326 } 327 328 func (m *BatchGetGroupsResponse) MarshalJSON() ([]byte, error) { 329 return protojson.MarshalOptions{}.Marshal(m) 330 } 331 332 func (m *BatchGetGroupsResponse) UnmarshalJSON(data []byte) error { 333 return protojson.Unmarshal(data, m) 334 } 335 336 func (m *BatchGetGroupsResponse) GetGroups() []*group.Group { 337 if m != nil { 338 return m.Groups 339 } 340 return nil 341 } 342 343 func (m *BatchGetGroupsResponse) GetMissing() []*group.Name { 344 if m != nil { 345 return m.Missing 346 } 347 return nil 348 } 349 350 func (m *BatchGetGroupsResponse) SetGroups(fv []*group.Group) { 351 if m == nil { 352 panic(fmt.Errorf("can't set %s on nil %s", "Groups", "BatchGetGroupsResponse")) 353 } 354 m.Groups = fv 355 } 356 357 func (m *BatchGetGroupsResponse) SetMissing(fv []*group.Name) { 358 if m == nil { 359 panic(fmt.Errorf("can't set %s on nil %s", "Missing", "BatchGetGroupsResponse")) 360 } 361 m.Missing = fv 362 } 363 364 // A request message of the ListGroups method. 365 type ListGroupsRequest struct { 366 state protoimpl.MessageState 367 sizeCache protoimpl.SizeCache 368 unknownFields protoimpl.UnknownFields 369 // Parent name of ntt.iam.v1alpha2.Group 370 Parent *group.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 371 // Requested page size. Server may return fewer Groups than requested. 372 // If unspecified, server will pick an appropriate default. 373 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 374 // A token identifying a page of results the server should return. 375 // Typically, this is the value of 376 // ListGroupsResponse.next_page_token. 377 PageToken *group.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 378 // Order By - 379 // https://cloud.google.com/apis/design/design_patterns#list_pagination list 380 // of field path with order directive, either 'asc' or 'desc'. If direction is 381 // not provided, 'asc' is assumed. e.g. "state.nested_field asc, 382 // state.something.else desc, theme" 383 OrderBy *group.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 384 // Filter - filter results by field criteria. Simplified SQL-like syntax with 385 // following operators: 386 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 387 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 388 // CONTAINS "severity:important" OR (state.last_error_time > 389 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 390 Filter *group.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 391 // A list of extra fields to be obtained for each response item on top of 392 // fields defined by request field view 393 FieldMask *group.Group_FieldMask `protobuf:"bytes,6,opt,customtype=Group_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 394 // View defines list of standard response fields present in response items. 395 // Additional fields can be amended by request field field_mask 396 View view.View `protobuf:"varint,7,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 397 // Indicates if list response should contain total count and offset (fields 398 // current_offset and total_results_count). 399 IncludePagingInfo bool `protobuf:"varint,8,opt,name=include_paging_info,json=includePagingInfo,proto3" json:"include_paging_info,omitempty"` 400 } 401 402 func (m *ListGroupsRequest) Reset() { 403 *m = ListGroupsRequest{} 404 if protoimpl.UnsafeEnabled { 405 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[3] 406 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 407 ms.StoreMessageInfo(mi) 408 } 409 } 410 411 func (m *ListGroupsRequest) String() string { 412 return protoimpl.X.MessageStringOf(m) 413 } 414 415 func (*ListGroupsRequest) ProtoMessage() {} 416 417 func (m *ListGroupsRequest) ProtoReflect() preflect.Message { 418 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[3] 419 if protoimpl.UnsafeEnabled && m != nil { 420 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 421 if ms.LoadMessageInfo() == nil { 422 ms.StoreMessageInfo(mi) 423 } 424 return ms 425 } 426 return mi.MessageOf(m) 427 } 428 429 func (*ListGroupsRequest) GotenMessage() {} 430 431 // Deprecated, Use ListGroupsRequest.ProtoReflect.Descriptor instead. 432 func (*ListGroupsRequest) Descriptor() ([]byte, []int) { 433 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{3} 434 } 435 436 func (m *ListGroupsRequest) Unmarshal(b []byte) error { 437 return proto.Unmarshal(b, m) 438 } 439 440 func (m *ListGroupsRequest) Marshal() ([]byte, error) { 441 return proto.Marshal(m) 442 } 443 444 func (m *ListGroupsRequest) MarshalJSON() ([]byte, error) { 445 return protojson.MarshalOptions{}.Marshal(m) 446 } 447 448 func (m *ListGroupsRequest) UnmarshalJSON(data []byte) error { 449 return protojson.Unmarshal(data, m) 450 } 451 452 func (m *ListGroupsRequest) GetParent() *group.ParentName { 453 if m != nil { 454 return m.Parent 455 } 456 return nil 457 } 458 459 func (m *ListGroupsRequest) GetPageSize() int32 { 460 if m != nil { 461 return m.PageSize 462 } 463 return int32(0) 464 } 465 466 func (m *ListGroupsRequest) GetPageToken() *group.PagerCursor { 467 if m != nil { 468 return m.PageToken 469 } 470 return nil 471 } 472 473 func (m *ListGroupsRequest) GetOrderBy() *group.OrderBy { 474 if m != nil { 475 return m.OrderBy 476 } 477 return nil 478 } 479 480 func (m *ListGroupsRequest) GetFilter() *group.Filter { 481 if m != nil { 482 return m.Filter 483 } 484 return nil 485 } 486 487 func (m *ListGroupsRequest) GetFieldMask() *group.Group_FieldMask { 488 if m != nil { 489 return m.FieldMask 490 } 491 return nil 492 } 493 494 func (m *ListGroupsRequest) GetView() view.View { 495 if m != nil { 496 return m.View 497 } 498 return view.View_UNSPECIFIED 499 } 500 501 func (m *ListGroupsRequest) GetIncludePagingInfo() bool { 502 if m != nil { 503 return m.IncludePagingInfo 504 } 505 return false 506 } 507 508 func (m *ListGroupsRequest) SetParent(fv *group.ParentName) { 509 if m == nil { 510 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "ListGroupsRequest")) 511 } 512 m.Parent = fv 513 } 514 515 func (m *ListGroupsRequest) SetPageSize(fv int32) { 516 if m == nil { 517 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "ListGroupsRequest")) 518 } 519 m.PageSize = fv 520 } 521 522 func (m *ListGroupsRequest) SetPageToken(fv *group.PagerCursor) { 523 if m == nil { 524 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "ListGroupsRequest")) 525 } 526 m.PageToken = fv 527 } 528 529 func (m *ListGroupsRequest) SetOrderBy(fv *group.OrderBy) { 530 if m == nil { 531 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "ListGroupsRequest")) 532 } 533 m.OrderBy = fv 534 } 535 536 func (m *ListGroupsRequest) SetFilter(fv *group.Filter) { 537 if m == nil { 538 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "ListGroupsRequest")) 539 } 540 m.Filter = fv 541 } 542 543 func (m *ListGroupsRequest) SetFieldMask(fv *group.Group_FieldMask) { 544 if m == nil { 545 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "ListGroupsRequest")) 546 } 547 m.FieldMask = fv 548 } 549 550 func (m *ListGroupsRequest) SetView(fv view.View) { 551 if m == nil { 552 panic(fmt.Errorf("can't set %s on nil %s", "View", "ListGroupsRequest")) 553 } 554 m.View = fv 555 } 556 557 func (m *ListGroupsRequest) SetIncludePagingInfo(fv bool) { 558 if m == nil { 559 panic(fmt.Errorf("can't set %s on nil %s", "IncludePagingInfo", "ListGroupsRequest")) 560 } 561 m.IncludePagingInfo = fv 562 } 563 564 // A response message of the ListGroups method. 565 type ListGroupsResponse struct { 566 state protoimpl.MessageState 567 sizeCache protoimpl.SizeCache 568 unknownFields protoimpl.UnknownFields 569 // The list of Groups 570 Groups []*group.Group `protobuf:"bytes,1,rep,name=groups,proto3" json:"groups,omitempty"` 571 // A token to retrieve previous page of results. 572 // 573 // Pass this value in the ListGroupsRequest.page_token. 574 PrevPageToken *group.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 575 // A token to retrieve next page of results. 576 // 577 // Pass this value in the ListGroupsRequest.page_token. 578 NextPageToken *group.PagerCursor `protobuf:"bytes,4,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 579 // Current offset from the first page or 0 if no page tokens were given, 580 // paging info was not requested or there was an error while trying to get 581 // it). Page index can be computed from offset and limit provided in a 582 // request. 583 CurrentOffset int32 `protobuf:"varint,5,opt,name=current_offset,json=currentOffset,proto3" json:"current_offset,omitempty"` 584 // Number of total Groups across all pages or 0, if there are no items, paging 585 // info was not requested or there was an error while trying to get it. 586 TotalResultsCount int32 `protobuf:"varint,6,opt,name=total_results_count,json=totalResultsCount,proto3" json:"total_results_count,omitempty"` 587 } 588 589 func (m *ListGroupsResponse) Reset() { 590 *m = ListGroupsResponse{} 591 if protoimpl.UnsafeEnabled { 592 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[4] 593 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 594 ms.StoreMessageInfo(mi) 595 } 596 } 597 598 func (m *ListGroupsResponse) String() string { 599 return protoimpl.X.MessageStringOf(m) 600 } 601 602 func (*ListGroupsResponse) ProtoMessage() {} 603 604 func (m *ListGroupsResponse) ProtoReflect() preflect.Message { 605 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[4] 606 if protoimpl.UnsafeEnabled && m != nil { 607 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 608 if ms.LoadMessageInfo() == nil { 609 ms.StoreMessageInfo(mi) 610 } 611 return ms 612 } 613 return mi.MessageOf(m) 614 } 615 616 func (*ListGroupsResponse) GotenMessage() {} 617 618 // Deprecated, Use ListGroupsResponse.ProtoReflect.Descriptor instead. 619 func (*ListGroupsResponse) Descriptor() ([]byte, []int) { 620 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{4} 621 } 622 623 func (m *ListGroupsResponse) Unmarshal(b []byte) error { 624 return proto.Unmarshal(b, m) 625 } 626 627 func (m *ListGroupsResponse) Marshal() ([]byte, error) { 628 return proto.Marshal(m) 629 } 630 631 func (m *ListGroupsResponse) MarshalJSON() ([]byte, error) { 632 return protojson.MarshalOptions{}.Marshal(m) 633 } 634 635 func (m *ListGroupsResponse) UnmarshalJSON(data []byte) error { 636 return protojson.Unmarshal(data, m) 637 } 638 639 func (m *ListGroupsResponse) GetGroups() []*group.Group { 640 if m != nil { 641 return m.Groups 642 } 643 return nil 644 } 645 646 func (m *ListGroupsResponse) GetPrevPageToken() *group.PagerCursor { 647 if m != nil { 648 return m.PrevPageToken 649 } 650 return nil 651 } 652 653 func (m *ListGroupsResponse) GetNextPageToken() *group.PagerCursor { 654 if m != nil { 655 return m.NextPageToken 656 } 657 return nil 658 } 659 660 func (m *ListGroupsResponse) GetCurrentOffset() int32 { 661 if m != nil { 662 return m.CurrentOffset 663 } 664 return int32(0) 665 } 666 667 func (m *ListGroupsResponse) GetTotalResultsCount() int32 { 668 if m != nil { 669 return m.TotalResultsCount 670 } 671 return int32(0) 672 } 673 674 func (m *ListGroupsResponse) SetGroups(fv []*group.Group) { 675 if m == nil { 676 panic(fmt.Errorf("can't set %s on nil %s", "Groups", "ListGroupsResponse")) 677 } 678 m.Groups = fv 679 } 680 681 func (m *ListGroupsResponse) SetPrevPageToken(fv *group.PagerCursor) { 682 if m == nil { 683 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "ListGroupsResponse")) 684 } 685 m.PrevPageToken = fv 686 } 687 688 func (m *ListGroupsResponse) SetNextPageToken(fv *group.PagerCursor) { 689 if m == nil { 690 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "ListGroupsResponse")) 691 } 692 m.NextPageToken = fv 693 } 694 695 func (m *ListGroupsResponse) SetCurrentOffset(fv int32) { 696 if m == nil { 697 panic(fmt.Errorf("can't set %s on nil %s", "CurrentOffset", "ListGroupsResponse")) 698 } 699 m.CurrentOffset = fv 700 } 701 702 func (m *ListGroupsResponse) SetTotalResultsCount(fv int32) { 703 if m == nil { 704 panic(fmt.Errorf("can't set %s on nil %s", "TotalResultsCount", "ListGroupsResponse")) 705 } 706 m.TotalResultsCount = fv 707 } 708 709 // A request message of the WatchGroup method. 710 type WatchGroupRequest struct { 711 state protoimpl.MessageState 712 sizeCache protoimpl.SizeCache 713 unknownFields protoimpl.UnknownFields 714 // Name of ntt.iam.v1alpha2.Group 715 Name *group.Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 716 // A list of extra fields to be obtained for each response item on top of 717 // fields defined by request field view 718 FieldMask *group.Group_FieldMask `protobuf:"bytes,2,opt,customtype=Group_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 719 // View defines list of standard response fields present in response items. 720 // Additional fields can be amended by request field field_mask 721 View view.View `protobuf:"varint,4,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 722 } 723 724 func (m *WatchGroupRequest) Reset() { 725 *m = WatchGroupRequest{} 726 if protoimpl.UnsafeEnabled { 727 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[5] 728 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 729 ms.StoreMessageInfo(mi) 730 } 731 } 732 733 func (m *WatchGroupRequest) String() string { 734 return protoimpl.X.MessageStringOf(m) 735 } 736 737 func (*WatchGroupRequest) ProtoMessage() {} 738 739 func (m *WatchGroupRequest) ProtoReflect() preflect.Message { 740 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[5] 741 if protoimpl.UnsafeEnabled && m != nil { 742 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 743 if ms.LoadMessageInfo() == nil { 744 ms.StoreMessageInfo(mi) 745 } 746 return ms 747 } 748 return mi.MessageOf(m) 749 } 750 751 func (*WatchGroupRequest) GotenMessage() {} 752 753 // Deprecated, Use WatchGroupRequest.ProtoReflect.Descriptor instead. 754 func (*WatchGroupRequest) Descriptor() ([]byte, []int) { 755 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{5} 756 } 757 758 func (m *WatchGroupRequest) Unmarshal(b []byte) error { 759 return proto.Unmarshal(b, m) 760 } 761 762 func (m *WatchGroupRequest) Marshal() ([]byte, error) { 763 return proto.Marshal(m) 764 } 765 766 func (m *WatchGroupRequest) MarshalJSON() ([]byte, error) { 767 return protojson.MarshalOptions{}.Marshal(m) 768 } 769 770 func (m *WatchGroupRequest) UnmarshalJSON(data []byte) error { 771 return protojson.Unmarshal(data, m) 772 } 773 774 func (m *WatchGroupRequest) GetName() *group.Name { 775 if m != nil { 776 return m.Name 777 } 778 return nil 779 } 780 781 func (m *WatchGroupRequest) GetFieldMask() *group.Group_FieldMask { 782 if m != nil { 783 return m.FieldMask 784 } 785 return nil 786 } 787 788 func (m *WatchGroupRequest) GetView() view.View { 789 if m != nil { 790 return m.View 791 } 792 return view.View_UNSPECIFIED 793 } 794 795 func (m *WatchGroupRequest) SetName(fv *group.Name) { 796 if m == nil { 797 panic(fmt.Errorf("can't set %s on nil %s", "Name", "WatchGroupRequest")) 798 } 799 m.Name = fv 800 } 801 802 func (m *WatchGroupRequest) SetFieldMask(fv *group.Group_FieldMask) { 803 if m == nil { 804 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "WatchGroupRequest")) 805 } 806 m.FieldMask = fv 807 } 808 809 func (m *WatchGroupRequest) SetView(fv view.View) { 810 if m == nil { 811 panic(fmt.Errorf("can't set %s on nil %s", "View", "WatchGroupRequest")) 812 } 813 m.View = fv 814 } 815 816 // A response message of the WatchGroup method. 817 type WatchGroupResponse struct { 818 state protoimpl.MessageState 819 sizeCache protoimpl.SizeCache 820 unknownFields protoimpl.UnknownFields 821 Change *group.GroupChange `protobuf:"bytes,1,opt,name=change,proto3" json:"change,omitempty"` 822 } 823 824 func (m *WatchGroupResponse) Reset() { 825 *m = WatchGroupResponse{} 826 if protoimpl.UnsafeEnabled { 827 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[6] 828 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 829 ms.StoreMessageInfo(mi) 830 } 831 } 832 833 func (m *WatchGroupResponse) String() string { 834 return protoimpl.X.MessageStringOf(m) 835 } 836 837 func (*WatchGroupResponse) ProtoMessage() {} 838 839 func (m *WatchGroupResponse) ProtoReflect() preflect.Message { 840 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[6] 841 if protoimpl.UnsafeEnabled && m != nil { 842 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 843 if ms.LoadMessageInfo() == nil { 844 ms.StoreMessageInfo(mi) 845 } 846 return ms 847 } 848 return mi.MessageOf(m) 849 } 850 851 func (*WatchGroupResponse) GotenMessage() {} 852 853 // Deprecated, Use WatchGroupResponse.ProtoReflect.Descriptor instead. 854 func (*WatchGroupResponse) Descriptor() ([]byte, []int) { 855 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{6} 856 } 857 858 func (m *WatchGroupResponse) Unmarshal(b []byte) error { 859 return proto.Unmarshal(b, m) 860 } 861 862 func (m *WatchGroupResponse) Marshal() ([]byte, error) { 863 return proto.Marshal(m) 864 } 865 866 func (m *WatchGroupResponse) MarshalJSON() ([]byte, error) { 867 return protojson.MarshalOptions{}.Marshal(m) 868 } 869 870 func (m *WatchGroupResponse) UnmarshalJSON(data []byte) error { 871 return protojson.Unmarshal(data, m) 872 } 873 874 func (m *WatchGroupResponse) GetChange() *group.GroupChange { 875 if m != nil { 876 return m.Change 877 } 878 return nil 879 } 880 881 func (m *WatchGroupResponse) SetChange(fv *group.GroupChange) { 882 if m == nil { 883 panic(fmt.Errorf("can't set %s on nil %s", "Change", "WatchGroupResponse")) 884 } 885 m.Change = fv 886 } 887 888 // A request message of the WatchGroups method. 889 type WatchGroupsRequest struct { 890 state protoimpl.MessageState 891 sizeCache protoimpl.SizeCache 892 unknownFields protoimpl.UnknownFields 893 // Type of a watch. Identifies how server stream data to a client, which 894 // fields in a request are allowed and which fields in response are relevant. 895 Type watch_type.WatchType `protobuf:"varint,9,opt,name=type,proto3,enum=goten.types.WatchType" json:"type,omitempty"` 896 // Parent name of ntt.iam.v1alpha2.Group 897 Parent *group.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 898 // Requested page size. Server may return fewer Groups than requested. 899 // If unspecified, server will pick an appropriate default. 900 // Can be populated only for stateful watch type. 901 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 902 // A token identifying a page of results the server should return. 903 // Can be populated only for stateful watch type. 904 PageToken *group.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 905 // Order By - 906 // https://cloud.google.com/apis/design/design_patterns#list_pagination Can be 907 // populated only for stateful watch type. 908 OrderBy *group.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 909 // A token identifying watch resume point from previous session. 910 // Can be populated only for stateless watch type. 911 ResumeToken string `protobuf:"bytes,10,opt,name=resume_token,json=resumeToken,proto3" json:"resume_token,omitempty"` 912 // Point in the time from which we want to start getting updates. This field 913 // can be populated only for stateless watch type and if resume token is not 914 // known yet. If specified, initial snapshot will NOT be provided. It is 915 // assumed client can obtain it using separate means. Watch responses will 916 // contain resume tokens which should be used to resume broken connection. 917 StartingTime *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=starting_time,json=startingTime,proto3" json:"starting_time,omitempty"` 918 // Filter - filter results by field criteria. Simplified SQL-like syntax with 919 // following operators: 920 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 921 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 922 // CONTAINS "severity:important" OR (state.last_error_time > 923 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 924 Filter *group.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 925 // A list of extra fields to be obtained for each response item on top of 926 // fields defined by request field view Changes to Group that don't affect any 927 // of masked fields won't be sent back. 928 FieldMask *group.Group_FieldMask `protobuf:"bytes,6,opt,customtype=Group_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 929 // View defines list of standard response fields present in response items. 930 // Additional fields can be amended by request field field_mask Changes to 931 // Group that don't affect any of masked fields won't be sent back. 932 View view.View `protobuf:"varint,8,opt,name=view,proto3,enum=goten.types.View" json:"view,omitempty"` 933 // Maximum amount of changes in each response message. Query result response 934 // is divided on the server side into chunks with size of a specified amount 935 // to limit memory footprint of each message. Responses will hold information 936 // whether more elements will continue for the actual change. If unspecified, 937 // server will pick an appropriate default. 938 MaxChunkSize int32 `protobuf:"varint,11,opt,name=max_chunk_size,json=maxChunkSize,proto3" json:"max_chunk_size,omitempty"` 939 } 940 941 func (m *WatchGroupsRequest) Reset() { 942 *m = WatchGroupsRequest{} 943 if protoimpl.UnsafeEnabled { 944 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[7] 945 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 946 ms.StoreMessageInfo(mi) 947 } 948 } 949 950 func (m *WatchGroupsRequest) String() string { 951 return protoimpl.X.MessageStringOf(m) 952 } 953 954 func (*WatchGroupsRequest) ProtoMessage() {} 955 956 func (m *WatchGroupsRequest) ProtoReflect() preflect.Message { 957 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[7] 958 if protoimpl.UnsafeEnabled && m != nil { 959 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 960 if ms.LoadMessageInfo() == nil { 961 ms.StoreMessageInfo(mi) 962 } 963 return ms 964 } 965 return mi.MessageOf(m) 966 } 967 968 func (*WatchGroupsRequest) GotenMessage() {} 969 970 // Deprecated, Use WatchGroupsRequest.ProtoReflect.Descriptor instead. 971 func (*WatchGroupsRequest) Descriptor() ([]byte, []int) { 972 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{7} 973 } 974 975 func (m *WatchGroupsRequest) Unmarshal(b []byte) error { 976 return proto.Unmarshal(b, m) 977 } 978 979 func (m *WatchGroupsRequest) Marshal() ([]byte, error) { 980 return proto.Marshal(m) 981 } 982 983 func (m *WatchGroupsRequest) MarshalJSON() ([]byte, error) { 984 return protojson.MarshalOptions{}.Marshal(m) 985 } 986 987 func (m *WatchGroupsRequest) UnmarshalJSON(data []byte) error { 988 return protojson.Unmarshal(data, m) 989 } 990 991 func (m *WatchGroupsRequest) GetType() watch_type.WatchType { 992 if m != nil { 993 return m.Type 994 } 995 return watch_type.WatchType_STATEFUL 996 } 997 998 func (m *WatchGroupsRequest) GetParent() *group.ParentName { 999 if m != nil { 1000 return m.Parent 1001 } 1002 return nil 1003 } 1004 1005 func (m *WatchGroupsRequest) GetPageSize() int32 { 1006 if m != nil { 1007 return m.PageSize 1008 } 1009 return int32(0) 1010 } 1011 1012 func (m *WatchGroupsRequest) GetPageToken() *group.PagerCursor { 1013 if m != nil { 1014 return m.PageToken 1015 } 1016 return nil 1017 } 1018 1019 func (m *WatchGroupsRequest) GetOrderBy() *group.OrderBy { 1020 if m != nil { 1021 return m.OrderBy 1022 } 1023 return nil 1024 } 1025 1026 func (m *WatchGroupsRequest) GetResumeToken() string { 1027 if m != nil { 1028 return m.ResumeToken 1029 } 1030 return "" 1031 } 1032 1033 func (m *WatchGroupsRequest) GetStartingTime() *timestamppb.Timestamp { 1034 if m != nil { 1035 return m.StartingTime 1036 } 1037 return nil 1038 } 1039 1040 func (m *WatchGroupsRequest) GetFilter() *group.Filter { 1041 if m != nil { 1042 return m.Filter 1043 } 1044 return nil 1045 } 1046 1047 func (m *WatchGroupsRequest) GetFieldMask() *group.Group_FieldMask { 1048 if m != nil { 1049 return m.FieldMask 1050 } 1051 return nil 1052 } 1053 1054 func (m *WatchGroupsRequest) GetView() view.View { 1055 if m != nil { 1056 return m.View 1057 } 1058 return view.View_UNSPECIFIED 1059 } 1060 1061 func (m *WatchGroupsRequest) GetMaxChunkSize() int32 { 1062 if m != nil { 1063 return m.MaxChunkSize 1064 } 1065 return int32(0) 1066 } 1067 1068 func (m *WatchGroupsRequest) SetType(fv watch_type.WatchType) { 1069 if m == nil { 1070 panic(fmt.Errorf("can't set %s on nil %s", "Type", "WatchGroupsRequest")) 1071 } 1072 m.Type = fv 1073 } 1074 1075 func (m *WatchGroupsRequest) SetParent(fv *group.ParentName) { 1076 if m == nil { 1077 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "WatchGroupsRequest")) 1078 } 1079 m.Parent = fv 1080 } 1081 1082 func (m *WatchGroupsRequest) SetPageSize(fv int32) { 1083 if m == nil { 1084 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "WatchGroupsRequest")) 1085 } 1086 m.PageSize = fv 1087 } 1088 1089 func (m *WatchGroupsRequest) SetPageToken(fv *group.PagerCursor) { 1090 if m == nil { 1091 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "WatchGroupsRequest")) 1092 } 1093 m.PageToken = fv 1094 } 1095 1096 func (m *WatchGroupsRequest) SetOrderBy(fv *group.OrderBy) { 1097 if m == nil { 1098 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "WatchGroupsRequest")) 1099 } 1100 m.OrderBy = fv 1101 } 1102 1103 func (m *WatchGroupsRequest) SetResumeToken(fv string) { 1104 if m == nil { 1105 panic(fmt.Errorf("can't set %s on nil %s", "ResumeToken", "WatchGroupsRequest")) 1106 } 1107 m.ResumeToken = fv 1108 } 1109 1110 func (m *WatchGroupsRequest) SetStartingTime(fv *timestamppb.Timestamp) { 1111 if m == nil { 1112 panic(fmt.Errorf("can't set %s on nil %s", "StartingTime", "WatchGroupsRequest")) 1113 } 1114 m.StartingTime = fv 1115 } 1116 1117 func (m *WatchGroupsRequest) SetFilter(fv *group.Filter) { 1118 if m == nil { 1119 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "WatchGroupsRequest")) 1120 } 1121 m.Filter = fv 1122 } 1123 1124 func (m *WatchGroupsRequest) SetFieldMask(fv *group.Group_FieldMask) { 1125 if m == nil { 1126 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "WatchGroupsRequest")) 1127 } 1128 m.FieldMask = fv 1129 } 1130 1131 func (m *WatchGroupsRequest) SetView(fv view.View) { 1132 if m == nil { 1133 panic(fmt.Errorf("can't set %s on nil %s", "View", "WatchGroupsRequest")) 1134 } 1135 m.View = fv 1136 } 1137 1138 func (m *WatchGroupsRequest) SetMaxChunkSize(fv int32) { 1139 if m == nil { 1140 panic(fmt.Errorf("can't set %s on nil %s", "MaxChunkSize", "WatchGroupsRequest")) 1141 } 1142 m.MaxChunkSize = fv 1143 } 1144 1145 // A response message of the WatchGroups method. 1146 type WatchGroupsResponse struct { 1147 state protoimpl.MessageState 1148 sizeCache protoimpl.SizeCache 1149 unknownFields protoimpl.UnknownFields 1150 // Changes of Groups 1151 GroupChanges []*group.GroupChange `protobuf:"bytes,2,rep,name=group_changes,json=groupChanges,proto3" json:"group_changes,omitempty"` 1152 // If request specified max_chunk_size (or this limit was enforced if 1153 // stateless watch has been chosen), then responses with "full changeset" will 1154 // be divided into chunks. Client should keep receiving messages and, once 1155 // is_current has value true, combine this recent message with all previous 1156 // ones where is_current is false. If this is the first is_current in a whole 1157 // watch stream, then it means that client should have, at this moment, 1158 // contain snapshot of the current situation (or more accurately, snapshot of 1159 // situation at the moment of request). All Groups will be of type 1160 // Added/Current (depending on watch_type specified in the request). Further 1161 // responses will be incremental - however messages may still be chunked and 1162 // is_current logic still applies. is_current is always true for stateful 1163 // watch if max_chunk_size was left to 0. 1164 IsCurrent bool `protobuf:"varint,4,opt,name=is_current,json=isCurrent,proto3" json:"is_current,omitempty"` 1165 // When present, PageTokens used for page navigation should be updated. 1166 // Present only if is_current is true (last chunk). 1167 PageTokenChange *WatchGroupsResponse_PageTokenChange `protobuf:"bytes,3,opt,name=page_token_change,json=pageTokenChange,proto3" json:"page_token_change,omitempty"` 1168 // Token that can be used if current connection drops and client needs to 1169 // reconnect. Populated only for stateless watch type. Present only if 1170 // is_current is true (last chunk). 1171 ResumeToken string `protobuf:"bytes,5,opt,name=resume_token,json=resumeToken,proto3" json:"resume_token,omitempty"` 1172 // Server may occasionally send information how many resources should client 1173 // have in its state so far (response message without any changes, but with 1174 // snapshot_size field specified). If client has different value than the one 1175 // sent by the server, then it should be treated by a client as an error and 1176 // should reconnect. If value is smaller then 0, then client should ignore 1177 // this field as unpopulated. This field should be checked only for stateless 1178 // watch. In stateful those kind of errors are handled by the server side. 1179 // Will be never sent together with is_current, is_soft_reset and 1180 // is_hard_reset flags. 1181 SnapshotSize int64 `protobuf:"varint,6,opt,name=snapshot_size,json=snapshotSize,proto3" json:"snapshot_size,omitempty"` 1182 // In case of internal issue server may send response message with this flag. 1183 // It indicates that client should drop all changes from recent responses 1184 // where is_current is false only! If last message had is_current set to true, 1185 // client should do nothing and process normally. Resume token received before 1186 // is still valid. This field should be checked only for stateless watch. In 1187 // stateful those kind of errors are handled by the server side. Will never be 1188 // sent along with is_current, is_hard_reset or snapshot_size. 1189 IsSoftReset bool `protobuf:"varint,7,opt,name=is_soft_reset,json=isSoftReset,proto3" json:"is_soft_reset,omitempty"` 1190 // In case of internal issue server may send response message with this flag. 1191 // After receiving, client should clear whole state (drop all changes received 1192 // so far) as server will send new snapshot (Groups will contains changes of 1193 // type Current only). Any resume tokens should be discarded as well. This 1194 // field should be checked only for stateless watch. In stateful those kind of 1195 // errors are handled by the server side. Will never be sent along with 1196 // is_current, is_soft_reset or snapshot_size. 1197 IsHardReset bool `protobuf:"varint,8,opt,name=is_hard_reset,json=isHardReset,proto3" json:"is_hard_reset,omitempty"` 1198 } 1199 1200 func (m *WatchGroupsResponse) Reset() { 1201 *m = WatchGroupsResponse{} 1202 if protoimpl.UnsafeEnabled { 1203 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[8] 1204 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1205 ms.StoreMessageInfo(mi) 1206 } 1207 } 1208 1209 func (m *WatchGroupsResponse) String() string { 1210 return protoimpl.X.MessageStringOf(m) 1211 } 1212 1213 func (*WatchGroupsResponse) ProtoMessage() {} 1214 1215 func (m *WatchGroupsResponse) ProtoReflect() preflect.Message { 1216 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[8] 1217 if protoimpl.UnsafeEnabled && m != nil { 1218 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1219 if ms.LoadMessageInfo() == nil { 1220 ms.StoreMessageInfo(mi) 1221 } 1222 return ms 1223 } 1224 return mi.MessageOf(m) 1225 } 1226 1227 func (*WatchGroupsResponse) GotenMessage() {} 1228 1229 // Deprecated, Use WatchGroupsResponse.ProtoReflect.Descriptor instead. 1230 func (*WatchGroupsResponse) Descriptor() ([]byte, []int) { 1231 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{8} 1232 } 1233 1234 func (m *WatchGroupsResponse) Unmarshal(b []byte) error { 1235 return proto.Unmarshal(b, m) 1236 } 1237 1238 func (m *WatchGroupsResponse) Marshal() ([]byte, error) { 1239 return proto.Marshal(m) 1240 } 1241 1242 func (m *WatchGroupsResponse) MarshalJSON() ([]byte, error) { 1243 return protojson.MarshalOptions{}.Marshal(m) 1244 } 1245 1246 func (m *WatchGroupsResponse) UnmarshalJSON(data []byte) error { 1247 return protojson.Unmarshal(data, m) 1248 } 1249 1250 func (m *WatchGroupsResponse) GetGroupChanges() []*group.GroupChange { 1251 if m != nil { 1252 return m.GroupChanges 1253 } 1254 return nil 1255 } 1256 1257 func (m *WatchGroupsResponse) GetIsCurrent() bool { 1258 if m != nil { 1259 return m.IsCurrent 1260 } 1261 return false 1262 } 1263 1264 func (m *WatchGroupsResponse) GetPageTokenChange() *WatchGroupsResponse_PageTokenChange { 1265 if m != nil { 1266 return m.PageTokenChange 1267 } 1268 return nil 1269 } 1270 1271 func (m *WatchGroupsResponse) GetResumeToken() string { 1272 if m != nil { 1273 return m.ResumeToken 1274 } 1275 return "" 1276 } 1277 1278 func (m *WatchGroupsResponse) GetSnapshotSize() int64 { 1279 if m != nil { 1280 return m.SnapshotSize 1281 } 1282 return int64(0) 1283 } 1284 1285 func (m *WatchGroupsResponse) GetIsSoftReset() bool { 1286 if m != nil { 1287 return m.IsSoftReset 1288 } 1289 return false 1290 } 1291 1292 func (m *WatchGroupsResponse) GetIsHardReset() bool { 1293 if m != nil { 1294 return m.IsHardReset 1295 } 1296 return false 1297 } 1298 1299 func (m *WatchGroupsResponse) SetGroupChanges(fv []*group.GroupChange) { 1300 if m == nil { 1301 panic(fmt.Errorf("can't set %s on nil %s", "GroupChanges", "WatchGroupsResponse")) 1302 } 1303 m.GroupChanges = fv 1304 } 1305 1306 func (m *WatchGroupsResponse) SetIsCurrent(fv bool) { 1307 if m == nil { 1308 panic(fmt.Errorf("can't set %s on nil %s", "IsCurrent", "WatchGroupsResponse")) 1309 } 1310 m.IsCurrent = fv 1311 } 1312 1313 func (m *WatchGroupsResponse) SetPageTokenChange(fv *WatchGroupsResponse_PageTokenChange) { 1314 if m == nil { 1315 panic(fmt.Errorf("can't set %s on nil %s", "PageTokenChange", "WatchGroupsResponse")) 1316 } 1317 m.PageTokenChange = fv 1318 } 1319 1320 func (m *WatchGroupsResponse) SetResumeToken(fv string) { 1321 if m == nil { 1322 panic(fmt.Errorf("can't set %s on nil %s", "ResumeToken", "WatchGroupsResponse")) 1323 } 1324 m.ResumeToken = fv 1325 } 1326 1327 func (m *WatchGroupsResponse) SetSnapshotSize(fv int64) { 1328 if m == nil { 1329 panic(fmt.Errorf("can't set %s on nil %s", "SnapshotSize", "WatchGroupsResponse")) 1330 } 1331 m.SnapshotSize = fv 1332 } 1333 1334 func (m *WatchGroupsResponse) SetIsSoftReset(fv bool) { 1335 if m == nil { 1336 panic(fmt.Errorf("can't set %s on nil %s", "IsSoftReset", "WatchGroupsResponse")) 1337 } 1338 m.IsSoftReset = fv 1339 } 1340 1341 func (m *WatchGroupsResponse) SetIsHardReset(fv bool) { 1342 if m == nil { 1343 panic(fmt.Errorf("can't set %s on nil %s", "IsHardReset", "WatchGroupsResponse")) 1344 } 1345 m.IsHardReset = fv 1346 } 1347 1348 // A request message of the CreateGroup method. 1349 type CreateGroupRequest struct { 1350 state protoimpl.MessageState 1351 sizeCache protoimpl.SizeCache 1352 unknownFields protoimpl.UnknownFields 1353 // Parent name of ntt.iam.v1alpha2.Group 1354 Parent *group.ParentName `protobuf:"bytes,1,opt,customtype=ParentName,name=parent,proto3" json:"parent,omitempty"` 1355 // Group resource body 1356 Group *group.Group `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"` 1357 // Optional masking applied to response object to reduce message response 1358 // size. 1359 ResponseMask *CreateGroupRequest_ResponseMask `protobuf:"bytes,3,opt,name=response_mask,json=responseMask,proto3" json:"response_mask,omitempty"` 1360 } 1361 1362 func (m *CreateGroupRequest) Reset() { 1363 *m = CreateGroupRequest{} 1364 if protoimpl.UnsafeEnabled { 1365 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[9] 1366 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1367 ms.StoreMessageInfo(mi) 1368 } 1369 } 1370 1371 func (m *CreateGroupRequest) String() string { 1372 return protoimpl.X.MessageStringOf(m) 1373 } 1374 1375 func (*CreateGroupRequest) ProtoMessage() {} 1376 1377 func (m *CreateGroupRequest) ProtoReflect() preflect.Message { 1378 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[9] 1379 if protoimpl.UnsafeEnabled && m != nil { 1380 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1381 if ms.LoadMessageInfo() == nil { 1382 ms.StoreMessageInfo(mi) 1383 } 1384 return ms 1385 } 1386 return mi.MessageOf(m) 1387 } 1388 1389 func (*CreateGroupRequest) GotenMessage() {} 1390 1391 // Deprecated, Use CreateGroupRequest.ProtoReflect.Descriptor instead. 1392 func (*CreateGroupRequest) Descriptor() ([]byte, []int) { 1393 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{9} 1394 } 1395 1396 func (m *CreateGroupRequest) Unmarshal(b []byte) error { 1397 return proto.Unmarshal(b, m) 1398 } 1399 1400 func (m *CreateGroupRequest) Marshal() ([]byte, error) { 1401 return proto.Marshal(m) 1402 } 1403 1404 func (m *CreateGroupRequest) MarshalJSON() ([]byte, error) { 1405 return protojson.MarshalOptions{}.Marshal(m) 1406 } 1407 1408 func (m *CreateGroupRequest) UnmarshalJSON(data []byte) error { 1409 return protojson.Unmarshal(data, m) 1410 } 1411 1412 func (m *CreateGroupRequest) GetParent() *group.ParentName { 1413 if m != nil { 1414 return m.Parent 1415 } 1416 return nil 1417 } 1418 1419 func (m *CreateGroupRequest) GetGroup() *group.Group { 1420 if m != nil { 1421 return m.Group 1422 } 1423 return nil 1424 } 1425 1426 func (m *CreateGroupRequest) GetResponseMask() *CreateGroupRequest_ResponseMask { 1427 if m != nil { 1428 return m.ResponseMask 1429 } 1430 return nil 1431 } 1432 1433 func (m *CreateGroupRequest) SetParent(fv *group.ParentName) { 1434 if m == nil { 1435 panic(fmt.Errorf("can't set %s on nil %s", "Parent", "CreateGroupRequest")) 1436 } 1437 m.Parent = fv 1438 } 1439 1440 func (m *CreateGroupRequest) SetGroup(fv *group.Group) { 1441 if m == nil { 1442 panic(fmt.Errorf("can't set %s on nil %s", "Group", "CreateGroupRequest")) 1443 } 1444 m.Group = fv 1445 } 1446 1447 func (m *CreateGroupRequest) SetResponseMask(fv *CreateGroupRequest_ResponseMask) { 1448 if m == nil { 1449 panic(fmt.Errorf("can't set %s on nil %s", "ResponseMask", "CreateGroupRequest")) 1450 } 1451 m.ResponseMask = fv 1452 } 1453 1454 // A request message of the UpdateGroup method. 1455 type UpdateGroupRequest struct { 1456 state protoimpl.MessageState 1457 sizeCache protoimpl.SizeCache 1458 unknownFields protoimpl.UnknownFields 1459 // Group resource body 1460 Group *group.Group `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"` 1461 // FieldMask applied to request - change will be applied only for fields in 1462 // the mask 1463 UpdateMask *group.Group_FieldMask `protobuf:"bytes,3,opt,customtype=Group_FieldMask,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` 1464 // Conditional update applied to request if update should be executed only for 1465 // specific resource state. If this field is populated, then server will fetch 1466 // existing resource, compare with the one stored in the cas field (after 1467 // applying field mask) and proceed with update only and only if they match. 1468 // Otherwise RPC error Aborted will be returned. 1469 Cas *UpdateGroupRequest_CAS `protobuf:"bytes,4,opt,name=cas,proto3" json:"cas,omitempty"` 1470 // If set to true, and the resource is not found, 1471 // a new resource will be created. In this situation, 1472 // 'field_mask' is ignored. 1473 // 1474 // https://google.aip.dev/134#create-or-update 1475 AllowMissing bool `protobuf:"varint,5,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"` 1476 // reduce message response size. 1477 ResponseMask *UpdateGroupRequest_ResponseMask `protobuf:"bytes,6,opt,name=response_mask,json=responseMask,proto3" json:"response_mask,omitempty"` 1478 } 1479 1480 func (m *UpdateGroupRequest) Reset() { 1481 *m = UpdateGroupRequest{} 1482 if protoimpl.UnsafeEnabled { 1483 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[10] 1484 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1485 ms.StoreMessageInfo(mi) 1486 } 1487 } 1488 1489 func (m *UpdateGroupRequest) String() string { 1490 return protoimpl.X.MessageStringOf(m) 1491 } 1492 1493 func (*UpdateGroupRequest) ProtoMessage() {} 1494 1495 func (m *UpdateGroupRequest) ProtoReflect() preflect.Message { 1496 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[10] 1497 if protoimpl.UnsafeEnabled && m != nil { 1498 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1499 if ms.LoadMessageInfo() == nil { 1500 ms.StoreMessageInfo(mi) 1501 } 1502 return ms 1503 } 1504 return mi.MessageOf(m) 1505 } 1506 1507 func (*UpdateGroupRequest) GotenMessage() {} 1508 1509 // Deprecated, Use UpdateGroupRequest.ProtoReflect.Descriptor instead. 1510 func (*UpdateGroupRequest) Descriptor() ([]byte, []int) { 1511 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{10} 1512 } 1513 1514 func (m *UpdateGroupRequest) Unmarshal(b []byte) error { 1515 return proto.Unmarshal(b, m) 1516 } 1517 1518 func (m *UpdateGroupRequest) Marshal() ([]byte, error) { 1519 return proto.Marshal(m) 1520 } 1521 1522 func (m *UpdateGroupRequest) MarshalJSON() ([]byte, error) { 1523 return protojson.MarshalOptions{}.Marshal(m) 1524 } 1525 1526 func (m *UpdateGroupRequest) UnmarshalJSON(data []byte) error { 1527 return protojson.Unmarshal(data, m) 1528 } 1529 1530 func (m *UpdateGroupRequest) GetGroup() *group.Group { 1531 if m != nil { 1532 return m.Group 1533 } 1534 return nil 1535 } 1536 1537 func (m *UpdateGroupRequest) GetUpdateMask() *group.Group_FieldMask { 1538 if m != nil { 1539 return m.UpdateMask 1540 } 1541 return nil 1542 } 1543 1544 func (m *UpdateGroupRequest) GetCas() *UpdateGroupRequest_CAS { 1545 if m != nil { 1546 return m.Cas 1547 } 1548 return nil 1549 } 1550 1551 func (m *UpdateGroupRequest) GetAllowMissing() bool { 1552 if m != nil { 1553 return m.AllowMissing 1554 } 1555 return false 1556 } 1557 1558 func (m *UpdateGroupRequest) GetResponseMask() *UpdateGroupRequest_ResponseMask { 1559 if m != nil { 1560 return m.ResponseMask 1561 } 1562 return nil 1563 } 1564 1565 func (m *UpdateGroupRequest) SetGroup(fv *group.Group) { 1566 if m == nil { 1567 panic(fmt.Errorf("can't set %s on nil %s", "Group", "UpdateGroupRequest")) 1568 } 1569 m.Group = fv 1570 } 1571 1572 func (m *UpdateGroupRequest) SetUpdateMask(fv *group.Group_FieldMask) { 1573 if m == nil { 1574 panic(fmt.Errorf("can't set %s on nil %s", "UpdateMask", "UpdateGroupRequest")) 1575 } 1576 m.UpdateMask = fv 1577 } 1578 1579 func (m *UpdateGroupRequest) SetCas(fv *UpdateGroupRequest_CAS) { 1580 if m == nil { 1581 panic(fmt.Errorf("can't set %s on nil %s", "Cas", "UpdateGroupRequest")) 1582 } 1583 m.Cas = fv 1584 } 1585 1586 func (m *UpdateGroupRequest) SetAllowMissing(fv bool) { 1587 if m == nil { 1588 panic(fmt.Errorf("can't set %s on nil %s", "AllowMissing", "UpdateGroupRequest")) 1589 } 1590 m.AllowMissing = fv 1591 } 1592 1593 func (m *UpdateGroupRequest) SetResponseMask(fv *UpdateGroupRequest_ResponseMask) { 1594 if m == nil { 1595 panic(fmt.Errorf("can't set %s on nil %s", "ResponseMask", "UpdateGroupRequest")) 1596 } 1597 m.ResponseMask = fv 1598 } 1599 1600 // A request message of the DeleteGroup method. 1601 type DeleteGroupRequest struct { 1602 state protoimpl.MessageState 1603 sizeCache protoimpl.SizeCache 1604 unknownFields protoimpl.UnknownFields 1605 // Name of ntt.iam.v1alpha2.Group 1606 Name *group.Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 1607 // If set to true, and the resource is not found, method will be successful 1608 // and will not return NotFound error. 1609 AllowMissing bool `protobuf:"varint,2,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"` 1610 } 1611 1612 func (m *DeleteGroupRequest) Reset() { 1613 *m = DeleteGroupRequest{} 1614 if protoimpl.UnsafeEnabled { 1615 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[11] 1616 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1617 ms.StoreMessageInfo(mi) 1618 } 1619 } 1620 1621 func (m *DeleteGroupRequest) String() string { 1622 return protoimpl.X.MessageStringOf(m) 1623 } 1624 1625 func (*DeleteGroupRequest) ProtoMessage() {} 1626 1627 func (m *DeleteGroupRequest) ProtoReflect() preflect.Message { 1628 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[11] 1629 if protoimpl.UnsafeEnabled && m != nil { 1630 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1631 if ms.LoadMessageInfo() == nil { 1632 ms.StoreMessageInfo(mi) 1633 } 1634 return ms 1635 } 1636 return mi.MessageOf(m) 1637 } 1638 1639 func (*DeleteGroupRequest) GotenMessage() {} 1640 1641 // Deprecated, Use DeleteGroupRequest.ProtoReflect.Descriptor instead. 1642 func (*DeleteGroupRequest) Descriptor() ([]byte, []int) { 1643 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{11} 1644 } 1645 1646 func (m *DeleteGroupRequest) Unmarshal(b []byte) error { 1647 return proto.Unmarshal(b, m) 1648 } 1649 1650 func (m *DeleteGroupRequest) Marshal() ([]byte, error) { 1651 return proto.Marshal(m) 1652 } 1653 1654 func (m *DeleteGroupRequest) MarshalJSON() ([]byte, error) { 1655 return protojson.MarshalOptions{}.Marshal(m) 1656 } 1657 1658 func (m *DeleteGroupRequest) UnmarshalJSON(data []byte) error { 1659 return protojson.Unmarshal(data, m) 1660 } 1661 1662 func (m *DeleteGroupRequest) GetName() *group.Name { 1663 if m != nil { 1664 return m.Name 1665 } 1666 return nil 1667 } 1668 1669 func (m *DeleteGroupRequest) GetAllowMissing() bool { 1670 if m != nil { 1671 return m.AllowMissing 1672 } 1673 return false 1674 } 1675 1676 func (m *DeleteGroupRequest) SetName(fv *group.Name) { 1677 if m == nil { 1678 panic(fmt.Errorf("can't set %s on nil %s", "Name", "DeleteGroupRequest")) 1679 } 1680 m.Name = fv 1681 } 1682 1683 func (m *DeleteGroupRequest) SetAllowMissing(fv bool) { 1684 if m == nil { 1685 panic(fmt.Errorf("can't set %s on nil %s", "AllowMissing", "DeleteGroupRequest")) 1686 } 1687 m.AllowMissing = fv 1688 } 1689 1690 type WatchGroupsResponse_PageTokenChange struct { 1691 state protoimpl.MessageState 1692 sizeCache protoimpl.SizeCache 1693 unknownFields protoimpl.UnknownFields 1694 // New token to retrieve previous page of results. 1695 PrevPageToken *group.PagerCursor `protobuf:"bytes,1,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 1696 // New token to retrieve next page of results. 1697 NextPageToken *group.PagerCursor `protobuf:"bytes,2,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 1698 } 1699 1700 func (m *WatchGroupsResponse_PageTokenChange) Reset() { 1701 *m = WatchGroupsResponse_PageTokenChange{} 1702 if protoimpl.UnsafeEnabled { 1703 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[12] 1704 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1705 ms.StoreMessageInfo(mi) 1706 } 1707 } 1708 1709 func (m *WatchGroupsResponse_PageTokenChange) String() string { 1710 return protoimpl.X.MessageStringOf(m) 1711 } 1712 1713 func (*WatchGroupsResponse_PageTokenChange) ProtoMessage() {} 1714 1715 func (m *WatchGroupsResponse_PageTokenChange) ProtoReflect() preflect.Message { 1716 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[12] 1717 if protoimpl.UnsafeEnabled && m != nil { 1718 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1719 if ms.LoadMessageInfo() == nil { 1720 ms.StoreMessageInfo(mi) 1721 } 1722 return ms 1723 } 1724 return mi.MessageOf(m) 1725 } 1726 1727 func (*WatchGroupsResponse_PageTokenChange) GotenMessage() {} 1728 1729 // Deprecated, Use WatchGroupsResponse_PageTokenChange.ProtoReflect.Descriptor instead. 1730 func (*WatchGroupsResponse_PageTokenChange) Descriptor() ([]byte, []int) { 1731 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{8, 0} 1732 } 1733 1734 func (m *WatchGroupsResponse_PageTokenChange) Unmarshal(b []byte) error { 1735 return proto.Unmarshal(b, m) 1736 } 1737 1738 func (m *WatchGroupsResponse_PageTokenChange) Marshal() ([]byte, error) { 1739 return proto.Marshal(m) 1740 } 1741 1742 func (m *WatchGroupsResponse_PageTokenChange) MarshalJSON() ([]byte, error) { 1743 return protojson.MarshalOptions{}.Marshal(m) 1744 } 1745 1746 func (m *WatchGroupsResponse_PageTokenChange) UnmarshalJSON(data []byte) error { 1747 return protojson.Unmarshal(data, m) 1748 } 1749 1750 func (m *WatchGroupsResponse_PageTokenChange) GetPrevPageToken() *group.PagerCursor { 1751 if m != nil { 1752 return m.PrevPageToken 1753 } 1754 return nil 1755 } 1756 1757 func (m *WatchGroupsResponse_PageTokenChange) GetNextPageToken() *group.PagerCursor { 1758 if m != nil { 1759 return m.NextPageToken 1760 } 1761 return nil 1762 } 1763 1764 func (m *WatchGroupsResponse_PageTokenChange) SetPrevPageToken(fv *group.PagerCursor) { 1765 if m == nil { 1766 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "WatchGroupsResponse_PageTokenChange")) 1767 } 1768 m.PrevPageToken = fv 1769 } 1770 1771 func (m *WatchGroupsResponse_PageTokenChange) SetNextPageToken(fv *group.PagerCursor) { 1772 if m == nil { 1773 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "WatchGroupsResponse_PageTokenChange")) 1774 } 1775 m.NextPageToken = fv 1776 } 1777 1778 // ResponseMask allows client to reduce response message size. 1779 type CreateGroupRequest_ResponseMask struct { 1780 state protoimpl.MessageState 1781 sizeCache protoimpl.SizeCache 1782 unknownFields protoimpl.UnknownFields 1783 // Types that are valid to be assigned to Masking: 1784 // *CreateGroupRequest_ResponseMask_SkipEntireResponseBody 1785 // *CreateGroupRequest_ResponseMask_BodyMask 1786 Masking isCreateGroupRequest_ResponseMask_Masking `protobuf_oneof:"masking"` 1787 } 1788 1789 func (m *CreateGroupRequest_ResponseMask) Reset() { 1790 *m = CreateGroupRequest_ResponseMask{} 1791 if protoimpl.UnsafeEnabled { 1792 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[13] 1793 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1794 ms.StoreMessageInfo(mi) 1795 } 1796 } 1797 1798 func (m *CreateGroupRequest_ResponseMask) String() string { 1799 return protoimpl.X.MessageStringOf(m) 1800 } 1801 1802 func (*CreateGroupRequest_ResponseMask) ProtoMessage() {} 1803 1804 func (m *CreateGroupRequest_ResponseMask) ProtoReflect() preflect.Message { 1805 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[13] 1806 if protoimpl.UnsafeEnabled && m != nil { 1807 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1808 if ms.LoadMessageInfo() == nil { 1809 ms.StoreMessageInfo(mi) 1810 } 1811 return ms 1812 } 1813 return mi.MessageOf(m) 1814 } 1815 1816 func (*CreateGroupRequest_ResponseMask) GotenMessage() {} 1817 1818 // Deprecated, Use CreateGroupRequest_ResponseMask.ProtoReflect.Descriptor instead. 1819 func (*CreateGroupRequest_ResponseMask) Descriptor() ([]byte, []int) { 1820 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{9, 0} 1821 } 1822 1823 func (m *CreateGroupRequest_ResponseMask) Unmarshal(b []byte) error { 1824 return proto.Unmarshal(b, m) 1825 } 1826 1827 func (m *CreateGroupRequest_ResponseMask) Marshal() ([]byte, error) { 1828 return proto.Marshal(m) 1829 } 1830 1831 func (m *CreateGroupRequest_ResponseMask) MarshalJSON() ([]byte, error) { 1832 return protojson.MarshalOptions{}.Marshal(m) 1833 } 1834 1835 func (m *CreateGroupRequest_ResponseMask) UnmarshalJSON(data []byte) error { 1836 return protojson.Unmarshal(data, m) 1837 } 1838 1839 type isCreateGroupRequest_ResponseMask_Masking interface { 1840 isCreateGroupRequest_ResponseMask_Masking() 1841 } 1842 1843 type CreateGroupRequest_ResponseMask_SkipEntireResponseBody struct { 1844 // If this flag has value true, then response will contain just empty 1845 // resource without any fields populated. 1846 SkipEntireResponseBody bool `protobuf:"varint,1,opt,name=skip_entire_response_body,json=skipEntireResponseBody,proto3,oneof"` 1847 } 1848 type CreateGroupRequest_ResponseMask_BodyMask struct { 1849 // If this field is populated, then resource in response will contain only 1850 // specific fields. 1851 BodyMask *group.Group_FieldMask `protobuf:"bytes,2,opt,customtype=Group_FieldMask,name=body_mask,json=bodyMask,proto3,oneof"` 1852 } 1853 1854 func (*CreateGroupRequest_ResponseMask_SkipEntireResponseBody) isCreateGroupRequest_ResponseMask_Masking() { 1855 } 1856 func (*CreateGroupRequest_ResponseMask_BodyMask) isCreateGroupRequest_ResponseMask_Masking() {} 1857 func (m *CreateGroupRequest_ResponseMask) GetMasking() isCreateGroupRequest_ResponseMask_Masking { 1858 if m != nil { 1859 return m.Masking 1860 } 1861 return nil 1862 } 1863 func (m *CreateGroupRequest_ResponseMask) GetSkipEntireResponseBody() bool { 1864 if x, ok := m.GetMasking().(*CreateGroupRequest_ResponseMask_SkipEntireResponseBody); ok { 1865 return x.SkipEntireResponseBody 1866 } 1867 return false 1868 } 1869 func (m *CreateGroupRequest_ResponseMask) GetBodyMask() *group.Group_FieldMask { 1870 if x, ok := m.GetMasking().(*CreateGroupRequest_ResponseMask_BodyMask); ok { 1871 return x.BodyMask 1872 } 1873 return nil 1874 } 1875 func (m *CreateGroupRequest_ResponseMask) SetMasking(ofv isCreateGroupRequest_ResponseMask_Masking) { 1876 if m == nil { 1877 panic(fmt.Errorf("can't set %s on nil %s", "isCreateGroupRequest_ResponseMask_Masking", "CreateGroupRequest_ResponseMask")) 1878 } 1879 m.Masking = ofv 1880 } 1881 func (m *CreateGroupRequest_ResponseMask) SetSkipEntireResponseBody(fv bool) { 1882 m.SetMasking(&CreateGroupRequest_ResponseMask_SkipEntireResponseBody{SkipEntireResponseBody: fv}) 1883 } 1884 func (m *CreateGroupRequest_ResponseMask) SetBodyMask(fv *group.Group_FieldMask) { 1885 m.SetMasking(&CreateGroupRequest_ResponseMask_BodyMask{BodyMask: fv}) 1886 } 1887 1888 // CAS - Compare and Swap. This object is used if user wants to make update 1889 // conditional based upon previous resource version. 1890 type UpdateGroupRequest_CAS struct { 1891 state protoimpl.MessageState 1892 sizeCache protoimpl.SizeCache 1893 unknownFields protoimpl.UnknownFields 1894 // Conditional desired state of a resource before update. 1895 ConditionalState *group.Group `protobuf:"bytes,1,opt,name=conditional_state,json=conditionalState,proto3" json:"conditional_state,omitempty"` 1896 // Field paths from conditional state of resource server should check and 1897 // compare. 1898 FieldMask *group.Group_FieldMask `protobuf:"bytes,2,opt,customtype=Group_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 1899 } 1900 1901 func (m *UpdateGroupRequest_CAS) Reset() { 1902 *m = UpdateGroupRequest_CAS{} 1903 if protoimpl.UnsafeEnabled { 1904 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[14] 1905 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1906 ms.StoreMessageInfo(mi) 1907 } 1908 } 1909 1910 func (m *UpdateGroupRequest_CAS) String() string { 1911 return protoimpl.X.MessageStringOf(m) 1912 } 1913 1914 func (*UpdateGroupRequest_CAS) ProtoMessage() {} 1915 1916 func (m *UpdateGroupRequest_CAS) ProtoReflect() preflect.Message { 1917 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[14] 1918 if protoimpl.UnsafeEnabled && m != nil { 1919 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1920 if ms.LoadMessageInfo() == nil { 1921 ms.StoreMessageInfo(mi) 1922 } 1923 return ms 1924 } 1925 return mi.MessageOf(m) 1926 } 1927 1928 func (*UpdateGroupRequest_CAS) GotenMessage() {} 1929 1930 // Deprecated, Use UpdateGroupRequest_CAS.ProtoReflect.Descriptor instead. 1931 func (*UpdateGroupRequest_CAS) Descriptor() ([]byte, []int) { 1932 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{10, 0} 1933 } 1934 1935 func (m *UpdateGroupRequest_CAS) Unmarshal(b []byte) error { 1936 return proto.Unmarshal(b, m) 1937 } 1938 1939 func (m *UpdateGroupRequest_CAS) Marshal() ([]byte, error) { 1940 return proto.Marshal(m) 1941 } 1942 1943 func (m *UpdateGroupRequest_CAS) MarshalJSON() ([]byte, error) { 1944 return protojson.MarshalOptions{}.Marshal(m) 1945 } 1946 1947 func (m *UpdateGroupRequest_CAS) UnmarshalJSON(data []byte) error { 1948 return protojson.Unmarshal(data, m) 1949 } 1950 1951 func (m *UpdateGroupRequest_CAS) GetConditionalState() *group.Group { 1952 if m != nil { 1953 return m.ConditionalState 1954 } 1955 return nil 1956 } 1957 1958 func (m *UpdateGroupRequest_CAS) GetFieldMask() *group.Group_FieldMask { 1959 if m != nil { 1960 return m.FieldMask 1961 } 1962 return nil 1963 } 1964 1965 func (m *UpdateGroupRequest_CAS) SetConditionalState(fv *group.Group) { 1966 if m == nil { 1967 panic(fmt.Errorf("can't set %s on nil %s", "ConditionalState", "UpdateGroupRequest_CAS")) 1968 } 1969 m.ConditionalState = fv 1970 } 1971 1972 func (m *UpdateGroupRequest_CAS) SetFieldMask(fv *group.Group_FieldMask) { 1973 if m == nil { 1974 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "UpdateGroupRequest_CAS")) 1975 } 1976 m.FieldMask = fv 1977 } 1978 1979 // ResponseMask allows client to reduce response message size. 1980 type UpdateGroupRequest_ResponseMask struct { 1981 state protoimpl.MessageState 1982 sizeCache protoimpl.SizeCache 1983 unknownFields protoimpl.UnknownFields 1984 // Types that are valid to be assigned to Masking: 1985 // *UpdateGroupRequest_ResponseMask_SkipEntireResponseBody 1986 // *UpdateGroupRequest_ResponseMask_UpdatedFieldsOnly 1987 // *UpdateGroupRequest_ResponseMask_BodyMask 1988 Masking isUpdateGroupRequest_ResponseMask_Masking `protobuf_oneof:"masking"` 1989 } 1990 1991 func (m *UpdateGroupRequest_ResponseMask) Reset() { 1992 *m = UpdateGroupRequest_ResponseMask{} 1993 if protoimpl.UnsafeEnabled { 1994 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[15] 1995 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 1996 ms.StoreMessageInfo(mi) 1997 } 1998 } 1999 2000 func (m *UpdateGroupRequest_ResponseMask) String() string { 2001 return protoimpl.X.MessageStringOf(m) 2002 } 2003 2004 func (*UpdateGroupRequest_ResponseMask) ProtoMessage() {} 2005 2006 func (m *UpdateGroupRequest_ResponseMask) ProtoReflect() preflect.Message { 2007 mi := &edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[15] 2008 if protoimpl.UnsafeEnabled && m != nil { 2009 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 2010 if ms.LoadMessageInfo() == nil { 2011 ms.StoreMessageInfo(mi) 2012 } 2013 return ms 2014 } 2015 return mi.MessageOf(m) 2016 } 2017 2018 func (*UpdateGroupRequest_ResponseMask) GotenMessage() {} 2019 2020 // Deprecated, Use UpdateGroupRequest_ResponseMask.ProtoReflect.Descriptor instead. 2021 func (*UpdateGroupRequest_ResponseMask) Descriptor() ([]byte, []int) { 2022 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP(), []int{10, 1} 2023 } 2024 2025 func (m *UpdateGroupRequest_ResponseMask) Unmarshal(b []byte) error { 2026 return proto.Unmarshal(b, m) 2027 } 2028 2029 func (m *UpdateGroupRequest_ResponseMask) Marshal() ([]byte, error) { 2030 return proto.Marshal(m) 2031 } 2032 2033 func (m *UpdateGroupRequest_ResponseMask) MarshalJSON() ([]byte, error) { 2034 return protojson.MarshalOptions{}.Marshal(m) 2035 } 2036 2037 func (m *UpdateGroupRequest_ResponseMask) UnmarshalJSON(data []byte) error { 2038 return protojson.Unmarshal(data, m) 2039 } 2040 2041 type isUpdateGroupRequest_ResponseMask_Masking interface { 2042 isUpdateGroupRequest_ResponseMask_Masking() 2043 } 2044 2045 type UpdateGroupRequest_ResponseMask_SkipEntireResponseBody struct { 2046 // If this flag has value true, then response will contain just empty 2047 // resource without any fields populated. Field body_mask is ignored if 2048 // set. 2049 SkipEntireResponseBody bool `protobuf:"varint,1,opt,name=skip_entire_response_body,json=skipEntireResponseBody,proto3,oneof"` 2050 } 2051 type UpdateGroupRequest_ResponseMask_UpdatedFieldsOnly struct { 2052 // Include all fields that were actually updated during processing. Note 2053 // this may be larger than update mask if some fields were computed 2054 // additionally. Name is added as well. 2055 UpdatedFieldsOnly bool `protobuf:"varint,2,opt,name=updated_fields_only,json=updatedFieldsOnly,proto3,oneof"` 2056 } 2057 type UpdateGroupRequest_ResponseMask_BodyMask struct { 2058 // If this field is populated, then resource in response will contain only 2059 // specific fields. If skip_entire_response_body is true, this field is 2060 // ignored. 2061 BodyMask *group.Group_FieldMask `protobuf:"bytes,3,opt,customtype=Group_FieldMask,name=body_mask,json=bodyMask,proto3,oneof"` 2062 } 2063 2064 func (*UpdateGroupRequest_ResponseMask_SkipEntireResponseBody) isUpdateGroupRequest_ResponseMask_Masking() { 2065 } 2066 func (*UpdateGroupRequest_ResponseMask_UpdatedFieldsOnly) isUpdateGroupRequest_ResponseMask_Masking() { 2067 } 2068 func (*UpdateGroupRequest_ResponseMask_BodyMask) isUpdateGroupRequest_ResponseMask_Masking() {} 2069 func (m *UpdateGroupRequest_ResponseMask) GetMasking() isUpdateGroupRequest_ResponseMask_Masking { 2070 if m != nil { 2071 return m.Masking 2072 } 2073 return nil 2074 } 2075 func (m *UpdateGroupRequest_ResponseMask) GetSkipEntireResponseBody() bool { 2076 if x, ok := m.GetMasking().(*UpdateGroupRequest_ResponseMask_SkipEntireResponseBody); ok { 2077 return x.SkipEntireResponseBody 2078 } 2079 return false 2080 } 2081 func (m *UpdateGroupRequest_ResponseMask) GetUpdatedFieldsOnly() bool { 2082 if x, ok := m.GetMasking().(*UpdateGroupRequest_ResponseMask_UpdatedFieldsOnly); ok { 2083 return x.UpdatedFieldsOnly 2084 } 2085 return false 2086 } 2087 func (m *UpdateGroupRequest_ResponseMask) GetBodyMask() *group.Group_FieldMask { 2088 if x, ok := m.GetMasking().(*UpdateGroupRequest_ResponseMask_BodyMask); ok { 2089 return x.BodyMask 2090 } 2091 return nil 2092 } 2093 func (m *UpdateGroupRequest_ResponseMask) SetMasking(ofv isUpdateGroupRequest_ResponseMask_Masking) { 2094 if m == nil { 2095 panic(fmt.Errorf("can't set %s on nil %s", "isUpdateGroupRequest_ResponseMask_Masking", "UpdateGroupRequest_ResponseMask")) 2096 } 2097 m.Masking = ofv 2098 } 2099 func (m *UpdateGroupRequest_ResponseMask) SetSkipEntireResponseBody(fv bool) { 2100 m.SetMasking(&UpdateGroupRequest_ResponseMask_SkipEntireResponseBody{SkipEntireResponseBody: fv}) 2101 } 2102 func (m *UpdateGroupRequest_ResponseMask) SetUpdatedFieldsOnly(fv bool) { 2103 m.SetMasking(&UpdateGroupRequest_ResponseMask_UpdatedFieldsOnly{UpdatedFieldsOnly: fv}) 2104 } 2105 func (m *UpdateGroupRequest_ResponseMask) SetBodyMask(fv *group.Group_FieldMask) { 2106 m.SetMasking(&UpdateGroupRequest_ResponseMask_BodyMask{BodyMask: fv}) 2107 } 2108 2109 var edgelq_iam_proto_v1alpha2_group_service_proto preflect.FileDescriptor 2110 2111 var edgelq_iam_proto_v1alpha2_group_service_proto_rawDesc = []byte{ 2112 0x0a, 0x2d, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 2113 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 0x75, 2114 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 2115 0x10, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 2116 0x32, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 2117 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 2118 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 2119 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 2120 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69, 2121 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 2122 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x6f, 2123 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 0x6e, 2124 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 0x6f, 2125 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 2126 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 2127 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x74, 0x65, 0x6e, 2128 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x6c, 0x69, 2129 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 2130 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 2131 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 2132 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x65, 0x72, 0x73, 2133 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x67, 0x6f, 2134 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 2135 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 2136 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 2137 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 2138 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 2139 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 2140 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 2141 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 2142 0x74, 0x6f, 0x1a, 0x16, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 2143 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x74, 0x65, 2144 0x6e, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x77, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 2145 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x25, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 2146 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 2147 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 2148 0x2c, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74, 2149 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 2150 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa5, 0x01, 2151 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 2152 0x74, 0x12, 0x21, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 2153 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x0a, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x04, 2154 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 2155 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 2156 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 2157 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 2158 0x6f, 0x75, 0x70, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x25, 2159 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x67, 2160 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 2161 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 0xb3, 0x01, 0x0a, 0x15, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 2162 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 2163 0x23, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x0d, 2164 0xb2, 0xda, 0x21, 0x09, 0x0a, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x05, 0x6e, 2165 0x61, 0x6d, 0x65, 0x73, 0x12, 0x48, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 2166 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 2167 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 2168 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 2169 0x6f, 0x75, 0x70, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x25, 2170 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x67, 2171 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 2172 0x04, 0x76, 0x69, 0x65, 0x77, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x22, 0x72, 0x0a, 0x16, 0x42, 2173 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 2174 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x06, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x18, 2175 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 2176 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x06, 2177 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 0x27, 0x0a, 0x07, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 2178 0x67, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x0a, 0x07, 0x0a, 2179 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x07, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x22, 2180 0x81, 0x03, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 2181 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 2182 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x3a, 0x07, 0x0a, 0x05, 0x47, 2183 0x72, 0x6f, 0x75, 0x70, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x09, 2184 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 2185 0x08, 0xca, 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 2186 0x69, 0x7a, 0x65, 0x12, 0x2c, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 2187 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x22, 0x07, 0x0a, 2188 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 2189 0x6e, 0x12, 0x28, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 2190 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x2a, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 2191 0x75, 0x70, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 0x25, 0x0a, 0x06, 0x66, 2192 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 2193 0x09, 0x1a, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 2194 0x65, 0x72, 0x12, 0x48, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 2195 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 2196 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 2197 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 2198 0x70, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x25, 0x0a, 0x04, 2199 0x76, 0x69, 0x65, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 2200 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 2201 0x69, 0x65, 0x77, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x70, 2202 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 2203 0x52, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x49, 2204 0x6e, 0x66, 0x6f, 0x22, 0x8a, 0x02, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 2205 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x06, 0x67, 0x72, 2206 0x6f, 0x75, 0x70, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x74, 0x74, 2207 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 2208 0x6f, 0x75, 0x70, 0x52, 0x06, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 0x35, 0x0a, 0x0f, 0x70, 2209 0x72, 0x65, 0x76, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 2210 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x22, 0x07, 0x0a, 0x05, 0x47, 0x72, 2211 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 2212 0x65, 0x6e, 0x12, 0x35, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 2213 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 2214 0x09, 0x22, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 2215 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x75, 0x72, 2216 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 2217 0x05, 0x52, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 2218 0x12, 0x2e, 0x0a, 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 2219 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x74, 2220 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 2221 0x22, 0xa7, 0x01, 0x0a, 0x11, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 2222 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 2223 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x0a, 0x07, 0x0a, 0x05, 0x47, 0x72, 2224 0x6f, 0x75, 0x70, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x0a, 0x66, 0x69, 0x65, 2225 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 2226 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 2227 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 2228 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 2229 0x61, 0x73, 0x6b, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 2230 0x0e, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 2231 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x22, 0x4b, 0x0a, 0x12, 0x57, 0x61, 2232 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 2233 0x12, 0x35, 0x0a, 0x06, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 2234 0x32, 0x1d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 2235 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 2236 0x06, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x22, 0x96, 0x04, 0x0a, 0x12, 0x57, 0x61, 0x74, 0x63, 2237 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2a, 2238 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x67, 2239 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 2240 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x06, 0x70, 0x61, 2241 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 2242 0x3a, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 2243 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 2244 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 0xca, 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 0x00, 0x52, 0x08, 2245 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x2c, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 2246 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 2247 0x21, 0x09, 0x22, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x09, 0x70, 0x61, 0x67, 2248 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x28, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 2249 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x2a, 0x07, 2250 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 2251 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 2252 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x54, 0x6f, 2253 0x6b, 0x65, 0x6e, 0x12, 0x3f, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 2254 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 2255 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 2256 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x67, 2257 0x54, 0x69, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x05, 2258 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x1a, 0x07, 0x0a, 0x05, 0x47, 0x72, 2259 0x6f, 0x75, 0x70, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x48, 0x0a, 0x0a, 0x66, 2260 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 2261 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 2262 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 2263 0x09, 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 2264 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x25, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0x08, 0x20, 2265 0x01, 0x28, 0x0e, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 2266 0x73, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77, 0x12, 0x32, 0x0a, 0x0e, 2267 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x0b, 2268 0x20, 0x01, 0x28, 0x05, 0x42, 0x0c, 0xca, 0xc6, 0x27, 0x08, 0x12, 0x06, 0x1a, 0x02, 0x08, 0x64, 2269 0x2a, 0x00, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x53, 0x69, 0x7a, 0x65, 2270 0x22, 0xec, 0x03, 0x0a, 0x13, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 2271 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0d, 0x67, 0x72, 0x6f, 0x75, 2272 0x70, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 2273 0x1d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 2274 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x0c, 2275 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 2276 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 2277 0x52, 0x09, 0x69, 0x73, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x61, 0x0a, 0x11, 0x70, 2278 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 2279 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 2280 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 2281 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x50, 0x61, 2282 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x0f, 0x70, 2283 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x21, 2284 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x05, 2285 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x65, 0x54, 0x6f, 0x6b, 0x65, 2286 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x5f, 0x73, 0x69, 2287 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 2288 0x6f, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x73, 0x6f, 0x66, 2289 0x74, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 2290 0x73, 0x53, 0x6f, 0x66, 0x74, 0x52, 0x65, 0x73, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 2291 0x5f, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 2292 0x08, 0x52, 0x0b, 0x69, 0x73, 0x48, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x65, 0x74, 0x1a, 0x7f, 2293 0x0a, 0x0f, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 2294 0x65, 0x12, 0x35, 0x0a, 0x0f, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 2295 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 2296 0x22, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 2297 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x35, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 2298 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 2299 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x22, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 2300 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 2301 0xf3, 0x02, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 2302 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 2303 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x3a, 0x07, 0x0a, 0x05, 2304 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x3b, 0x0a, 2305 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 2306 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 2307 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0c, 0xc8, 0xd5, 0x22, 0x01, 0xca, 0xc6, 0x27, 0x04, 0x62, 2308 0x02, 0x08, 0x01, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x56, 0x0a, 0x0d, 0x72, 0x65, 2309 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 2310 0x0b, 0x32, 0x31, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 2311 0x70, 0x68, 0x61, 0x32, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 2312 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 2313 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 2314 0x73, 0x6b, 0x1a, 0xa0, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 2315 0x61, 0x73, 0x6b, 0x12, 0x3b, 0x0a, 0x19, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x65, 0x6e, 0x74, 0x69, 2316 0x72, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 2317 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x16, 0x73, 0x6b, 0x69, 0x70, 0x45, 0x6e, 2318 0x74, 0x69, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x6f, 0x64, 0x79, 2319 0x12, 0x48, 0x0a, 0x09, 0x62, 0x6f, 0x64, 0x79, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 2320 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 2321 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 2322 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 2323 0x52, 0x08, 0x62, 0x6f, 0x64, 0x79, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x61, 2324 0x73, 0x6b, 0x69, 0x6e, 0x67, 0x22, 0xcd, 0x05, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 2325 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x05, 2326 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x74, 2327 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 2328 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0c, 0xc8, 0xd5, 0x22, 0x01, 0xca, 0xc6, 0x27, 0x04, 0x62, 0x02, 2329 0x08, 0x01, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x4a, 0x0a, 0x0b, 0x75, 0x70, 0x64, 2330 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 2331 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 2332 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 2333 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 2334 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x3a, 0x0a, 0x03, 0x63, 0x61, 0x73, 0x18, 0x04, 0x20, 0x01, 2335 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 2336 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 2337 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x41, 0x53, 0x52, 0x03, 0x63, 0x61, 2338 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x6d, 0x69, 0x73, 0x73, 0x69, 2339 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x4d, 2340 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x12, 0x56, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 2341 0x73, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 2342 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 2343 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 2344 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 2345 0x52, 0x0c, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x1a, 0x9f, 2346 0x01, 0x0a, 0x03, 0x43, 0x41, 0x53, 0x12, 0x4e, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 2347 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 2348 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 2349 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x08, 0xca, 0xc6, 0x27, 0x04, 2350 0x62, 0x02, 0x10, 0x01, 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 2351 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 2352 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 2353 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 2354 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 0x07, 0x0a, 0x05, 2355 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 2356 0x1a, 0xd2, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x73, 2357 0x6b, 0x12, 0x3b, 0x0a, 0x19, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x72, 0x65, 2358 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x01, 2359 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x16, 0x73, 0x6b, 0x69, 0x70, 0x45, 0x6e, 0x74, 0x69, 2360 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x30, 2361 0x0a, 0x13, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 2362 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x11, 0x75, 2363 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x4f, 0x6e, 0x6c, 0x79, 2364 0x12, 0x48, 0x0a, 0x09, 0x62, 0x6f, 0x64, 0x79, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 2365 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 2366 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 2367 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x32, 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 2368 0x52, 0x08, 0x62, 0x6f, 0x64, 0x79, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x61, 2369 0x73, 0x6b, 0x69, 0x6e, 0x67, 0x22, 0x5c, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x47, 2370 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x04, 0x6e, 2371 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0d, 0xb2, 0xda, 0x21, 0x09, 0x0a, 2372 0x07, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x23, 2373 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x18, 2374 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x4d, 0x69, 0x73, 0x73, 2375 0x69, 0x6e, 0x67, 0x32, 0x93, 0x10, 0x0a, 0x0c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x72, 2376 0x76, 0x69, 0x63, 0x65, 0x12, 0xe9, 0x01, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 2377 0x70, 0x12, 0x21, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 2378 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 2379 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 2380 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0xa0, 0x01, 2381 0x82, 0xdb, 0x21, 0x1c, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x03, 0x67, 0x65, 0x74, 2382 0x2a, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x32, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 2383 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x70, 0x5a, 0x26, 0x12, 0x24, 2384 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 2385 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 2386 0x73, 0x2f, 0x2a, 0x7d, 0x5a, 0x2b, 0x12, 0x29, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 2387 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 2388 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 2389 0x7d, 0x12, 0x19, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 2390 0x6d, 0x65, 0x3d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 0x8a, 0xcc, 0x26, 0x00, 2391 0x12, 0xba, 0x01, 0x0a, 0x0e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x47, 0x72, 0x6f, 2392 0x75, 0x70, 0x73, 0x12, 0x27, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 2393 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x47, 2394 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x6e, 2395 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 2396 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 2397 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0x82, 0xdb, 0x21, 0x26, 0x0a, 0x05, 0x47, 0x72, 2398 0x6f, 0x75, 0x70, 0x12, 0x08, 0x62, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x20, 0x01, 0x2a, 2399 0x07, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x32, 0x08, 0x12, 0x06, 0x67, 0x72, 0x6f, 0x75, 2400 0x70, 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x12, 0x19, 2401 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 2402 0x3a, 0x62, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x8a, 0xcc, 0x26, 0x00, 0x12, 0xfa, 0x01, 2403 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x12, 0x23, 0x2e, 0x6e, 2404 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 2405 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 2406 0x74, 0x1a, 0x24, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 2407 0x70, 0x68, 0x61, 0x32, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 2408 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xa0, 0x01, 0x82, 0xdb, 0x21, 0x25, 0x0a, 0x05, 2409 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x2a, 2410 0x08, 0x1a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x32, 0x08, 0x12, 0x06, 0x67, 0x72, 0x6f, 2411 0x75, 0x70, 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x67, 0x5a, 2412 0x26, 0x12, 0x24, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x70, 0x61, 2413 0x72, 0x65, 0x6e, 0x74, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 2414 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x5a, 0x2b, 0x12, 0x29, 0x2f, 0x76, 0x31, 0x61, 0x6c, 2415 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x3d, 0x6f, 0x72, 0x67, 2416 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x2a, 0x7d, 0x2f, 0x67, 0x72, 2417 0x6f, 0x75, 0x70, 0x73, 0x12, 0x10, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 2418 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x8a, 0xcc, 0x26, 0x00, 0x12, 0x93, 0x02, 0x0a, 0x0a, 0x57, 2419 0x61, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x23, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 2420 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x57, 0x61, 0x74, 2421 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 2422 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 2423 0x32, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 2424 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb7, 0x01, 0x82, 0xdb, 0x21, 0x20, 0x0a, 0x05, 0x47, 0x72, 0x6f, 2425 0x75, 0x70, 0x12, 0x05, 0x77, 0x61, 0x74, 0x63, 0x68, 0x2a, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 2426 0x65, 0x32, 0x08, 0x12, 0x06, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0xa2, 0xdc, 0x21, 0x02, 0x08, 2427 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x82, 0x01, 0x5a, 0x2c, 0x22, 0x2a, 0x2f, 0x76, 0x31, 0x61, 2428 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 2429 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 2430 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x5a, 0x31, 0x22, 0x2f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 2431 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 2432 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 2433 0x2f, 0x2a, 0x7d, 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x22, 0x1f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 2434 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x67, 0x72, 0x6f, 0x75, 0x70, 2435 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x8a, 0xcc, 0x26, 0x00, 0x30, 0x01, 2436 0x12, 0x99, 0x02, 0x0a, 0x0b, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 2437 0x12, 0x24, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 2438 0x68, 0x61, 0x32, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 2439 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 2440 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x47, 2441 0x72, 0x6f, 0x75, 0x70, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xba, 0x01, 2442 0x82, 0xdb, 0x21, 0x2d, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x05, 0x77, 0x61, 0x74, 2443 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x2a, 0x08, 0x1a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 2444 0x32, 0x0f, 0x12, 0x0d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 2445 0x73, 0xa2, 0xdc, 0x21, 0x02, 0x08, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x79, 0x5a, 0x2c, 0x22, 2446 0x2a, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x70, 0x61, 0x72, 0x65, 2447 0x6e, 0x74, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 0x2f, 0x67, 2448 0x72, 0x6f, 0x75, 0x70, 0x73, 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x5a, 0x31, 0x22, 0x2f, 0x2f, 2449 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 2450 0x3d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x2a, 2451 0x7d, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x22, 0x16, 2452 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 2453 0x3a, 0x77, 0x61, 0x74, 0x63, 0x68, 0x8a, 0xcc, 0x26, 0x00, 0x30, 0x01, 0x12, 0xfd, 0x01, 0x0a, 2454 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x24, 0x2e, 0x6e, 2455 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 2456 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 2457 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 2458 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0xae, 0x01, 0x82, 0xdb, 2459 0x21, 0x2a, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 2460 0x65, 0x18, 0x01, 0x2a, 0x0f, 0x12, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0x06, 0x70, 0x61, 2461 0x72, 0x65, 0x6e, 0x74, 0x32, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0xa2, 0xdc, 0x21, 0x02, 2462 0x10, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x6e, 0x3a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5a, 2463 0x26, 0x22, 0x24, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x70, 0x61, 2464 0x72, 0x65, 0x6e, 0x74, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x7d, 2465 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x5a, 0x2b, 0x22, 0x29, 0x2f, 0x76, 0x31, 0x61, 0x6c, 2466 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x3d, 0x6f, 0x72, 0x67, 2467 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x2a, 0x7d, 0x2f, 0x67, 0x72, 2468 0x6f, 0x75, 0x70, 0x73, 0x22, 0x10, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 2469 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x8a, 0xcc, 0x26, 0x02, 0x10, 0x01, 0x12, 0x8f, 0x02, 0x0a, 2470 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x24, 0x2e, 0x6e, 2471 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 2472 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 2473 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 2474 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0xc0, 0x01, 0x82, 0xdb, 2475 0x21, 0x20, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 2476 0x65, 0x2a, 0x07, 0x12, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x32, 0x06, 0x0a, 0x04, 0x6e, 0x61, 2477 0x6d, 0x65, 0xa2, 0xdc, 0x21, 0x02, 0x10, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x89, 0x01, 0x3a, 2478 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5a, 0x2c, 0x1a, 0x2a, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 2479 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 2480 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 2481 0x73, 0x2f, 0x2a, 0x7d, 0x5a, 0x31, 0x1a, 0x2f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 2482 0x32, 0x2f, 0x7b, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x6f, 0x72, 2483 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 2484 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 0x1a, 0x1f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 2485 0x61, 0x32, 0x2f, 0x7b, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x67, 2486 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 0x8a, 0xcc, 0x26, 0x02, 0x10, 0x01, 0x12, 0xeb, 2487 0x01, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x24, 2488 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 2489 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 2490 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 2491 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x9d, 0x01, 0x82, 2492 0xdb, 0x21, 0x17, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x06, 0x64, 0x65, 0x6c, 0x65, 2493 0x74, 0x65, 0x2a, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0xa2, 0xdc, 0x21, 0x02, 0x10, 0x01, 2494 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x70, 0x5a, 0x26, 0x2a, 0x24, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 2495 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 2496 0x74, 0x73, 0x2f, 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 0x5a, 0x2b, 2497 0x2a, 0x29, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 2498 0x65, 0x3d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 2499 0x2a, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 0x2a, 0x19, 0x2f, 0x76, 0x31, 2500 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x67, 0x72, 0x6f, 2501 0x75, 0x70, 0x73, 0x2f, 0x2a, 0x7d, 0x8a, 0xcc, 0x26, 0x02, 0x10, 0x01, 0x1a, 0x2b, 0xca, 0x41, 2502 0x0e, 0x69, 0x61, 0x6d, 0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, 2503 0x41, 0x17, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x65, 2504 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x42, 0x87, 0x02, 0xe8, 0xde, 0x21, 0x00, 2505 0x82, 0xff, 0xd0, 0x02, 0x44, 0x0a, 0x0c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x72, 2506 0x76, 0x65, 0x72, 0x12, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 2507 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 2508 0x69, 0x61, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 2509 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x8a, 0xff, 0xd0, 0x02, 0x44, 0x0a, 0x0c, 2510 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x34, 0x67, 0x69, 2511 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 2512 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x63, 0x6c, 0x69, 2513 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x67, 0x72, 0x6f, 2514 0x75, 0x70, 0x0a, 0x17, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 2515 0x70, 0x62, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x42, 0x11, 0x47, 0x72, 0x6f, 2516 0x75, 0x70, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x00, 2517 0x5a, 0x41, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 2518 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 2519 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 2520 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3b, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x6c, 0x69, 2521 0x65, 0x6e, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 2522 } 2523 2524 var ( 2525 edgelq_iam_proto_v1alpha2_group_service_proto_rawDescOnce sync.Once 2526 edgelq_iam_proto_v1alpha2_group_service_proto_rawDescData = edgelq_iam_proto_v1alpha2_group_service_proto_rawDesc 2527 ) 2528 2529 func edgelq_iam_proto_v1alpha2_group_service_proto_rawDescGZIP() []byte { 2530 edgelq_iam_proto_v1alpha2_group_service_proto_rawDescOnce.Do(func() { 2531 edgelq_iam_proto_v1alpha2_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_iam_proto_v1alpha2_group_service_proto_rawDescData) 2532 }) 2533 return edgelq_iam_proto_v1alpha2_group_service_proto_rawDescData 2534 } 2535 2536 var edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 16) 2537 var edgelq_iam_proto_v1alpha2_group_service_proto_goTypes = []interface{}{ 2538 (*GetGroupRequest)(nil), // 0: ntt.iam.v1alpha2.GetGroupRequest 2539 (*BatchGetGroupsRequest)(nil), // 1: ntt.iam.v1alpha2.BatchGetGroupsRequest 2540 (*BatchGetGroupsResponse)(nil), // 2: ntt.iam.v1alpha2.BatchGetGroupsResponse 2541 (*ListGroupsRequest)(nil), // 3: ntt.iam.v1alpha2.ListGroupsRequest 2542 (*ListGroupsResponse)(nil), // 4: ntt.iam.v1alpha2.ListGroupsResponse 2543 (*WatchGroupRequest)(nil), // 5: ntt.iam.v1alpha2.WatchGroupRequest 2544 (*WatchGroupResponse)(nil), // 6: ntt.iam.v1alpha2.WatchGroupResponse 2545 (*WatchGroupsRequest)(nil), // 7: ntt.iam.v1alpha2.WatchGroupsRequest 2546 (*WatchGroupsResponse)(nil), // 8: ntt.iam.v1alpha2.WatchGroupsResponse 2547 (*CreateGroupRequest)(nil), // 9: ntt.iam.v1alpha2.CreateGroupRequest 2548 (*UpdateGroupRequest)(nil), // 10: ntt.iam.v1alpha2.UpdateGroupRequest 2549 (*DeleteGroupRequest)(nil), // 11: ntt.iam.v1alpha2.DeleteGroupRequest 2550 (*WatchGroupsResponse_PageTokenChange)(nil), // 12: ntt.iam.v1alpha2.WatchGroupsResponse.PageTokenChange 2551 (*CreateGroupRequest_ResponseMask)(nil), // 13: ntt.iam.v1alpha2.CreateGroupRequest.ResponseMask 2552 (*UpdateGroupRequest_CAS)(nil), // 14: ntt.iam.v1alpha2.UpdateGroupRequest.CAS 2553 (*UpdateGroupRequest_ResponseMask)(nil), // 15: ntt.iam.v1alpha2.UpdateGroupRequest.ResponseMask 2554 (*group.Group_FieldMask)(nil), // 16: ntt.iam.v1alpha2.Group_FieldMask 2555 (view.View)(0), // 17: goten.types.View 2556 (*group.Group)(nil), // 18: ntt.iam.v1alpha2.Group 2557 (*group.GroupChange)(nil), // 19: ntt.iam.v1alpha2.GroupChange 2558 (watch_type.WatchType)(0), // 20: goten.types.WatchType 2559 (*timestamppb.Timestamp)(nil), // 21: google.protobuf.Timestamp 2560 (*emptypb.Empty)(nil), // 22: google.protobuf.Empty 2561 } 2562 var edgelq_iam_proto_v1alpha2_group_service_proto_depIdxs = []int32{ 2563 16, // 0: ntt.iam.v1alpha2.GetGroupRequest.field_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2564 17, // 1: ntt.iam.v1alpha2.GetGroupRequest.view:type_name -> goten.types.View 2565 16, // 2: ntt.iam.v1alpha2.BatchGetGroupsRequest.field_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2566 17, // 3: ntt.iam.v1alpha2.BatchGetGroupsRequest.view:type_name -> goten.types.View 2567 18, // 4: ntt.iam.v1alpha2.BatchGetGroupsResponse.groups:type_name -> ntt.iam.v1alpha2.Group 2568 16, // 5: ntt.iam.v1alpha2.ListGroupsRequest.field_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2569 17, // 6: ntt.iam.v1alpha2.ListGroupsRequest.view:type_name -> goten.types.View 2570 18, // 7: ntt.iam.v1alpha2.ListGroupsResponse.groups:type_name -> ntt.iam.v1alpha2.Group 2571 16, // 8: ntt.iam.v1alpha2.WatchGroupRequest.field_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2572 17, // 9: ntt.iam.v1alpha2.WatchGroupRequest.view:type_name -> goten.types.View 2573 19, // 10: ntt.iam.v1alpha2.WatchGroupResponse.change:type_name -> ntt.iam.v1alpha2.GroupChange 2574 20, // 11: ntt.iam.v1alpha2.WatchGroupsRequest.type:type_name -> goten.types.WatchType 2575 21, // 12: ntt.iam.v1alpha2.WatchGroupsRequest.starting_time:type_name -> google.protobuf.Timestamp 2576 16, // 13: ntt.iam.v1alpha2.WatchGroupsRequest.field_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2577 17, // 14: ntt.iam.v1alpha2.WatchGroupsRequest.view:type_name -> goten.types.View 2578 19, // 15: ntt.iam.v1alpha2.WatchGroupsResponse.group_changes:type_name -> ntt.iam.v1alpha2.GroupChange 2579 12, // 16: ntt.iam.v1alpha2.WatchGroupsResponse.page_token_change:type_name -> ntt.iam.v1alpha2.WatchGroupsResponse.PageTokenChange 2580 18, // 17: ntt.iam.v1alpha2.CreateGroupRequest.group:type_name -> ntt.iam.v1alpha2.Group 2581 13, // 18: ntt.iam.v1alpha2.CreateGroupRequest.response_mask:type_name -> ntt.iam.v1alpha2.CreateGroupRequest.ResponseMask 2582 18, // 19: ntt.iam.v1alpha2.UpdateGroupRequest.group:type_name -> ntt.iam.v1alpha2.Group 2583 16, // 20: ntt.iam.v1alpha2.UpdateGroupRequest.update_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2584 14, // 21: ntt.iam.v1alpha2.UpdateGroupRequest.cas:type_name -> ntt.iam.v1alpha2.UpdateGroupRequest.CAS 2585 15, // 22: ntt.iam.v1alpha2.UpdateGroupRequest.response_mask:type_name -> ntt.iam.v1alpha2.UpdateGroupRequest.ResponseMask 2586 16, // 23: ntt.iam.v1alpha2.CreateGroupRequest.ResponseMask.body_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2587 18, // 24: ntt.iam.v1alpha2.UpdateGroupRequest.CAS.conditional_state:type_name -> ntt.iam.v1alpha2.Group 2588 16, // 25: ntt.iam.v1alpha2.UpdateGroupRequest.CAS.field_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2589 16, // 26: ntt.iam.v1alpha2.UpdateGroupRequest.ResponseMask.body_mask:type_name -> ntt.iam.v1alpha2.Group_FieldMask 2590 0, // 27: ntt.iam.v1alpha2.GroupService.GetGroup:input_type -> ntt.iam.v1alpha2.GetGroupRequest 2591 1, // 28: ntt.iam.v1alpha2.GroupService.BatchGetGroups:input_type -> ntt.iam.v1alpha2.BatchGetGroupsRequest 2592 3, // 29: ntt.iam.v1alpha2.GroupService.ListGroups:input_type -> ntt.iam.v1alpha2.ListGroupsRequest 2593 5, // 30: ntt.iam.v1alpha2.GroupService.WatchGroup:input_type -> ntt.iam.v1alpha2.WatchGroupRequest 2594 7, // 31: ntt.iam.v1alpha2.GroupService.WatchGroups:input_type -> ntt.iam.v1alpha2.WatchGroupsRequest 2595 9, // 32: ntt.iam.v1alpha2.GroupService.CreateGroup:input_type -> ntt.iam.v1alpha2.CreateGroupRequest 2596 10, // 33: ntt.iam.v1alpha2.GroupService.UpdateGroup:input_type -> ntt.iam.v1alpha2.UpdateGroupRequest 2597 11, // 34: ntt.iam.v1alpha2.GroupService.DeleteGroup:input_type -> ntt.iam.v1alpha2.DeleteGroupRequest 2598 18, // 35: ntt.iam.v1alpha2.GroupService.GetGroup:output_type -> ntt.iam.v1alpha2.Group 2599 2, // 36: ntt.iam.v1alpha2.GroupService.BatchGetGroups:output_type -> ntt.iam.v1alpha2.BatchGetGroupsResponse 2600 4, // 37: ntt.iam.v1alpha2.GroupService.ListGroups:output_type -> ntt.iam.v1alpha2.ListGroupsResponse 2601 6, // 38: ntt.iam.v1alpha2.GroupService.WatchGroup:output_type -> ntt.iam.v1alpha2.WatchGroupResponse 2602 8, // 39: ntt.iam.v1alpha2.GroupService.WatchGroups:output_type -> ntt.iam.v1alpha2.WatchGroupsResponse 2603 18, // 40: ntt.iam.v1alpha2.GroupService.CreateGroup:output_type -> ntt.iam.v1alpha2.Group 2604 18, // 41: ntt.iam.v1alpha2.GroupService.UpdateGroup:output_type -> ntt.iam.v1alpha2.Group 2605 22, // 42: ntt.iam.v1alpha2.GroupService.DeleteGroup:output_type -> google.protobuf.Empty 2606 35, // [35:43] is the sub-list for method output_type 2607 27, // [27:35] is the sub-list for method input_type 2608 27, // [27:27] is the sub-list for extension type_name 2609 27, // [27:27] is the sub-list for extension extendee 2610 0, // [0:27] is the sub-list for field type_name 2611 } 2612 2613 func init() { edgelq_iam_proto_v1alpha2_group_service_proto_init() } 2614 func edgelq_iam_proto_v1alpha2_group_service_proto_init() { 2615 if edgelq_iam_proto_v1alpha2_group_service_proto != nil { 2616 return 2617 } 2618 if !protoimpl.UnsafeEnabled { 2619 2620 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 2621 switch v := v.(*GetGroupRequest); i { 2622 case 0: 2623 return &v.state 2624 case 1: 2625 return &v.sizeCache 2626 case 2: 2627 return &v.unknownFields 2628 default: 2629 return nil 2630 } 2631 } 2632 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { 2633 switch v := v.(*BatchGetGroupsRequest); i { 2634 case 0: 2635 return &v.state 2636 case 1: 2637 return &v.sizeCache 2638 case 2: 2639 return &v.unknownFields 2640 default: 2641 return nil 2642 } 2643 } 2644 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { 2645 switch v := v.(*BatchGetGroupsResponse); i { 2646 case 0: 2647 return &v.state 2648 case 1: 2649 return &v.sizeCache 2650 case 2: 2651 return &v.unknownFields 2652 default: 2653 return nil 2654 } 2655 } 2656 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { 2657 switch v := v.(*ListGroupsRequest); i { 2658 case 0: 2659 return &v.state 2660 case 1: 2661 return &v.sizeCache 2662 case 2: 2663 return &v.unknownFields 2664 default: 2665 return nil 2666 } 2667 } 2668 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { 2669 switch v := v.(*ListGroupsResponse); i { 2670 case 0: 2671 return &v.state 2672 case 1: 2673 return &v.sizeCache 2674 case 2: 2675 return &v.unknownFields 2676 default: 2677 return nil 2678 } 2679 } 2680 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { 2681 switch v := v.(*WatchGroupRequest); i { 2682 case 0: 2683 return &v.state 2684 case 1: 2685 return &v.sizeCache 2686 case 2: 2687 return &v.unknownFields 2688 default: 2689 return nil 2690 } 2691 } 2692 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { 2693 switch v := v.(*WatchGroupResponse); i { 2694 case 0: 2695 return &v.state 2696 case 1: 2697 return &v.sizeCache 2698 case 2: 2699 return &v.unknownFields 2700 default: 2701 return nil 2702 } 2703 } 2704 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { 2705 switch v := v.(*WatchGroupsRequest); i { 2706 case 0: 2707 return &v.state 2708 case 1: 2709 return &v.sizeCache 2710 case 2: 2711 return &v.unknownFields 2712 default: 2713 return nil 2714 } 2715 } 2716 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { 2717 switch v := v.(*WatchGroupsResponse); i { 2718 case 0: 2719 return &v.state 2720 case 1: 2721 return &v.sizeCache 2722 case 2: 2723 return &v.unknownFields 2724 default: 2725 return nil 2726 } 2727 } 2728 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { 2729 switch v := v.(*CreateGroupRequest); i { 2730 case 0: 2731 return &v.state 2732 case 1: 2733 return &v.sizeCache 2734 case 2: 2735 return &v.unknownFields 2736 default: 2737 return nil 2738 } 2739 } 2740 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { 2741 switch v := v.(*UpdateGroupRequest); i { 2742 case 0: 2743 return &v.state 2744 case 1: 2745 return &v.sizeCache 2746 case 2: 2747 return &v.unknownFields 2748 default: 2749 return nil 2750 } 2751 } 2752 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { 2753 switch v := v.(*DeleteGroupRequest); i { 2754 case 0: 2755 return &v.state 2756 case 1: 2757 return &v.sizeCache 2758 case 2: 2759 return &v.unknownFields 2760 default: 2761 return nil 2762 } 2763 } 2764 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { 2765 switch v := v.(*WatchGroupsResponse_PageTokenChange); i { 2766 case 0: 2767 return &v.state 2768 case 1: 2769 return &v.sizeCache 2770 case 2: 2771 return &v.unknownFields 2772 default: 2773 return nil 2774 } 2775 } 2776 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { 2777 switch v := v.(*CreateGroupRequest_ResponseMask); i { 2778 case 0: 2779 return &v.state 2780 case 1: 2781 return &v.sizeCache 2782 case 2: 2783 return &v.unknownFields 2784 default: 2785 return nil 2786 } 2787 } 2788 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { 2789 switch v := v.(*UpdateGroupRequest_CAS); i { 2790 case 0: 2791 return &v.state 2792 case 1: 2793 return &v.sizeCache 2794 case 2: 2795 return &v.unknownFields 2796 default: 2797 return nil 2798 } 2799 } 2800 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { 2801 switch v := v.(*UpdateGroupRequest_ResponseMask); i { 2802 case 0: 2803 return &v.state 2804 case 1: 2805 return &v.sizeCache 2806 case 2: 2807 return &v.unknownFields 2808 default: 2809 return nil 2810 } 2811 } 2812 } 2813 2814 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[13].OneofWrappers = []interface{}{ 2815 (*CreateGroupRequest_ResponseMask_SkipEntireResponseBody)(nil), 2816 (*CreateGroupRequest_ResponseMask_BodyMask)(nil), 2817 } 2818 edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes[15].OneofWrappers = []interface{}{ 2819 (*UpdateGroupRequest_ResponseMask_SkipEntireResponseBody)(nil), 2820 (*UpdateGroupRequest_ResponseMask_UpdatedFieldsOnly)(nil), 2821 (*UpdateGroupRequest_ResponseMask_BodyMask)(nil), 2822 } 2823 type x struct{} 2824 out := protoimpl.TypeBuilder{ 2825 File: protoimpl.DescBuilder{ 2826 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 2827 RawDescriptor: edgelq_iam_proto_v1alpha2_group_service_proto_rawDesc, 2828 NumEnums: 0, 2829 NumMessages: 16, 2830 NumExtensions: 0, 2831 NumServices: 1, 2832 }, 2833 GoTypes: edgelq_iam_proto_v1alpha2_group_service_proto_goTypes, 2834 DependencyIndexes: edgelq_iam_proto_v1alpha2_group_service_proto_depIdxs, 2835 MessageInfos: edgelq_iam_proto_v1alpha2_group_service_proto_msgTypes, 2836 }.Build() 2837 edgelq_iam_proto_v1alpha2_group_service_proto = out.File 2838 edgelq_iam_proto_v1alpha2_group_service_proto_rawDesc = nil 2839 edgelq_iam_proto_v1alpha2_group_service_proto_goTypes = nil 2840 edgelq_iam_proto_v1alpha2_group_service_proto_depIdxs = nil 2841 }