github.com/cloudwan/edgelq-sdk@v1.15.4/iam/resources/v1/service_account/service_account_change.pb.go (about) 1 // Code generated by protoc-gen-goten-go 2 // File: edgelq/iam/proto/v1/service_account_change.proto 3 // DO NOT EDIT!!! 4 5 package service_account 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 project "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project" 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 _ = &project.Project{} 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 // ServiceAccountChange is used by Watch notifications Responses to describe 50 // change of single ServiceAccount One of Added, Modified, Removed 51 type ServiceAccountChange struct { 52 state protoimpl.MessageState 53 sizeCache protoimpl.SizeCache 54 unknownFields protoimpl.UnknownFields 55 // ServiceAccount change 56 // 57 // Types that are valid to be assigned to ChangeType: 58 // *ServiceAccountChange_Added_ 59 // *ServiceAccountChange_Modified_ 60 // *ServiceAccountChange_Current_ 61 // *ServiceAccountChange_Removed_ 62 ChangeType isServiceAccountChange_ChangeType `protobuf_oneof:"change_type"` 63 } 64 65 func (m *ServiceAccountChange) Reset() { 66 *m = ServiceAccountChange{} 67 if protoimpl.UnsafeEnabled { 68 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[0] 69 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 70 ms.StoreMessageInfo(mi) 71 } 72 } 73 74 func (m *ServiceAccountChange) String() string { 75 return protoimpl.X.MessageStringOf(m) 76 } 77 78 func (*ServiceAccountChange) ProtoMessage() {} 79 80 func (m *ServiceAccountChange) ProtoReflect() preflect.Message { 81 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[0] 82 if protoimpl.UnsafeEnabled && m != nil { 83 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 84 if ms.LoadMessageInfo() == nil { 85 ms.StoreMessageInfo(mi) 86 } 87 return ms 88 } 89 return mi.MessageOf(m) 90 } 91 92 func (*ServiceAccountChange) GotenMessage() {} 93 94 // Deprecated, Use ServiceAccountChange.ProtoReflect.Descriptor instead. 95 func (*ServiceAccountChange) Descriptor() ([]byte, []int) { 96 return edgelq_iam_proto_v1_service_account_change_proto_rawDescGZIP(), []int{0} 97 } 98 99 func (m *ServiceAccountChange) Unmarshal(b []byte) error { 100 return proto.Unmarshal(b, m) 101 } 102 103 func (m *ServiceAccountChange) Marshal() ([]byte, error) { 104 return proto.Marshal(m) 105 } 106 107 func (m *ServiceAccountChange) MarshalJSON() ([]byte, error) { 108 return protojson.MarshalOptions{}.Marshal(m) 109 } 110 111 func (m *ServiceAccountChange) UnmarshalJSON(data []byte) error { 112 return protojson.Unmarshal(data, m) 113 } 114 115 type isServiceAccountChange_ChangeType interface { 116 isServiceAccountChange_ChangeType() 117 } 118 119 type ServiceAccountChange_Added_ struct { 120 // Added is returned when watched document is added, either created or 121 // enters Query view 122 Added *ServiceAccountChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof"` 123 } 124 type ServiceAccountChange_Modified_ struct { 125 // Modified is returned when watched document is modified 126 Modified *ServiceAccountChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof"` 127 } 128 type ServiceAccountChange_Current_ struct { 129 // Current is returned in stateless watch when document enters query view or 130 // is modified within. 131 Current *ServiceAccountChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof"` 132 } 133 type ServiceAccountChange_Removed_ struct { 134 // Removed is returned when ServiceAccount is deleted or leaves Query view 135 Removed *ServiceAccountChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof"` 136 } 137 138 func (*ServiceAccountChange_Added_) isServiceAccountChange_ChangeType() {} 139 func (*ServiceAccountChange_Modified_) isServiceAccountChange_ChangeType() {} 140 func (*ServiceAccountChange_Current_) isServiceAccountChange_ChangeType() {} 141 func (*ServiceAccountChange_Removed_) isServiceAccountChange_ChangeType() {} 142 func (m *ServiceAccountChange) GetChangeType() isServiceAccountChange_ChangeType { 143 if m != nil { 144 return m.ChangeType 145 } 146 return nil 147 } 148 func (m *ServiceAccountChange) GetAdded() *ServiceAccountChange_Added { 149 if x, ok := m.GetChangeType().(*ServiceAccountChange_Added_); ok { 150 return x.Added 151 } 152 return nil 153 } 154 func (m *ServiceAccountChange) GetModified() *ServiceAccountChange_Modified { 155 if x, ok := m.GetChangeType().(*ServiceAccountChange_Modified_); ok { 156 return x.Modified 157 } 158 return nil 159 } 160 func (m *ServiceAccountChange) GetCurrent() *ServiceAccountChange_Current { 161 if x, ok := m.GetChangeType().(*ServiceAccountChange_Current_); ok { 162 return x.Current 163 } 164 return nil 165 } 166 func (m *ServiceAccountChange) GetRemoved() *ServiceAccountChange_Removed { 167 if x, ok := m.GetChangeType().(*ServiceAccountChange_Removed_); ok { 168 return x.Removed 169 } 170 return nil 171 } 172 func (m *ServiceAccountChange) SetChangeType(ofv isServiceAccountChange_ChangeType) { 173 if m == nil { 174 panic(fmt.Errorf("can't set %s on nil %s", "isServiceAccountChange_ChangeType", "ServiceAccountChange")) 175 } 176 m.ChangeType = ofv 177 } 178 func (m *ServiceAccountChange) SetAdded(fv *ServiceAccountChange_Added) { 179 m.SetChangeType(&ServiceAccountChange_Added_{Added: fv}) 180 } 181 func (m *ServiceAccountChange) SetModified(fv *ServiceAccountChange_Modified) { 182 m.SetChangeType(&ServiceAccountChange_Modified_{Modified: fv}) 183 } 184 func (m *ServiceAccountChange) SetCurrent(fv *ServiceAccountChange_Current) { 185 m.SetChangeType(&ServiceAccountChange_Current_{Current: fv}) 186 } 187 func (m *ServiceAccountChange) SetRemoved(fv *ServiceAccountChange_Removed) { 188 m.SetChangeType(&ServiceAccountChange_Removed_{Removed: fv}) 189 } 190 191 // ServiceAccount has been added to query view 192 type ServiceAccountChange_Added struct { 193 state protoimpl.MessageState 194 sizeCache protoimpl.SizeCache 195 unknownFields protoimpl.UnknownFields 196 ServiceAccount *ServiceAccount `protobuf:"bytes,1,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"` 197 // Integer describing index of added ServiceAccount in resulting query view. 198 ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"` 199 } 200 201 func (m *ServiceAccountChange_Added) Reset() { 202 *m = ServiceAccountChange_Added{} 203 if protoimpl.UnsafeEnabled { 204 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[1] 205 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 206 ms.StoreMessageInfo(mi) 207 } 208 } 209 210 func (m *ServiceAccountChange_Added) String() string { 211 return protoimpl.X.MessageStringOf(m) 212 } 213 214 func (*ServiceAccountChange_Added) ProtoMessage() {} 215 216 func (m *ServiceAccountChange_Added) ProtoReflect() preflect.Message { 217 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[1] 218 if protoimpl.UnsafeEnabled && m != nil { 219 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 220 if ms.LoadMessageInfo() == nil { 221 ms.StoreMessageInfo(mi) 222 } 223 return ms 224 } 225 return mi.MessageOf(m) 226 } 227 228 func (*ServiceAccountChange_Added) GotenMessage() {} 229 230 // Deprecated, Use ServiceAccountChange_Added.ProtoReflect.Descriptor instead. 231 func (*ServiceAccountChange_Added) Descriptor() ([]byte, []int) { 232 return edgelq_iam_proto_v1_service_account_change_proto_rawDescGZIP(), []int{0, 0} 233 } 234 235 func (m *ServiceAccountChange_Added) Unmarshal(b []byte) error { 236 return proto.Unmarshal(b, m) 237 } 238 239 func (m *ServiceAccountChange_Added) Marshal() ([]byte, error) { 240 return proto.Marshal(m) 241 } 242 243 func (m *ServiceAccountChange_Added) MarshalJSON() ([]byte, error) { 244 return protojson.MarshalOptions{}.Marshal(m) 245 } 246 247 func (m *ServiceAccountChange_Added) UnmarshalJSON(data []byte) error { 248 return protojson.Unmarshal(data, m) 249 } 250 251 func (m *ServiceAccountChange_Added) GetServiceAccount() *ServiceAccount { 252 if m != nil { 253 return m.ServiceAccount 254 } 255 return nil 256 } 257 258 func (m *ServiceAccountChange_Added) GetViewIndex() int32 { 259 if m != nil { 260 return m.ViewIndex 261 } 262 return int32(0) 263 } 264 265 func (m *ServiceAccountChange_Added) SetServiceAccount(fv *ServiceAccount) { 266 if m == nil { 267 panic(fmt.Errorf("can't set %s on nil %s", "ServiceAccount", "ServiceAccountChange_Added")) 268 } 269 m.ServiceAccount = fv 270 } 271 272 func (m *ServiceAccountChange_Added) SetViewIndex(fv int32) { 273 if m == nil { 274 panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "ServiceAccountChange_Added")) 275 } 276 m.ViewIndex = fv 277 } 278 279 // ServiceAccount changed some of it's fields - contains either full document 280 // or masked change 281 type ServiceAccountChange_Modified struct { 282 state protoimpl.MessageState 283 sizeCache protoimpl.SizeCache 284 unknownFields protoimpl.UnknownFields 285 // Name of modified ServiceAccount 286 Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 287 // New version of ServiceAccount or masked difference, depending on 288 // mask_changes instrumentation of issued [WatchServiceAccountRequest] or 289 // [WatchServiceAccountsRequest] 290 ServiceAccount *ServiceAccount `protobuf:"bytes,2,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"` 291 // Used when mask_changes is set, contains field paths of modified 292 // properties. 293 FieldMask *ServiceAccount_FieldMask `protobuf:"bytes,3,opt,customtype=ServiceAccount_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"` 294 // Previous view index specifies previous position of modified 295 // ServiceAccount. When modification doesn't affect sorted order, value will 296 // remain identical to [view_index]. 297 PreviousViewIndex int32 `protobuf:"varint,4,opt,name=previous_view_index,json=previousViewIndex,proto3" json:"previous_view_index,omitempty"` 298 // Integer specifying ServiceAccount new index in resulting query view. 299 ViewIndex int32 `protobuf:"varint,5,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"` 300 } 301 302 func (m *ServiceAccountChange_Modified) Reset() { 303 *m = ServiceAccountChange_Modified{} 304 if protoimpl.UnsafeEnabled { 305 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[2] 306 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 307 ms.StoreMessageInfo(mi) 308 } 309 } 310 311 func (m *ServiceAccountChange_Modified) String() string { 312 return protoimpl.X.MessageStringOf(m) 313 } 314 315 func (*ServiceAccountChange_Modified) ProtoMessage() {} 316 317 func (m *ServiceAccountChange_Modified) ProtoReflect() preflect.Message { 318 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[2] 319 if protoimpl.UnsafeEnabled && m != nil { 320 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 321 if ms.LoadMessageInfo() == nil { 322 ms.StoreMessageInfo(mi) 323 } 324 return ms 325 } 326 return mi.MessageOf(m) 327 } 328 329 func (*ServiceAccountChange_Modified) GotenMessage() {} 330 331 // Deprecated, Use ServiceAccountChange_Modified.ProtoReflect.Descriptor instead. 332 func (*ServiceAccountChange_Modified) Descriptor() ([]byte, []int) { 333 return edgelq_iam_proto_v1_service_account_change_proto_rawDescGZIP(), []int{0, 1} 334 } 335 336 func (m *ServiceAccountChange_Modified) Unmarshal(b []byte) error { 337 return proto.Unmarshal(b, m) 338 } 339 340 func (m *ServiceAccountChange_Modified) Marshal() ([]byte, error) { 341 return proto.Marshal(m) 342 } 343 344 func (m *ServiceAccountChange_Modified) MarshalJSON() ([]byte, error) { 345 return protojson.MarshalOptions{}.Marshal(m) 346 } 347 348 func (m *ServiceAccountChange_Modified) UnmarshalJSON(data []byte) error { 349 return protojson.Unmarshal(data, m) 350 } 351 352 func (m *ServiceAccountChange_Modified) GetName() *Name { 353 if m != nil { 354 return m.Name 355 } 356 return nil 357 } 358 359 func (m *ServiceAccountChange_Modified) GetServiceAccount() *ServiceAccount { 360 if m != nil { 361 return m.ServiceAccount 362 } 363 return nil 364 } 365 366 func (m *ServiceAccountChange_Modified) GetFieldMask() *ServiceAccount_FieldMask { 367 if m != nil { 368 return m.FieldMask 369 } 370 return nil 371 } 372 373 func (m *ServiceAccountChange_Modified) GetPreviousViewIndex() int32 { 374 if m != nil { 375 return m.PreviousViewIndex 376 } 377 return int32(0) 378 } 379 380 func (m *ServiceAccountChange_Modified) GetViewIndex() int32 { 381 if m != nil { 382 return m.ViewIndex 383 } 384 return int32(0) 385 } 386 387 func (m *ServiceAccountChange_Modified) SetName(fv *Name) { 388 if m == nil { 389 panic(fmt.Errorf("can't set %s on nil %s", "Name", "ServiceAccountChange_Modified")) 390 } 391 m.Name = fv 392 } 393 394 func (m *ServiceAccountChange_Modified) SetServiceAccount(fv *ServiceAccount) { 395 if m == nil { 396 panic(fmt.Errorf("can't set %s on nil %s", "ServiceAccount", "ServiceAccountChange_Modified")) 397 } 398 m.ServiceAccount = fv 399 } 400 401 func (m *ServiceAccountChange_Modified) SetFieldMask(fv *ServiceAccount_FieldMask) { 402 if m == nil { 403 panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "ServiceAccountChange_Modified")) 404 } 405 m.FieldMask = fv 406 } 407 408 func (m *ServiceAccountChange_Modified) SetPreviousViewIndex(fv int32) { 409 if m == nil { 410 panic(fmt.Errorf("can't set %s on nil %s", "PreviousViewIndex", "ServiceAccountChange_Modified")) 411 } 412 m.PreviousViewIndex = fv 413 } 414 415 func (m *ServiceAccountChange_Modified) SetViewIndex(fv int32) { 416 if m == nil { 417 panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "ServiceAccountChange_Modified")) 418 } 419 m.ViewIndex = fv 420 } 421 422 // ServiceAccount has been added or modified in a query view. Version used for 423 // stateless watching 424 type ServiceAccountChange_Current struct { 425 state protoimpl.MessageState 426 sizeCache protoimpl.SizeCache 427 unknownFields protoimpl.UnknownFields 428 ServiceAccount *ServiceAccount `protobuf:"bytes,1,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"` 429 } 430 431 func (m *ServiceAccountChange_Current) Reset() { 432 *m = ServiceAccountChange_Current{} 433 if protoimpl.UnsafeEnabled { 434 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[3] 435 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 436 ms.StoreMessageInfo(mi) 437 } 438 } 439 440 func (m *ServiceAccountChange_Current) String() string { 441 return protoimpl.X.MessageStringOf(m) 442 } 443 444 func (*ServiceAccountChange_Current) ProtoMessage() {} 445 446 func (m *ServiceAccountChange_Current) ProtoReflect() preflect.Message { 447 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[3] 448 if protoimpl.UnsafeEnabled && m != nil { 449 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 450 if ms.LoadMessageInfo() == nil { 451 ms.StoreMessageInfo(mi) 452 } 453 return ms 454 } 455 return mi.MessageOf(m) 456 } 457 458 func (*ServiceAccountChange_Current) GotenMessage() {} 459 460 // Deprecated, Use ServiceAccountChange_Current.ProtoReflect.Descriptor instead. 461 func (*ServiceAccountChange_Current) Descriptor() ([]byte, []int) { 462 return edgelq_iam_proto_v1_service_account_change_proto_rawDescGZIP(), []int{0, 2} 463 } 464 465 func (m *ServiceAccountChange_Current) Unmarshal(b []byte) error { 466 return proto.Unmarshal(b, m) 467 } 468 469 func (m *ServiceAccountChange_Current) Marshal() ([]byte, error) { 470 return proto.Marshal(m) 471 } 472 473 func (m *ServiceAccountChange_Current) MarshalJSON() ([]byte, error) { 474 return protojson.MarshalOptions{}.Marshal(m) 475 } 476 477 func (m *ServiceAccountChange_Current) UnmarshalJSON(data []byte) error { 478 return protojson.Unmarshal(data, m) 479 } 480 481 func (m *ServiceAccountChange_Current) GetServiceAccount() *ServiceAccount { 482 if m != nil { 483 return m.ServiceAccount 484 } 485 return nil 486 } 487 488 func (m *ServiceAccountChange_Current) SetServiceAccount(fv *ServiceAccount) { 489 if m == nil { 490 panic(fmt.Errorf("can't set %s on nil %s", "ServiceAccount", "ServiceAccountChange_Current")) 491 } 492 m.ServiceAccount = fv 493 } 494 495 // Removed is returned when ServiceAccount is deleted or leaves Query view 496 type ServiceAccountChange_Removed struct { 497 state protoimpl.MessageState 498 sizeCache protoimpl.SizeCache 499 unknownFields protoimpl.UnknownFields 500 Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"` 501 // Integer specifying removed ServiceAccount index. Not populated in 502 // stateless watch type. 503 ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"` 504 } 505 506 func (m *ServiceAccountChange_Removed) Reset() { 507 *m = ServiceAccountChange_Removed{} 508 if protoimpl.UnsafeEnabled { 509 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[4] 510 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 511 ms.StoreMessageInfo(mi) 512 } 513 } 514 515 func (m *ServiceAccountChange_Removed) String() string { 516 return protoimpl.X.MessageStringOf(m) 517 } 518 519 func (*ServiceAccountChange_Removed) ProtoMessage() {} 520 521 func (m *ServiceAccountChange_Removed) ProtoReflect() preflect.Message { 522 mi := &edgelq_iam_proto_v1_service_account_change_proto_msgTypes[4] 523 if protoimpl.UnsafeEnabled && m != nil { 524 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m)) 525 if ms.LoadMessageInfo() == nil { 526 ms.StoreMessageInfo(mi) 527 } 528 return ms 529 } 530 return mi.MessageOf(m) 531 } 532 533 func (*ServiceAccountChange_Removed) GotenMessage() {} 534 535 // Deprecated, Use ServiceAccountChange_Removed.ProtoReflect.Descriptor instead. 536 func (*ServiceAccountChange_Removed) Descriptor() ([]byte, []int) { 537 return edgelq_iam_proto_v1_service_account_change_proto_rawDescGZIP(), []int{0, 3} 538 } 539 540 func (m *ServiceAccountChange_Removed) Unmarshal(b []byte) error { 541 return proto.Unmarshal(b, m) 542 } 543 544 func (m *ServiceAccountChange_Removed) Marshal() ([]byte, error) { 545 return proto.Marshal(m) 546 } 547 548 func (m *ServiceAccountChange_Removed) MarshalJSON() ([]byte, error) { 549 return protojson.MarshalOptions{}.Marshal(m) 550 } 551 552 func (m *ServiceAccountChange_Removed) UnmarshalJSON(data []byte) error { 553 return protojson.Unmarshal(data, m) 554 } 555 556 func (m *ServiceAccountChange_Removed) GetName() *Name { 557 if m != nil { 558 return m.Name 559 } 560 return nil 561 } 562 563 func (m *ServiceAccountChange_Removed) GetViewIndex() int32 { 564 if m != nil { 565 return m.ViewIndex 566 } 567 return int32(0) 568 } 569 570 func (m *ServiceAccountChange_Removed) SetName(fv *Name) { 571 if m == nil { 572 panic(fmt.Errorf("can't set %s on nil %s", "Name", "ServiceAccountChange_Removed")) 573 } 574 m.Name = fv 575 } 576 577 func (m *ServiceAccountChange_Removed) SetViewIndex(fv int32) { 578 if m == nil { 579 panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "ServiceAccountChange_Removed")) 580 } 581 m.ViewIndex = fv 582 } 583 584 var edgelq_iam_proto_v1_service_account_change_proto preflect.FileDescriptor 585 586 var edgelq_iam_proto_v1_service_account_change_proto_rawDesc = []byte{ 587 0x0a, 0x30, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 588 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 589 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 590 0x74, 0x6f, 0x12, 0x0a, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x1a, 0x19, 591 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 592 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 593 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 594 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 595 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 596 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 597 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65, 598 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x29, 0x65, 0x64, 599 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 600 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 601 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x83, 0x07, 0x0a, 0x14, 0x53, 0x65, 0x72, 0x76, 602 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 603 0x12, 0x3e, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 604 0x26, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x72, 605 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 606 0x65, 0x2e, 0x41, 0x64, 0x64, 0x65, 0x64, 0x48, 0x00, 0x52, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 607 0x12, 0x47, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 608 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 609 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68, 610 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x48, 0x00, 0x52, 611 0x08, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x44, 0x0a, 0x07, 0x63, 0x75, 0x72, 612 0x72, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6e, 0x74, 0x74, 613 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 614 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x43, 0x75, 0x72, 615 0x72, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 616 0x44, 0x0a, 0x07, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 617 0x32, 0x28, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 618 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 619 0x67, 0x65, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x48, 0x00, 0x52, 0x07, 0x72, 0x65, 620 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x1a, 0x6b, 0x0a, 0x05, 0x41, 0x64, 0x64, 0x65, 0x64, 0x12, 0x43, 621 0x0a, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 622 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 623 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 624 0x75, 0x6e, 0x74, 0x52, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 625 0x75, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 626 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 627 0x65, 0x78, 0x1a, 0x9d, 0x02, 0x0a, 0x08, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 628 0x2a, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x16, 0xb2, 629 0xda, 0x21, 0x12, 0x0a, 0x10, 0x0a, 0x0e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 630 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x43, 0x0a, 0x0f, 0x73, 631 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 632 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 633 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 634 0x52, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 635 0x12, 0x51, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 636 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 637 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 638 0x42, 0x16, 0xb2, 0xda, 0x21, 0x12, 0x32, 0x10, 0x0a, 0x0e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 639 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 640 0x61, 0x73, 0x6b, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 641 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 642 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x56, 0x69, 0x65, 0x77, 0x49, 0x6e, 643 0x64, 0x65, 0x78, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 644 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 645 0x65, 0x78, 0x1a, 0x4e, 0x0a, 0x07, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x43, 0x0a, 646 0x0f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 647 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 648 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 649 0x6e, 0x74, 0x52, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 650 0x6e, 0x74, 0x1a, 0x54, 0x0a, 0x07, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x2a, 0x0a, 651 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x16, 0xb2, 0xda, 0x21, 652 0x12, 0x0a, 0x10, 0x0a, 0x0e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 653 0x75, 0x6e, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 654 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 655 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x3a, 0x14, 0x9a, 0xd9, 0x21, 0x10, 0x0a, 0x0e, 656 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0d, 657 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x81, 0x01, 658 0xe8, 0xde, 0x21, 0x00, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 659 0x6d, 0x2e, 0x70, 0x62, 0x2e, 0x76, 0x31, 0x42, 0x19, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 660 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 661 0x74, 0x6f, 0x50, 0x00, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 662 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 663 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x76, 664 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 665 0x74, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 666 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 667 } 668 669 var ( 670 edgelq_iam_proto_v1_service_account_change_proto_rawDescOnce sync.Once 671 edgelq_iam_proto_v1_service_account_change_proto_rawDescData = edgelq_iam_proto_v1_service_account_change_proto_rawDesc 672 ) 673 674 func edgelq_iam_proto_v1_service_account_change_proto_rawDescGZIP() []byte { 675 edgelq_iam_proto_v1_service_account_change_proto_rawDescOnce.Do(func() { 676 edgelq_iam_proto_v1_service_account_change_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_iam_proto_v1_service_account_change_proto_rawDescData) 677 }) 678 return edgelq_iam_proto_v1_service_account_change_proto_rawDescData 679 } 680 681 var edgelq_iam_proto_v1_service_account_change_proto_msgTypes = make([]protoimpl.MessageInfo, 5) 682 var edgelq_iam_proto_v1_service_account_change_proto_goTypes = []interface{}{ 683 (*ServiceAccountChange)(nil), // 0: ntt.iam.v1.ServiceAccountChange 684 (*ServiceAccountChange_Added)(nil), // 1: ntt.iam.v1.ServiceAccountChange.Added 685 (*ServiceAccountChange_Modified)(nil), // 2: ntt.iam.v1.ServiceAccountChange.Modified 686 (*ServiceAccountChange_Current)(nil), // 3: ntt.iam.v1.ServiceAccountChange.Current 687 (*ServiceAccountChange_Removed)(nil), // 4: ntt.iam.v1.ServiceAccountChange.Removed 688 (*ServiceAccount)(nil), // 5: ntt.iam.v1.ServiceAccount 689 (*ServiceAccount_FieldMask)(nil), // 6: ntt.iam.v1.ServiceAccount_FieldMask 690 } 691 var edgelq_iam_proto_v1_service_account_change_proto_depIdxs = []int32{ 692 1, // 0: ntt.iam.v1.ServiceAccountChange.added:type_name -> ntt.iam.v1.ServiceAccountChange.Added 693 2, // 1: ntt.iam.v1.ServiceAccountChange.modified:type_name -> ntt.iam.v1.ServiceAccountChange.Modified 694 3, // 2: ntt.iam.v1.ServiceAccountChange.current:type_name -> ntt.iam.v1.ServiceAccountChange.Current 695 4, // 3: ntt.iam.v1.ServiceAccountChange.removed:type_name -> ntt.iam.v1.ServiceAccountChange.Removed 696 5, // 4: ntt.iam.v1.ServiceAccountChange.Added.service_account:type_name -> ntt.iam.v1.ServiceAccount 697 5, // 5: ntt.iam.v1.ServiceAccountChange.Modified.service_account:type_name -> ntt.iam.v1.ServiceAccount 698 6, // 6: ntt.iam.v1.ServiceAccountChange.Modified.field_mask:type_name -> ntt.iam.v1.ServiceAccount_FieldMask 699 5, // 7: ntt.iam.v1.ServiceAccountChange.Current.service_account:type_name -> ntt.iam.v1.ServiceAccount 700 8, // [8:8] is the sub-list for method output_type 701 8, // [8:8] is the sub-list for method input_type 702 8, // [8:8] is the sub-list for extension type_name 703 8, // [8:8] is the sub-list for extension extendee 704 0, // [0:8] is the sub-list for field type_name 705 } 706 707 func init() { edgelq_iam_proto_v1_service_account_change_proto_init() } 708 func edgelq_iam_proto_v1_service_account_change_proto_init() { 709 if edgelq_iam_proto_v1_service_account_change_proto != nil { 710 return 711 } 712 if !protoimpl.UnsafeEnabled { 713 714 edgelq_iam_proto_v1_service_account_change_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 715 switch v := v.(*ServiceAccountChange); i { 716 case 0: 717 return &v.state 718 case 1: 719 return &v.sizeCache 720 case 2: 721 return &v.unknownFields 722 default: 723 return nil 724 } 725 } 726 edgelq_iam_proto_v1_service_account_change_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { 727 switch v := v.(*ServiceAccountChange_Added); i { 728 case 0: 729 return &v.state 730 case 1: 731 return &v.sizeCache 732 case 2: 733 return &v.unknownFields 734 default: 735 return nil 736 } 737 } 738 edgelq_iam_proto_v1_service_account_change_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { 739 switch v := v.(*ServiceAccountChange_Modified); i { 740 case 0: 741 return &v.state 742 case 1: 743 return &v.sizeCache 744 case 2: 745 return &v.unknownFields 746 default: 747 return nil 748 } 749 } 750 edgelq_iam_proto_v1_service_account_change_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { 751 switch v := v.(*ServiceAccountChange_Current); i { 752 case 0: 753 return &v.state 754 case 1: 755 return &v.sizeCache 756 case 2: 757 return &v.unknownFields 758 default: 759 return nil 760 } 761 } 762 edgelq_iam_proto_v1_service_account_change_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { 763 switch v := v.(*ServiceAccountChange_Removed); i { 764 case 0: 765 return &v.state 766 case 1: 767 return &v.sizeCache 768 case 2: 769 return &v.unknownFields 770 default: 771 return nil 772 } 773 } 774 } 775 776 edgelq_iam_proto_v1_service_account_change_proto_msgTypes[0].OneofWrappers = []interface{}{ 777 (*ServiceAccountChange_Added_)(nil), 778 (*ServiceAccountChange_Modified_)(nil), 779 (*ServiceAccountChange_Current_)(nil), 780 (*ServiceAccountChange_Removed_)(nil), 781 } 782 type x struct{} 783 out := protoimpl.TypeBuilder{ 784 File: protoimpl.DescBuilder{ 785 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 786 RawDescriptor: edgelq_iam_proto_v1_service_account_change_proto_rawDesc, 787 NumEnums: 0, 788 NumMessages: 5, 789 NumExtensions: 0, 790 NumServices: 0, 791 }, 792 GoTypes: edgelq_iam_proto_v1_service_account_change_proto_goTypes, 793 DependencyIndexes: edgelq_iam_proto_v1_service_account_change_proto_depIdxs, 794 MessageInfos: edgelq_iam_proto_v1_service_account_change_proto_msgTypes, 795 }.Build() 796 edgelq_iam_proto_v1_service_account_change_proto = out.File 797 edgelq_iam_proto_v1_service_account_change_proto_rawDesc = nil 798 edgelq_iam_proto_v1_service_account_change_proto_goTypes = nil 799 edgelq_iam_proto_v1_service_account_change_proto_depIdxs = nil 800 }