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