github.com/cloudwan/edgelq-sdk@v1.15.4/iam/client/v1/organization/organization_custom.pb.go (about) 1 // Code generated by protoc-gen-goten-go 2 // File: edgelq/iam/proto/v1/organization_custom.proto 3 // DO NOT EDIT!!! 4 5 package organization_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 organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1/organization" 21 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" 22 ) 23 24 // Reference imports to suppress errors if they are not otherwise used. 25 var ( 26 _ = fmt.Errorf 27 _ = reflect.Method{} 28 _ = sync.Once{} 29 30 _ = protojson.MarshalOptions{} 31 _ = proto.MarshalOptions{} 32 _ = preflect.Value{} 33 _ = protoimpl.DescBuilder{} 34 ) 35 36 // make sure we're using proto imports 37 var ( 38 _ = &organization.Organization{} 39 _ = &fieldmaskpb.FieldMask{} 40 ) 41 42 const ( 43 // Verify that this generated code is sufficiently up-to-date. 44 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 45 // Verify that runtime/protoimpl is sufficiently up-to-date. 46 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 47 ) 48 49 // Request message for method 50 // [ListMyOrganizations][ntt.iam.v1.ListMyOrganizations] 51 type ListMyOrganizationsRequest struct { 52 state protoimpl.MessageState 53 sizeCache protoimpl.SizeCache 54 unknownFields protoimpl.UnknownFields 55 // Requested page size. Server may return fewer Organizations than requested. 56 // If unspecified, server will pick an appropriate default. 57 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 58 // A token identifying a page of results the server should return. 59 // Typically, this is the value of 60 // [ListOrganizationsResponse.next_page_token][ntt.iam.v1alpha2.ListOrganizationsResponse.next_page_token] 61 PageToken *organization.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 62 // Order By - 63 // https://cloud.google.com/apis/design/design_patterns#list_pagination list 64 // of field path with order directive, either 'asc' or 'desc'. If direction is 65 // not provided, 'asc' is assumed. e.g. "state.nested_field asc, 66 // state.something.else desc, theme" 67 OrderBy *organization.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 68 // Filter - filter results by field criteria. Simplified SQL-like syntax with 69 // following operators: 70 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 71 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 72 // CONTAINS "severity:important" OR (state.last_error_time > 73 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 74 Filter *organization.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 75 // A FieldMask used to filter response fields. When present, only requested 76 // fields will be present in each response item. Omitting field_mask results 77 // will cause response items to contain all present fields. 78 FieldMask *organization.Organization_FieldMask `protobuf:"bytes,6,opt,customtype=Organization_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 79 IncludePagingInfo bool `protobuf:"varint,7,opt,name=include_paging_info,json=includePagingInfo,proto3" json:"include_paging_info,omitempty"` 80 } 81 82 func (m *ListMyOrganizationsRequest) Reset() { 83 *m = ListMyOrganizationsRequest{} 84 if protoimpl.UnsafeEnabled { 85 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[0] 86 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 87 ms.StoreMessageInfo(mi) 88 } 89 } 90 91 func (m *ListMyOrganizationsRequest) String() string { 92 return protoimpl.X.MessageStringOf(m) 93 } 94 95 func (*ListMyOrganizationsRequest) ProtoMessage() {} 96 97 func (m *ListMyOrganizationsRequest) ProtoReflect() preflect.Message { 98 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[0] 99 if protoimpl.UnsafeEnabled && m != nil { 100 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 101 if ms.LoadMessageInfo() == nil { 102 ms.StoreMessageInfo(mi) 103 } 104 return ms 105 } 106 return mi.MessageOf(m) 107 } 108 109 func (*ListMyOrganizationsRequest) GotenMessage() {} 110 111 // Deprecated, Use ListMyOrganizationsRequest.ProtoReflect.Descriptor instead. 112 func (*ListMyOrganizationsRequest) Descriptor() ([]byte, []int) { 113 return edgelq_iam_proto_v1_organization_custom_proto_rawDescGZIP(), []int{0} 114 } 115 116 func (m *ListMyOrganizationsRequest) Unmarshal(b []byte) error { 117 return proto.Unmarshal(b, m) 118 } 119 120 func (m *ListMyOrganizationsRequest) Marshal() ([]byte, error) { 121 return proto.Marshal(m) 122 } 123 124 func (m *ListMyOrganizationsRequest) MarshalJSON() ([]byte, error) { 125 return protojson.MarshalOptions{}.Marshal(m) 126 } 127 128 func (m *ListMyOrganizationsRequest) UnmarshalJSON(data []byte) error { 129 return protojson.Unmarshal(data, m) 130 } 131 132 func (m *ListMyOrganizationsRequest) GetPageSize() int32 { 133 if m != nil { 134 return m.PageSize 135 } 136 return int32(0) 137 } 138 139 func (m *ListMyOrganizationsRequest) GetPageToken() *organization.PagerCursor { 140 if m != nil { 141 return m.PageToken 142 } 143 return nil 144 } 145 146 func (m *ListMyOrganizationsRequest) GetOrderBy() *organization.OrderBy { 147 if m != nil { 148 return m.OrderBy 149 } 150 return nil 151 } 152 153 func (m *ListMyOrganizationsRequest) GetFilter() *organization.Filter { 154 if m != nil { 155 return m.Filter 156 } 157 return nil 158 } 159 160 func (m *ListMyOrganizationsRequest) GetFieldMask() *organization.Organization_FieldMask { 161 if m != nil { 162 return m.FieldMask 163 } 164 return nil 165 } 166 167 func (m *ListMyOrganizationsRequest) GetIncludePagingInfo() bool { 168 if m != nil { 169 return m.IncludePagingInfo 170 } 171 return false 172 } 173 174 func (m *ListMyOrganizationsRequest) SetPageSize(fv int32) { 175 if m == nil { 176 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "ListMyOrganizationsRequest")) 177 } 178 m.PageSize = fv 179 } 180 181 func (m *ListMyOrganizationsRequest) SetPageToken(fv *organization.PagerCursor) { 182 if m == nil { 183 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "ListMyOrganizationsRequest")) 184 } 185 m.PageToken = fv 186 } 187 188 func (m *ListMyOrganizationsRequest) SetOrderBy(fv *organization.OrderBy) { 189 if m == nil { 190 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "ListMyOrganizationsRequest")) 191 } 192 m.OrderBy = fv 193 } 194 195 func (m *ListMyOrganizationsRequest) SetFilter(fv *organization.Filter) { 196 if m == nil { 197 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "ListMyOrganizationsRequest")) 198 } 199 m.Filter = fv 200 } 201 202 func (m *ListMyOrganizationsRequest) SetFieldMask(fv *organization.Organization_FieldMask) { 203 if m == nil { 204 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "ListMyOrganizationsRequest")) 205 } 206 m.FieldMask = fv 207 } 208 209 func (m *ListMyOrganizationsRequest) SetIncludePagingInfo(fv bool) { 210 if m == nil { 211 panic(fmt.Errorf("can't set %s on nil %s", "IncludePagingInfo", "ListMyOrganizationsRequest")) 212 } 213 m.IncludePagingInfo = fv 214 } 215 216 // Response message for method 217 // [ListMyOrganizations][ntt.iam.v1.ListMyOrganizations] 218 type ListMyOrganizationsResponse struct { 219 state protoimpl.MessageState 220 sizeCache protoimpl.SizeCache 221 unknownFields protoimpl.UnknownFields 222 // The list of Organizations 223 Organizations []*organization.Organization `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations,omitempty"` 224 // A token to retrieve previous page of results. Pass this value in the 225 // [ListOrganizationsRequest.page_token][ntt.iam.v1alpha2.ListOrganizationsRequest.page_token] 226 PrevPageToken *organization.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 227 // A token to retrieve next page of results. Pass this value in the 228 // [ListOrganizationsRequest.page_token][ntt.iam.v1alpha2.ListOrganizationsRequest.page_token] 229 NextPageToken *organization.PagerCursor `protobuf:"bytes,4,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 230 TotalCount int32 `protobuf:"varint,5,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"` 231 CursorOffset int32 `protobuf:"varint,6,opt,name=cursor_offset,json=cursorOffset,proto3" json:"cursor_offset,omitempty"` 232 } 233 234 func (m *ListMyOrganizationsResponse) Reset() { 235 *m = ListMyOrganizationsResponse{} 236 if protoimpl.UnsafeEnabled { 237 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[1] 238 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 239 ms.StoreMessageInfo(mi) 240 } 241 } 242 243 func (m *ListMyOrganizationsResponse) String() string { 244 return protoimpl.X.MessageStringOf(m) 245 } 246 247 func (*ListMyOrganizationsResponse) ProtoMessage() {} 248 249 func (m *ListMyOrganizationsResponse) ProtoReflect() preflect.Message { 250 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[1] 251 if protoimpl.UnsafeEnabled && m != nil { 252 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 253 if ms.LoadMessageInfo() == nil { 254 ms.StoreMessageInfo(mi) 255 } 256 return ms 257 } 258 return mi.MessageOf(m) 259 } 260 261 func (*ListMyOrganizationsResponse) GotenMessage() {} 262 263 // Deprecated, Use ListMyOrganizationsResponse.ProtoReflect.Descriptor instead. 264 func (*ListMyOrganizationsResponse) Descriptor() ([]byte, []int) { 265 return edgelq_iam_proto_v1_organization_custom_proto_rawDescGZIP(), []int{1} 266 } 267 268 func (m *ListMyOrganizationsResponse) Unmarshal(b []byte) error { 269 return proto.Unmarshal(b, m) 270 } 271 272 func (m *ListMyOrganizationsResponse) Marshal() ([]byte, error) { 273 return proto.Marshal(m) 274 } 275 276 func (m *ListMyOrganizationsResponse) MarshalJSON() ([]byte, error) { 277 return protojson.MarshalOptions{}.Marshal(m) 278 } 279 280 func (m *ListMyOrganizationsResponse) UnmarshalJSON(data []byte) error { 281 return protojson.Unmarshal(data, m) 282 } 283 284 func (m *ListMyOrganizationsResponse) GetOrganizations() []*organization.Organization { 285 if m != nil { 286 return m.Organizations 287 } 288 return nil 289 } 290 291 func (m *ListMyOrganizationsResponse) GetPrevPageToken() *organization.PagerCursor { 292 if m != nil { 293 return m.PrevPageToken 294 } 295 return nil 296 } 297 298 func (m *ListMyOrganizationsResponse) GetNextPageToken() *organization.PagerCursor { 299 if m != nil { 300 return m.NextPageToken 301 } 302 return nil 303 } 304 305 func (m *ListMyOrganizationsResponse) GetTotalCount() int32 { 306 if m != nil { 307 return m.TotalCount 308 } 309 return int32(0) 310 } 311 312 func (m *ListMyOrganizationsResponse) GetCursorOffset() int32 { 313 if m != nil { 314 return m.CursorOffset 315 } 316 return int32(0) 317 } 318 319 func (m *ListMyOrganizationsResponse) SetOrganizations(fv []*organization.Organization) { 320 if m == nil { 321 panic(fmt.Errorf("can't set %s on nil %s", "Organizations", "ListMyOrganizationsResponse")) 322 } 323 m.Organizations = fv 324 } 325 326 func (m *ListMyOrganizationsResponse) SetPrevPageToken(fv *organization.PagerCursor) { 327 if m == nil { 328 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "ListMyOrganizationsResponse")) 329 } 330 m.PrevPageToken = fv 331 } 332 333 func (m *ListMyOrganizationsResponse) SetNextPageToken(fv *organization.PagerCursor) { 334 if m == nil { 335 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "ListMyOrganizationsResponse")) 336 } 337 m.NextPageToken = fv 338 } 339 340 func (m *ListMyOrganizationsResponse) SetTotalCount(fv int32) { 341 if m == nil { 342 panic(fmt.Errorf("can't set %s on nil %s", "TotalCount", "ListMyOrganizationsResponse")) 343 } 344 m.TotalCount = fv 345 } 346 347 func (m *ListMyOrganizationsResponse) SetCursorOffset(fv int32) { 348 if m == nil { 349 panic(fmt.Errorf("can't set %s on nil %s", "CursorOffset", "ListMyOrganizationsResponse")) 350 } 351 m.CursorOffset = fv 352 } 353 354 // Request message for method 355 // [SearchMyOrganizations][ntt.iam.v1.SearchMyOrganizations] 356 type SearchMyOrganizationsRequest struct { 357 state protoimpl.MessageState 358 sizeCache protoimpl.SizeCache 359 unknownFields protoimpl.UnknownFields 360 // Requested page size. Server may return fewer Organizations than requested. 361 // If unspecified, server will pick an appropriate default. 362 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` 363 // A token identifying a page of results the server should return. 364 // Typically, this is the value of 365 // [SearchOrganizationsResponse.next_page_token][ntt.iam.v1alpha2.SearchOrganizationsResponse.next_page_token] 366 PageToken *organization.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` 367 // Order By - 368 // https://cloud.google.com/apis/design/design_patterns#list_pagination list 369 // of field path with order directive, either 'asc' or 'desc'. If direction is 370 // not provided, 'asc' is assumed. e.g. "state.nested_field asc, 371 // state.something.else desc, theme" 372 OrderBy *organization.OrderBy `protobuf:"bytes,4,opt,customtype=OrderBy,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` 373 // Filter - filter results by field criteria. Simplified SQL-like syntax with 374 // following operators: 375 // <=, >=, =, !=, <, >, LIKE, CONTAINS (aliases CONTAIN, HAS, HAVE), IN, IS 376 // [NOT] NULL | NaN . Combine conditions with OR | AND example: 'meta.labels 377 // CONTAINS "severity:important" OR (state.last_error_time > 378 // "2018-11-15T10:00:00Z" AND state.status = "ERROR")' 379 Filter *organization.Filter `protobuf:"bytes,5,opt,customtype=Filter,name=filter,proto3" json:"filter,omitempty"` 380 // A FieldMask used to filter response fields. When present, only requested 381 // fields will be present in each response item. Omitting field_mask results 382 // will cause response items to contain all present fields. 383 FieldMask *organization.Organization_FieldMask `protobuf:"bytes,6,opt,customtype=Organization_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 384 IncludePagingInfo bool `protobuf:"varint,7,opt,name=include_paging_info,json=includePagingInfo,proto3" json:"include_paging_info,omitempty"` 385 Phrase string `protobuf:"bytes,8,opt,name=phrase,proto3" json:"phrase,omitempty"` 386 } 387 388 func (m *SearchMyOrganizationsRequest) Reset() { 389 *m = SearchMyOrganizationsRequest{} 390 if protoimpl.UnsafeEnabled { 391 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[2] 392 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 393 ms.StoreMessageInfo(mi) 394 } 395 } 396 397 func (m *SearchMyOrganizationsRequest) String() string { 398 return protoimpl.X.MessageStringOf(m) 399 } 400 401 func (*SearchMyOrganizationsRequest) ProtoMessage() {} 402 403 func (m *SearchMyOrganizationsRequest) ProtoReflect() preflect.Message { 404 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[2] 405 if protoimpl.UnsafeEnabled && m != nil { 406 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 407 if ms.LoadMessageInfo() == nil { 408 ms.StoreMessageInfo(mi) 409 } 410 return ms 411 } 412 return mi.MessageOf(m) 413 } 414 415 func (*SearchMyOrganizationsRequest) GotenMessage() {} 416 417 // Deprecated, Use SearchMyOrganizationsRequest.ProtoReflect.Descriptor instead. 418 func (*SearchMyOrganizationsRequest) Descriptor() ([]byte, []int) { 419 return edgelq_iam_proto_v1_organization_custom_proto_rawDescGZIP(), []int{2} 420 } 421 422 func (m *SearchMyOrganizationsRequest) Unmarshal(b []byte) error { 423 return proto.Unmarshal(b, m) 424 } 425 426 func (m *SearchMyOrganizationsRequest) Marshal() ([]byte, error) { 427 return proto.Marshal(m) 428 } 429 430 func (m *SearchMyOrganizationsRequest) MarshalJSON() ([]byte, error) { 431 return protojson.MarshalOptions{}.Marshal(m) 432 } 433 434 func (m *SearchMyOrganizationsRequest) UnmarshalJSON(data []byte) error { 435 return protojson.Unmarshal(data, m) 436 } 437 438 func (m *SearchMyOrganizationsRequest) GetPageSize() int32 { 439 if m != nil { 440 return m.PageSize 441 } 442 return int32(0) 443 } 444 445 func (m *SearchMyOrganizationsRequest) GetPageToken() *organization.PagerCursor { 446 if m != nil { 447 return m.PageToken 448 } 449 return nil 450 } 451 452 func (m *SearchMyOrganizationsRequest) GetOrderBy() *organization.OrderBy { 453 if m != nil { 454 return m.OrderBy 455 } 456 return nil 457 } 458 459 func (m *SearchMyOrganizationsRequest) GetFilter() *organization.Filter { 460 if m != nil { 461 return m.Filter 462 } 463 return nil 464 } 465 466 func (m *SearchMyOrganizationsRequest) GetFieldMask() *organization.Organization_FieldMask { 467 if m != nil { 468 return m.FieldMask 469 } 470 return nil 471 } 472 473 func (m *SearchMyOrganizationsRequest) GetIncludePagingInfo() bool { 474 if m != nil { 475 return m.IncludePagingInfo 476 } 477 return false 478 } 479 480 func (m *SearchMyOrganizationsRequest) GetPhrase() string { 481 if m != nil { 482 return m.Phrase 483 } 484 return "" 485 } 486 487 func (m *SearchMyOrganizationsRequest) SetPageSize(fv int32) { 488 if m == nil { 489 panic(fmt.Errorf("can't set %s on nil %s", "PageSize", "SearchMyOrganizationsRequest")) 490 } 491 m.PageSize = fv 492 } 493 494 func (m *SearchMyOrganizationsRequest) SetPageToken(fv *organization.PagerCursor) { 495 if m == nil { 496 panic(fmt.Errorf("can't set %s on nil %s", "PageToken", "SearchMyOrganizationsRequest")) 497 } 498 m.PageToken = fv 499 } 500 501 func (m *SearchMyOrganizationsRequest) SetOrderBy(fv *organization.OrderBy) { 502 if m == nil { 503 panic(fmt.Errorf("can't set %s on nil %s", "OrderBy", "SearchMyOrganizationsRequest")) 504 } 505 m.OrderBy = fv 506 } 507 508 func (m *SearchMyOrganizationsRequest) SetFilter(fv *organization.Filter) { 509 if m == nil { 510 panic(fmt.Errorf("can't set %s on nil %s", "Filter", "SearchMyOrganizationsRequest")) 511 } 512 m.Filter = fv 513 } 514 515 func (m *SearchMyOrganizationsRequest) SetFieldMask(fv *organization.Organization_FieldMask) { 516 if m == nil { 517 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "SearchMyOrganizationsRequest")) 518 } 519 m.FieldMask = fv 520 } 521 522 func (m *SearchMyOrganizationsRequest) SetIncludePagingInfo(fv bool) { 523 if m == nil { 524 panic(fmt.Errorf("can't set %s on nil %s", "IncludePagingInfo", "SearchMyOrganizationsRequest")) 525 } 526 m.IncludePagingInfo = fv 527 } 528 529 func (m *SearchMyOrganizationsRequest) SetPhrase(fv string) { 530 if m == nil { 531 panic(fmt.Errorf("can't set %s on nil %s", "Phrase", "SearchMyOrganizationsRequest")) 532 } 533 m.Phrase = fv 534 } 535 536 // Response message for method 537 // [SearchMyOrganizations][ntt.iam.v1.SearchMyOrganizations] 538 type SearchMyOrganizationsResponse struct { 539 state protoimpl.MessageState 540 sizeCache protoimpl.SizeCache 541 unknownFields protoimpl.UnknownFields 542 // The list of Organizations 543 Organizations []*organization.Organization `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations,omitempty"` 544 // A token to retrieve previous page of results. Pass this value in the 545 // [SearchOrganizationsRequest.page_token][ntt.iam.v1alpha2.SearchOrganizationsRequest.page_token] 546 PrevPageToken *organization.PagerCursor `protobuf:"bytes,3,opt,customtype=PagerCursor,name=prev_page_token,json=prevPageToken,proto3" json:"prev_page_token,omitempty"` 547 // A token to retrieve next page of results. Pass this value in the 548 // [SearchOrganizationsRequest.page_token][ntt.iam.v1alpha2.SearchOrganizationsRequest.page_token] 549 NextPageToken *organization.PagerCursor `protobuf:"bytes,4,opt,customtype=PagerCursor,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` 550 TotalCount int32 `protobuf:"varint,5,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"` 551 CursorOffset int32 `protobuf:"varint,6,opt,name=cursor_offset,json=cursorOffset,proto3" json:"cursor_offset,omitempty"` 552 } 553 554 func (m *SearchMyOrganizationsResponse) Reset() { 555 *m = SearchMyOrganizationsResponse{} 556 if protoimpl.UnsafeEnabled { 557 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[3] 558 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 559 ms.StoreMessageInfo(mi) 560 } 561 } 562 563 func (m *SearchMyOrganizationsResponse) String() string { 564 return protoimpl.X.MessageStringOf(m) 565 } 566 567 func (*SearchMyOrganizationsResponse) ProtoMessage() {} 568 569 func (m *SearchMyOrganizationsResponse) ProtoReflect() preflect.Message { 570 mi := &edgelq_iam_proto_v1_organization_custom_proto_msgTypes[3] 571 if protoimpl.UnsafeEnabled && m != nil { 572 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 573 if ms.LoadMessageInfo() == nil { 574 ms.StoreMessageInfo(mi) 575 } 576 return ms 577 } 578 return mi.MessageOf(m) 579 } 580 581 func (*SearchMyOrganizationsResponse) GotenMessage() {} 582 583 // Deprecated, Use SearchMyOrganizationsResponse.ProtoReflect.Descriptor instead. 584 func (*SearchMyOrganizationsResponse) Descriptor() ([]byte, []int) { 585 return edgelq_iam_proto_v1_organization_custom_proto_rawDescGZIP(), []int{3} 586 } 587 588 func (m *SearchMyOrganizationsResponse) Unmarshal(b []byte) error { 589 return proto.Unmarshal(b, m) 590 } 591 592 func (m *SearchMyOrganizationsResponse) Marshal() ([]byte, error) { 593 return proto.Marshal(m) 594 } 595 596 func (m *SearchMyOrganizationsResponse) MarshalJSON() ([]byte, error) { 597 return protojson.MarshalOptions{}.Marshal(m) 598 } 599 600 func (m *SearchMyOrganizationsResponse) UnmarshalJSON(data []byte) error { 601 return protojson.Unmarshal(data, m) 602 } 603 604 func (m *SearchMyOrganizationsResponse) GetOrganizations() []*organization.Organization { 605 if m != nil { 606 return m.Organizations 607 } 608 return nil 609 } 610 611 func (m *SearchMyOrganizationsResponse) GetPrevPageToken() *organization.PagerCursor { 612 if m != nil { 613 return m.PrevPageToken 614 } 615 return nil 616 } 617 618 func (m *SearchMyOrganizationsResponse) GetNextPageToken() *organization.PagerCursor { 619 if m != nil { 620 return m.NextPageToken 621 } 622 return nil 623 } 624 625 func (m *SearchMyOrganizationsResponse) GetTotalCount() int32 { 626 if m != nil { 627 return m.TotalCount 628 } 629 return int32(0) 630 } 631 632 func (m *SearchMyOrganizationsResponse) GetCursorOffset() int32 { 633 if m != nil { 634 return m.CursorOffset 635 } 636 return int32(0) 637 } 638 639 func (m *SearchMyOrganizationsResponse) SetOrganizations(fv []*organization.Organization) { 640 if m == nil { 641 panic(fmt.Errorf("can't set %s on nil %s", "Organizations", "SearchMyOrganizationsResponse")) 642 } 643 m.Organizations = fv 644 } 645 646 func (m *SearchMyOrganizationsResponse) SetPrevPageToken(fv *organization.PagerCursor) { 647 if m == nil { 648 panic(fmt.Errorf("can't set %s on nil %s", "PrevPageToken", "SearchMyOrganizationsResponse")) 649 } 650 m.PrevPageToken = fv 651 } 652 653 func (m *SearchMyOrganizationsResponse) SetNextPageToken(fv *organization.PagerCursor) { 654 if m == nil { 655 panic(fmt.Errorf("can't set %s on nil %s", "NextPageToken", "SearchMyOrganizationsResponse")) 656 } 657 m.NextPageToken = fv 658 } 659 660 func (m *SearchMyOrganizationsResponse) SetTotalCount(fv int32) { 661 if m == nil { 662 panic(fmt.Errorf("can't set %s on nil %s", "TotalCount", "SearchMyOrganizationsResponse")) 663 } 664 m.TotalCount = fv 665 } 666 667 func (m *SearchMyOrganizationsResponse) SetCursorOffset(fv int32) { 668 if m == nil { 669 panic(fmt.Errorf("can't set %s on nil %s", "CursorOffset", "SearchMyOrganizationsResponse")) 670 } 671 m.CursorOffset = fv 672 } 673 674 var edgelq_iam_proto_v1_organization_custom_proto preflect.FileDescriptor 675 676 var edgelq_iam_proto_v1_organization_custom_proto_rawDesc = []byte{ 677 0x0a, 0x2d, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 678 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 679 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 680 0x0a, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x67, 0x6f, 0x74, 681 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 682 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 683 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 684 0x2f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 685 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 686 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x67, 687 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 688 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 689 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 690 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 691 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x26, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 692 0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 693 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2d, 0x65, 694 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 695 0x76, 0x31, 0x2f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 696 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd8, 0x02, 0x0a, 697 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 698 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 699 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 700 0xca, 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 701 0x7a, 0x65, 0x12, 0x33, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 702 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 703 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x70, 0x61, 704 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2f, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 705 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x2a, 706 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 707 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 0x2c, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 708 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x1a, 0x0e, 709 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 710 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x4f, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 711 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 712 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 713 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x32, 0x0e, 0x0a, 0x0c, 714 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x66, 0x69, 715 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x6e, 0x63, 0x6c, 0x75, 716 0x64, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x07, 717 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x61, 0x67, 718 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x9f, 0x02, 0x0a, 0x1b, 0x4c, 0x69, 0x73, 0x74, 719 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 720 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 721 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 722 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 723 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 724 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3c, 0x0a, 0x0f, 0x70, 0x72, 0x65, 0x76, 0x5f, 725 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 726 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 727 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 728 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x3c, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 729 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 730 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 731 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 732 0x6b, 0x65, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 733 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 734 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x5f, 0x6f, 735 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x75, 0x72, 736 0x73, 0x6f, 0x72, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0xf2, 0x02, 0x0a, 0x1c, 0x53, 0x65, 737 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 738 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x09, 0x70, 0x61, 739 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x08, 0xca, 740 0xc6, 0x27, 0x04, 0x12, 0x02, 0x2a, 0x00, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 741 0x65, 0x12, 0x33, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 742 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 0x0c, 0x4f, 743 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x70, 0x61, 0x67, 744 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2f, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 745 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x2a, 0x0e, 746 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 747 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 0x2c, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 748 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x1a, 0x0e, 0x0a, 749 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x66, 750 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x4f, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 751 0x61, 0x73, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 752 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 753 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x32, 0x0e, 0x0a, 0x0c, 0x4f, 754 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x66, 0x69, 0x65, 755 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 756 0x65, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20, 757 0x01, 0x28, 0x08, 0x52, 0x11, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x50, 0x61, 0x67, 0x69, 758 0x6e, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x68, 0x72, 0x61, 0x73, 0x65, 759 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x68, 0x72, 0x61, 0x73, 0x65, 0x22, 0xa1, 760 0x02, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e, 761 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 762 0x12, 0x3e, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 763 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 764 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 765 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 766 0x12, 0x3c, 0x0a, 0x0f, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 767 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 768 0x0e, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 769 0x0d, 0x70, 0x72, 0x65, 0x76, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x3c, 770 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 771 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x14, 0xb2, 0xda, 0x21, 0x10, 0x22, 0x0e, 0x0a, 772 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6e, 773 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 774 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 775 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x23, 0x0a, 776 0x0d, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 777 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x4f, 0x66, 0x66, 0x73, 778 0x65, 0x74, 0x42, 0x7d, 0xe8, 0xde, 0x21, 0x00, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 779 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x31, 0x42, 0x17, 0x4f, 0x72, 0x67, 780 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 781 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x00, 0x5a, 0x49, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 782 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 783 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 784 0x2f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x6f, 0x72, 785 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 786 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 787 } 788 789 var ( 790 edgelq_iam_proto_v1_organization_custom_proto_rawDescOnce sync.Once 791 edgelq_iam_proto_v1_organization_custom_proto_rawDescData = edgelq_iam_proto_v1_organization_custom_proto_rawDesc 792 ) 793 794 func edgelq_iam_proto_v1_organization_custom_proto_rawDescGZIP() []byte { 795 edgelq_iam_proto_v1_organization_custom_proto_rawDescOnce.Do(func() { 796 edgelq_iam_proto_v1_organization_custom_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_iam_proto_v1_organization_custom_proto_rawDescData) 797 }) 798 return edgelq_iam_proto_v1_organization_custom_proto_rawDescData 799 } 800 801 var edgelq_iam_proto_v1_organization_custom_proto_msgTypes = make([]protoimpl.MessageInfo, 4) 802 var edgelq_iam_proto_v1_organization_custom_proto_goTypes = []interface{}{ 803 (*ListMyOrganizationsRequest)(nil), // 0: ntt.iam.v1.ListMyOrganizationsRequest 804 (*ListMyOrganizationsResponse)(nil), // 1: ntt.iam.v1.ListMyOrganizationsResponse 805 (*SearchMyOrganizationsRequest)(nil), // 2: ntt.iam.v1.SearchMyOrganizationsRequest 806 (*SearchMyOrganizationsResponse)(nil), // 3: ntt.iam.v1.SearchMyOrganizationsResponse 807 (*organization.Organization_FieldMask)(nil), // 4: ntt.iam.v1.Organization_FieldMask 808 (*organization.Organization)(nil), // 5: ntt.iam.v1.Organization 809 } 810 var edgelq_iam_proto_v1_organization_custom_proto_depIdxs = []int32{ 811 4, // 0: ntt.iam.v1.ListMyOrganizationsRequest.field_mask:type_name -> ntt.iam.v1.Organization_FieldMask 812 5, // 1: ntt.iam.v1.ListMyOrganizationsResponse.organizations:type_name -> ntt.iam.v1.Organization 813 4, // 2: ntt.iam.v1.SearchMyOrganizationsRequest.field_mask:type_name -> ntt.iam.v1.Organization_FieldMask 814 5, // 3: ntt.iam.v1.SearchMyOrganizationsResponse.organizations:type_name -> ntt.iam.v1.Organization 815 4, // [4:4] is the sub-list for method output_type 816 4, // [4:4] is the sub-list for method input_type 817 4, // [4:4] is the sub-list for extension type_name 818 4, // [4:4] is the sub-list for extension extendee 819 0, // [0:4] is the sub-list for field type_name 820 } 821 822 func init() { edgelq_iam_proto_v1_organization_custom_proto_init() } 823 func edgelq_iam_proto_v1_organization_custom_proto_init() { 824 if edgelq_iam_proto_v1_organization_custom_proto != nil { 825 return 826 } 827 if !protoimpl.UnsafeEnabled { 828 829 edgelq_iam_proto_v1_organization_custom_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 830 switch v := v.(*ListMyOrganizationsRequest); i { 831 case 0: 832 return &v.state 833 case 1: 834 return &v.sizeCache 835 case 2: 836 return &v.unknownFields 837 default: 838 return nil 839 } 840 } 841 edgelq_iam_proto_v1_organization_custom_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { 842 switch v := v.(*ListMyOrganizationsResponse); i { 843 case 0: 844 return &v.state 845 case 1: 846 return &v.sizeCache 847 case 2: 848 return &v.unknownFields 849 default: 850 return nil 851 } 852 } 853 edgelq_iam_proto_v1_organization_custom_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { 854 switch v := v.(*SearchMyOrganizationsRequest); i { 855 case 0: 856 return &v.state 857 case 1: 858 return &v.sizeCache 859 case 2: 860 return &v.unknownFields 861 default: 862 return nil 863 } 864 } 865 edgelq_iam_proto_v1_organization_custom_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { 866 switch v := v.(*SearchMyOrganizationsResponse); i { 867 case 0: 868 return &v.state 869 case 1: 870 return &v.sizeCache 871 case 2: 872 return &v.unknownFields 873 default: 874 return nil 875 } 876 } 877 } 878 879 type x struct{} 880 out := protoimpl.TypeBuilder{ 881 File: protoimpl.DescBuilder{ 882 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 883 RawDescriptor: edgelq_iam_proto_v1_organization_custom_proto_rawDesc, 884 NumEnums: 0, 885 NumMessages: 4, 886 NumExtensions: 0, 887 NumServices: 0, 888 }, 889 GoTypes: edgelq_iam_proto_v1_organization_custom_proto_goTypes, 890 DependencyIndexes: edgelq_iam_proto_v1_organization_custom_proto_depIdxs, 891 MessageInfos: edgelq_iam_proto_v1_organization_custom_proto_msgTypes, 892 }.Build() 893 edgelq_iam_proto_v1_organization_custom_proto = out.File 894 edgelq_iam_proto_v1_organization_custom_proto_rawDesc = nil 895 edgelq_iam_proto_v1_organization_custom_proto_goTypes = nil 896 edgelq_iam_proto_v1_organization_custom_proto_depIdxs = nil 897 }