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