@lansweeper/scanningconfig-grpc 0.0.2 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/Lansweeper.ScanningConfig.GRPC.csproj +12 -4
  3. package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json +86 -4
  4. package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  5. package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
  6. package/gen-proto/image.json +1 -1
  7. package/gen-proto/scanningconfig_pb.d.ts +34 -0
  8. package/gen-proto/scanningconfig_pb.js +298 -3
  9. package/generated-go/scanningconfig.pb.go +245 -140
  10. package/generated-go/scanningconfig_grpc.pb.go +1 -1
  11. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs +3 -3
  12. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache +1 -1
  13. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.assets.cache +0 -0
  14. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.AssemblyReference.cache +0 -0
  15. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.CoreCompileInputs.cache +1 -1
  16. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  17. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
  18. package/obj/Debug/net6.0/dfe805b7589f203f_scanningconfig.protodep +2 -0
  19. package/{Scanningconfig.cs → obj/Debug/net6.0/proto/Scanningconfig.cs} +541 -49
  20. package/obj/Debug/net6.0/proto/ScanningconfigGrpc.cs +124 -0
  21. package/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  22. package/obj/Debug/net6.0/refint/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  23. package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.dgspec.json +12 -2
  24. package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.props +7 -1
  25. package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.targets +5 -1
  26. package/obj/project.assets.json +209 -3
  27. package/obj/project.nuget.cache +6 -2
  28. package/package.json +2 -2
  29. package/proto/scanningconfig.proto +11 -2
  30. package/.useprotoc +0 -0
  31. package/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +0 -4
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.30.0
4
- // protoc v3.15.6
3
+ // protoc-gen-go v1.31.0
4
+ // protoc v3.19.1
5
5
  // source: scanningconfig.proto
6
6
 
7
7
  package generated_go
