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