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