@@ -115,7 +115,7 @@ func (x Action_ActionType) Number() protoreflect.EnumNumber {
115
115
 
116
116
  // Deprecated: Use Action_ActionType.Descriptor instead.
117
117
  func (Action_ActionType) EnumDescriptor() ([]byte, []int) {
118
- return file_scanningconfig_proto_rawDescGZIP(), []int{7, 0}
118
+ return file_scanningconfig_proto_rawDescGZIP(), []int{8, 0}
119
119
  }
120
120
 
121
121
  type Agent_ScanFocus int32
@@ -164,7 +164,7 @@ func (x Agent_ScanFocus) Number() protoreflect.EnumNumber {
164
164
 
165
165
  // Deprecated: Use Agent_ScanFocus.Descriptor instead.
166
166
  func (Agent_ScanFocus) EnumDescriptor() ([]byte, []int) {
167
- return file_scanningconfig_proto_rawDescGZIP(), []int{8, 0}
167
+ return file_scanningconfig_proto_rawDescGZIP(), []int{9, 0}
168
168
  }
169
169
 
170
170
  type Credential_CredentialType int32
@@ -207,7 +207,7 @@ func (x Credential_CredentialType) Number() protoreflect.EnumNumber {
207
207
 
208
208
  // Deprecated: Use Credential_CredentialType.Descriptor instead.
209
209
  func (Credential_CredentialType) EnumDescriptor() ([]byte, []int) {
210
- return file_scanningconfig_proto_rawDescGZIP(), []int{9, 0}
210
+ return file_scanningconfig_proto_rawDescGZIP(), []int{10, 0}
211
211
  }
212
212
 
213
213
  type GetConfigurationsBySourceRequest struct {
@@ -321,6 +321,7 @@ type Component struct {
321
321
  Type Component_ComponentType `protobuf:"varint,2,opt,name=type,proto3,enum=lansweeper.scanningconfig.v1.Component_ComponentType" json:"type,omitempty"`
322
322
  Actions []*Action `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"`
323
323
  OpConfig *OperationalConfig `protobuf:"bytes,4,opt,name=op_config,json=opConfig,proto3,oneof" json:"op_config,omitempty"`
324
+ Enabled bool `protobuf:"varint,5,opt,name=enabled,proto3" json:"enabled,omitempty"`
324
325
  }
325
326
 
326
327
  func (x *Component) Reset() {
@@ -383,6 +384,14 @@ func (x *Component) GetOpConfig() *OperationalConfig {
383
384
  return nil
384
385
  }
385
386
 
387
+ func (x *Component) GetEnabled() bool {
388
+ if x != nil {
389
+ return x.Enabled
390
+ }
391
+ return false
392
+ }
393
+
394
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
386
395
  type AssetRadar struct {
387
396
  state protoimpl.MessageState
388
397
  sizeCache protoimpl.SizeCache
@@ -438,6 +447,61 @@ func (x *AssetRadar) GetExcludedInterfaces() []string {
438
447
  return nil
439
448
  }
440
449
 
450
+ type NetworkVisibility struct {
451
+ state protoimpl.MessageState
452
+ sizeCache protoimpl.SizeCache
453
+ unknownFields protoimpl.UnknownFields
454
+
455
+ Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
456
+ ExcludedInterfaces []string `protobuf:"bytes,2,rep,name=excluded_interfaces,json=excludedInterfaces,proto3" json:"excluded_interfaces,omitempty"`
457
+ }
458
+
459
+ func (x *NetworkVisibility) Reset() {
460
+ *x = NetworkVisibility{}
461
+ if protoimpl.UnsafeEnabled {
462
+ mi := &file_scanningconfig_proto_msgTypes[4]
463
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
464
+ ms.StoreMessageInfo(mi)
465
+ }
466
+ }
467
+
468
+ func (x *NetworkVisibility) String() string {
469
+ return protoimpl.X.MessageStringOf(x)
470
+ }
471
+
472
+ func (*NetworkVisibility) ProtoMessage() {}
473
+
474
+ func (x *NetworkVisibility) ProtoReflect() protoreflect.Message {
475
+ mi := &file_scanningconfig_proto_msgTypes[4]
476
+ if protoimpl.UnsafeEnabled && x != nil {
477
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
478
+ if ms.LoadMessageInfo() == nil {
479
+ ms.StoreMessageInfo(mi)
480
+ }
481
+ return ms
482
+ }
483
+ return mi.MessageOf(x)
484
+ }
485
+
486
+ // Deprecated: Use NetworkVisibility.ProtoReflect.Descriptor instead.
487
+ func (*NetworkVisibility) Descriptor() ([]byte, []int) {
488
+ return file_scanningconfig_proto_rawDescGZIP(), []int{4}
489
+ }
490
+
491
+ func (x *NetworkVisibility) GetEnabled() bool {
492
+ if x != nil {
493
+ return x.Enabled
494
+ }
495
+ return false
496
+ }
497
+
498
+ func (x *NetworkVisibility) GetExcludedInterfaces() []string {
499
+ if x != nil {
500
+ return x.ExcludedInterfaces
501
+ }
502
+ return nil
503
+ }
504
+
441
505
  type AutoUpdate struct {
442
506
  state protoimpl.MessageState
443
507
  sizeCache protoimpl.SizeCache
@@ -450,7 +514,7 @@ type AutoUpdate struct {
450
514
  func (x *AutoUpdate) Reset() {
451
515
  *x = AutoUpdate{}
452
516
  if protoimpl.UnsafeEnabled {
453
- mi := &file_scanningconfig_proto_msgTypes[4]
517
+ mi := &file_scanningconfig_proto_msgTypes[5]
454
518
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
455
519
  ms.StoreMessageInfo(mi)
456
520
  }
@@ -463,7 +527,7 @@ func (x *AutoUpdate) String() string {
463
527
  func (*AutoUpdate) ProtoMessage() {}
464
528
 
465
529
  func (x *AutoUpdate) ProtoReflect() protoreflect.Message {
466
- mi := &file_scanningconfig_proto_msgTypes[4]
530
+ mi := &file_scanningconfig_proto_msgTypes[5]
467
531
  if protoimpl.UnsafeEnabled && x != nil {
468
532
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
469
533
  if ms.LoadMessageInfo() == nil {
@@ -476,7 +540,7 @@ func (x *AutoUpdate) ProtoReflect() protoreflect.Message {
476
540
 
477
541
  // Deprecated: Use AutoUpdate.ProtoReflect.Descriptor instead.
478
542
  func (*AutoUpdate) Descriptor() ([]byte, []int) {
479
- return file_scanningconfig_proto_rawDescGZIP(), []int{4}
543
+ return file_scanningconfig_proto_rawDescGZIP(), []int{5}
480
544
  }
481
545
 
482
546
  func (x *AutoUpdate) GetEnabled() bool {
@@ -498,14 +562,16 @@ type OperationalConfig struct {
498
562
  sizeCache protoimpl.SizeCache
499
563
  unknownFields protoimpl.UnknownFields
500
564
 
501
- AssetRadarConfig *AssetRadar `protobuf:"bytes,1,opt,name=asset_radar_config,json=assetRadarConfig,proto3,oneof" json:"asset_radar_config,omitempty"`
502
- AutoUpdateConfig *AutoUpdate `protobuf:"bytes,2,opt,name=auto_update_config,json=autoUpdateConfig,proto3,oneof" json:"auto_update_config,omitempty"`
565
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
566
+ AssetRadarConfig *AssetRadar `protobuf:"bytes,1,opt,name=asset_radar_config,json=assetRadarConfig,proto3,oneof" json:"asset_radar_config,omitempty"`
567
+ AutoUpdateConfig *AutoUpdate `protobuf:"bytes,2,opt,name=auto_update_config,json=autoUpdateConfig,proto3,oneof" json:"auto_update_config,omitempty"`
568
+ NetworkVisibilityConfig *NetworkVisibility `protobuf:"bytes,3,opt,name=network_visibility_config,json=networkVisibilityConfig,proto3,oneof" json:"network_visibility_config,omitempty"`
503
569
  }
504
570
 
505
571
  func (x *OperationalConfig) Reset() {
506
572
  *x = OperationalConfig{}
507
573
  if protoimpl.UnsafeEnabled {
508
- mi := &file_scanningconfig_proto_msgTypes[5]
574
+ mi := &file_scanningconfig_proto_msgTypes[6]
509
575
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
510
576
  ms.StoreMessageInfo(mi)
511
577
  }
@@ -518,7 +584,7 @@ func (x *OperationalConfig) String() string {
518
584
  func (*OperationalConfig) ProtoMessage() {}
519
585
 
520
586
  func (x *OperationalConfig) ProtoReflect() protoreflect.Message {
521
- mi := &file_scanningconfig_proto_msgTypes[5]
587
+ mi := &file_scanningconfig_proto_msgTypes[6]
522
588
  if protoimpl.UnsafeEnabled && x != nil {
523
589
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
524
590
  if ms.LoadMessageInfo() == nil {
@@ -531,9 +597,10 @@ func (x *OperationalConfig) ProtoReflect() protoreflect.Message {
531
597
 
532
598
  // Deprecated: Use OperationalConfig.ProtoReflect.Descriptor instead.
533
599
  func (*OperationalConfig) Descriptor() ([]byte, []int) {
534
- return file_scanningconfig_proto_rawDescGZIP(), []int{5}
600
+ return file_scanningconfig_proto_rawDescGZIP(), []int{6}
535
601
  }
536
602
 
603
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
537
604
  func (x *OperationalConfig) GetAssetRadarConfig() *AssetRadar {
538
605
  if x != nil {
539
606
  return x.AssetRadarConfig
@@ -548,6 +615,13 @@ func (x *OperationalConfig) GetAutoUpdateConfig() *AutoUpdate {
548
615
  return nil
549
616
  }
550
617
 
618
+ func (x *OperationalConfig) GetNetworkVisibilityConfig() *NetworkVisibility {
619
+ if x != nil {
620
+ return x.NetworkVisibilityConfig
621
+ }
622
+ return nil
623
+ }
624
+
551
625
  type Trigger struct {
552
626
  state protoimpl.MessageState
553
627
  sizeCache protoimpl.SizeCache
@@ -559,7 +633,7 @@ type Trigger struct {
559
633
  func (x *Trigger) Reset() {
560
634
  *x = Trigger{}
561
635
  if protoimpl.UnsafeEnabled {
562
- mi := &file_scanningconfig_proto_msgTypes[6]
636
+ mi := &file_scanningconfig_proto_msgTypes[7]
563
637
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
564
638
  ms.StoreMessageInfo(mi)
565
639
  }
@@ -572,7 +646,7 @@ func (x *Trigger) String() string {
572
646
  func (*Trigger) ProtoMessage() {}
573
647
 
574
648
  func (x *Trigger) ProtoReflect() protoreflect.Message {
575
- mi := &file_scanningconfig_proto_msgTypes[6]
649
+ mi := &file_scanningconfig_proto_msgTypes[7]
576
650
  if protoimpl.UnsafeEnabled && x != nil {
577
651
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
578
652
  if ms.LoadMessageInfo() == nil {
@@ -585,7 +659,7 @@ func (x *Trigger) ProtoReflect() protoreflect.Message {
585
659
 
586
660
  // Deprecated: Use Trigger.ProtoReflect.Descriptor instead.
587
661
  func (*Trigger) Descriptor() ([]byte, []int) {
588
- return file_scanningconfig_proto_rawDescGZIP(), []int{6}
662
+ return file_scanningconfig_proto_rawDescGZIP(), []int{7}
589
663
  }
590
664
 
591
665
  func (x *Trigger) GetCronExpr() string {
@@ -611,7 +685,7 @@ type Action struct {
611
685
  func (x *Action) Reset() {
612
686
  *x = Action{}
613
687
  if protoimpl.UnsafeEnabled {
614
- mi := &file_scanningconfig_proto_msgTypes[7]
688
+ mi := &file_scanningconfig_proto_msgTypes[8]
615
689
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
616
690
  ms.StoreMessageInfo(mi)
617
691
  }
@@ -624,7 +698,7 @@ func (x *Action) String() string {
624
698
  func (*Action) ProtoMessage() {}
625
699
 
626
700
  func (x *Action) ProtoReflect() protoreflect.Message {
627
- mi := &file_scanningconfig_proto_msgTypes[7]
701
+ mi := &file_scanningconfig_proto_msgTypes[8]
628
702
  if protoimpl.UnsafeEnabled && x != nil {
629
703
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
630
704
  if ms.LoadMessageInfo() == nil {
@@ -637,7 +711,7 @@ func (x *Action) ProtoReflect() protoreflect.Message {
637
711
 
638
712
  // Deprecated: Use Action.ProtoReflect.Descriptor instead.
639
713
  func (*Action) Descriptor() ([]byte, []int) {
640
- return file_scanningconfig_proto_rawDescGZIP(), []int{7}
714
+ return file_scanningconfig_proto_rawDescGZIP(), []int{8}
641
715
  }
642
716
 
643
717
  func (x *Action) GetTriggers() []*Trigger {
@@ -696,7 +770,7 @@ type Agent struct {
696
770
  func (x *Agent) Reset() {
697
771
  *x = Agent{}
698
772
  if protoimpl.UnsafeEnabled {
699
- mi := &file_scanningconfig_proto_msgTypes[8]
773
+ mi := &file_scanningconfig_proto_msgTypes[9]
700
774
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
701
775
  ms.StoreMessageInfo(mi)
702
776
  }
@@ -709,7 +783,7 @@ func (x *Agent) String() string {
709
783
  func (*Agent) ProtoMessage() {}
710
784
 
711
785
  func (x *Agent) ProtoReflect() protoreflect.Message {
712
- mi := &file_scanningconfig_proto_msgTypes[8]
786
+ mi := &file_scanningconfig_proto_msgTypes[9]
713
787
  if protoimpl.UnsafeEnabled && x != nil {
714
788
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
715
789
  if ms.LoadMessageInfo() == nil {
@@ -722,7 +796,7 @@ func (x *Agent) ProtoReflect() protoreflect.Message {
722
796
 
723
797
  // Deprecated: Use Agent.ProtoReflect.Descriptor instead.
724
798
  func (*Agent) Descriptor() ([]byte, []int) {
725
- return file_scanningconfig_proto_rawDescGZIP(), []int{8}
799
+ return file_scanningconfig_proto_rawDescGZIP(), []int{9}
726
800
  }
727
801
 
728
802
  func (x *Agent) GetScanFocus() Agent_ScanFocus {
@@ -743,7 +817,7 @@ type Credential struct {
743
817
  func (x *Credential) Reset() {
744
818
  *x = Credential{}
745
819
  if protoimpl.UnsafeEnabled {
746
- mi := &file_scanningconfig_proto_msgTypes[9]
820
+ mi := &file_scanningconfig_proto_msgTypes[10]
747
821
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
748
822
  ms.StoreMessageInfo(mi)
749
823
  }
@@ -756,7 +830,7 @@ func (x *Credential) String() string {
756
830
  func (*Credential) ProtoMessage() {}
757
831
 
758
832
  func (x *Credential) ProtoReflect() protoreflect.Message {
759
- mi := &file_scanningconfig_proto_msgTypes[9]
833
+ mi := &file_scanningconfig_proto_msgTypes[10]
760
834
  if protoimpl.UnsafeEnabled && x != nil {
761
835
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
762
836
  if ms.LoadMessageInfo() == nil {
@@ -769,7 +843,7 @@ func (x *Credential) ProtoReflect() protoreflect.Message {
769
843
 
770
844
  // Deprecated: Use Credential.ProtoReflect.Descriptor instead.
771
845
  func (*Credential) Descriptor() ([]byte, []int) {
772
- return file_scanningconfig_proto_rawDescGZIP(), []int{9}
846
+ return file_scanningconfig_proto_rawDescGZIP(), []int{10}
773
847
  }
774
848
 
775
849
  func (x *Credential) GetType() Credential_CredentialType {
@@ -797,7 +871,7 @@ var file_scanningconfig_proto_rawDesc = []byte{
797
871
  0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
798
872
  0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
799
873
  0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63,
800
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xcf, 0x02, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x70, 0x6f,
874
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xe9, 0x02, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x70, 0x6f,
801
875
  0x6e, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
802
876
  0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
803
877
  0x28, 0x0e, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
@@ -813,92 +887,109 @@ var file_scanningconfig_proto_rawDesc = []byte{
813
887
  0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
814
888
  0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e,
815
889
  0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88,
816
- 0x01, 0x01, 0x22, 0x46, 0x0a, 0x0d, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54,
817
- 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
818
- 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12,
819
- 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x4f, 0x52, 0x10, 0x02, 0x12, 0x0a,
820
- 0x0a, 0x06, 0x49, 0x54, 0x5f, 0x48, 0x55, 0x42, 0x10, 0x03, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f,
821
- 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x57, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65,
822
- 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
823
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
824
- 0x12, 0x2f, 0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
825
- 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65,
826
- 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65,
827
- 0x73, 0x22, 0x42, 0x0a, 0x0a, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12,
828
- 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
829
- 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x63, 0x68,
830
- 0x65, 0x64, 0x75, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x63, 0x68,
831
- 0x65, 0x64, 0x75, 0x6c, 0x65, 0x22, 0xfb, 0x01, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
832
- 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x5b, 0x0a, 0x12, 0x61,
833
- 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
834
- 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
835
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e,
836
- 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61,
837
- 0x72, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x43,
838
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x12, 0x61, 0x75, 0x74, 0x6f,
839
- 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02,
840
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
841
- 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
842
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x48, 0x01,
843
- 0x52, 0x10, 0x61, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,
844
- 0x69, 0x67, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f,
845
- 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x15, 0x0a, 0x13,
846
- 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
847
- 0x66, 0x69, 0x67, 0x22, 0x26, 0x0a, 0x07, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x1b,
848
- 0x0a, 0x09, 0x63, 0x72, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
849
- 0x09, 0x52, 0x08, 0x63, 0x72, 0x6f, 0x6e, 0x45, 0x78, 0x70, 0x72, 0x22, 0xde, 0x02, 0x0a, 0x06,
850
- 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65,
851
- 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
852
- 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
853
- 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x52,
854
- 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x12, 0x50, 0x0a, 0x0b, 0x61, 0x63, 0x74,
855
- 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f,
856
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
857
- 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x63,
858
- 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52,
859
- 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4a, 0x0a, 0x0b, 0x63,
860
- 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
861
- 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
862
- 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
863
- 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x64,
864
- 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3b, 0x0a, 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74,
865
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
890
+ 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x05, 0x20,
891
+ 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x46, 0x0a, 0x0d,
892
+ 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
893
+ 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09,
894
+ 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x5f,
895
+ 0x53, 0x45, 0x4e, 0x53, 0x4f, 0x52, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x54, 0x5f, 0x48,
896
+ 0x55, 0x42, 0x10, 0x03, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
897
+ 0x69, 0x67, 0x22, 0x5b, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72,
898
+ 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
899
+ 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x13, 0x65, 0x78,
900
+ 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65,
901
+ 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65,
902
+ 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22,
903
+ 0x5e, 0x0a, 0x11, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69,
904
+ 0x6c, 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18,
905
+ 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f,
906
+ 0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
907
+ 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63,
908
+ 0x6c, 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22,
909
+ 0x42, 0x0a, 0x0a, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a,
910
+ 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
911
+ 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64,
912
+ 0x75, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64,
913
+ 0x75, 0x6c, 0x65, 0x22, 0x8f, 0x03, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
914
+ 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x5f, 0x0a, 0x12, 0x61, 0x73, 0x73,
915
+ 0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18,
916
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
917
+ 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
918
+ 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x42,
919
+ 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61,
920
+ 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x12, 0x61, 0x75,
921
+ 0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
922
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
866
923
  0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
867
- 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x05, 0x61,
868
- 0x67, 0x65, 0x6e, 0x74, 0x22, 0x28, 0x0a, 0x0a, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
869
- 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
870
- 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x42, 0x0c,
871
- 0x0a, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x01, 0x0a,
872
- 0x05, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66,
873
- 0x6f, 0x63, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e,
924
+ 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
925
+ 0x48, 0x01, 0x52, 0x10, 0x61, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f,
926
+ 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x19, 0x6e, 0x65, 0x74, 0x77, 0x6f,
927
+ 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f,
928
+ 0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e,
874
929
  0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
875
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x2e,
876
- 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x52, 0x09, 0x73, 0x63, 0x61, 0x6e, 0x46,
877
- 0x6f, 0x63, 0x75, 0x73, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75,
878
- 0x73, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53,
879
- 0x45, 0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f,
880
- 0x52, 0x59, 0x10, 0x02, 0x22, 0x7c, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69,
881
- 0x61, 0x6c, 0x12, 0x4b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e,
882
- 0x32, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
883
- 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
884
- 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65,
885
- 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22,
886
- 0x21, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70,
887
- 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
888
- 0x10, 0x00, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x43,
889
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e, 0x01, 0x0a,
890
- 0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
891
- 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e,
892
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
893
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e,
894
- 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75,
895
- 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e,
930
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
931
+ 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x48, 0x02, 0x52, 0x17, 0x6e,
932
+ 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
933
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x73,
934
+ 0x73, 0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
935
+ 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
936
+ 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6e, 0x65, 0x74, 0x77,
937
+ 0x6f, 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63,
938
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x26, 0x0a, 0x07, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72,
939
+ 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x72, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x72, 0x18, 0x01, 0x20,
940
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x72, 0x6f, 0x6e, 0x45, 0x78, 0x70, 0x72, 0x22, 0xde, 0x02,
941
+ 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x08, 0x74, 0x72, 0x69, 0x67,
942
+ 0x67, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6c, 0x61, 0x6e,
896
943
  0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
897
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e,
898
- 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75,
899
- 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a,
900
- 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62,
901
- 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
944
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65,
945
+ 0x72, 0x52, 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x12, 0x50, 0x0a, 0x0b, 0x61,
946
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
947
+ 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
948
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
949
+ 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
950
+ 0x65, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4a, 0x0a,
951
+ 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03,
952
+ 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
953
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
954
+ 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x0b, 0x63, 0x72,
955
+ 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3b, 0x0a, 0x05, 0x61, 0x67, 0x65,
956
+ 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
957
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
958
+ 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52,
959
+ 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x22, 0x28, 0x0a, 0x0a, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
960
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
961
+ 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01,
962
+ 0x42, 0x0c, 0x0a, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85,
963
+ 0x01, 0x0a, 0x05, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e,
964
+ 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c,
965
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
966
+ 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e,
967
+ 0x74, 0x2e, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x52, 0x09, 0x73, 0x63, 0x61,
968
+ 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f,
969
+ 0x63, 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05,
970
+ 0x55, 0x53, 0x45, 0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e,
971
+ 0x54, 0x4f, 0x52, 0x59, 0x10, 0x02, 0x22, 0x7c, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e,
972
+ 0x74, 0x69, 0x61, 0x6c, 0x12, 0x4b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
973
+ 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
974
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
975
+ 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x72, 0x65,
976
+ 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
977
+ 0x65, 0x22, 0x21, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54,
978
+ 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
979
+ 0x45, 0x44, 0x10, 0x00, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
980
+ 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e,
981
+ 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,
982
+ 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c,
983
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
984
+ 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43,
985
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53,
986
+ 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c,
987
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
988
+ 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43,
989
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53,
990
+ 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42,
991
+ 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67,
992
+ 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
902
993
  }
903
994
 
904
995
  var (
@@ -914,7 +1005,7 @@ func file_scanningconfig_proto_rawDescGZIP() []byte {
914
1005
  }
915
1006
 
916
1007
  var file_scanningconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
917
- var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
1008
+ var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
918
1009
  var file_scanningconfig_proto_goTypes = []interface{}{
919
1010
  (Component_ComponentType)(0), // 0: lansweeper.scanningconfig.v1.Component.ComponentType
920
1011
  (Action_ActionType)(0), // 1: lansweeper.scanningconfig.v1.Action.ActionType
@@ -924,33 +1015,35 @@ var file_scanningconfig_proto_goTypes = []interface{}{
924
1015
  (*GetConfigurationsBySourceResponse)(nil), // 5: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
925
1016
  (*Component)(nil), // 6: lansweeper.scanningconfig.v1.Component
926
1017
  (*AssetRadar)(nil), // 7: lansweeper.scanningconfig.v1.AssetRadar
927
- (*AutoUpdate)(nil), // 8: lansweeper.scanningconfig.v1.AutoUpdate
928
- (*OperationalConfig)(nil), // 9: lansweeper.scanningconfig.v1.OperationalConfig
929
- (*Trigger)(nil), // 10: lansweeper.scanningconfig.v1.Trigger
930
- (*Action)(nil), // 11: lansweeper.scanningconfig.v1.Action
931
- (*Agent)(nil), // 12: lansweeper.scanningconfig.v1.Agent
932
- (*Credential)(nil), // 13: lansweeper.scanningconfig.v1.Credential
1018
+ (*NetworkVisibility)(nil), // 8: lansweeper.scanningconfig.v1.NetworkVisibility
1019
+ (*AutoUpdate)(nil), // 9: lansweeper.scanningconfig.v1.AutoUpdate
1020
+ (*OperationalConfig)(nil), // 10: lansweeper.scanningconfig.v1.OperationalConfig
1021
+ (*Trigger)(nil), // 11: lansweeper.scanningconfig.v1.Trigger
1022
+ (*Action)(nil), // 12: lansweeper.scanningconfig.v1.Action
1023
+ (*Agent)(nil), // 13: lansweeper.scanningconfig.v1.Agent
1024
+ (*Credential)(nil), // 14: lansweeper.scanningconfig.v1.Credential
933
1025
  }
934
1026
  var file_scanningconfig_proto_depIdxs = []int32{
935
1027
  6, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
936
1028
  0, // 1: lansweeper.scanningconfig.v1.Component.type:type_name -> lansweeper.scanningconfig.v1.Component.ComponentType
937
- 11, // 2: lansweeper.scanningconfig.v1.Component.actions:type_name -> lansweeper.scanningconfig.v1.Action
938
- 9, // 3: lansweeper.scanningconfig.v1.Component.op_config:type_name -> lansweeper.scanningconfig.v1.OperationalConfig
1029
+ 12, // 2: lansweeper.scanningconfig.v1.Component.actions:type_name -> lansweeper.scanningconfig.v1.Action
1030
+ 10, // 3: lansweeper.scanningconfig.v1.Component.op_config:type_name -> lansweeper.scanningconfig.v1.OperationalConfig
939
1031
  7, // 4: lansweeper.scanningconfig.v1.OperationalConfig.asset_radar_config:type_name -> lansweeper.scanningconfig.v1.AssetRadar
940
- 8, // 5: lansweeper.scanningconfig.v1.OperationalConfig.auto_update_config:type_name -> lansweeper.scanningconfig.v1.AutoUpdate
941
- 10, // 6: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
942
- 1, // 7: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
943
- 13, // 8: lansweeper.scanningconfig.v1.Action.credentials:type_name -> lansweeper.scanningconfig.v1.Credential
944
- 12, // 9: lansweeper.scanningconfig.v1.Action.agent:type_name -> lansweeper.scanningconfig.v1.Agent
945
- 2, // 10: lansweeper.scanningconfig.v1.Agent.scan_focus:type_name -> lansweeper.scanningconfig.v1.Agent.ScanFocus
946
- 3, // 11: lansweeper.scanningconfig.v1.Credential.type:type_name -> lansweeper.scanningconfig.v1.Credential.CredentialType
947
- 4, // 12: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
948
- 5, // 13: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
949
- 13, // [13:14] is the sub-list for method output_type
950
- 12, // [12:13] is the sub-list for method input_type
951
- 12, // [12:12] is the sub-list for extension type_name
952
- 12, // [12:12] is the sub-list for extension extendee
953
- 0, // [0:12] is the sub-list for field type_name
1032
+ 9, // 5: lansweeper.scanningconfig.v1.OperationalConfig.auto_update_config:type_name -> lansweeper.scanningconfig.v1.AutoUpdate
1033
+ 8, // 6: lansweeper.scanningconfig.v1.OperationalConfig.network_visibility_config:type_name -> lansweeper.scanningconfig.v1.NetworkVisibility
1034
+ 11, // 7: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
1035
+ 1, // 8: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
1036
+ 14, // 9: lansweeper.scanningconfig.v1.Action.credentials:type_name -> lansweeper.scanningconfig.v1.Credential
1037
+ 13, // 10: lansweeper.scanningconfig.v1.Action.agent:type_name -> lansweeper.scanningconfig.v1.Agent
1038
+ 2, // 11: lansweeper.scanningconfig.v1.Agent.scan_focus:type_name -> lansweeper.scanningconfig.v1.Agent.ScanFocus
1039
+ 3, // 12: lansweeper.scanningconfig.v1.Credential.type:type_name -> lansweeper.scanningconfig.v1.Credential.CredentialType
1040
+ 4, // 13: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
1041
+ 5, // 14: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
1042
+ 14, // [14:15] is the sub-list for method output_type
1043
+ 13, // [13:14] is the sub-list for method input_type
1044
+ 13, // [13:13] is the sub-list for extension type_name
1045
+ 13, // [13:13] is the sub-list for extension extendee
1046
+ 0, // [0:13] is the sub-list for field type_name
954
1047
  }
955
1048
 
956
1049
  func init() { file_scanningconfig_proto_init() }
@@ -1008,7 +1101,7 @@ func file_scanningconfig_proto_init() {
1008
1101
  }
1009
1102
  }
1010
1103
  file_scanningconfig_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
1011
- switch v := v.(*AutoUpdate); i {
1104
+ switch v := v.(*NetworkVisibility); i {
1012
1105
  case 0:
1013
1106
  return &v.state
1014
1107
  case 1:
@@ -1020,7 +1113,7 @@ func file_scanningconfig_proto_init() {
1020
1113
  }
1021
1114
  }
1022
1115
  file_scanningconfig_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
1023
- switch v := v.(*OperationalConfig); i {
1116
+ switch v := v.(*AutoUpdate); i {
1024
1117
  case 0:
1025
1118
  return &v.state
1026
1119
  case 1:
@@ -1032,7 +1125,7 @@ func file_scanningconfig_proto_init() {
1032
1125
  }
1033
1126
  }
1034
1127
  file_scanningconfig_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
1035
- switch v := v.(*Trigger); i {
1128
+ switch v := v.(*OperationalConfig); i {
1036
1129
  case 0:
1037
1130
  return &v.state
1038
1131
  case 1:
@@ -1044,7 +1137,7 @@ func file_scanningconfig_proto_init() {
1044
1137
  }
1045
1138
  }
1046
1139
  file_scanningconfig_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
1047
- switch v := v.(*Action); i {
1140
+ switch v := v.(*Trigger); i {
1048
1141
  case 0:
1049
1142
  return &v.state
1050
1143
  case 1:
@@ -1056,7 +1149,7 @@ func file_scanningconfig_proto_init() {
1056
1149
  }
1057
1150
  }
1058
1151
  file_scanningconfig_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
1059
- switch v := v.(*Agent); i {
1152
+ switch v := v.(*Action); i {
1060
1153
  case 0:
1061
1154
  return &v.state
1062
1155
  case 1:
@@ -1068,6 +1161,18 @@ func file_scanningconfig_proto_init() {
1068
1161
  }
1069
1162
  }
1070
1163
  file_scanningconfig_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
1164
+ switch v := v.(*Agent); i {
1165
+ case 0:
1166
+ return &v.state
1167
+ case 1:
1168
+ return &v.sizeCache
1169
+ case 2:
1170
+ return &v.unknownFields
1171
+ default:
1172
+ return nil
1173
+ }
1174
+ }
1175
+ file_scanningconfig_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
1071
1176
  switch v := v.(*Credential); i {
1072
1177
  case 0:
1073
1178
  return &v.state
@@ -1081,8 +1186,8 @@ func file_scanningconfig_proto_init() {
1081
1186
  }
1082
1187
  }
1083
1188
  file_scanningconfig_proto_msgTypes[2].OneofWrappers = []interface{}{}
1084
- file_scanningconfig_proto_msgTypes[5].OneofWrappers = []interface{}{}
1085
- file_scanningconfig_proto_msgTypes[7].OneofWrappers = []interface{}{
1189
+ file_scanningconfig_proto_msgTypes[6].OneofWrappers = []interface{}{}
1190
+ file_scanningconfig_proto_msgTypes[8].OneofWrappers = []interface{}{
1086
1191
  (*Action_Agent)(nil),
1087
1192
  }
1088
1193
  type x struct{}
@@ -1091,7 +1196,7 @@ func file_scanningconfig_proto_init() {
1091
1196
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1092
1197
  RawDescriptor: file_scanningconfig_proto_rawDesc,
1093
1198
  NumEnums: 4,
1094
- NumMessages: 10,
1199
+ NumMessages: 11,
1095
1200
  NumExtensions: 0,
1096
1201
  NumServices: 1,
1097
1202
  },