@lansweeper/scanningconfig-grpc 0.2.7 → 0.3.0

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.
@@ -415,6 +415,64 @@ func (Credential_CredentialType) EnumDescriptor() ([]byte, []int) {
415
415
  return file_scanningconfig_proto_rawDescGZIP(), []int{17, 0}
416
416
  }
417
417
 
418
+ type LogSettings_LogLevel int32
419
+
420
+ const (
421
+ LogSettings_VERBOSE LogSettings_LogLevel = 0
422
+ LogSettings_DEBUG LogSettings_LogLevel = 1
423
+ LogSettings_INFORMATION LogSettings_LogLevel = 2
424
+ LogSettings_WARNING LogSettings_LogLevel = 3
425
+ LogSettings_ERROR LogSettings_LogLevel = 4
426
+ LogSettings_FATAL LogSettings_LogLevel = 5
427
+ )
428
+
429
+ // Enum value maps for LogSettings_LogLevel.
430
+ var (
431
+ LogSettings_LogLevel_name = map[int32]string{
432
+ 0: "VERBOSE",
433
+ 1: "DEBUG",
434
+ 2: "INFORMATION",
435
+ 3: "WARNING",
436
+ 4: "ERROR",
437
+ 5: "FATAL",
438
+ }
439
+ LogSettings_LogLevel_value = map[string]int32{
440
+ "VERBOSE": 0,
441
+ "DEBUG": 1,
442
+ "INFORMATION": 2,
443
+ "WARNING": 3,
444
+ "ERROR": 4,
445
+ "FATAL": 5,
446
+ }
447
+ )
448
+
449
+ func (x LogSettings_LogLevel) Enum() *LogSettings_LogLevel {
450
+ p := new(LogSettings_LogLevel)
451
+ *p = x
452
+ return p
453
+ }
454
+
455
+ func (x LogSettings_LogLevel) String() string {
456
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
457
+ }
458
+
459
+ func (LogSettings_LogLevel) Descriptor() protoreflect.EnumDescriptor {
460
+ return file_scanningconfig_proto_enumTypes[8].Descriptor()
461
+ }
462
+
463
+ func (LogSettings_LogLevel) Type() protoreflect.EnumType {
464
+ return &file_scanningconfig_proto_enumTypes[8]
465
+ }
466
+
467
+ func (x LogSettings_LogLevel) Number() protoreflect.EnumNumber {
468
+ return protoreflect.EnumNumber(x)
469
+ }
470
+
471
+ // Deprecated: Use LogSettings_LogLevel.Descriptor instead.
472
+ func (LogSettings_LogLevel) EnumDescriptor() ([]byte, []int) {
473
+ return file_scanningconfig_proto_rawDescGZIP(), []int{41, 0}
474
+ }
475
+
418
476
  type GetConfigurationsBySourceRequest struct {
419
477
  state protoimpl.MessageState
420
478
  sizeCache protoimpl.SizeCache
@@ -522,11 +580,13 @@ type Component struct {
522
580
  sizeCache protoimpl.SizeCache
523
581
  unknownFields protoimpl.UnknownFields
524
582
 
525
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
526
- Type Component_ComponentType `protobuf:"varint,2,opt,name=type,proto3,enum=lansweeper.scanningconfig.v1.Component_ComponentType" json:"type,omitempty"`
527
- Actions []*Action `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"`
528
- OpConfig *OperationalConfig `protobuf:"bytes,4,opt,name=op_config,json=opConfig,proto3,oneof" json:"op_config,omitempty"`
529
- Enabled bool `protobuf:"varint,5,opt,name=enabled,proto3" json:"enabled,omitempty"`
583
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
584
+ Type Component_ComponentType `protobuf:"varint,2,opt,name=type,proto3,enum=lansweeper.scanningconfig.v1.Component_ComponentType" json:"type,omitempty"`
585
+ Actions []*Action `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"`
586
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
587
+ OpConfig *OperationalConfig `protobuf:"bytes,4,opt,name=op_config,json=opConfig,proto3,oneof" json:"op_config,omitempty"`
588
+ Enabled bool `protobuf:"varint,5,opt,name=enabled,proto3" json:"enabled,omitempty"`
589
+ AppConfig *ApplicationConfig `protobuf:"bytes,6,opt,name=app_config,json=appConfig,proto3,oneof" json:"app_config,omitempty"`
530
590
  }
531
591
 
532
592
  func (x *Component) Reset() {
@@ -582,6 +642,7 @@ func (x *Component) GetActions() []*Action {
582
642
  return nil
583
643
  }
584
644
 
645
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
585
646
  func (x *Component) GetOpConfig() *OperationalConfig {
586
647
  if x != nil {
587
648
  return x.OpConfig
@@ -596,6 +657,13 @@ func (x *Component) GetEnabled() bool {
596
657
  return false
597
658
  }
598
659
 
660
+ func (x *Component) GetAppConfig() *ApplicationConfig {
661
+ if x != nil {
662
+ return x.AppConfig
663
+ }
664
+ return nil
665
+ }
666
+
599
667
  // Deprecated: Marked as deprecated in scanningconfig.proto.
600
668
  type AssetRadar struct {
601
669
  state protoimpl.MessageState
@@ -652,6 +720,7 @@ func (x *AssetRadar) GetExcludedInterfaces() []string {
652
720
  return nil
653
721
  }
654
722
 
723
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
655
724
  type NetworkVisibility struct {
656
725
  state protoimpl.MessageState
657
726
  sizeCache protoimpl.SizeCache
@@ -707,6 +776,7 @@ func (x *NetworkVisibility) GetExcludedInterfaces() []string {
707
776
  return nil
708
777
  }
709
778
 
779
+ // Deprecated: Marked as deprecated in scanningconfig.proto.
710
780
  type AutoUpdate struct {
711
781
  state protoimpl.MessageState
712
782
  sizeCache protoimpl.SizeCache
@@ -897,6 +967,7 @@ type Action struct {
897
967
  Definition isAction_Definition `protobuf_oneof:"definition"`
898
968
  ActionDefinition *ActionDefinition `protobuf:"bytes,6,opt,name=action_definition,json=actionDefinition,proto3" json:"action_definition,omitempty"`
899
969
  Id string `protobuf:"bytes,7,opt,name=id,proto3" json:"id,omitempty"`
970
+ Name string `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
900
971
  }
901
972
 
902
973
  func (x *Action) Reset() {
@@ -989,6 +1060,13 @@ func (x *Action) GetId() string {
989
1060
  return ""
990
1061
  }
991
1062
 
1063
+ func (x *Action) GetName() string {
1064
+ if x != nil {
1065
+ return x.Name
1066
+ }
1067
+ return ""
1068
+ }
1069
+
992
1070
  type isAction_Definition interface {
993
1071
  isAction_Definition()
994
1072
  }
@@ -1634,366 +1712,2272 @@ func (x *Credential) GetOrder() int32 {
1634
1712
  return 0
1635
1713
  }
1636
1714
 
1637
- var File_scanningconfig_proto protoreflect.FileDescriptor
1715
+ type ApplicationConfig struct {
1716
+ state protoimpl.MessageState
1717
+ sizeCache protoimpl.SizeCache
1718
+ unknownFields protoimpl.UnknownFields
1638
1719
 
1639
- var file_scanningconfig_proto_rawDesc = []byte{
1640
- 0x0a, 0x14, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1641
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
1642
- 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
1643
- 0x67, 0x2e, 0x76, 0x31, 0x22, 0x58, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
1644
- 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63,
1645
- 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x6f, 0x75, 0x72,
1646
- 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x6f, 0x75,
1647
- 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64,
1648
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x66,
1649
- 0x0a, 0x21, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
1650
- 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
1651
- 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x01,
1652
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
1653
- 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1654
- 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63,
1655
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xf8, 0x02, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x70, 0x6f,
1656
- 0x6e, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
1657
- 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
1658
- 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
1659
- 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
1660
- 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6d, 0x70,
1661
- 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12,
1662
- 0x3e, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
1663
- 0x32, 0x24, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
1664
- 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
1665
- 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
1666
- 0x51, 0x0a, 0x09, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x04, 0x20, 0x01,
1667
- 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
1668
- 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
1669
- 0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e,
1670
- 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88,
1671
- 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x05, 0x20,
1672
- 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x55, 0x0a, 0x0d,
1673
- 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
1674
- 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09,
1675
- 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x5f,
1676
- 0x53, 0x45, 0x4e, 0x53, 0x4f, 0x52, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x54, 0x5f, 0x48,
1677
- 0x55, 0x42, 0x10, 0x03, 0x12, 0x0d, 0x0a, 0x09, 0x4f, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x4f,
1678
- 0x52, 0x10, 0x04, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
1679
- 0x67, 0x22, 0x5b, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x12,
1680
- 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
1681
- 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x13, 0x65, 0x78, 0x63,
1682
- 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73,
1683
- 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64,
1684
- 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22, 0x5e,
1685
- 0x0a, 0x11, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
1686
- 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01,
1687
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a,
1688
- 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
1689
- 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c,
1690
- 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22, 0x42,
1691
- 0x0a, 0x0a, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07,
1692
- 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65,
1693
- 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75,
1694
- 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75,
1695
- 0x6c, 0x65, 0x22, 0x8f, 0x03, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
1696
- 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x5f, 0x0a, 0x12, 0x61, 0x73, 0x73, 0x65,
1697
- 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01,
1698
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
1699
- 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1700
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x42, 0x02,
1701
- 0x18, 0x01, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72,
1702
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x12, 0x61, 0x75, 0x74,
1703
- 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18,
1704
- 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
1705
- 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
1706
- 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x48,
1707
- 0x01, 0x52, 0x10, 0x61, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e,
1708
- 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x19, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
1709
- 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f, 0x6e,
1710
- 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
1711
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
1712
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
1713
- 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x48, 0x02, 0x52, 0x17, 0x6e, 0x65,
1714
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43,
1715
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x73, 0x73,
1716
- 0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42,
1717
- 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
1718
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
1719
- 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f,
1720
- 0x6e, 0x66, 0x69, 0x67, 0x22, 0x3a, 0x0a, 0x07, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12,
1721
- 0x1b, 0x0a, 0x09, 0x63, 0x72, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x72, 0x18, 0x01, 0x20, 0x01,
1722
- 0x28, 0x09, 0x52, 0x08, 0x63, 0x72, 0x6f, 0x6e, 0x45, 0x78, 0x70, 0x72, 0x12, 0x12, 0x0a, 0x04,
1723
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
1724
- 0x22, 0xab, 0x04, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x08, 0x74,
1725
- 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e,
1726
- 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
1727
- 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x69,
1728
- 0x67, 0x67, 0x65, 0x72, 0x52, 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x12, 0x50,
1729
- 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
1730
- 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
1731
- 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
1732
- 0x76, 0x31, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
1733
- 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
1734
- 0x12, 0x4a, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18,
1735
- 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
1736
- 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
1737
- 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52,
1738
- 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3f, 0x0a, 0x05,
1739
- 0x61, 0x67, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61,
1740
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
1741
- 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74,
1742
- 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4b, 0x0a,
1743
- 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
1744
- 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
1745
- 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
1746
- 0x41, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52,
1747
- 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x12, 0x5b, 0x0a, 0x11, 0x61, 0x63,
1748
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
1749
- 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
1750
- 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
1751
- 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x69, 0x6e,
1752
- 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66,
1753
- 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x07, 0x20,
1754
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x37, 0x0a, 0x0a, 0x41, 0x63, 0x74, 0x69, 0x6f,
1755
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
1756
- 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10,
1757
- 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x4c, 0x45, 0x53, 0x53, 0x10, 0x02,
1758
- 0x42, 0x0c, 0x0a, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x25,
1759
- 0x0a, 0x09, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x74,
1760
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x61,
1761
- 0x72, 0x67, 0x65, 0x74, 0x73, 0x22, 0xba, 0x02, 0x0a, 0x10, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
1762
- 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x0a, 0x73, 0x63,
1763
- 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38,
1764
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
1765
- 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x63,
1766
- 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53,
1767
- 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x48, 0x00, 0x52, 0x09, 0x73, 0x63, 0x61, 0x6e,
1768
- 0x46, 0x6f, 0x63, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x61, 0x72, 0x67,
1769
- 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x07, 0x74,
1770
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73,
1771
- 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x63, 0x6c,
1772
- 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4b, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
1773
- 0x73, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c,
1774
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
1775
- 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x72, 0x67,
1776
- 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44,
1777
- 0x61, 0x74, 0x61, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73,
1778
- 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53, 0x45,
1779
- 0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52,
1780
- 0x59, 0x10, 0x02, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
1781
- 0x75, 0x73, 0x22, 0x97, 0x03, 0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x61, 0x74,
1782
- 0x61, 0x12, 0x47, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
1783
- 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
1784
- 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54,
1785
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
1786
- 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x4c, 0x0a, 0x0c, 0x69, 0x70,
1787
- 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
1788
- 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
1789
- 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
1790
- 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x0a, 0x69, 0x70,
1791
- 0x53, 0x63, 0x61, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x3f, 0x0a, 0x07, 0x61, 0x64, 0x5f, 0x64,
1792
- 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
1793
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
1794
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x48,
1795
- 0x00, 0x52, 0x06, 0x61, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x06, 0x74, 0x61, 0x72,
1796
- 0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52,
1797
- 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x45, 0x0a, 0x09, 0x73, 0x63, 0x63, 0x6d, 0x5f,
1798
- 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e,
1799
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
1800
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x43, 0x43, 0x4d, 0x44, 0x61,
1801
- 0x74, 0x61, 0x48, 0x00, 0x52, 0x08, 0x73, 0x63, 0x63, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x22, 0x44,
1802
- 0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13,
1803
- 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x54,
1804
- 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x50, 0x5f, 0x53, 0x43, 0x41, 0x4e,
1805
- 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x53, 0x43, 0x43, 0x4d, 0x10, 0x02, 0x12, 0x06, 0x0a, 0x02,
1806
- 0x41, 0x44, 0x10, 0x03, 0x42, 0x06, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x22, 0x0a, 0x08,
1807
- 0x53, 0x43, 0x43, 0x4d, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67,
1808
- 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
1809
- 0x22, 0xae, 0x01, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12,
1810
- 0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e,
1811
- 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
1812
- 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x50, 0x53,
1813
- 0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
1814
- 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
1815
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x41, 0x0a, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20,
1816
- 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
1817
- 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
1818
- 0x76, 0x31, 0x2e, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x50, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52,
1819
- 0x04, 0x70, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x69, 0x6e,
1820
- 0x67, 0x22, 0x79, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x50, 0x69, 0x6e, 0x67, 0x12,
1821
- 0x19, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x5f, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
1822
- 0x08, 0x52, 0x07, 0x75, 0x73, 0x65, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x69,
1823
- 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
1824
- 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x2d, 0x0a,
1825
- 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6e, 0x6f, 0x5f, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x5f,
1826
- 0x73, 0x63, 0x61, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70,
1827
- 0x4e, 0x6f, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e, 0x22, 0xd7, 0x02, 0x0a,
1828
- 0x06, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
1829
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61,
1830
- 0x64, 0x73, 0x69, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
1831
- 0x52, 0x0a, 0x61, 0x64, 0x73, 0x69, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06,
1832
- 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f,
1833
- 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x75, 0x74, 0x65, 0x72,
1834
- 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x63, 0x6f, 0x6d,
1835
- 0x70, 0x75, 0x74, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x26, 0x0a, 0x0f, 0x75, 0x73, 0x65,
1836
- 0x72, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x05, 0x20, 0x01,
1837
- 0x28, 0x08, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x63, 0x61,
1838
- 0x6e, 0x12, 0x4a, 0x0a, 0x09, 0x6c, 0x64, 0x61, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06,
1839
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
1840
- 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1841
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x44, 0x41, 0x50, 0x54,
1842
- 0x79, 0x70, 0x65, 0x52, 0x08, 0x6c, 0x64, 0x61, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a,
1843
- 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72,
1844
- 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x64, 0x73, 0x69, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x08,
1845
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x64, 0x73, 0x69, 0x50, 0x61, 0x74, 0x68, 0x22, 0x36,
1846
- 0x0a, 0x08, 0x4c, 0x44, 0x41, 0x50, 0x54, 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x4e,
1847
- 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x4c, 0x44, 0x41, 0x50, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10,
1848
- 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x44, 0x41, 0x50, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x4c,
1849
- 0x44, 0x41, 0x50, 0x53, 0x10, 0x02, 0x22, 0x85, 0x01, 0x0a, 0x05, 0x41, 0x67, 0x65, 0x6e, 0x74,
1850
- 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x18, 0x01,
1851
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
1852
- 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1853
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x2e, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f,
1854
- 0x63, 0x75, 0x73, 0x52, 0x09, 0x73, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x2e,
1855
- 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x41,
1856
- 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53, 0x45, 0x52, 0x53, 0x10, 0x01, 0x12,
1857
- 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52, 0x59, 0x10, 0x02, 0x22, 0xa6,
1858
- 0x01, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x12, 0x4f, 0x0a,
1859
- 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x6c, 0x61,
1860
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
1861
- 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65,
1862
- 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c,
1863
- 0x54, 0x79, 0x70, 0x65, 0x42, 0x02, 0x18, 0x01, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x0e,
1864
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
1865
- 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6f,
1866
- 0x72, 0x64, 0x65, 0x72, 0x22, 0x21, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69,
1867
- 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
1868
- 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x2a, 0x3b, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61,
1869
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e,
1870
- 0x5f, 0x49, 0x50, 0x5f, 0x53, 0x43, 0x41, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12,
1871
- 0x09, 0x0a, 0x05, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x4f,
1872
- 0x53, 0x54, 0x10, 0x02, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
1873
- 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e,
1874
- 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,
1875
- 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c,
1876
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
1877
- 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43,
1878
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53,
1879
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c,
1880
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
1881
- 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43,
1882
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53,
1883
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42,
1884
- 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67,
1885
- 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
1720
+ Logging *LogSettings `protobuf:"bytes,1,opt,name=logging,proto3,oneof" json:"logging,omitempty"`
1721
+ Hub *HubSettings `protobuf:"bytes,2,opt,name=hub,proto3,oneof" json:"hub,omitempty"`
1722
+ Update *UpdateSettings `protobuf:"bytes,3,opt,name=update,proto3,oneof" json:"update,omitempty"`
1723
+ ItSensor *ItSensorSettings `protobuf:"bytes,4,opt,name=it_sensor,json=itSensor,proto3,oneof" json:"it_sensor,omitempty"`
1724
+ OtSensor *OtSensorSettings `protobuf:"bytes,5,opt,name=ot_sensor,json=otSensor,proto3,oneof" json:"ot_sensor,omitempty"`
1886
1725
  }
1887
1726
 
1888
- var (
1889
- file_scanningconfig_proto_rawDescOnce sync.Once
1890
- file_scanningconfig_proto_rawDescData = file_scanningconfig_proto_rawDesc
1891
- )
1727
+ func (x *ApplicationConfig) Reset() {
1728
+ *x = ApplicationConfig{}
1729
+ if protoimpl.UnsafeEnabled {
1730
+ mi := &file_scanningconfig_proto_msgTypes[18]
1731
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1732
+ ms.StoreMessageInfo(mi)
1733
+ }
1734
+ }
1892
1735
 
1893
- func file_scanningconfig_proto_rawDescGZIP() []byte {
1894
- file_scanningconfig_proto_rawDescOnce.Do(func() {
1895
- file_scanningconfig_proto_rawDescData = protoimpl.X.CompressGZIP(file_scanningconfig_proto_rawDescData)
1896
- })
1897
- return file_scanningconfig_proto_rawDescData
1736
+ func (x *ApplicationConfig) String() string {
1737
+ return protoimpl.X.MessageStringOf(x)
1898
1738
  }
1899
1739
 
1900
- var file_scanningconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 8)
1901
- var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 18)
1902
- var file_scanningconfig_proto_goTypes = []any{
1903
- (IPScanType)(0), // 0: lansweeper.scanningconfig.v1.IPScanType
1904
- (Component_ComponentType)(0), // 1: lansweeper.scanningconfig.v1.Component.ComponentType
1905
- (Action_ActionType)(0), // 2: lansweeper.scanningconfig.v1.Action.ActionType
1906
- (ActionDefinition_ScanFocus)(0), // 3: lansweeper.scanningconfig.v1.ActionDefinition.ScanFocus
1907
- (TargetData_TargetType)(0), // 4: lansweeper.scanningconfig.v1.TargetData.TargetType
1908
- (ADData_LDAPType)(0), // 5: lansweeper.scanningconfig.v1.ADData.LDAPType
1909
- (Agent_ScanFocus)(0), // 6: lansweeper.scanningconfig.v1.Agent.ScanFocus
1910
- (Credential_CredentialType)(0), // 7: lansweeper.scanningconfig.v1.Credential.CredentialType
1911
- (*GetConfigurationsBySourceRequest)(nil), // 8: lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
1912
- (*GetConfigurationsBySourceResponse)(nil), // 9: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
1913
- (*Component)(nil), // 10: lansweeper.scanningconfig.v1.Component
1914
- (*AssetRadar)(nil), // 11: lansweeper.scanningconfig.v1.AssetRadar
1915
- (*NetworkVisibility)(nil), // 12: lansweeper.scanningconfig.v1.NetworkVisibility
1916
- (*AutoUpdate)(nil), // 13: lansweeper.scanningconfig.v1.AutoUpdate
1917
- (*OperationalConfig)(nil), // 14: lansweeper.scanningconfig.v1.OperationalConfig
1918
- (*Trigger)(nil), // 15: lansweeper.scanningconfig.v1.Trigger
1919
- (*Action)(nil), // 16: lansweeper.scanningconfig.v1.Action
1920
- (*Agentless)(nil), // 17: lansweeper.scanningconfig.v1.Agentless
1921
- (*ActionDefinition)(nil), // 18: lansweeper.scanningconfig.v1.ActionDefinition
1922
- (*TargetData)(nil), // 19: lansweeper.scanningconfig.v1.TargetData
1923
- (*SCCMData)(nil), // 20: lansweeper.scanningconfig.v1.SCCMData
1924
- (*IPScanData)(nil), // 21: lansweeper.scanningconfig.v1.IPScanData
1925
- (*IPScanPing)(nil), // 22: lansweeper.scanningconfig.v1.IPScanPing
1926
- (*ADData)(nil), // 23: lansweeper.scanningconfig.v1.ADData
1927
- (*Agent)(nil), // 24: lansweeper.scanningconfig.v1.Agent
1928
- (*Credential)(nil), // 25: lansweeper.scanningconfig.v1.Credential
1740
+ func (*ApplicationConfig) ProtoMessage() {}
1741
+
1742
+ func (x *ApplicationConfig) ProtoReflect() protoreflect.Message {
1743
+ mi := &file_scanningconfig_proto_msgTypes[18]
1744
+ if protoimpl.UnsafeEnabled && x != nil {
1745
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1746
+ if ms.LoadMessageInfo() == nil {
1747
+ ms.StoreMessageInfo(mi)
1748
+ }
1749
+ return ms
1750
+ }
1751
+ return mi.MessageOf(x)
1929
1752
  }
1930
- var file_scanningconfig_proto_depIdxs = []int32{
1931
- 10, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
1932
- 1, // 1: lansweeper.scanningconfig.v1.Component.type:type_name -> lansweeper.scanningconfig.v1.Component.ComponentType
1933
- 16, // 2: lansweeper.scanningconfig.v1.Component.actions:type_name -> lansweeper.scanningconfig.v1.Action
1934
- 14, // 3: lansweeper.scanningconfig.v1.Component.op_config:type_name -> lansweeper.scanningconfig.v1.OperationalConfig
1935
- 11, // 4: lansweeper.scanningconfig.v1.OperationalConfig.asset_radar_config:type_name -> lansweeper.scanningconfig.v1.AssetRadar
1936
- 13, // 5: lansweeper.scanningconfig.v1.OperationalConfig.auto_update_config:type_name -> lansweeper.scanningconfig.v1.AutoUpdate
1937
- 12, // 6: lansweeper.scanningconfig.v1.OperationalConfig.network_visibility_config:type_name -> lansweeper.scanningconfig.v1.NetworkVisibility
1938
- 15, // 7: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
1939
- 2, // 8: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
1940
- 25, // 9: lansweeper.scanningconfig.v1.Action.credentials:type_name -> lansweeper.scanningconfig.v1.Credential
1941
- 24, // 10: lansweeper.scanningconfig.v1.Action.agent:type_name -> lansweeper.scanningconfig.v1.Agent
1942
- 17, // 11: lansweeper.scanningconfig.v1.Action.agentless:type_name -> lansweeper.scanningconfig.v1.Agentless
1943
- 18, // 12: lansweeper.scanningconfig.v1.Action.action_definition:type_name -> lansweeper.scanningconfig.v1.ActionDefinition
1944
- 3, // 13: lansweeper.scanningconfig.v1.ActionDefinition.scan_focus:type_name -> lansweeper.scanningconfig.v1.ActionDefinition.ScanFocus
1945
- 19, // 14: lansweeper.scanningconfig.v1.ActionDefinition.targets_data:type_name -> lansweeper.scanningconfig.v1.TargetData
1946
- 4, // 15: lansweeper.scanningconfig.v1.TargetData.type:type_name -> lansweeper.scanningconfig.v1.TargetData.TargetType
1947
- 21, // 16: lansweeper.scanningconfig.v1.TargetData.ip_scan_data:type_name -> lansweeper.scanningconfig.v1.IPScanData
1948
- 23, // 17: lansweeper.scanningconfig.v1.TargetData.ad_data:type_name -> lansweeper.scanningconfig.v1.ADData
1949
- 20, // 18: lansweeper.scanningconfig.v1.TargetData.sccm_data:type_name -> lansweeper.scanningconfig.v1.SCCMData
1950
- 0, // 19: lansweeper.scanningconfig.v1.IPScanData.type:type_name -> lansweeper.scanningconfig.v1.IPScanType
1951
- 22, // 20: lansweeper.scanningconfig.v1.IPScanData.ping:type_name -> lansweeper.scanningconfig.v1.IPScanPing
1952
- 5, // 21: lansweeper.scanningconfig.v1.ADData.ldap_type:type_name -> lansweeper.scanningconfig.v1.ADData.LDAPType
1953
- 6, // 22: lansweeper.scanningconfig.v1.Agent.scan_focus:type_name -> lansweeper.scanningconfig.v1.Agent.ScanFocus
1954
- 7, // 23: lansweeper.scanningconfig.v1.Credential.type:type_name -> lansweeper.scanningconfig.v1.Credential.CredentialType
1955
- 8, // 24: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
1956
- 9, // 25: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
1957
- 25, // [25:26] is the sub-list for method output_type
1958
- 24, // [24:25] is the sub-list for method input_type
1959
- 24, // [24:24] is the sub-list for extension type_name
1960
- 24, // [24:24] is the sub-list for extension extendee
1961
- 0, // [0:24] is the sub-list for field type_name
1753
+
1754
+ // Deprecated: Use ApplicationConfig.ProtoReflect.Descriptor instead.
1755
+ func (*ApplicationConfig) Descriptor() ([]byte, []int) {
1756
+ return file_scanningconfig_proto_rawDescGZIP(), []int{18}
1962
1757
  }
1963
1758
 
1964
- func init() { file_scanningconfig_proto_init() }
1965
- func file_scanningconfig_proto_init() {
1966
- if File_scanningconfig_proto != nil {
1967
- return
1759
+ func (x *ApplicationConfig) GetLogging() *LogSettings {
1760
+ if x != nil {
1761
+ return x.Logging
1968
1762
  }
1969
- if !protoimpl.UnsafeEnabled {
1970
- file_scanningconfig_proto_msgTypes[0].Exporter = func(v any, i int) any {
1971
- switch v := v.(*GetConfigurationsBySourceRequest); i {
1972
- case 0:
1973
- return &v.state
1974
- case 1:
1975
- return &v.sizeCache
1976
- case 2:
1977
- return &v.unknownFields
1978
- default:
1979
- return nil
1980
- }
1981
- }
1982
- file_scanningconfig_proto_msgTypes[1].Exporter = func(v any, i int) any {
1983
- switch v := v.(*GetConfigurationsBySourceResponse); i {
1984
- case 0:
1985
- return &v.state
1986
- case 1:
1987
- return &v.sizeCache
1988
- case 2:
1989
- return &v.unknownFields
1990
- default:
1991
- return nil
1992
- }
1763
+ return nil
1764
+ }
1765
+
1766
+ func (x *ApplicationConfig) GetHub() *HubSettings {
1767
+ if x != nil {
1768
+ return x.Hub
1769
+ }
1770
+ return nil
1771
+ }
1772
+
1773
+ func (x *ApplicationConfig) GetUpdate() *UpdateSettings {
1774
+ if x != nil {
1775
+ return x.Update
1776
+ }
1777
+ return nil
1778
+ }
1779
+
1780
+ func (x *ApplicationConfig) GetItSensor() *ItSensorSettings {
1781
+ if x != nil {
1782
+ return x.ItSensor
1783
+ }
1784
+ return nil
1785
+ }
1786
+
1787
+ func (x *ApplicationConfig) GetOtSensor() *OtSensorSettings {
1788
+ if x != nil {
1789
+ return x.OtSensor
1790
+ }
1791
+ return nil
1792
+ }
1793
+
1794
+ type HubSettings struct {
1795
+ state protoimpl.MessageState
1796
+ sizeCache protoimpl.SizeCache
1797
+ unknownFields protoimpl.UnknownFields
1798
+
1799
+ NetworkConfiguration *NetworkConfigurationSettings `protobuf:"bytes,1,opt,name=network_configuration,json=networkConfiguration,proto3,oneof" json:"network_configuration,omitempty"`
1800
+ Maintenance *MaintenanceSettings `protobuf:"bytes,2,opt,name=maintenance,proto3,oneof" json:"maintenance,omitempty"`
1801
+ Notifications *NotificationSettings `protobuf:"bytes,3,opt,name=notifications,proto3,oneof" json:"notifications,omitempty"`
1802
+ FeatureFlags *FeatureFlagSettings `protobuf:"bytes,4,opt,name=feature_flags,json=featureFlags,proto3,oneof" json:"feature_flags,omitempty"`
1803
+ ScanConfiguration *ScanConfigurationSettings `protobuf:"bytes,5,opt,name=scan_configuration,json=scanConfiguration,proto3,oneof" json:"scan_configuration,omitempty"`
1804
+ Import *ImportSettings `protobuf:"bytes,6,opt,name=import,proto3,oneof" json:"import,omitempty"`
1805
+ }
1806
+
1807
+ func (x *HubSettings) Reset() {
1808
+ *x = HubSettings{}
1809
+ if protoimpl.UnsafeEnabled {
1810
+ mi := &file_scanningconfig_proto_msgTypes[19]
1811
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1812
+ ms.StoreMessageInfo(mi)
1813
+ }
1814
+ }
1815
+
1816
+ func (x *HubSettings) String() string {
1817
+ return protoimpl.X.MessageStringOf(x)
1818
+ }
1819
+
1820
+ func (*HubSettings) ProtoMessage() {}
1821
+
1822
+ func (x *HubSettings) ProtoReflect() protoreflect.Message {
1823
+ mi := &file_scanningconfig_proto_msgTypes[19]
1824
+ if protoimpl.UnsafeEnabled && x != nil {
1825
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1826
+ if ms.LoadMessageInfo() == nil {
1827
+ ms.StoreMessageInfo(mi)
1993
1828
  }
1994
- file_scanningconfig_proto_msgTypes[2].Exporter = func(v any, i int) any {
1995
- switch v := v.(*Component); i {
1996
- case 0:
1829
+ return ms
1830
+ }
1831
+ return mi.MessageOf(x)
1832
+ }
1833
+
1834
+ // Deprecated: Use HubSettings.ProtoReflect.Descriptor instead.
1835
+ func (*HubSettings) Descriptor() ([]byte, []int) {
1836
+ return file_scanningconfig_proto_rawDescGZIP(), []int{19}
1837
+ }
1838
+
1839
+ func (x *HubSettings) GetNetworkConfiguration() *NetworkConfigurationSettings {
1840
+ if x != nil {
1841
+ return x.NetworkConfiguration
1842
+ }
1843
+ return nil
1844
+ }
1845
+
1846
+ func (x *HubSettings) GetMaintenance() *MaintenanceSettings {
1847
+ if x != nil {
1848
+ return x.Maintenance
1849
+ }
1850
+ return nil
1851
+ }
1852
+
1853
+ func (x *HubSettings) GetNotifications() *NotificationSettings {
1854
+ if x != nil {
1855
+ return x.Notifications
1856
+ }
1857
+ return nil
1858
+ }
1859
+
1860
+ func (x *HubSettings) GetFeatureFlags() *FeatureFlagSettings {
1861
+ if x != nil {
1862
+ return x.FeatureFlags
1863
+ }
1864
+ return nil
1865
+ }
1866
+
1867
+ func (x *HubSettings) GetScanConfiguration() *ScanConfigurationSettings {
1868
+ if x != nil {
1869
+ return x.ScanConfiguration
1870
+ }
1871
+ return nil
1872
+ }
1873
+
1874
+ func (x *HubSettings) GetImport() *ImportSettings {
1875
+ if x != nil {
1876
+ return x.Import
1877
+ }
1878
+ return nil
1879
+ }
1880
+
1881
+ type MaintenanceSettings struct {
1882
+ state protoimpl.MessageState
1883
+ sizeCache protoimpl.SizeCache
1884
+ unknownFields protoimpl.UnknownFields
1885
+
1886
+ MaintenanceWindow *string `protobuf:"bytes,1,opt,name=maintenance_window,json=maintenanceWindow,proto3,oneof" json:"maintenance_window,omitempty"` // cron expression
1887
+ RetentionPolicy *RetentionPolicySettings `protobuf:"bytes,2,opt,name=retention_policy,json=retentionPolicy,proto3,oneof" json:"retention_policy,omitempty"`
1888
+ }
1889
+
1890
+ func (x *MaintenanceSettings) Reset() {
1891
+ *x = MaintenanceSettings{}
1892
+ if protoimpl.UnsafeEnabled {
1893
+ mi := &file_scanningconfig_proto_msgTypes[20]
1894
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1895
+ ms.StoreMessageInfo(mi)
1896
+ }
1897
+ }
1898
+
1899
+ func (x *MaintenanceSettings) String() string {
1900
+ return protoimpl.X.MessageStringOf(x)
1901
+ }
1902
+
1903
+ func (*MaintenanceSettings) ProtoMessage() {}
1904
+
1905
+ func (x *MaintenanceSettings) ProtoReflect() protoreflect.Message {
1906
+ mi := &file_scanningconfig_proto_msgTypes[20]
1907
+ if protoimpl.UnsafeEnabled && x != nil {
1908
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1909
+ if ms.LoadMessageInfo() == nil {
1910
+ ms.StoreMessageInfo(mi)
1911
+ }
1912
+ return ms
1913
+ }
1914
+ return mi.MessageOf(x)
1915
+ }
1916
+
1917
+ // Deprecated: Use MaintenanceSettings.ProtoReflect.Descriptor instead.
1918
+ func (*MaintenanceSettings) Descriptor() ([]byte, []int) {
1919
+ return file_scanningconfig_proto_rawDescGZIP(), []int{20}
1920
+ }
1921
+
1922
+ func (x *MaintenanceSettings) GetMaintenanceWindow() string {
1923
+ if x != nil && x.MaintenanceWindow != nil {
1924
+ return *x.MaintenanceWindow
1925
+ }
1926
+ return ""
1927
+ }
1928
+
1929
+ func (x *MaintenanceSettings) GetRetentionPolicy() *RetentionPolicySettings {
1930
+ if x != nil {
1931
+ return x.RetentionPolicy
1932
+ }
1933
+ return nil
1934
+ }
1935
+
1936
+ type RetentionPolicySettings struct {
1937
+ state protoimpl.MessageState
1938
+ sizeCache protoimpl.SizeCache
1939
+ unknownFields protoimpl.UnknownFields
1940
+
1941
+ SyncedDataRetentionDays *int32 `protobuf:"varint,1,opt,name=synced_data_retention_days,json=syncedDataRetentionDays,proto3,oneof" json:"synced_data_retention_days,omitempty"` // default 30 days
1942
+ UnsyncedDataRetentionDays *int32 `protobuf:"varint,2,opt,name=unsynced_data_retention_days,json=unsyncedDataRetentionDays,proto3,oneof" json:"unsynced_data_retention_days,omitempty"` // default 365 days
1943
+ }
1944
+
1945
+ func (x *RetentionPolicySettings) Reset() {
1946
+ *x = RetentionPolicySettings{}
1947
+ if protoimpl.UnsafeEnabled {
1948
+ mi := &file_scanningconfig_proto_msgTypes[21]
1949
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1950
+ ms.StoreMessageInfo(mi)
1951
+ }
1952
+ }
1953
+
1954
+ func (x *RetentionPolicySettings) String() string {
1955
+ return protoimpl.X.MessageStringOf(x)
1956
+ }
1957
+
1958
+ func (*RetentionPolicySettings) ProtoMessage() {}
1959
+
1960
+ func (x *RetentionPolicySettings) ProtoReflect() protoreflect.Message {
1961
+ mi := &file_scanningconfig_proto_msgTypes[21]
1962
+ if protoimpl.UnsafeEnabled && x != nil {
1963
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1964
+ if ms.LoadMessageInfo() == nil {
1965
+ ms.StoreMessageInfo(mi)
1966
+ }
1967
+ return ms
1968
+ }
1969
+ return mi.MessageOf(x)
1970
+ }
1971
+
1972
+ // Deprecated: Use RetentionPolicySettings.ProtoReflect.Descriptor instead.
1973
+ func (*RetentionPolicySettings) Descriptor() ([]byte, []int) {
1974
+ return file_scanningconfig_proto_rawDescGZIP(), []int{21}
1975
+ }
1976
+
1977
+ func (x *RetentionPolicySettings) GetSyncedDataRetentionDays() int32 {
1978
+ if x != nil && x.SyncedDataRetentionDays != nil {
1979
+ return *x.SyncedDataRetentionDays
1980
+ }
1981
+ return 0
1982
+ }
1983
+
1984
+ func (x *RetentionPolicySettings) GetUnsyncedDataRetentionDays() int32 {
1985
+ if x != nil && x.UnsyncedDataRetentionDays != nil {
1986
+ return *x.UnsyncedDataRetentionDays
1987
+ }
1988
+ return 0
1989
+ }
1990
+
1991
+ type NotificationSettings struct {
1992
+ state protoimpl.MessageState
1993
+ sizeCache protoimpl.SizeCache
1994
+ unknownFields protoimpl.UnknownFields
1995
+
1996
+ SmartPollingEnabled *bool `protobuf:"varint,1,opt,name=smart_polling_enabled,json=smartPollingEnabled,proto3,oneof" json:"smart_polling_enabled,omitempty"`
1997
+ DefaultPollingIntervalSeconds *int32 `protobuf:"varint,2,opt,name=default_polling_interval_seconds,json=defaultPollingIntervalSeconds,proto3,oneof" json:"default_polling_interval_seconds,omitempty"` // will only be used if smart polling is disabled, default 60 seconds.
1998
+ SmartPollingIntervals map[int32]int32 `protobuf:"bytes,3,rep,name=smart_polling_intervals,json=smartPollingIntervals,proto3" json:"smart_polling_intervals,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // key is the polling zero based frequency, value is the polling interval in seconds. Will only be used if smart polling is enabled. I.e: [(0, 15), (1, 60), (2, 120)] = 15 seconds for the high frequency polling, 60 seconds for the normal frequency polling, 120 seconds for the low frequency polling
1999
+ }
2000
+
2001
+ func (x *NotificationSettings) Reset() {
2002
+ *x = NotificationSettings{}
2003
+ if protoimpl.UnsafeEnabled {
2004
+ mi := &file_scanningconfig_proto_msgTypes[22]
2005
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2006
+ ms.StoreMessageInfo(mi)
2007
+ }
2008
+ }
2009
+
2010
+ func (x *NotificationSettings) String() string {
2011
+ return protoimpl.X.MessageStringOf(x)
2012
+ }
2013
+
2014
+ func (*NotificationSettings) ProtoMessage() {}
2015
+
2016
+ func (x *NotificationSettings) ProtoReflect() protoreflect.Message {
2017
+ mi := &file_scanningconfig_proto_msgTypes[22]
2018
+ if protoimpl.UnsafeEnabled && x != nil {
2019
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2020
+ if ms.LoadMessageInfo() == nil {
2021
+ ms.StoreMessageInfo(mi)
2022
+ }
2023
+ return ms
2024
+ }
2025
+ return mi.MessageOf(x)
2026
+ }
2027
+
2028
+ // Deprecated: Use NotificationSettings.ProtoReflect.Descriptor instead.
2029
+ func (*NotificationSettings) Descriptor() ([]byte, []int) {
2030
+ return file_scanningconfig_proto_rawDescGZIP(), []int{22}
2031
+ }
2032
+
2033
+ func (x *NotificationSettings) GetSmartPollingEnabled() bool {
2034
+ if x != nil && x.SmartPollingEnabled != nil {
2035
+ return *x.SmartPollingEnabled
2036
+ }
2037
+ return false
2038
+ }
2039
+
2040
+ func (x *NotificationSettings) GetDefaultPollingIntervalSeconds() int32 {
2041
+ if x != nil && x.DefaultPollingIntervalSeconds != nil {
2042
+ return *x.DefaultPollingIntervalSeconds
2043
+ }
2044
+ return 0
2045
+ }
2046
+
2047
+ func (x *NotificationSettings) GetSmartPollingIntervals() map[int32]int32 {
2048
+ if x != nil {
2049
+ return x.SmartPollingIntervals
2050
+ }
2051
+ return nil
2052
+ }
2053
+
2054
+ type FeatureFlagSettings struct {
2055
+ state protoimpl.MessageState
2056
+ sizeCache protoimpl.SizeCache
2057
+ unknownFields protoimpl.UnknownFields
2058
+
2059
+ PollingIntervalMinutes *int32 `protobuf:"varint,1,opt,name=polling_interval_minutes,json=pollingIntervalMinutes,proto3,oneof" json:"polling_interval_minutes,omitempty"` // default 15 minutes
2060
+ }
2061
+
2062
+ func (x *FeatureFlagSettings) Reset() {
2063
+ *x = FeatureFlagSettings{}
2064
+ if protoimpl.UnsafeEnabled {
2065
+ mi := &file_scanningconfig_proto_msgTypes[23]
2066
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2067
+ ms.StoreMessageInfo(mi)
2068
+ }
2069
+ }
2070
+
2071
+ func (x *FeatureFlagSettings) String() string {
2072
+ return protoimpl.X.MessageStringOf(x)
2073
+ }
2074
+
2075
+ func (*FeatureFlagSettings) ProtoMessage() {}
2076
+
2077
+ func (x *FeatureFlagSettings) ProtoReflect() protoreflect.Message {
2078
+ mi := &file_scanningconfig_proto_msgTypes[23]
2079
+ if protoimpl.UnsafeEnabled && x != nil {
2080
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2081
+ if ms.LoadMessageInfo() == nil {
2082
+ ms.StoreMessageInfo(mi)
2083
+ }
2084
+ return ms
2085
+ }
2086
+ return mi.MessageOf(x)
2087
+ }
2088
+
2089
+ // Deprecated: Use FeatureFlagSettings.ProtoReflect.Descriptor instead.
2090
+ func (*FeatureFlagSettings) Descriptor() ([]byte, []int) {
2091
+ return file_scanningconfig_proto_rawDescGZIP(), []int{23}
2092
+ }
2093
+
2094
+ func (x *FeatureFlagSettings) GetPollingIntervalMinutes() int32 {
2095
+ if x != nil && x.PollingIntervalMinutes != nil {
2096
+ return *x.PollingIntervalMinutes
2097
+ }
2098
+ return 0
2099
+ }
2100
+
2101
+ type ScanConfigurationSettings struct {
2102
+ state protoimpl.MessageState
2103
+ sizeCache protoimpl.SizeCache
2104
+ unknownFields protoimpl.UnknownFields
2105
+
2106
+ PollingIntervalMinutes *int32 `protobuf:"varint,1,opt,name=polling_interval_minutes,json=pollingIntervalMinutes,proto3,oneof" json:"polling_interval_minutes,omitempty"` // default 240 minutes (4 hours)
2107
+ }
2108
+
2109
+ func (x *ScanConfigurationSettings) Reset() {
2110
+ *x = ScanConfigurationSettings{}
2111
+ if protoimpl.UnsafeEnabled {
2112
+ mi := &file_scanningconfig_proto_msgTypes[24]
2113
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2114
+ ms.StoreMessageInfo(mi)
2115
+ }
2116
+ }
2117
+
2118
+ func (x *ScanConfigurationSettings) String() string {
2119
+ return protoimpl.X.MessageStringOf(x)
2120
+ }
2121
+
2122
+ func (*ScanConfigurationSettings) ProtoMessage() {}
2123
+
2124
+ func (x *ScanConfigurationSettings) ProtoReflect() protoreflect.Message {
2125
+ mi := &file_scanningconfig_proto_msgTypes[24]
2126
+ if protoimpl.UnsafeEnabled && x != nil {
2127
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2128
+ if ms.LoadMessageInfo() == nil {
2129
+ ms.StoreMessageInfo(mi)
2130
+ }
2131
+ return ms
2132
+ }
2133
+ return mi.MessageOf(x)
2134
+ }
2135
+
2136
+ // Deprecated: Use ScanConfigurationSettings.ProtoReflect.Descriptor instead.
2137
+ func (*ScanConfigurationSettings) Descriptor() ([]byte, []int) {
2138
+ return file_scanningconfig_proto_rawDescGZIP(), []int{24}
2139
+ }
2140
+
2141
+ func (x *ScanConfigurationSettings) GetPollingIntervalMinutes() int32 {
2142
+ if x != nil && x.PollingIntervalMinutes != nil {
2143
+ return *x.PollingIntervalMinutes
2144
+ }
2145
+ return 0
2146
+ }
2147
+
2148
+ type ImportSettings struct {
2149
+ state protoimpl.MessageState
2150
+ sizeCache protoimpl.SizeCache
2151
+ unknownFields protoimpl.UnknownFields
2152
+
2153
+ Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
2154
+ PollingIntervalSeconds *int32 `protobuf:"varint,2,opt,name=polling_interval_seconds,json=pollingIntervalSeconds,proto3,oneof" json:"polling_interval_seconds,omitempty"`
2155
+ Folder *string `protobuf:"bytes,3,opt,name=folder,proto3,oneof" json:"folder,omitempty"`
2156
+ }
2157
+
2158
+ func (x *ImportSettings) Reset() {
2159
+ *x = ImportSettings{}
2160
+ if protoimpl.UnsafeEnabled {
2161
+ mi := &file_scanningconfig_proto_msgTypes[25]
2162
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2163
+ ms.StoreMessageInfo(mi)
2164
+ }
2165
+ }
2166
+
2167
+ func (x *ImportSettings) String() string {
2168
+ return protoimpl.X.MessageStringOf(x)
2169
+ }
2170
+
2171
+ func (*ImportSettings) ProtoMessage() {}
2172
+
2173
+ func (x *ImportSettings) ProtoReflect() protoreflect.Message {
2174
+ mi := &file_scanningconfig_proto_msgTypes[25]
2175
+ if protoimpl.UnsafeEnabled && x != nil {
2176
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2177
+ if ms.LoadMessageInfo() == nil {
2178
+ ms.StoreMessageInfo(mi)
2179
+ }
2180
+ return ms
2181
+ }
2182
+ return mi.MessageOf(x)
2183
+ }
2184
+
2185
+ // Deprecated: Use ImportSettings.ProtoReflect.Descriptor instead.
2186
+ func (*ImportSettings) Descriptor() ([]byte, []int) {
2187
+ return file_scanningconfig_proto_rawDescGZIP(), []int{25}
2188
+ }
2189
+
2190
+ func (x *ImportSettings) GetEnabled() bool {
2191
+ if x != nil {
2192
+ return x.Enabled
2193
+ }
2194
+ return false
2195
+ }
2196
+
2197
+ func (x *ImportSettings) GetPollingIntervalSeconds() int32 {
2198
+ if x != nil && x.PollingIntervalSeconds != nil {
2199
+ return *x.PollingIntervalSeconds
2200
+ }
2201
+ return 0
2202
+ }
2203
+
2204
+ func (x *ImportSettings) GetFolder() string {
2205
+ if x != nil && x.Folder != nil {
2206
+ return *x.Folder
2207
+ }
2208
+ return ""
2209
+ }
2210
+
2211
+ type NetworkConfigurationSettings struct {
2212
+ state protoimpl.MessageState
2213
+ sizeCache protoimpl.SizeCache
2214
+ unknownFields protoimpl.UnknownFields
2215
+
2216
+ Parallelism *ParallelismSettings `protobuf:"bytes,1,opt,name=parallelism,proto3,oneof" json:"parallelism,omitempty"`
2217
+ NetworkVisibility *NetworkVisibilitySettings `protobuf:"bytes,2,opt,name=network_visibility,json=networkVisibility,proto3,oneof" json:"network_visibility,omitempty"`
2218
+ PingBehavior *PingBehaviorSettings `protobuf:"bytes,3,opt,name=ping_behavior,json=pingBehavior,proto3,oneof" json:"ping_behavior,omitempty"`
2219
+ ProtocolConfiguration *ProtocolConfigurationSettings `protobuf:"bytes,4,opt,name=protocol_configuration,json=protocolConfiguration,proto3,oneof" json:"protocol_configuration,omitempty"`
2220
+ Exclusions *ExclusionSettings `protobuf:"bytes,5,opt,name=exclusions,proto3,oneof" json:"exclusions,omitempty"`
2221
+ }
2222
+
2223
+ func (x *NetworkConfigurationSettings) Reset() {
2224
+ *x = NetworkConfigurationSettings{}
2225
+ if protoimpl.UnsafeEnabled {
2226
+ mi := &file_scanningconfig_proto_msgTypes[26]
2227
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2228
+ ms.StoreMessageInfo(mi)
2229
+ }
2230
+ }
2231
+
2232
+ func (x *NetworkConfigurationSettings) String() string {
2233
+ return protoimpl.X.MessageStringOf(x)
2234
+ }
2235
+
2236
+ func (*NetworkConfigurationSettings) ProtoMessage() {}
2237
+
2238
+ func (x *NetworkConfigurationSettings) ProtoReflect() protoreflect.Message {
2239
+ mi := &file_scanningconfig_proto_msgTypes[26]
2240
+ if protoimpl.UnsafeEnabled && x != nil {
2241
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2242
+ if ms.LoadMessageInfo() == nil {
2243
+ ms.StoreMessageInfo(mi)
2244
+ }
2245
+ return ms
2246
+ }
2247
+ return mi.MessageOf(x)
2248
+ }
2249
+
2250
+ // Deprecated: Use NetworkConfigurationSettings.ProtoReflect.Descriptor instead.
2251
+ func (*NetworkConfigurationSettings) Descriptor() ([]byte, []int) {
2252
+ return file_scanningconfig_proto_rawDescGZIP(), []int{26}
2253
+ }
2254
+
2255
+ func (x *NetworkConfigurationSettings) GetParallelism() *ParallelismSettings {
2256
+ if x != nil {
2257
+ return x.Parallelism
2258
+ }
2259
+ return nil
2260
+ }
2261
+
2262
+ func (x *NetworkConfigurationSettings) GetNetworkVisibility() *NetworkVisibilitySettings {
2263
+ if x != nil {
2264
+ return x.NetworkVisibility
2265
+ }
2266
+ return nil
2267
+ }
2268
+
2269
+ func (x *NetworkConfigurationSettings) GetPingBehavior() *PingBehaviorSettings {
2270
+ if x != nil {
2271
+ return x.PingBehavior
2272
+ }
2273
+ return nil
2274
+ }
2275
+
2276
+ func (x *NetworkConfigurationSettings) GetProtocolConfiguration() *ProtocolConfigurationSettings {
2277
+ if x != nil {
2278
+ return x.ProtocolConfiguration
2279
+ }
2280
+ return nil
2281
+ }
2282
+
2283
+ func (x *NetworkConfigurationSettings) GetExclusions() *ExclusionSettings {
2284
+ if x != nil {
2285
+ return x.Exclusions
2286
+ }
2287
+ return nil
2288
+ }
2289
+
2290
+ type ParallelismSettings struct {
2291
+ state protoimpl.MessageState
2292
+ sizeCache protoimpl.SizeCache
2293
+ unknownFields protoimpl.UnknownFields
2294
+
2295
+ MaxParallelism *int32 `protobuf:"varint,1,opt,name=max_parallelism,json=maxParallelism,proto3,oneof" json:"max_parallelism,omitempty"` // default 100
2296
+ }
2297
+
2298
+ func (x *ParallelismSettings) Reset() {
2299
+ *x = ParallelismSettings{}
2300
+ if protoimpl.UnsafeEnabled {
2301
+ mi := &file_scanningconfig_proto_msgTypes[27]
2302
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2303
+ ms.StoreMessageInfo(mi)
2304
+ }
2305
+ }
2306
+
2307
+ func (x *ParallelismSettings) String() string {
2308
+ return protoimpl.X.MessageStringOf(x)
2309
+ }
2310
+
2311
+ func (*ParallelismSettings) ProtoMessage() {}
2312
+
2313
+ func (x *ParallelismSettings) ProtoReflect() protoreflect.Message {
2314
+ mi := &file_scanningconfig_proto_msgTypes[27]
2315
+ if protoimpl.UnsafeEnabled && x != nil {
2316
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2317
+ if ms.LoadMessageInfo() == nil {
2318
+ ms.StoreMessageInfo(mi)
2319
+ }
2320
+ return ms
2321
+ }
2322
+ return mi.MessageOf(x)
2323
+ }
2324
+
2325
+ // Deprecated: Use ParallelismSettings.ProtoReflect.Descriptor instead.
2326
+ func (*ParallelismSettings) Descriptor() ([]byte, []int) {
2327
+ return file_scanningconfig_proto_rawDescGZIP(), []int{27}
2328
+ }
2329
+
2330
+ func (x *ParallelismSettings) GetMaxParallelism() int32 {
2331
+ if x != nil && x.MaxParallelism != nil {
2332
+ return *x.MaxParallelism
2333
+ }
2334
+ return 0
2335
+ }
2336
+
2337
+ type ExclusionSettings struct {
2338
+ state protoimpl.MessageState
2339
+ sizeCache protoimpl.SizeCache
2340
+ unknownFields protoimpl.UnknownFields
2341
+
2342
+ ExcludedTargets []string `protobuf:"bytes,1,rep,name=excluded_targets,json=excludedTargets,proto3" json:"excluded_targets,omitempty"` // Ip addresses (including ranges and CIDR notations) or hostnames.
2343
+ ExcludedInterfaces []string `protobuf:"bytes,2,rep,name=excluded_interfaces,json=excludedInterfaces,proto3" json:"excluded_interfaces,omitempty"` // Network interface names.
2344
+ }
2345
+
2346
+ func (x *ExclusionSettings) Reset() {
2347
+ *x = ExclusionSettings{}
2348
+ if protoimpl.UnsafeEnabled {
2349
+ mi := &file_scanningconfig_proto_msgTypes[28]
2350
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2351
+ ms.StoreMessageInfo(mi)
2352
+ }
2353
+ }
2354
+
2355
+ func (x *ExclusionSettings) String() string {
2356
+ return protoimpl.X.MessageStringOf(x)
2357
+ }
2358
+
2359
+ func (*ExclusionSettings) ProtoMessage() {}
2360
+
2361
+ func (x *ExclusionSettings) ProtoReflect() protoreflect.Message {
2362
+ mi := &file_scanningconfig_proto_msgTypes[28]
2363
+ if protoimpl.UnsafeEnabled && x != nil {
2364
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2365
+ if ms.LoadMessageInfo() == nil {
2366
+ ms.StoreMessageInfo(mi)
2367
+ }
2368
+ return ms
2369
+ }
2370
+ return mi.MessageOf(x)
2371
+ }
2372
+
2373
+ // Deprecated: Use ExclusionSettings.ProtoReflect.Descriptor instead.
2374
+ func (*ExclusionSettings) Descriptor() ([]byte, []int) {
2375
+ return file_scanningconfig_proto_rawDescGZIP(), []int{28}
2376
+ }
2377
+
2378
+ func (x *ExclusionSettings) GetExcludedTargets() []string {
2379
+ if x != nil {
2380
+ return x.ExcludedTargets
2381
+ }
2382
+ return nil
2383
+ }
2384
+
2385
+ func (x *ExclusionSettings) GetExcludedInterfaces() []string {
2386
+ if x != nil {
2387
+ return x.ExcludedInterfaces
2388
+ }
2389
+ return nil
2390
+ }
2391
+
2392
+ type NetworkVisibilitySettings struct {
2393
+ state protoimpl.MessageState
2394
+ sizeCache protoimpl.SizeCache
2395
+ unknownFields protoimpl.UnknownFields
2396
+
2397
+ Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
2398
+ ActiveCdrEnabled *bool `protobuf:"varint,2,opt,name=active_cdr_enabled,json=activeCdrEnabled,proto3,oneof" json:"active_cdr_enabled,omitempty"`
2399
+ }
2400
+
2401
+ func (x *NetworkVisibilitySettings) Reset() {
2402
+ *x = NetworkVisibilitySettings{}
2403
+ if protoimpl.UnsafeEnabled {
2404
+ mi := &file_scanningconfig_proto_msgTypes[29]
2405
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2406
+ ms.StoreMessageInfo(mi)
2407
+ }
2408
+ }
2409
+
2410
+ func (x *NetworkVisibilitySettings) String() string {
2411
+ return protoimpl.X.MessageStringOf(x)
2412
+ }
2413
+
2414
+ func (*NetworkVisibilitySettings) ProtoMessage() {}
2415
+
2416
+ func (x *NetworkVisibilitySettings) ProtoReflect() protoreflect.Message {
2417
+ mi := &file_scanningconfig_proto_msgTypes[29]
2418
+ if protoimpl.UnsafeEnabled && x != nil {
2419
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2420
+ if ms.LoadMessageInfo() == nil {
2421
+ ms.StoreMessageInfo(mi)
2422
+ }
2423
+ return ms
2424
+ }
2425
+ return mi.MessageOf(x)
2426
+ }
2427
+
2428
+ // Deprecated: Use NetworkVisibilitySettings.ProtoReflect.Descriptor instead.
2429
+ func (*NetworkVisibilitySettings) Descriptor() ([]byte, []int) {
2430
+ return file_scanningconfig_proto_rawDescGZIP(), []int{29}
2431
+ }
2432
+
2433
+ func (x *NetworkVisibilitySettings) GetEnabled() bool {
2434
+ if x != nil {
2435
+ return x.Enabled
2436
+ }
2437
+ return false
2438
+ }
2439
+
2440
+ func (x *NetworkVisibilitySettings) GetActiveCdrEnabled() bool {
2441
+ if x != nil && x.ActiveCdrEnabled != nil {
2442
+ return *x.ActiveCdrEnabled
2443
+ }
2444
+ return false
2445
+ }
2446
+
2447
+ type PingBehaviorSettings struct {
2448
+ state protoimpl.MessageState
2449
+ sizeCache protoimpl.SizeCache
2450
+ unknownFields protoimpl.UnknownFields
2451
+ }
2452
+
2453
+ func (x *PingBehaviorSettings) Reset() {
2454
+ *x = PingBehaviorSettings{}
2455
+ if protoimpl.UnsafeEnabled {
2456
+ mi := &file_scanningconfig_proto_msgTypes[30]
2457
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2458
+ ms.StoreMessageInfo(mi)
2459
+ }
2460
+ }
2461
+
2462
+ func (x *PingBehaviorSettings) String() string {
2463
+ return protoimpl.X.MessageStringOf(x)
2464
+ }
2465
+
2466
+ func (*PingBehaviorSettings) ProtoMessage() {}
2467
+
2468
+ func (x *PingBehaviorSettings) ProtoReflect() protoreflect.Message {
2469
+ mi := &file_scanningconfig_proto_msgTypes[30]
2470
+ if protoimpl.UnsafeEnabled && x != nil {
2471
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2472
+ if ms.LoadMessageInfo() == nil {
2473
+ ms.StoreMessageInfo(mi)
2474
+ }
2475
+ return ms
2476
+ }
2477
+ return mi.MessageOf(x)
2478
+ }
2479
+
2480
+ // Deprecated: Use PingBehaviorSettings.ProtoReflect.Descriptor instead.
2481
+ func (*PingBehaviorSettings) Descriptor() ([]byte, []int) {
2482
+ return file_scanningconfig_proto_rawDescGZIP(), []int{30}
2483
+ }
2484
+
2485
+ type ProtocolConfigurationSettings struct {
2486
+ state protoimpl.MessageState
2487
+ sizeCache protoimpl.SizeCache
2488
+ unknownFields protoimpl.UnknownFields
2489
+
2490
+ AllEnabled *bool `protobuf:"varint,1,opt,name=all_enabled,json=allEnabled,proto3,oneof" json:"all_enabled,omitempty"`
2491
+ Protocols map[string]*ProtocolDetailSettings `protobuf:"bytes,2,rep,name=protocols,proto3" json:"protocols,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
2492
+ }
2493
+
2494
+ func (x *ProtocolConfigurationSettings) Reset() {
2495
+ *x = ProtocolConfigurationSettings{}
2496
+ if protoimpl.UnsafeEnabled {
2497
+ mi := &file_scanningconfig_proto_msgTypes[31]
2498
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2499
+ ms.StoreMessageInfo(mi)
2500
+ }
2501
+ }
2502
+
2503
+ func (x *ProtocolConfigurationSettings) String() string {
2504
+ return protoimpl.X.MessageStringOf(x)
2505
+ }
2506
+
2507
+ func (*ProtocolConfigurationSettings) ProtoMessage() {}
2508
+
2509
+ func (x *ProtocolConfigurationSettings) ProtoReflect() protoreflect.Message {
2510
+ mi := &file_scanningconfig_proto_msgTypes[31]
2511
+ if protoimpl.UnsafeEnabled && x != nil {
2512
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2513
+ if ms.LoadMessageInfo() == nil {
2514
+ ms.StoreMessageInfo(mi)
2515
+ }
2516
+ return ms
2517
+ }
2518
+ return mi.MessageOf(x)
2519
+ }
2520
+
2521
+ // Deprecated: Use ProtocolConfigurationSettings.ProtoReflect.Descriptor instead.
2522
+ func (*ProtocolConfigurationSettings) Descriptor() ([]byte, []int) {
2523
+ return file_scanningconfig_proto_rawDescGZIP(), []int{31}
2524
+ }
2525
+
2526
+ func (x *ProtocolConfigurationSettings) GetAllEnabled() bool {
2527
+ if x != nil && x.AllEnabled != nil {
2528
+ return *x.AllEnabled
2529
+ }
2530
+ return false
2531
+ }
2532
+
2533
+ func (x *ProtocolConfigurationSettings) GetProtocols() map[string]*ProtocolDetailSettings {
2534
+ if x != nil {
2535
+ return x.Protocols
2536
+ }
2537
+ return nil
2538
+ }
2539
+
2540
+ type ProtocolDetailSettings struct {
2541
+ state protoimpl.MessageState
2542
+ sizeCache protoimpl.SizeCache
2543
+ unknownFields protoimpl.UnknownFields
2544
+
2545
+ Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
2546
+ Port *uint32 `protobuf:"varint,2,opt,name=port,proto3,oneof" json:"port,omitempty"`
2547
+ AdditionalData map[string]string `protobuf:"bytes,3,rep,name=additional_data,json=additionalData,proto3" json:"additional_data,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // additional data for a specific for the protocol
2548
+ }
2549
+
2550
+ func (x *ProtocolDetailSettings) Reset() {
2551
+ *x = ProtocolDetailSettings{}
2552
+ if protoimpl.UnsafeEnabled {
2553
+ mi := &file_scanningconfig_proto_msgTypes[32]
2554
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2555
+ ms.StoreMessageInfo(mi)
2556
+ }
2557
+ }
2558
+
2559
+ func (x *ProtocolDetailSettings) String() string {
2560
+ return protoimpl.X.MessageStringOf(x)
2561
+ }
2562
+
2563
+ func (*ProtocolDetailSettings) ProtoMessage() {}
2564
+
2565
+ func (x *ProtocolDetailSettings) ProtoReflect() protoreflect.Message {
2566
+ mi := &file_scanningconfig_proto_msgTypes[32]
2567
+ if protoimpl.UnsafeEnabled && x != nil {
2568
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2569
+ if ms.LoadMessageInfo() == nil {
2570
+ ms.StoreMessageInfo(mi)
2571
+ }
2572
+ return ms
2573
+ }
2574
+ return mi.MessageOf(x)
2575
+ }
2576
+
2577
+ // Deprecated: Use ProtocolDetailSettings.ProtoReflect.Descriptor instead.
2578
+ func (*ProtocolDetailSettings) Descriptor() ([]byte, []int) {
2579
+ return file_scanningconfig_proto_rawDescGZIP(), []int{32}
2580
+ }
2581
+
2582
+ func (x *ProtocolDetailSettings) GetEnabled() bool {
2583
+ if x != nil {
2584
+ return x.Enabled
2585
+ }
2586
+ return false
2587
+ }
2588
+
2589
+ func (x *ProtocolDetailSettings) GetPort() uint32 {
2590
+ if x != nil && x.Port != nil {
2591
+ return *x.Port
2592
+ }
2593
+ return 0
2594
+ }
2595
+
2596
+ func (x *ProtocolDetailSettings) GetAdditionalData() map[string]string {
2597
+ if x != nil {
2598
+ return x.AdditionalData
2599
+ }
2600
+ return nil
2601
+ }
2602
+
2603
+ type ItSensorSettings struct {
2604
+ state protoimpl.MessageState
2605
+ sizeCache protoimpl.SizeCache
2606
+ unknownFields protoimpl.UnknownFields
2607
+
2608
+ NetworkConfiguration *NetworkConfigurationSettings `protobuf:"bytes,1,opt,name=network_configuration,json=networkConfiguration,proto3,oneof" json:"network_configuration,omitempty"`
2609
+ }
2610
+
2611
+ func (x *ItSensorSettings) Reset() {
2612
+ *x = ItSensorSettings{}
2613
+ if protoimpl.UnsafeEnabled {
2614
+ mi := &file_scanningconfig_proto_msgTypes[33]
2615
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2616
+ ms.StoreMessageInfo(mi)
2617
+ }
2618
+ }
2619
+
2620
+ func (x *ItSensorSettings) String() string {
2621
+ return protoimpl.X.MessageStringOf(x)
2622
+ }
2623
+
2624
+ func (*ItSensorSettings) ProtoMessage() {}
2625
+
2626
+ func (x *ItSensorSettings) ProtoReflect() protoreflect.Message {
2627
+ mi := &file_scanningconfig_proto_msgTypes[33]
2628
+ if protoimpl.UnsafeEnabled && x != nil {
2629
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2630
+ if ms.LoadMessageInfo() == nil {
2631
+ ms.StoreMessageInfo(mi)
2632
+ }
2633
+ return ms
2634
+ }
2635
+ return mi.MessageOf(x)
2636
+ }
2637
+
2638
+ // Deprecated: Use ItSensorSettings.ProtoReflect.Descriptor instead.
2639
+ func (*ItSensorSettings) Descriptor() ([]byte, []int) {
2640
+ return file_scanningconfig_proto_rawDescGZIP(), []int{33}
2641
+ }
2642
+
2643
+ func (x *ItSensorSettings) GetNetworkConfiguration() *NetworkConfigurationSettings {
2644
+ if x != nil {
2645
+ return x.NetworkConfiguration
2646
+ }
2647
+ return nil
2648
+ }
2649
+
2650
+ type OtSensorSettings struct {
2651
+ state protoimpl.MessageState
2652
+ sizeCache protoimpl.SizeCache
2653
+ unknownFields protoimpl.UnknownFields
2654
+
2655
+ NetworkConfiguration *NetworkConfigurationSettings `protobuf:"bytes,1,opt,name=network_configuration,json=networkConfiguration,proto3,oneof" json:"network_configuration,omitempty"`
2656
+ TrafficLogging *TrafficLogSettings `protobuf:"bytes,2,opt,name=traffic_logging,json=trafficLogging,proto3,oneof" json:"traffic_logging,omitempty"` // used to enable raw traffic packets logging for the OT sensor.
2657
+ }
2658
+
2659
+ func (x *OtSensorSettings) Reset() {
2660
+ *x = OtSensorSettings{}
2661
+ if protoimpl.UnsafeEnabled {
2662
+ mi := &file_scanningconfig_proto_msgTypes[34]
2663
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2664
+ ms.StoreMessageInfo(mi)
2665
+ }
2666
+ }
2667
+
2668
+ func (x *OtSensorSettings) String() string {
2669
+ return protoimpl.X.MessageStringOf(x)
2670
+ }
2671
+
2672
+ func (*OtSensorSettings) ProtoMessage() {}
2673
+
2674
+ func (x *OtSensorSettings) ProtoReflect() protoreflect.Message {
2675
+ mi := &file_scanningconfig_proto_msgTypes[34]
2676
+ if protoimpl.UnsafeEnabled && x != nil {
2677
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2678
+ if ms.LoadMessageInfo() == nil {
2679
+ ms.StoreMessageInfo(mi)
2680
+ }
2681
+ return ms
2682
+ }
2683
+ return mi.MessageOf(x)
2684
+ }
2685
+
2686
+ // Deprecated: Use OtSensorSettings.ProtoReflect.Descriptor instead.
2687
+ func (*OtSensorSettings) Descriptor() ([]byte, []int) {
2688
+ return file_scanningconfig_proto_rawDescGZIP(), []int{34}
2689
+ }
2690
+
2691
+ func (x *OtSensorSettings) GetNetworkConfiguration() *NetworkConfigurationSettings {
2692
+ if x != nil {
2693
+ return x.NetworkConfiguration
2694
+ }
2695
+ return nil
2696
+ }
2697
+
2698
+ func (x *OtSensorSettings) GetTrafficLogging() *TrafficLogSettings {
2699
+ if x != nil {
2700
+ return x.TrafficLogging
2701
+ }
2702
+ return nil
2703
+ }
2704
+
2705
+ type TrafficLogSettings struct {
2706
+ state protoimpl.MessageState
2707
+ sizeCache protoimpl.SizeCache
2708
+ unknownFields protoimpl.UnknownFields
2709
+
2710
+ Enabled *bool `protobuf:"varint,1,opt,name=enabled,proto3,oneof" json:"enabled,omitempty"`
2711
+ Path *string `protobuf:"bytes,2,opt,name=path,proto3,oneof" json:"path,omitempty"`
2712
+ }
2713
+
2714
+ func (x *TrafficLogSettings) Reset() {
2715
+ *x = TrafficLogSettings{}
2716
+ if protoimpl.UnsafeEnabled {
2717
+ mi := &file_scanningconfig_proto_msgTypes[35]
2718
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2719
+ ms.StoreMessageInfo(mi)
2720
+ }
2721
+ }
2722
+
2723
+ func (x *TrafficLogSettings) String() string {
2724
+ return protoimpl.X.MessageStringOf(x)
2725
+ }
2726
+
2727
+ func (*TrafficLogSettings) ProtoMessage() {}
2728
+
2729
+ func (x *TrafficLogSettings) ProtoReflect() protoreflect.Message {
2730
+ mi := &file_scanningconfig_proto_msgTypes[35]
2731
+ if protoimpl.UnsafeEnabled && x != nil {
2732
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2733
+ if ms.LoadMessageInfo() == nil {
2734
+ ms.StoreMessageInfo(mi)
2735
+ }
2736
+ return ms
2737
+ }
2738
+ return mi.MessageOf(x)
2739
+ }
2740
+
2741
+ // Deprecated: Use TrafficLogSettings.ProtoReflect.Descriptor instead.
2742
+ func (*TrafficLogSettings) Descriptor() ([]byte, []int) {
2743
+ return file_scanningconfig_proto_rawDescGZIP(), []int{35}
2744
+ }
2745
+
2746
+ func (x *TrafficLogSettings) GetEnabled() bool {
2747
+ if x != nil && x.Enabled != nil {
2748
+ return *x.Enabled
2749
+ }
2750
+ return false
2751
+ }
2752
+
2753
+ func (x *TrafficLogSettings) GetPath() string {
2754
+ if x != nil && x.Path != nil {
2755
+ return *x.Path
2756
+ }
2757
+ return ""
2758
+ }
2759
+
2760
+ type UpdateSettings struct {
2761
+ state protoimpl.MessageState
2762
+ sizeCache protoimpl.SizeCache
2763
+ unknownFields protoimpl.UnknownFields
2764
+
2765
+ UpdateOnAvailability *bool `protobuf:"varint,1,opt,name=update_on_availability,json=updateOnAvailability,proto3,oneof" json:"update_on_availability,omitempty"` // default false
2766
+ UpdateWindow *UpdateWindowSettings `protobuf:"bytes,2,opt,name=update_window,json=updateWindow,proto3,oneof" json:"update_window,omitempty"`
2767
+ Download *DownloadSettings `protobuf:"bytes,3,opt,name=download,proto3,oneof" json:"download,omitempty"`
2768
+ Backup *BackupSettings `protobuf:"bytes,4,opt,name=backup,proto3,oneof" json:"backup,omitempty"`
2769
+ Prerequisites *PrerequisiteSettings `protobuf:"bytes,5,opt,name=prerequisites,proto3,oneof" json:"prerequisites,omitempty"`
2770
+ }
2771
+
2772
+ func (x *UpdateSettings) Reset() {
2773
+ *x = UpdateSettings{}
2774
+ if protoimpl.UnsafeEnabled {
2775
+ mi := &file_scanningconfig_proto_msgTypes[36]
2776
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2777
+ ms.StoreMessageInfo(mi)
2778
+ }
2779
+ }
2780
+
2781
+ func (x *UpdateSettings) String() string {
2782
+ return protoimpl.X.MessageStringOf(x)
2783
+ }
2784
+
2785
+ func (*UpdateSettings) ProtoMessage() {}
2786
+
2787
+ func (x *UpdateSettings) ProtoReflect() protoreflect.Message {
2788
+ mi := &file_scanningconfig_proto_msgTypes[36]
2789
+ if protoimpl.UnsafeEnabled && x != nil {
2790
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2791
+ if ms.LoadMessageInfo() == nil {
2792
+ ms.StoreMessageInfo(mi)
2793
+ }
2794
+ return ms
2795
+ }
2796
+ return mi.MessageOf(x)
2797
+ }
2798
+
2799
+ // Deprecated: Use UpdateSettings.ProtoReflect.Descriptor instead.
2800
+ func (*UpdateSettings) Descriptor() ([]byte, []int) {
2801
+ return file_scanningconfig_proto_rawDescGZIP(), []int{36}
2802
+ }
2803
+
2804
+ func (x *UpdateSettings) GetUpdateOnAvailability() bool {
2805
+ if x != nil && x.UpdateOnAvailability != nil {
2806
+ return *x.UpdateOnAvailability
2807
+ }
2808
+ return false
2809
+ }
2810
+
2811
+ func (x *UpdateSettings) GetUpdateWindow() *UpdateWindowSettings {
2812
+ if x != nil {
2813
+ return x.UpdateWindow
2814
+ }
2815
+ return nil
2816
+ }
2817
+
2818
+ func (x *UpdateSettings) GetDownload() *DownloadSettings {
2819
+ if x != nil {
2820
+ return x.Download
2821
+ }
2822
+ return nil
2823
+ }
2824
+
2825
+ func (x *UpdateSettings) GetBackup() *BackupSettings {
2826
+ if x != nil {
2827
+ return x.Backup
2828
+ }
2829
+ return nil
2830
+ }
2831
+
2832
+ func (x *UpdateSettings) GetPrerequisites() *PrerequisiteSettings {
2833
+ if x != nil {
2834
+ return x.Prerequisites
2835
+ }
2836
+ return nil
2837
+ }
2838
+
2839
+ type UpdateWindowSettings struct {
2840
+ state protoimpl.MessageState
2841
+ sizeCache protoimpl.SizeCache
2842
+ unknownFields protoimpl.UnknownFields
2843
+
2844
+ Enabled *bool `protobuf:"varint,1,opt,name=enabled,proto3,oneof" json:"enabled,omitempty"`
2845
+ UpdateWindow *string `protobuf:"bytes,2,opt,name=update_window,json=updateWindow,proto3,oneof" json:"update_window,omitempty"` // cron expression
2846
+ }
2847
+
2848
+ func (x *UpdateWindowSettings) Reset() {
2849
+ *x = UpdateWindowSettings{}
2850
+ if protoimpl.UnsafeEnabled {
2851
+ mi := &file_scanningconfig_proto_msgTypes[37]
2852
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2853
+ ms.StoreMessageInfo(mi)
2854
+ }
2855
+ }
2856
+
2857
+ func (x *UpdateWindowSettings) String() string {
2858
+ return protoimpl.X.MessageStringOf(x)
2859
+ }
2860
+
2861
+ func (*UpdateWindowSettings) ProtoMessage() {}
2862
+
2863
+ func (x *UpdateWindowSettings) ProtoReflect() protoreflect.Message {
2864
+ mi := &file_scanningconfig_proto_msgTypes[37]
2865
+ if protoimpl.UnsafeEnabled && x != nil {
2866
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2867
+ if ms.LoadMessageInfo() == nil {
2868
+ ms.StoreMessageInfo(mi)
2869
+ }
2870
+ return ms
2871
+ }
2872
+ return mi.MessageOf(x)
2873
+ }
2874
+
2875
+ // Deprecated: Use UpdateWindowSettings.ProtoReflect.Descriptor instead.
2876
+ func (*UpdateWindowSettings) Descriptor() ([]byte, []int) {
2877
+ return file_scanningconfig_proto_rawDescGZIP(), []int{37}
2878
+ }
2879
+
2880
+ func (x *UpdateWindowSettings) GetEnabled() bool {
2881
+ if x != nil && x.Enabled != nil {
2882
+ return *x.Enabled
2883
+ }
2884
+ return false
2885
+ }
2886
+
2887
+ func (x *UpdateWindowSettings) GetUpdateWindow() string {
2888
+ if x != nil && x.UpdateWindow != nil {
2889
+ return *x.UpdateWindow
2890
+ }
2891
+ return ""
2892
+ }
2893
+
2894
+ type BackupSettings struct {
2895
+ state protoimpl.MessageState
2896
+ sizeCache protoimpl.SizeCache
2897
+ unknownFields protoimpl.UnknownFields
2898
+
2899
+ BackupFolder *string `protobuf:"bytes,1,opt,name=backup_folder,json=backupFolder,proto3,oneof" json:"backup_folder,omitempty"`
2900
+ }
2901
+
2902
+ func (x *BackupSettings) Reset() {
2903
+ *x = BackupSettings{}
2904
+ if protoimpl.UnsafeEnabled {
2905
+ mi := &file_scanningconfig_proto_msgTypes[38]
2906
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2907
+ ms.StoreMessageInfo(mi)
2908
+ }
2909
+ }
2910
+
2911
+ func (x *BackupSettings) String() string {
2912
+ return protoimpl.X.MessageStringOf(x)
2913
+ }
2914
+
2915
+ func (*BackupSettings) ProtoMessage() {}
2916
+
2917
+ func (x *BackupSettings) ProtoReflect() protoreflect.Message {
2918
+ mi := &file_scanningconfig_proto_msgTypes[38]
2919
+ if protoimpl.UnsafeEnabled && x != nil {
2920
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2921
+ if ms.LoadMessageInfo() == nil {
2922
+ ms.StoreMessageInfo(mi)
2923
+ }
2924
+ return ms
2925
+ }
2926
+ return mi.MessageOf(x)
2927
+ }
2928
+
2929
+ // Deprecated: Use BackupSettings.ProtoReflect.Descriptor instead.
2930
+ func (*BackupSettings) Descriptor() ([]byte, []int) {
2931
+ return file_scanningconfig_proto_rawDescGZIP(), []int{38}
2932
+ }
2933
+
2934
+ func (x *BackupSettings) GetBackupFolder() string {
2935
+ if x != nil && x.BackupFolder != nil {
2936
+ return *x.BackupFolder
2937
+ }
2938
+ return ""
2939
+ }
2940
+
2941
+ type DownloadSettings struct {
2942
+ state protoimpl.MessageState
2943
+ sizeCache protoimpl.SizeCache
2944
+ unknownFields protoimpl.UnknownFields
2945
+
2946
+ DownloadOnAvailability *bool `protobuf:"varint,1,opt,name=download_on_availability,json=downloadOnAvailability,proto3,oneof" json:"download_on_availability,omitempty"` // default true
2947
+ DownloadWindow *string `protobuf:"bytes,2,opt,name=download_window,json=downloadWindow,proto3,oneof" json:"download_window,omitempty"` // cron expression
2948
+ DownloadFolder *string `protobuf:"bytes,3,opt,name=download_folder,json=downloadFolder,proto3,oneof" json:"download_folder,omitempty"`
2949
+ DownloadTimeoutSeconds *int32 `protobuf:"varint,4,opt,name=download_timeout_seconds,json=downloadTimeoutSeconds,proto3,oneof" json:"download_timeout_seconds,omitempty"`
2950
+ ThrottleRateKbPerSecond *int32 `protobuf:"varint,5,opt,name=throttle_rate_kb_per_second,json=throttleRateKbPerSecond,proto3,oneof" json:"throttle_rate_kb_per_second,omitempty"`
2951
+ }
2952
+
2953
+ func (x *DownloadSettings) Reset() {
2954
+ *x = DownloadSettings{}
2955
+ if protoimpl.UnsafeEnabled {
2956
+ mi := &file_scanningconfig_proto_msgTypes[39]
2957
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2958
+ ms.StoreMessageInfo(mi)
2959
+ }
2960
+ }
2961
+
2962
+ func (x *DownloadSettings) String() string {
2963
+ return protoimpl.X.MessageStringOf(x)
2964
+ }
2965
+
2966
+ func (*DownloadSettings) ProtoMessage() {}
2967
+
2968
+ func (x *DownloadSettings) ProtoReflect() protoreflect.Message {
2969
+ mi := &file_scanningconfig_proto_msgTypes[39]
2970
+ if protoimpl.UnsafeEnabled && x != nil {
2971
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2972
+ if ms.LoadMessageInfo() == nil {
2973
+ ms.StoreMessageInfo(mi)
2974
+ }
2975
+ return ms
2976
+ }
2977
+ return mi.MessageOf(x)
2978
+ }
2979
+
2980
+ // Deprecated: Use DownloadSettings.ProtoReflect.Descriptor instead.
2981
+ func (*DownloadSettings) Descriptor() ([]byte, []int) {
2982
+ return file_scanningconfig_proto_rawDescGZIP(), []int{39}
2983
+ }
2984
+
2985
+ func (x *DownloadSettings) GetDownloadOnAvailability() bool {
2986
+ if x != nil && x.DownloadOnAvailability != nil {
2987
+ return *x.DownloadOnAvailability
2988
+ }
2989
+ return false
2990
+ }
2991
+
2992
+ func (x *DownloadSettings) GetDownloadWindow() string {
2993
+ if x != nil && x.DownloadWindow != nil {
2994
+ return *x.DownloadWindow
2995
+ }
2996
+ return ""
2997
+ }
2998
+
2999
+ func (x *DownloadSettings) GetDownloadFolder() string {
3000
+ if x != nil && x.DownloadFolder != nil {
3001
+ return *x.DownloadFolder
3002
+ }
3003
+ return ""
3004
+ }
3005
+
3006
+ func (x *DownloadSettings) GetDownloadTimeoutSeconds() int32 {
3007
+ if x != nil && x.DownloadTimeoutSeconds != nil {
3008
+ return *x.DownloadTimeoutSeconds
3009
+ }
3010
+ return 0
3011
+ }
3012
+
3013
+ func (x *DownloadSettings) GetThrottleRateKbPerSecond() int32 {
3014
+ if x != nil && x.ThrottleRateKbPerSecond != nil {
3015
+ return *x.ThrottleRateKbPerSecond
3016
+ }
3017
+ return 0
3018
+ }
3019
+
3020
+ type PrerequisiteSettings struct {
3021
+ state protoimpl.MessageState
3022
+ sizeCache protoimpl.SizeCache
3023
+ unknownFields protoimpl.UnknownFields
3024
+
3025
+ RequiredFreeDiskSpaceBytes *int64 `protobuf:"varint,1,opt,name=required_free_disk_space_bytes,json=requiredFreeDiskSpaceBytes,proto3,oneof" json:"required_free_disk_space_bytes,omitempty"`
3026
+ RequiredFreeDiskSpacePercentage *int32 `protobuf:"varint,2,opt,name=required_free_disk_space_percentage,json=requiredFreeDiskSpacePercentage,proto3,oneof" json:"required_free_disk_space_percentage,omitempty"`
3027
+ }
3028
+
3029
+ func (x *PrerequisiteSettings) Reset() {
3030
+ *x = PrerequisiteSettings{}
3031
+ if protoimpl.UnsafeEnabled {
3032
+ mi := &file_scanningconfig_proto_msgTypes[40]
3033
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3034
+ ms.StoreMessageInfo(mi)
3035
+ }
3036
+ }
3037
+
3038
+ func (x *PrerequisiteSettings) String() string {
3039
+ return protoimpl.X.MessageStringOf(x)
3040
+ }
3041
+
3042
+ func (*PrerequisiteSettings) ProtoMessage() {}
3043
+
3044
+ func (x *PrerequisiteSettings) ProtoReflect() protoreflect.Message {
3045
+ mi := &file_scanningconfig_proto_msgTypes[40]
3046
+ if protoimpl.UnsafeEnabled && x != nil {
3047
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3048
+ if ms.LoadMessageInfo() == nil {
3049
+ ms.StoreMessageInfo(mi)
3050
+ }
3051
+ return ms
3052
+ }
3053
+ return mi.MessageOf(x)
3054
+ }
3055
+
3056
+ // Deprecated: Use PrerequisiteSettings.ProtoReflect.Descriptor instead.
3057
+ func (*PrerequisiteSettings) Descriptor() ([]byte, []int) {
3058
+ return file_scanningconfig_proto_rawDescGZIP(), []int{40}
3059
+ }
3060
+
3061
+ func (x *PrerequisiteSettings) GetRequiredFreeDiskSpaceBytes() int64 {
3062
+ if x != nil && x.RequiredFreeDiskSpaceBytes != nil {
3063
+ return *x.RequiredFreeDiskSpaceBytes
3064
+ }
3065
+ return 0
3066
+ }
3067
+
3068
+ func (x *PrerequisiteSettings) GetRequiredFreeDiskSpacePercentage() int32 {
3069
+ if x != nil && x.RequiredFreeDiskSpacePercentage != nil {
3070
+ return *x.RequiredFreeDiskSpacePercentage
3071
+ }
3072
+ return 0
3073
+ }
3074
+
3075
+ type LogSettings struct {
3076
+ state protoimpl.MessageState
3077
+ sizeCache protoimpl.SizeCache
3078
+ unknownFields protoimpl.UnknownFields
3079
+
3080
+ Level *LogSettings_LogLevel `protobuf:"varint,1,opt,name=level,proto3,enum=lansweeper.scanningconfig.v1.LogSettings_LogLevel,oneof" json:"level,omitempty"` // default INFORMATION
3081
+ FileSizeLimitBytes *int64 `protobuf:"varint,2,opt,name=file_size_limit_bytes,json=fileSizeLimitBytes,proto3,oneof" json:"file_size_limit_bytes,omitempty"` // default 52428800 bytes (50MB)
3082
+ RetainedFileCountLimit *int32 `protobuf:"varint,3,opt,name=retained_file_count_limit,json=retainedFileCountLimit,proto3,oneof" json:"retained_file_count_limit,omitempty"` // default 5
3083
+ Overrides map[string]string `protobuf:"bytes,4,rep,name=overrides,proto3" json:"overrides,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
3084
+ }
3085
+
3086
+ func (x *LogSettings) Reset() {
3087
+ *x = LogSettings{}
3088
+ if protoimpl.UnsafeEnabled {
3089
+ mi := &file_scanningconfig_proto_msgTypes[41]
3090
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3091
+ ms.StoreMessageInfo(mi)
3092
+ }
3093
+ }
3094
+
3095
+ func (x *LogSettings) String() string {
3096
+ return protoimpl.X.MessageStringOf(x)
3097
+ }
3098
+
3099
+ func (*LogSettings) ProtoMessage() {}
3100
+
3101
+ func (x *LogSettings) ProtoReflect() protoreflect.Message {
3102
+ mi := &file_scanningconfig_proto_msgTypes[41]
3103
+ if protoimpl.UnsafeEnabled && x != nil {
3104
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3105
+ if ms.LoadMessageInfo() == nil {
3106
+ ms.StoreMessageInfo(mi)
3107
+ }
3108
+ return ms
3109
+ }
3110
+ return mi.MessageOf(x)
3111
+ }
3112
+
3113
+ // Deprecated: Use LogSettings.ProtoReflect.Descriptor instead.
3114
+ func (*LogSettings) Descriptor() ([]byte, []int) {
3115
+ return file_scanningconfig_proto_rawDescGZIP(), []int{41}
3116
+ }
3117
+
3118
+ func (x *LogSettings) GetLevel() LogSettings_LogLevel {
3119
+ if x != nil && x.Level != nil {
3120
+ return *x.Level
3121
+ }
3122
+ return LogSettings_VERBOSE
3123
+ }
3124
+
3125
+ func (x *LogSettings) GetFileSizeLimitBytes() int64 {
3126
+ if x != nil && x.FileSizeLimitBytes != nil {
3127
+ return *x.FileSizeLimitBytes
3128
+ }
3129
+ return 0
3130
+ }
3131
+
3132
+ func (x *LogSettings) GetRetainedFileCountLimit() int32 {
3133
+ if x != nil && x.RetainedFileCountLimit != nil {
3134
+ return *x.RetainedFileCountLimit
3135
+ }
3136
+ return 0
3137
+ }
3138
+
3139
+ func (x *LogSettings) GetOverrides() map[string]string {
3140
+ if x != nil {
3141
+ return x.Overrides
3142
+ }
3143
+ return nil
3144
+ }
3145
+
3146
+ var File_scanningconfig_proto protoreflect.FileDescriptor
3147
+
3148
+ var file_scanningconfig_proto_rawDesc = []byte{
3149
+ 0x0a, 0x14, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3150
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
3151
+ 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
3152
+ 0x67, 0x2e, 0x76, 0x31, 0x22, 0x58, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
3153
+ 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63,
3154
+ 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x6f, 0x75, 0x72,
3155
+ 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x6f, 0x75,
3156
+ 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64,
3157
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x66,
3158
+ 0x0a, 0x21, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
3159
+ 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
3160
+ 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x01,
3161
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
3162
+ 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3163
+ 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63,
3164
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xe0, 0x03, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x70, 0x6f,
3165
+ 0x6e, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
3166
+ 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
3167
+ 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3168
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3169
+ 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6d, 0x70,
3170
+ 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12,
3171
+ 0x3e, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
3172
+ 0x32, 0x24, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
3173
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
3174
+ 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
3175
+ 0x55, 0x0a, 0x09, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x04, 0x20, 0x01,
3176
+ 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3177
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3178
+ 0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e,
3179
+ 0x66, 0x69, 0x67, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x70, 0x43, 0x6f, 0x6e,
3180
+ 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
3181
+ 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
3182
+ 0x12, 0x53, 0x0a, 0x0a, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x06,
3183
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
3184
+ 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3185
+ 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43,
3186
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x01, 0x52, 0x09, 0x61, 0x70, 0x70, 0x43, 0x6f, 0x6e, 0x66,
3187
+ 0x69, 0x67, 0x88, 0x01, 0x01, 0x22, 0x55, 0x0a, 0x0d, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65,
3188
+ 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
3189
+ 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54,
3190
+ 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x4f, 0x52, 0x10,
3191
+ 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x54, 0x5f, 0x48, 0x55, 0x42, 0x10, 0x03, 0x12, 0x0d, 0x0a,
3192
+ 0x09, 0x4f, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x4f, 0x52, 0x10, 0x04, 0x42, 0x0c, 0x0a, 0x0a,
3193
+ 0x5f, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61,
3194
+ 0x70, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x5b, 0x0a, 0x0a, 0x41, 0x73, 0x73,
3195
+ 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
3196
+ 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
3197
+ 0x64, 0x12, 0x2f, 0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e,
3198
+ 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12,
3199
+ 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
3200
+ 0x65, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22, 0x62, 0x0a, 0x11, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
3201
+ 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x65,
3202
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e,
3203
+ 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65,
3204
+ 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03,
3205
+ 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65,
3206
+ 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22, 0x46, 0x0a, 0x0a, 0x41, 0x75,
3207
+ 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62,
3208
+ 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
3209
+ 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x18, 0x02,
3210
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x02,
3211
+ 0x18, 0x01, 0x22, 0x8f, 0x03, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
3212
+ 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x5f, 0x0a, 0x12, 0x61, 0x73, 0x73, 0x65,
3213
+ 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01,
3214
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
3215
+ 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3216
+ 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x42, 0x02,
3217
+ 0x18, 0x01, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72,
3218
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x12, 0x61, 0x75, 0x74,
3219
+ 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18,
3220
+ 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
3221
+ 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
3222
+ 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x48,
3223
+ 0x01, 0x52, 0x10, 0x61, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e,
3224
+ 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x19, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
3225
+ 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f, 0x6e,
3226
+ 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
3227
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
3228
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
3229
+ 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x48, 0x02, 0x52, 0x17, 0x6e, 0x65,
3230
+ 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x43,
3231
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x73, 0x73,
3232
+ 0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42,
3233
+ 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
3234
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
3235
+ 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f,
3236
+ 0x6e, 0x66, 0x69, 0x67, 0x22, 0x3a, 0x0a, 0x07, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12,
3237
+ 0x1b, 0x0a, 0x09, 0x63, 0x72, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x72, 0x18, 0x01, 0x20, 0x01,
3238
+ 0x28, 0x09, 0x52, 0x08, 0x63, 0x72, 0x6f, 0x6e, 0x45, 0x78, 0x70, 0x72, 0x12, 0x12, 0x0a, 0x04,
3239
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
3240
+ 0x22, 0xbf, 0x04, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x08, 0x74,
3241
+ 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e,
3242
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
3243
+ 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x69,
3244
+ 0x67, 0x67, 0x65, 0x72, 0x52, 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x12, 0x50,
3245
+ 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
3246
+ 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
3247
+ 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
3248
+ 0x76, 0x31, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
3249
+ 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
3250
+ 0x12, 0x4a, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18,
3251
+ 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
3252
+ 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
3253
+ 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52,
3254
+ 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3f, 0x0a, 0x05,
3255
+ 0x61, 0x67, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61,
3256
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
3257
+ 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74,
3258
+ 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4b, 0x0a,
3259
+ 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
3260
+ 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
3261
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
3262
+ 0x41, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52,
3263
+ 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x12, 0x5b, 0x0a, 0x11, 0x61, 0x63,
3264
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
3265
+ 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
3266
+ 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
3267
+ 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x69, 0x6e,
3268
+ 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66,
3269
+ 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x07, 0x20,
3270
+ 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
3271
+ 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x37, 0x0a, 0x0a, 0x41,
3272
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
3273
+ 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x47,
3274
+ 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x4c, 0x45,
3275
+ 0x53, 0x53, 0x10, 0x02, 0x42, 0x0c, 0x0a, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69,
3276
+ 0x6f, 0x6e, 0x22, 0x25, 0x0a, 0x09, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x12,
3277
+ 0x18, 0x0a, 0x07, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
3278
+ 0x52, 0x07, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x22, 0xba, 0x02, 0x0a, 0x10, 0x41, 0x63,
3279
+ 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c,
3280
+ 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01,
3281
+ 0x28, 0x0e, 0x32, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3282
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3283
+ 0x31, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69,
3284
+ 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x48, 0x00, 0x52, 0x09,
3285
+ 0x73, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07,
3286
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x42, 0x02, 0x18,
3287
+ 0x01, 0x52, 0x07, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x78,
3288
+ 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a,
3289
+ 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4b, 0x0a, 0x0c, 0x74, 0x61,
3290
+ 0x72, 0x67, 0x65, 0x74, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
3291
+ 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
3292
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
3293
+ 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67,
3294
+ 0x65, 0x74, 0x73, 0x44, 0x61, 0x74, 0x61, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46,
3295
+ 0x6f, 0x63, 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a,
3296
+ 0x05, 0x55, 0x53, 0x45, 0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45,
3297
+ 0x4e, 0x54, 0x4f, 0x52, 0x59, 0x10, 0x02, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x63, 0x61, 0x6e,
3298
+ 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x97, 0x03, 0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65,
3299
+ 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x47, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
3300
+ 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
3301
+ 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
3302
+ 0x76, 0x31, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x54, 0x61,
3303
+ 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x4c,
3304
+ 0x0a, 0x0c, 0x69, 0x70, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02,
3305
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
3306
+ 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3307
+ 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00,
3308
+ 0x52, 0x0a, 0x69, 0x70, 0x53, 0x63, 0x61, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x3f, 0x0a, 0x07,
3309
+ 0x61, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e,
3310
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
3311
+ 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x44, 0x44,
3312
+ 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x06, 0x61, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a,
3313
+ 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18,
3314
+ 0x01, 0x48, 0x00, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x45, 0x0a, 0x09, 0x73,
3315
+ 0x63, 0x63, 0x6d, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26,
3316
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
3317
+ 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x43,
3318
+ 0x43, 0x4d, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x08, 0x73, 0x63, 0x63, 0x6d, 0x44, 0x61,
3319
+ 0x74, 0x61, 0x22, 0x44, 0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65,
3320
+ 0x12, 0x17, 0x0a, 0x13, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x54, 0x41, 0x52, 0x47,
3321
+ 0x45, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x50, 0x5f,
3322
+ 0x53, 0x43, 0x41, 0x4e, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x53, 0x43, 0x43, 0x4d, 0x10, 0x02,
3323
+ 0x12, 0x06, 0x0a, 0x02, 0x41, 0x44, 0x10, 0x03, 0x42, 0x06, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,
3324
+ 0x22, 0x22, 0x0a, 0x08, 0x53, 0x43, 0x43, 0x4d, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06,
3325
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61,
3326
+ 0x72, 0x67, 0x65, 0x74, 0x22, 0xae, 0x01, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x44,
3327
+ 0x61, 0x74, 0x61, 0x12, 0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
3328
+ 0x0e, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73,
3329
+ 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31,
3330
+ 0x2e, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
3331
+ 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
3332
+ 0x09, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x41, 0x0a, 0x04, 0x70, 0x69, 0x6e,
3333
+ 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
3334
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e,
3335
+ 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x50, 0x69, 0x6e,
3336
+ 0x67, 0x48, 0x00, 0x52, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05,
3337
+ 0x5f, 0x70, 0x69, 0x6e, 0x67, 0x22, 0x79, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x50,
3338
+ 0x69, 0x6e, 0x67, 0x12, 0x19, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x5f, 0x70, 0x69, 0x6e, 0x67, 0x18,
3339
+ 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x75, 0x73, 0x65, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x21,
3340
+ 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02,
3341
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75,
3342
+ 0x74, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6e, 0x6f, 0x5f, 0x61, 0x6e, 0x73,
3343
+ 0x77, 0x65, 0x72, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10,
3344
+ 0x6b, 0x65, 0x65, 0x70, 0x4e, 0x6f, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e,
3345
+ 0x22, 0xd7, 0x02, 0x0a, 0x06, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e,
3346
+ 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
3347
+ 0x1f, 0x0a, 0x0b, 0x61, 0x64, 0x73, 0x69, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02,
3348
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x64, 0x73, 0x69, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
3349
+ 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
3350
+ 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70,
3351
+ 0x75, 0x74, 0x65, 0x72, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
3352
+ 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x75, 0x74, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x26, 0x0a,
3353
+ 0x0f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x63, 0x61, 0x6e,
3354
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x47, 0x72, 0x6f, 0x75,
3355
+ 0x70, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x4a, 0x0a, 0x09, 0x6c, 0x64, 0x61, 0x70, 0x5f, 0x74, 0x79,
3356
+ 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
3357
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
3358
+ 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4c,
3359
+ 0x44, 0x41, 0x50, 0x54, 0x79, 0x70, 0x65, 0x52, 0x08, 0x6c, 0x64, 0x61, 0x70, 0x54, 0x79, 0x70,
3360
+ 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52,
3361
+ 0x04, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x64, 0x73, 0x69, 0x5f, 0x70, 0x61,
3362
+ 0x74, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x64, 0x73, 0x69, 0x50, 0x61,
3363
+ 0x74, 0x68, 0x22, 0x36, 0x0a, 0x08, 0x4c, 0x44, 0x41, 0x50, 0x54, 0x79, 0x70, 0x65, 0x12, 0x15,
3364
+ 0x0a, 0x11, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x4c, 0x44, 0x41, 0x50, 0x5f, 0x54,
3365
+ 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x44, 0x41, 0x50, 0x10, 0x01, 0x12,
3366
+ 0x09, 0x0a, 0x05, 0x4c, 0x44, 0x41, 0x50, 0x53, 0x10, 0x02, 0x22, 0x85, 0x01, 0x0a, 0x05, 0x41,
3367
+ 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
3368
+ 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
3369
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
3370
+ 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x2e, 0x53, 0x63,
3371
+ 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x52, 0x09, 0x73, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63,
3372
+ 0x75, 0x73, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x12,
3373
+ 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53, 0x45, 0x52,
3374
+ 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52, 0x59,
3375
+ 0x10, 0x02, 0x22, 0xa6, 0x01, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61,
3376
+ 0x6c, 0x12, 0x4f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
3377
+ 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
3378
+ 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43,
3379
+ 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e,
3380
+ 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x42, 0x02, 0x18, 0x01, 0x52, 0x04, 0x74, 0x79,
3381
+ 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
3382
+ 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28,
3383
+ 0x05, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x21, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64,
3384
+ 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
3385
+ 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x22, 0xc9, 0x03, 0x0a, 0x11,
3386
+ 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69,
3387
+ 0x67, 0x12, 0x48, 0x0a, 0x07, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01,
3388
+ 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3389
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3390
+ 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52,
3391
+ 0x07, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x03, 0x68,
3392
+ 0x75, 0x62, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
3393
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
3394
+ 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x75, 0x62, 0x53, 0x65, 0x74, 0x74, 0x69,
3395
+ 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x03, 0x68, 0x75, 0x62, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a,
3396
+ 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
3397
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
3398
+ 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
3399
+ 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x02, 0x52, 0x06, 0x75,
3400
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x09, 0x69, 0x74, 0x5f, 0x73,
3401
+ 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x6c, 0x61,
3402
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
3403
+ 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x74, 0x53, 0x65, 0x6e,
3404
+ 0x73, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x03, 0x52, 0x08, 0x69,
3405
+ 0x74, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x09, 0x6f, 0x74,
3406
+ 0x5f, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
3407
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
3408
+ 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x74, 0x53,
3409
+ 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x04, 0x52,
3410
+ 0x08, 0x6f, 0x74, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08,
3411
+ 0x5f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x68, 0x75, 0x62,
3412
+ 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
3413
+ 0x69, 0x74, 0x5f, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x74,
3414
+ 0x5f, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x22, 0xc1, 0x05, 0x0a, 0x0b, 0x48, 0x75, 0x62, 0x53,
3415
+ 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x74, 0x0a, 0x15, 0x6e, 0x65, 0x74, 0x77, 0x6f,
3416
+ 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
3417
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
3418
+ 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
3419
+ 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e,
3420
+ 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
3421
+ 0x67, 0x73, 0x48, 0x00, 0x52, 0x14, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e,
3422
+ 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a,
3423
+ 0x0b, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
3424
+ 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3425
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3426
+ 0x31, 0x2e, 0x4d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74,
3427
+ 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x0b, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e,
3428
+ 0x61, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x0d, 0x6e, 0x6f, 0x74, 0x69, 0x66,
3429
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32,
3430
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
3431
+ 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f,
3432
+ 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
3433
+ 0x67, 0x73, 0x48, 0x02, 0x52, 0x0d, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69,
3434
+ 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x0d, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72,
3435
+ 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e,
3436
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
3437
+ 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x65, 0x61,
3438
+ 0x74, 0x75, 0x72, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
3439
+ 0x48, 0x03, 0x52, 0x0c, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x73,
3440
+ 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x12, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
3441
+ 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
3442
+ 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
3443
+ 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x53,
3444
+ 0x63, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
3445
+ 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x04, 0x52, 0x11, 0x73, 0x63, 0x61, 0x6e,
3446
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01,
3447
+ 0x12, 0x49, 0x0a, 0x06, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
3448
+ 0x32, 0x2c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
3449
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
3450
+ 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x05,
3451
+ 0x52, 0x06, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f,
3452
+ 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
3453
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65,
3454
+ 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69,
3455
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x66, 0x65, 0x61, 0x74,
3456
+ 0x75, 0x72, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x63,
3457
+ 0x61, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
3458
+ 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x22, 0xdc, 0x01, 0x0a, 0x13,
3459
+ 0x4d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
3460
+ 0x6e, 0x67, 0x73, 0x12, 0x32, 0x0a, 0x12, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e,
3461
+ 0x63, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48,
3462
+ 0x00, 0x52, 0x11, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x57, 0x69,
3463
+ 0x6e, 0x64, 0x6f, 0x77, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x10, 0x72, 0x65, 0x74, 0x65, 0x6e,
3464
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28,
3465
+ 0x0b, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73,
3466
+ 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31,
3467
+ 0x2e, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
3468
+ 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x0f, 0x72, 0x65, 0x74, 0x65,
3469
+ 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x88, 0x01, 0x01, 0x42, 0x15,
3470
+ 0x0a, 0x13, 0x5f, 0x6d, 0x61, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x77,
3471
+ 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74,
3472
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0xe1, 0x01, 0x0a, 0x17, 0x52,
3473
+ 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x65,
3474
+ 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x40, 0x0a, 0x1a, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64,
3475
+ 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
3476
+ 0x64, 0x61, 0x79, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x17, 0x73, 0x79,
3477
+ 0x6e, 0x63, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
3478
+ 0x6e, 0x44, 0x61, 0x79, 0x73, 0x88, 0x01, 0x01, 0x12, 0x44, 0x0a, 0x1c, 0x75, 0x6e, 0x73, 0x79,
3479
+ 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74,
3480
+ 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01,
3481
+ 0x52, 0x19, 0x75, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65,
3482
+ 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x88, 0x01, 0x01, 0x42, 0x1d,
3483
+ 0x0a, 0x1b, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x72,
3484
+ 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x42, 0x1f, 0x0a,
3485
+ 0x1d, 0x5f, 0x75, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f,
3486
+ 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x22, 0xae,
3487
+ 0x03, 0x0a, 0x14, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
3488
+ 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x37, 0x0a, 0x15, 0x73, 0x6d, 0x61, 0x72, 0x74,
3489
+ 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
3490
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x13, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x50,
3491
+ 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01,
3492
+ 0x12, 0x4c, 0x0a, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c,
3493
+ 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63,
3494
+ 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x1d, 0x64, 0x65,
3495
+ 0x66, 0x61, 0x75, 0x6c, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65,
3496
+ 0x72, 0x76, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x88, 0x01, 0x01, 0x12, 0x85,
3497
+ 0x01, 0x0a, 0x17, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
3498
+ 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
3499
+ 0x32, 0x4d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
3500
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
3501
+ 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74,
3502
+ 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
3503
+ 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
3504
+ 0x15, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74,
3505
+ 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x1a, 0x48, 0x0a, 0x1a, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x50,
3506
+ 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x73, 0x45,
3507
+ 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
3508
+ 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
3509
+ 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
3510
+ 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69,
3511
+ 0x6e, 0x67, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x64,
3512
+ 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69,
3513
+ 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22,
3514
+ 0x71, 0x0a, 0x13, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x53, 0x65,
3515
+ 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
3516
+ 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74,
3517
+ 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x16, 0x70, 0x6f, 0x6c, 0x6c,
3518
+ 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x4d, 0x69, 0x6e, 0x75, 0x74,
3519
+ 0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
3520
+ 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74,
3521
+ 0x65, 0x73, 0x22, 0x77, 0x0a, 0x19, 0x53, 0x63, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3522
+ 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
3523
+ 0x3d, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
3524
+ 0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
3525
+ 0x05, 0x48, 0x00, 0x52, 0x16, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65,
3526
+ 0x72, 0x76, 0x61, 0x6c, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x1b,
3527
+ 0x0a, 0x19, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
3528
+ 0x76, 0x61, 0x6c, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x0e,
3529
+ 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18,
3530
+ 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
3531
+ 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x3d, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x6c,
3532
+ 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63,
3533
+ 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x16, 0x70, 0x6f,
3534
+ 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x53, 0x65, 0x63,
3535
+ 0x6f, 0x6e, 0x64, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65,
3536
+ 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65,
3537
+ 0x72, 0x88, 0x01, 0x01, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
3538
+ 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
3539
+ 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x22, 0xf5, 0x04, 0x0a,
3540
+ 0x1c, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
3541
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x58, 0x0a,
3542
+ 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x01, 0x20, 0x01,
3543
+ 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3544
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3545
+ 0x31, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x53, 0x65, 0x74,
3546
+ 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65,
3547
+ 0x6c, 0x69, 0x73, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x12, 0x6e, 0x65, 0x74, 0x77, 0x6f,
3548
+ 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20,
3549
+ 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
3550
+ 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
3551
+ 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69,
3552
+ 0x6c, 0x69, 0x74, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x11,
3553
+ 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74,
3554
+ 0x79, 0x88, 0x01, 0x01, 0x12, 0x5c, 0x0a, 0x0d, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x62, 0x65, 0x68,
3555
+ 0x61, 0x76, 0x69, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c, 0x61,
3556
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
3557
+ 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x42,
3558
+ 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48,
3559
+ 0x02, 0x52, 0x0c, 0x70, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x88,
3560
+ 0x01, 0x01, 0x12, 0x77, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x63,
3561
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
3562
+ 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3563
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3564
+ 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3565
+ 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48,
3566
+ 0x03, 0x52, 0x15, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69,
3567
+ 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x0a, 0x65,
3568
+ 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
3569
+ 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
3570
+ 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x45,
3571
+ 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
3572
+ 0x48, 0x04, 0x52, 0x0a, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01,
3573
+ 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73,
3574
+ 0x6d, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x76, 0x69,
3575
+ 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x69, 0x6e,
3576
+ 0x67, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x70,
3577
+ 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
3578
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73,
3579
+ 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x57, 0x0a, 0x13, 0x50, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c,
3580
+ 0x69, 0x73, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x2c, 0x0a, 0x0f, 0x6d,
3581
+ 0x61, 0x78, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x01,
3582
+ 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x61, 0x78, 0x50, 0x61, 0x72, 0x61, 0x6c,
3583
+ 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x88, 0x01, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6d, 0x61,
3584
+ 0x78, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x22, 0x6f, 0x0a,
3585
+ 0x11, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
3586
+ 0x67, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x74,
3587
+ 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x65, 0x78,
3588
+ 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x2f, 0x0a,
3589
+ 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
3590
+ 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c,
3591
+ 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22, 0x7f,
3592
+ 0x0a, 0x19, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
3593
+ 0x69, 0x74, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65,
3594
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e,
3595
+ 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x31, 0x0a, 0x12, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f,
3596
+ 0x63, 0x64, 0x72, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
3597
+ 0x08, 0x48, 0x00, 0x52, 0x10, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x64, 0x72, 0x45, 0x6e,
3598
+ 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x63, 0x74,
3599
+ 0x69, 0x76, 0x65, 0x5f, 0x63, 0x64, 0x72, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22,
3600
+ 0x16, 0x0a, 0x14, 0x50, 0x69, 0x6e, 0x67, 0x42, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x53,
3601
+ 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0xb3, 0x02, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x74,
3602
+ 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
3603
+ 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x24, 0x0a, 0x0b, 0x61, 0x6c, 0x6c,
3604
+ 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00,
3605
+ 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12,
3606
+ 0x68, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03,
3607
+ 0x28, 0x0b, 0x32, 0x4a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
3608
+ 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
3609
+ 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3610
+ 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e,
3611
+ 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09,
3612
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x1a, 0x72, 0x0a, 0x0e, 0x50, 0x72, 0x6f,
3613
+ 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
3614
+ 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4a, 0x0a,
3615
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x6c,
3616
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
3617
+ 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74,
3618
+ 0x6f, 0x63, 0x6f, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
3619
+ 0x67, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x0e, 0x0a,
3620
+ 0x0c, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x8a, 0x02,
3621
+ 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
3622
+ 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62,
3623
+ 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
3624
+ 0x65, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
3625
+ 0x48, 0x00, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x88, 0x01, 0x01, 0x12, 0x71, 0x0a, 0x0f, 0x61,
3626
+ 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
3627
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
3628
+ 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3629
+ 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x44, 0x65, 0x74, 0x61,
3630
+ 0x69, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74,
3631
+ 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e,
3632
+ 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x41,
3633
+ 0x0a, 0x13, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61,
3634
+ 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
3635
+ 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
3636
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
3637
+ 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x22, 0xa2, 0x01, 0x0a, 0x10, 0x49,
3638
+ 0x74, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12,
3639
+ 0x74, 0x0a, 0x15, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
3640
+ 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a,
3641
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
3642
+ 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65,
3643
+ 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
3644
+ 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52, 0x14, 0x6e, 0x65,
3645
+ 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
3646
+ 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
3647
+ 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
3648
+ 0x96, 0x02, 0x0a, 0x10, 0x4f, 0x74, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x53, 0x65, 0x74, 0x74,
3649
+ 0x69, 0x6e, 0x67, 0x73, 0x12, 0x74, 0x0a, 0x15, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f,
3650
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20,
3651
+ 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
3652
+ 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
3653
+ 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3654
+ 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48,
3655
+ 0x00, 0x52, 0x14, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3656
+ 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x0f, 0x74, 0x72,
3657
+ 0x61, 0x66, 0x66, 0x69, 0x63, 0x5f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20,
3658
+ 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
3659
+ 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
3660
+ 0x76, 0x31, 0x2e, 0x54, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74,
3661
+ 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x0e, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63,
3662
+ 0x4c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6e,
3663
+ 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,
3664
+ 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63,
3665
+ 0x5f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x22, 0x61, 0x0a, 0x12, 0x54, 0x72, 0x61, 0x66,
3666
+ 0x66, 0x69, 0x63, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x1d,
3667
+ 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48,
3668
+ 0x00, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a,
3669
+ 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x70,
3670
+ 0x61, 0x74, 0x68, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c,
3671
+ 0x65, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x22, 0xfb, 0x03, 0x0a, 0x0e,
3672
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x39,
3673
+ 0x0a, 0x16, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x61, 0x76, 0x61, 0x69,
3674
+ 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00,
3675
+ 0x52, 0x14, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61,
3676
+ 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, 0x5c, 0x0a, 0x0d, 0x75, 0x70, 0x64,
3677
+ 0x61, 0x74, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
3678
+ 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
3679
+ 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
3680
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74,
3681
+ 0x69, 0x6e, 0x67, 0x73, 0x48, 0x01, 0x52, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x69,
3682
+ 0x6e, 0x64, 0x6f, 0x77, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x08, 0x64, 0x6f, 0x77, 0x6e, 0x6c,
3683
+ 0x6f, 0x61, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
3684
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
3685
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61,
3686
+ 0x64, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x02, 0x52, 0x08, 0x64, 0x6f, 0x77,
3687
+ 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x06, 0x62, 0x61, 0x63, 0x6b,
3688
+ 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
3689
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
3690
+ 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x53, 0x65,
3691
+ 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x03, 0x52, 0x06, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70,
3692
+ 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x0d, 0x70, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73,
3693
+ 0x69, 0x74, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e,
3694
+ 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
3695
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x72, 0x65, 0x71,
3696
+ 0x75, 0x69, 0x73, 0x69, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x48, 0x04,
3697
+ 0x52, 0x0d, 0x70, 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x65, 0x73, 0x88,
3698
+ 0x01, 0x01, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e,
3699
+ 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x10, 0x0a,
3700
+ 0x0e, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42,
3701
+ 0x0b, 0x0a, 0x09, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x09, 0x0a, 0x07,
3702
+ 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x65, 0x72,
3703
+ 0x65, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x65, 0x73, 0x22, 0x7d, 0x0a, 0x14, 0x55, 0x70, 0x64,
3704
+ 0x61, 0x74, 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
3705
+ 0x73, 0x12, 0x1d, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01,
3706
+ 0x28, 0x08, 0x48, 0x00, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01,
3707
+ 0x12, 0x28, 0x0a, 0x0d, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
3708
+ 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74,
3709
+ 0x65, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65,
3710
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74,
3711
+ 0x65, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x22, 0x4c, 0x0a, 0x0e, 0x42, 0x61, 0x63, 0x6b,
3712
+ 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x28, 0x0a, 0x0d, 0x62, 0x61,
3713
+ 0x63, 0x6b, 0x75, 0x70, 0x5f, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
3714
+ 0x09, 0x48, 0x00, 0x52, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x6c, 0x64, 0x65,
3715
+ 0x72, 0x88, 0x01, 0x01, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x5f,
3716
+ 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x22, 0xb1, 0x03, 0x0a, 0x10, 0x44, 0x6f, 0x77, 0x6e, 0x6c,
3717
+ 0x6f, 0x61, 0x64, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3d, 0x0a, 0x18, 0x64,
3718
+ 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c,
3719
+ 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52,
3720
+ 0x16, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x4f, 0x6e, 0x41, 0x76, 0x61, 0x69, 0x6c,
3721
+ 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x64, 0x6f,
3722
+ 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x02, 0x20,
3723
+ 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0e, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x57,
3724
+ 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x64, 0x6f, 0x77, 0x6e,
3725
+ 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28,
3726
+ 0x09, 0x48, 0x02, 0x52, 0x0e, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x46, 0x6f, 0x6c,
3727
+ 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
3728
+ 0x61, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
3729
+ 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x48, 0x03, 0x52, 0x16, 0x64, 0x6f, 0x77, 0x6e,
3730
+ 0x6c, 0x6f, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e,
3731
+ 0x64, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x1b, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
3732
+ 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6b, 0x62, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x65,
3733
+ 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x48, 0x04, 0x52, 0x17, 0x74, 0x68,
3734
+ 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x61, 0x74, 0x65, 0x4b, 0x62, 0x50, 0x65, 0x72, 0x53,
3735
+ 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x64, 0x6f, 0x77,
3736
+ 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,
3737
+ 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
3738
+ 0x61, 0x64, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x64, 0x6f,
3739
+ 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x42, 0x1b, 0x0a,
3740
+ 0x19, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f,
3741
+ 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x74,
3742
+ 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6b, 0x62, 0x5f,
3743
+ 0x70, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0xfd, 0x01, 0x0a, 0x14, 0x50,
3744
+ 0x72, 0x65, 0x72, 0x65, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
3745
+ 0x6e, 0x67, 0x73, 0x12, 0x47, 0x0a, 0x1e, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f,
3746
+ 0x66, 0x72, 0x65, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f,
3747
+ 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x1a, 0x72,
3748
+ 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x72, 0x65, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x53,
3749
+ 0x70, 0x61, 0x63, 0x65, 0x42, 0x79, 0x74, 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x51, 0x0a, 0x23,
3750
+ 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x5f, 0x64, 0x69,
3751
+ 0x73, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
3752
+ 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x1f, 0x72, 0x65, 0x71,
3753
+ 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x72, 0x65, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x70, 0x61,
3754
+ 0x63, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x42,
3755
+ 0x21, 0x0a, 0x1f, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x66, 0x72, 0x65,
3756
+ 0x65, 0x5f, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x62, 0x79, 0x74,
3757
+ 0x65, 0x73, 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f,
3758
+ 0x66, 0x72, 0x65, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f,
3759
+ 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x84, 0x04, 0x0a, 0x0b, 0x4c,
3760
+ 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x4d, 0x0a, 0x05, 0x6c, 0x65,
3761
+ 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
3762
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
3763
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74,
3764
+ 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x4c, 0x6f, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x48, 0x00, 0x52,
3765
+ 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x15, 0x66, 0x69, 0x6c,
3766
+ 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x62, 0x79, 0x74,
3767
+ 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x12, 0x66, 0x69, 0x6c, 0x65,
3768
+ 0x53, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x88, 0x01,
3769
+ 0x01, 0x12, 0x3e, 0x0a, 0x19, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x66, 0x69,
3770
+ 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03,
3771
+ 0x20, 0x01, 0x28, 0x05, 0x48, 0x02, 0x52, 0x16, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64,
3772
+ 0x46, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01,
3773
+ 0x01, 0x12, 0x56, 0x0a, 0x09, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x18, 0x04,
3774
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
3775
+ 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
3776
+ 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e,
3777
+ 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09,
3778
+ 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0x3c, 0x0a, 0x0e, 0x4f, 0x76, 0x65,
3779
+ 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
3780
+ 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
3781
+ 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
3782
+ 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x56, 0x0a, 0x08, 0x4c, 0x6f, 0x67, 0x4c, 0x65,
3783
+ 0x76, 0x65, 0x6c, 0x12, 0x0b, 0x0a, 0x07, 0x56, 0x45, 0x52, 0x42, 0x4f, 0x53, 0x45, 0x10, 0x00,
3784
+ 0x12, 0x09, 0x0a, 0x05, 0x44, 0x45, 0x42, 0x55, 0x47, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x49,
3785
+ 0x4e, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07,
3786
+ 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52,
3787
+ 0x4f, 0x52, 0x10, 0x04, 0x12, 0x09, 0x0a, 0x05, 0x46, 0x41, 0x54, 0x41, 0x4c, 0x10, 0x05, 0x42,
3788
+ 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x66, 0x69,
3789
+ 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x62, 0x79,
3790
+ 0x74, 0x65, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x72, 0x65, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64,
3791
+ 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6d, 0x69,
3792
+ 0x74, 0x2a, 0x3b, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
3793
+ 0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x49, 0x50, 0x5f, 0x53, 0x43,
3794
+ 0x41, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x41, 0x4e,
3795
+ 0x47, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x4f, 0x53, 0x54, 0x10, 0x02, 0x32, 0xb8,
3796
+ 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69,
3797
+ 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74,
3798
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79,
3799
+ 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
3800
+ 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
3801
+ 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
3802
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52,
3803
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
3804
+ 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
3805
+ 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
3806
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52,
3807
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67,
3808
+ 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f,
3809
+ 0x74, 0x6f, 0x33,
3810
+ }
3811
+
3812
+ var (
3813
+ file_scanningconfig_proto_rawDescOnce sync.Once
3814
+ file_scanningconfig_proto_rawDescData = file_scanningconfig_proto_rawDesc
3815
+ )
3816
+
3817
+ func file_scanningconfig_proto_rawDescGZIP() []byte {
3818
+ file_scanningconfig_proto_rawDescOnce.Do(func() {
3819
+ file_scanningconfig_proto_rawDescData = protoimpl.X.CompressGZIP(file_scanningconfig_proto_rawDescData)
3820
+ })
3821
+ return file_scanningconfig_proto_rawDescData
3822
+ }
3823
+
3824
+ var file_scanningconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 9)
3825
+ var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 46)
3826
+ var file_scanningconfig_proto_goTypes = []any{
3827
+ (IPScanType)(0), // 0: lansweeper.scanningconfig.v1.IPScanType
3828
+ (Component_ComponentType)(0), // 1: lansweeper.scanningconfig.v1.Component.ComponentType
3829
+ (Action_ActionType)(0), // 2: lansweeper.scanningconfig.v1.Action.ActionType
3830
+ (ActionDefinition_ScanFocus)(0), // 3: lansweeper.scanningconfig.v1.ActionDefinition.ScanFocus
3831
+ (TargetData_TargetType)(0), // 4: lansweeper.scanningconfig.v1.TargetData.TargetType
3832
+ (ADData_LDAPType)(0), // 5: lansweeper.scanningconfig.v1.ADData.LDAPType
3833
+ (Agent_ScanFocus)(0), // 6: lansweeper.scanningconfig.v1.Agent.ScanFocus
3834
+ (Credential_CredentialType)(0), // 7: lansweeper.scanningconfig.v1.Credential.CredentialType
3835
+ (LogSettings_LogLevel)(0), // 8: lansweeper.scanningconfig.v1.LogSettings.LogLevel
3836
+ (*GetConfigurationsBySourceRequest)(nil), // 9: lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
3837
+ (*GetConfigurationsBySourceResponse)(nil), // 10: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
3838
+ (*Component)(nil), // 11: lansweeper.scanningconfig.v1.Component
3839
+ (*AssetRadar)(nil), // 12: lansweeper.scanningconfig.v1.AssetRadar
3840
+ (*NetworkVisibility)(nil), // 13: lansweeper.scanningconfig.v1.NetworkVisibility
3841
+ (*AutoUpdate)(nil), // 14: lansweeper.scanningconfig.v1.AutoUpdate
3842
+ (*OperationalConfig)(nil), // 15: lansweeper.scanningconfig.v1.OperationalConfig
3843
+ (*Trigger)(nil), // 16: lansweeper.scanningconfig.v1.Trigger
3844
+ (*Action)(nil), // 17: lansweeper.scanningconfig.v1.Action
3845
+ (*Agentless)(nil), // 18: lansweeper.scanningconfig.v1.Agentless
3846
+ (*ActionDefinition)(nil), // 19: lansweeper.scanningconfig.v1.ActionDefinition
3847
+ (*TargetData)(nil), // 20: lansweeper.scanningconfig.v1.TargetData
3848
+ (*SCCMData)(nil), // 21: lansweeper.scanningconfig.v1.SCCMData
3849
+ (*IPScanData)(nil), // 22: lansweeper.scanningconfig.v1.IPScanData
3850
+ (*IPScanPing)(nil), // 23: lansweeper.scanningconfig.v1.IPScanPing
3851
+ (*ADData)(nil), // 24: lansweeper.scanningconfig.v1.ADData
3852
+ (*Agent)(nil), // 25: lansweeper.scanningconfig.v1.Agent
3853
+ (*Credential)(nil), // 26: lansweeper.scanningconfig.v1.Credential
3854
+ (*ApplicationConfig)(nil), // 27: lansweeper.scanningconfig.v1.ApplicationConfig
3855
+ (*HubSettings)(nil), // 28: lansweeper.scanningconfig.v1.HubSettings
3856
+ (*MaintenanceSettings)(nil), // 29: lansweeper.scanningconfig.v1.MaintenanceSettings
3857
+ (*RetentionPolicySettings)(nil), // 30: lansweeper.scanningconfig.v1.RetentionPolicySettings
3858
+ (*NotificationSettings)(nil), // 31: lansweeper.scanningconfig.v1.NotificationSettings
3859
+ (*FeatureFlagSettings)(nil), // 32: lansweeper.scanningconfig.v1.FeatureFlagSettings
3860
+ (*ScanConfigurationSettings)(nil), // 33: lansweeper.scanningconfig.v1.ScanConfigurationSettings
3861
+ (*ImportSettings)(nil), // 34: lansweeper.scanningconfig.v1.ImportSettings
3862
+ (*NetworkConfigurationSettings)(nil), // 35: lansweeper.scanningconfig.v1.NetworkConfigurationSettings
3863
+ (*ParallelismSettings)(nil), // 36: lansweeper.scanningconfig.v1.ParallelismSettings
3864
+ (*ExclusionSettings)(nil), // 37: lansweeper.scanningconfig.v1.ExclusionSettings
3865
+ (*NetworkVisibilitySettings)(nil), // 38: lansweeper.scanningconfig.v1.NetworkVisibilitySettings
3866
+ (*PingBehaviorSettings)(nil), // 39: lansweeper.scanningconfig.v1.PingBehaviorSettings
3867
+ (*ProtocolConfigurationSettings)(nil), // 40: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings
3868
+ (*ProtocolDetailSettings)(nil), // 41: lansweeper.scanningconfig.v1.ProtocolDetailSettings
3869
+ (*ItSensorSettings)(nil), // 42: lansweeper.scanningconfig.v1.ItSensorSettings
3870
+ (*OtSensorSettings)(nil), // 43: lansweeper.scanningconfig.v1.OtSensorSettings
3871
+ (*TrafficLogSettings)(nil), // 44: lansweeper.scanningconfig.v1.TrafficLogSettings
3872
+ (*UpdateSettings)(nil), // 45: lansweeper.scanningconfig.v1.UpdateSettings
3873
+ (*UpdateWindowSettings)(nil), // 46: lansweeper.scanningconfig.v1.UpdateWindowSettings
3874
+ (*BackupSettings)(nil), // 47: lansweeper.scanningconfig.v1.BackupSettings
3875
+ (*DownloadSettings)(nil), // 48: lansweeper.scanningconfig.v1.DownloadSettings
3876
+ (*PrerequisiteSettings)(nil), // 49: lansweeper.scanningconfig.v1.PrerequisiteSettings
3877
+ (*LogSettings)(nil), // 50: lansweeper.scanningconfig.v1.LogSettings
3878
+ nil, // 51: lansweeper.scanningconfig.v1.NotificationSettings.SmartPollingIntervalsEntry
3879
+ nil, // 52: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.ProtocolsEntry
3880
+ nil, // 53: lansweeper.scanningconfig.v1.ProtocolDetailSettings.AdditionalDataEntry
3881
+ nil, // 54: lansweeper.scanningconfig.v1.LogSettings.OverridesEntry
3882
+ }
3883
+ var file_scanningconfig_proto_depIdxs = []int32{
3884
+ 11, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
3885
+ 1, // 1: lansweeper.scanningconfig.v1.Component.type:type_name -> lansweeper.scanningconfig.v1.Component.ComponentType
3886
+ 17, // 2: lansweeper.scanningconfig.v1.Component.actions:type_name -> lansweeper.scanningconfig.v1.Action
3887
+ 15, // 3: lansweeper.scanningconfig.v1.Component.op_config:type_name -> lansweeper.scanningconfig.v1.OperationalConfig
3888
+ 27, // 4: lansweeper.scanningconfig.v1.Component.app_config:type_name -> lansweeper.scanningconfig.v1.ApplicationConfig
3889
+ 12, // 5: lansweeper.scanningconfig.v1.OperationalConfig.asset_radar_config:type_name -> lansweeper.scanningconfig.v1.AssetRadar
3890
+ 14, // 6: lansweeper.scanningconfig.v1.OperationalConfig.auto_update_config:type_name -> lansweeper.scanningconfig.v1.AutoUpdate
3891
+ 13, // 7: lansweeper.scanningconfig.v1.OperationalConfig.network_visibility_config:type_name -> lansweeper.scanningconfig.v1.NetworkVisibility
3892
+ 16, // 8: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
3893
+ 2, // 9: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
3894
+ 26, // 10: lansweeper.scanningconfig.v1.Action.credentials:type_name -> lansweeper.scanningconfig.v1.Credential
3895
+ 25, // 11: lansweeper.scanningconfig.v1.Action.agent:type_name -> lansweeper.scanningconfig.v1.Agent
3896
+ 18, // 12: lansweeper.scanningconfig.v1.Action.agentless:type_name -> lansweeper.scanningconfig.v1.Agentless
3897
+ 19, // 13: lansweeper.scanningconfig.v1.Action.action_definition:type_name -> lansweeper.scanningconfig.v1.ActionDefinition
3898
+ 3, // 14: lansweeper.scanningconfig.v1.ActionDefinition.scan_focus:type_name -> lansweeper.scanningconfig.v1.ActionDefinition.ScanFocus
3899
+ 20, // 15: lansweeper.scanningconfig.v1.ActionDefinition.targets_data:type_name -> lansweeper.scanningconfig.v1.TargetData
3900
+ 4, // 16: lansweeper.scanningconfig.v1.TargetData.type:type_name -> lansweeper.scanningconfig.v1.TargetData.TargetType
3901
+ 22, // 17: lansweeper.scanningconfig.v1.TargetData.ip_scan_data:type_name -> lansweeper.scanningconfig.v1.IPScanData
3902
+ 24, // 18: lansweeper.scanningconfig.v1.TargetData.ad_data:type_name -> lansweeper.scanningconfig.v1.ADData
3903
+ 21, // 19: lansweeper.scanningconfig.v1.TargetData.sccm_data:type_name -> lansweeper.scanningconfig.v1.SCCMData
3904
+ 0, // 20: lansweeper.scanningconfig.v1.IPScanData.type:type_name -> lansweeper.scanningconfig.v1.IPScanType
3905
+ 23, // 21: lansweeper.scanningconfig.v1.IPScanData.ping:type_name -> lansweeper.scanningconfig.v1.IPScanPing
3906
+ 5, // 22: lansweeper.scanningconfig.v1.ADData.ldap_type:type_name -> lansweeper.scanningconfig.v1.ADData.LDAPType
3907
+ 6, // 23: lansweeper.scanningconfig.v1.Agent.scan_focus:type_name -> lansweeper.scanningconfig.v1.Agent.ScanFocus
3908
+ 7, // 24: lansweeper.scanningconfig.v1.Credential.type:type_name -> lansweeper.scanningconfig.v1.Credential.CredentialType
3909
+ 50, // 25: lansweeper.scanningconfig.v1.ApplicationConfig.logging:type_name -> lansweeper.scanningconfig.v1.LogSettings
3910
+ 28, // 26: lansweeper.scanningconfig.v1.ApplicationConfig.hub:type_name -> lansweeper.scanningconfig.v1.HubSettings
3911
+ 45, // 27: lansweeper.scanningconfig.v1.ApplicationConfig.update:type_name -> lansweeper.scanningconfig.v1.UpdateSettings
3912
+ 42, // 28: lansweeper.scanningconfig.v1.ApplicationConfig.it_sensor:type_name -> lansweeper.scanningconfig.v1.ItSensorSettings
3913
+ 43, // 29: lansweeper.scanningconfig.v1.ApplicationConfig.ot_sensor:type_name -> lansweeper.scanningconfig.v1.OtSensorSettings
3914
+ 35, // 30: lansweeper.scanningconfig.v1.HubSettings.network_configuration:type_name -> lansweeper.scanningconfig.v1.NetworkConfigurationSettings
3915
+ 29, // 31: lansweeper.scanningconfig.v1.HubSettings.maintenance:type_name -> lansweeper.scanningconfig.v1.MaintenanceSettings
3916
+ 31, // 32: lansweeper.scanningconfig.v1.HubSettings.notifications:type_name -> lansweeper.scanningconfig.v1.NotificationSettings
3917
+ 32, // 33: lansweeper.scanningconfig.v1.HubSettings.feature_flags:type_name -> lansweeper.scanningconfig.v1.FeatureFlagSettings
3918
+ 33, // 34: lansweeper.scanningconfig.v1.HubSettings.scan_configuration:type_name -> lansweeper.scanningconfig.v1.ScanConfigurationSettings
3919
+ 34, // 35: lansweeper.scanningconfig.v1.HubSettings.import:type_name -> lansweeper.scanningconfig.v1.ImportSettings
3920
+ 30, // 36: lansweeper.scanningconfig.v1.MaintenanceSettings.retention_policy:type_name -> lansweeper.scanningconfig.v1.RetentionPolicySettings
3921
+ 51, // 37: lansweeper.scanningconfig.v1.NotificationSettings.smart_polling_intervals:type_name -> lansweeper.scanningconfig.v1.NotificationSettings.SmartPollingIntervalsEntry
3922
+ 36, // 38: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.parallelism:type_name -> lansweeper.scanningconfig.v1.ParallelismSettings
3923
+ 38, // 39: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.network_visibility:type_name -> lansweeper.scanningconfig.v1.NetworkVisibilitySettings
3924
+ 39, // 40: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.ping_behavior:type_name -> lansweeper.scanningconfig.v1.PingBehaviorSettings
3925
+ 40, // 41: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.protocol_configuration:type_name -> lansweeper.scanningconfig.v1.ProtocolConfigurationSettings
3926
+ 37, // 42: lansweeper.scanningconfig.v1.NetworkConfigurationSettings.exclusions:type_name -> lansweeper.scanningconfig.v1.ExclusionSettings
3927
+ 52, // 43: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.protocols:type_name -> lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.ProtocolsEntry
3928
+ 53, // 44: lansweeper.scanningconfig.v1.ProtocolDetailSettings.additional_data:type_name -> lansweeper.scanningconfig.v1.ProtocolDetailSettings.AdditionalDataEntry
3929
+ 35, // 45: lansweeper.scanningconfig.v1.ItSensorSettings.network_configuration:type_name -> lansweeper.scanningconfig.v1.NetworkConfigurationSettings
3930
+ 35, // 46: lansweeper.scanningconfig.v1.OtSensorSettings.network_configuration:type_name -> lansweeper.scanningconfig.v1.NetworkConfigurationSettings
3931
+ 44, // 47: lansweeper.scanningconfig.v1.OtSensorSettings.traffic_logging:type_name -> lansweeper.scanningconfig.v1.TrafficLogSettings
3932
+ 46, // 48: lansweeper.scanningconfig.v1.UpdateSettings.update_window:type_name -> lansweeper.scanningconfig.v1.UpdateWindowSettings
3933
+ 48, // 49: lansweeper.scanningconfig.v1.UpdateSettings.download:type_name -> lansweeper.scanningconfig.v1.DownloadSettings
3934
+ 47, // 50: lansweeper.scanningconfig.v1.UpdateSettings.backup:type_name -> lansweeper.scanningconfig.v1.BackupSettings
3935
+ 49, // 51: lansweeper.scanningconfig.v1.UpdateSettings.prerequisites:type_name -> lansweeper.scanningconfig.v1.PrerequisiteSettings
3936
+ 8, // 52: lansweeper.scanningconfig.v1.LogSettings.level:type_name -> lansweeper.scanningconfig.v1.LogSettings.LogLevel
3937
+ 54, // 53: lansweeper.scanningconfig.v1.LogSettings.overrides:type_name -> lansweeper.scanningconfig.v1.LogSettings.OverridesEntry
3938
+ 41, // 54: lansweeper.scanningconfig.v1.ProtocolConfigurationSettings.ProtocolsEntry.value:type_name -> lansweeper.scanningconfig.v1.ProtocolDetailSettings
3939
+ 9, // 55: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
3940
+ 10, // 56: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
3941
+ 56, // [56:57] is the sub-list for method output_type
3942
+ 55, // [55:56] is the sub-list for method input_type
3943
+ 55, // [55:55] is the sub-list for extension type_name
3944
+ 55, // [55:55] is the sub-list for extension extendee
3945
+ 0, // [0:55] is the sub-list for field type_name
3946
+ }
3947
+
3948
+ func init() { file_scanningconfig_proto_init() }
3949
+ func file_scanningconfig_proto_init() {
3950
+ if File_scanningconfig_proto != nil {
3951
+ return
3952
+ }
3953
+ if !protoimpl.UnsafeEnabled {
3954
+ file_scanningconfig_proto_msgTypes[0].Exporter = func(v any, i int) any {
3955
+ switch v := v.(*GetConfigurationsBySourceRequest); i {
3956
+ case 0:
3957
+ return &v.state
3958
+ case 1:
3959
+ return &v.sizeCache
3960
+ case 2:
3961
+ return &v.unknownFields
3962
+ default:
3963
+ return nil
3964
+ }
3965
+ }
3966
+ file_scanningconfig_proto_msgTypes[1].Exporter = func(v any, i int) any {
3967
+ switch v := v.(*GetConfigurationsBySourceResponse); i {
3968
+ case 0:
3969
+ return &v.state
3970
+ case 1:
3971
+ return &v.sizeCache
3972
+ case 2:
3973
+ return &v.unknownFields
3974
+ default:
3975
+ return nil
3976
+ }
3977
+ }
3978
+ file_scanningconfig_proto_msgTypes[2].Exporter = func(v any, i int) any {
3979
+ switch v := v.(*Component); i {
3980
+ case 0:
1997
3981
  return &v.state
1998
3982
  case 1:
1999
3983
  return &v.sizeCache
@@ -2183,6 +4167,294 @@ func file_scanningconfig_proto_init() {
2183
4167
  return nil
2184
4168
  }
2185
4169
  }
4170
+ file_scanningconfig_proto_msgTypes[18].Exporter = func(v any, i int) any {
4171
+ switch v := v.(*ApplicationConfig); i {
4172
+ case 0:
4173
+ return &v.state
4174
+ case 1:
4175
+ return &v.sizeCache
4176
+ case 2:
4177
+ return &v.unknownFields
4178
+ default:
4179
+ return nil
4180
+ }
4181
+ }
4182
+ file_scanningconfig_proto_msgTypes[19].Exporter = func(v any, i int) any {
4183
+ switch v := v.(*HubSettings); i {
4184
+ case 0:
4185
+ return &v.state
4186
+ case 1:
4187
+ return &v.sizeCache
4188
+ case 2:
4189
+ return &v.unknownFields
4190
+ default:
4191
+ return nil
4192
+ }
4193
+ }
4194
+ file_scanningconfig_proto_msgTypes[20].Exporter = func(v any, i int) any {
4195
+ switch v := v.(*MaintenanceSettings); i {
4196
+ case 0:
4197
+ return &v.state
4198
+ case 1:
4199
+ return &v.sizeCache
4200
+ case 2:
4201
+ return &v.unknownFields
4202
+ default:
4203
+ return nil
4204
+ }
4205
+ }
4206
+ file_scanningconfig_proto_msgTypes[21].Exporter = func(v any, i int) any {
4207
+ switch v := v.(*RetentionPolicySettings); i {
4208
+ case 0:
4209
+ return &v.state
4210
+ case 1:
4211
+ return &v.sizeCache
4212
+ case 2:
4213
+ return &v.unknownFields
4214
+ default:
4215
+ return nil
4216
+ }
4217
+ }
4218
+ file_scanningconfig_proto_msgTypes[22].Exporter = func(v any, i int) any {
4219
+ switch v := v.(*NotificationSettings); i {
4220
+ case 0:
4221
+ return &v.state
4222
+ case 1:
4223
+ return &v.sizeCache
4224
+ case 2:
4225
+ return &v.unknownFields
4226
+ default:
4227
+ return nil
4228
+ }
4229
+ }
4230
+ file_scanningconfig_proto_msgTypes[23].Exporter = func(v any, i int) any {
4231
+ switch v := v.(*FeatureFlagSettings); i {
4232
+ case 0:
4233
+ return &v.state
4234
+ case 1:
4235
+ return &v.sizeCache
4236
+ case 2:
4237
+ return &v.unknownFields
4238
+ default:
4239
+ return nil
4240
+ }
4241
+ }
4242
+ file_scanningconfig_proto_msgTypes[24].Exporter = func(v any, i int) any {
4243
+ switch v := v.(*ScanConfigurationSettings); i {
4244
+ case 0:
4245
+ return &v.state
4246
+ case 1:
4247
+ return &v.sizeCache
4248
+ case 2:
4249
+ return &v.unknownFields
4250
+ default:
4251
+ return nil
4252
+ }
4253
+ }
4254
+ file_scanningconfig_proto_msgTypes[25].Exporter = func(v any, i int) any {
4255
+ switch v := v.(*ImportSettings); i {
4256
+ case 0:
4257
+ return &v.state
4258
+ case 1:
4259
+ return &v.sizeCache
4260
+ case 2:
4261
+ return &v.unknownFields
4262
+ default:
4263
+ return nil
4264
+ }
4265
+ }
4266
+ file_scanningconfig_proto_msgTypes[26].Exporter = func(v any, i int) any {
4267
+ switch v := v.(*NetworkConfigurationSettings); i {
4268
+ case 0:
4269
+ return &v.state
4270
+ case 1:
4271
+ return &v.sizeCache
4272
+ case 2:
4273
+ return &v.unknownFields
4274
+ default:
4275
+ return nil
4276
+ }
4277
+ }
4278
+ file_scanningconfig_proto_msgTypes[27].Exporter = func(v any, i int) any {
4279
+ switch v := v.(*ParallelismSettings); i {
4280
+ case 0:
4281
+ return &v.state
4282
+ case 1:
4283
+ return &v.sizeCache
4284
+ case 2:
4285
+ return &v.unknownFields
4286
+ default:
4287
+ return nil
4288
+ }
4289
+ }
4290
+ file_scanningconfig_proto_msgTypes[28].Exporter = func(v any, i int) any {
4291
+ switch v := v.(*ExclusionSettings); i {
4292
+ case 0:
4293
+ return &v.state
4294
+ case 1:
4295
+ return &v.sizeCache
4296
+ case 2:
4297
+ return &v.unknownFields
4298
+ default:
4299
+ return nil
4300
+ }
4301
+ }
4302
+ file_scanningconfig_proto_msgTypes[29].Exporter = func(v any, i int) any {
4303
+ switch v := v.(*NetworkVisibilitySettings); i {
4304
+ case 0:
4305
+ return &v.state
4306
+ case 1:
4307
+ return &v.sizeCache
4308
+ case 2:
4309
+ return &v.unknownFields
4310
+ default:
4311
+ return nil
4312
+ }
4313
+ }
4314
+ file_scanningconfig_proto_msgTypes[30].Exporter = func(v any, i int) any {
4315
+ switch v := v.(*PingBehaviorSettings); i {
4316
+ case 0:
4317
+ return &v.state
4318
+ case 1:
4319
+ return &v.sizeCache
4320
+ case 2:
4321
+ return &v.unknownFields
4322
+ default:
4323
+ return nil
4324
+ }
4325
+ }
4326
+ file_scanningconfig_proto_msgTypes[31].Exporter = func(v any, i int) any {
4327
+ switch v := v.(*ProtocolConfigurationSettings); i {
4328
+ case 0:
4329
+ return &v.state
4330
+ case 1:
4331
+ return &v.sizeCache
4332
+ case 2:
4333
+ return &v.unknownFields
4334
+ default:
4335
+ return nil
4336
+ }
4337
+ }
4338
+ file_scanningconfig_proto_msgTypes[32].Exporter = func(v any, i int) any {
4339
+ switch v := v.(*ProtocolDetailSettings); i {
4340
+ case 0:
4341
+ return &v.state
4342
+ case 1:
4343
+ return &v.sizeCache
4344
+ case 2:
4345
+ return &v.unknownFields
4346
+ default:
4347
+ return nil
4348
+ }
4349
+ }
4350
+ file_scanningconfig_proto_msgTypes[33].Exporter = func(v any, i int) any {
4351
+ switch v := v.(*ItSensorSettings); i {
4352
+ case 0:
4353
+ return &v.state
4354
+ case 1:
4355
+ return &v.sizeCache
4356
+ case 2:
4357
+ return &v.unknownFields
4358
+ default:
4359
+ return nil
4360
+ }
4361
+ }
4362
+ file_scanningconfig_proto_msgTypes[34].Exporter = func(v any, i int) any {
4363
+ switch v := v.(*OtSensorSettings); i {
4364
+ case 0:
4365
+ return &v.state
4366
+ case 1:
4367
+ return &v.sizeCache
4368
+ case 2:
4369
+ return &v.unknownFields
4370
+ default:
4371
+ return nil
4372
+ }
4373
+ }
4374
+ file_scanningconfig_proto_msgTypes[35].Exporter = func(v any, i int) any {
4375
+ switch v := v.(*TrafficLogSettings); i {
4376
+ case 0:
4377
+ return &v.state
4378
+ case 1:
4379
+ return &v.sizeCache
4380
+ case 2:
4381
+ return &v.unknownFields
4382
+ default:
4383
+ return nil
4384
+ }
4385
+ }
4386
+ file_scanningconfig_proto_msgTypes[36].Exporter = func(v any, i int) any {
4387
+ switch v := v.(*UpdateSettings); i {
4388
+ case 0:
4389
+ return &v.state
4390
+ case 1:
4391
+ return &v.sizeCache
4392
+ case 2:
4393
+ return &v.unknownFields
4394
+ default:
4395
+ return nil
4396
+ }
4397
+ }
4398
+ file_scanningconfig_proto_msgTypes[37].Exporter = func(v any, i int) any {
4399
+ switch v := v.(*UpdateWindowSettings); i {
4400
+ case 0:
4401
+ return &v.state
4402
+ case 1:
4403
+ return &v.sizeCache
4404
+ case 2:
4405
+ return &v.unknownFields
4406
+ default:
4407
+ return nil
4408
+ }
4409
+ }
4410
+ file_scanningconfig_proto_msgTypes[38].Exporter = func(v any, i int) any {
4411
+ switch v := v.(*BackupSettings); i {
4412
+ case 0:
4413
+ return &v.state
4414
+ case 1:
4415
+ return &v.sizeCache
4416
+ case 2:
4417
+ return &v.unknownFields
4418
+ default:
4419
+ return nil
4420
+ }
4421
+ }
4422
+ file_scanningconfig_proto_msgTypes[39].Exporter = func(v any, i int) any {
4423
+ switch v := v.(*DownloadSettings); i {
4424
+ case 0:
4425
+ return &v.state
4426
+ case 1:
4427
+ return &v.sizeCache
4428
+ case 2:
4429
+ return &v.unknownFields
4430
+ default:
4431
+ return nil
4432
+ }
4433
+ }
4434
+ file_scanningconfig_proto_msgTypes[40].Exporter = func(v any, i int) any {
4435
+ switch v := v.(*PrerequisiteSettings); i {
4436
+ case 0:
4437
+ return &v.state
4438
+ case 1:
4439
+ return &v.sizeCache
4440
+ case 2:
4441
+ return &v.unknownFields
4442
+ default:
4443
+ return nil
4444
+ }
4445
+ }
4446
+ file_scanningconfig_proto_msgTypes[41].Exporter = func(v any, i int) any {
4447
+ switch v := v.(*LogSettings); i {
4448
+ case 0:
4449
+ return &v.state
4450
+ case 1:
4451
+ return &v.sizeCache
4452
+ case 2:
4453
+ return &v.unknownFields
4454
+ default:
4455
+ return nil
4456
+ }
4457
+ }
2186
4458
  }
2187
4459
  file_scanningconfig_proto_msgTypes[2].OneofWrappers = []any{}
2188
4460
  file_scanningconfig_proto_msgTypes[6].OneofWrappers = []any{}
@@ -2198,13 +4470,35 @@ func file_scanningconfig_proto_init() {
2198
4470
  (*TargetData_SccmData)(nil),
2199
4471
  }
2200
4472
  file_scanningconfig_proto_msgTypes[13].OneofWrappers = []any{}
4473
+ file_scanningconfig_proto_msgTypes[18].OneofWrappers = []any{}
4474
+ file_scanningconfig_proto_msgTypes[19].OneofWrappers = []any{}
4475
+ file_scanningconfig_proto_msgTypes[20].OneofWrappers = []any{}
4476
+ file_scanningconfig_proto_msgTypes[21].OneofWrappers = []any{}
4477
+ file_scanningconfig_proto_msgTypes[22].OneofWrappers = []any{}
4478
+ file_scanningconfig_proto_msgTypes[23].OneofWrappers = []any{}
4479
+ file_scanningconfig_proto_msgTypes[24].OneofWrappers = []any{}
4480
+ file_scanningconfig_proto_msgTypes[25].OneofWrappers = []any{}
4481
+ file_scanningconfig_proto_msgTypes[26].OneofWrappers = []any{}
4482
+ file_scanningconfig_proto_msgTypes[27].OneofWrappers = []any{}
4483
+ file_scanningconfig_proto_msgTypes[29].OneofWrappers = []any{}
4484
+ file_scanningconfig_proto_msgTypes[31].OneofWrappers = []any{}
4485
+ file_scanningconfig_proto_msgTypes[32].OneofWrappers = []any{}
4486
+ file_scanningconfig_proto_msgTypes[33].OneofWrappers = []any{}
4487
+ file_scanningconfig_proto_msgTypes[34].OneofWrappers = []any{}
4488
+ file_scanningconfig_proto_msgTypes[35].OneofWrappers = []any{}
4489
+ file_scanningconfig_proto_msgTypes[36].OneofWrappers = []any{}
4490
+ file_scanningconfig_proto_msgTypes[37].OneofWrappers = []any{}
4491
+ file_scanningconfig_proto_msgTypes[38].OneofWrappers = []any{}
4492
+ file_scanningconfig_proto_msgTypes[39].OneofWrappers = []any{}
4493
+ file_scanningconfig_proto_msgTypes[40].OneofWrappers = []any{}
4494
+ file_scanningconfig_proto_msgTypes[41].OneofWrappers = []any{}
2201
4495
  type x struct{}
2202
4496
  out := protoimpl.TypeBuilder{
2203
4497
  File: protoimpl.DescBuilder{
2204
4498
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2205
4499
  RawDescriptor: file_scanningconfig_proto_rawDesc,
2206
- NumEnums: 8,
2207
- NumMessages: 18,
4500
+ NumEnums: 9,
4501
+ NumMessages: 46,
2208
4502
  NumExtensions: 0,
2209
4503
  NumServices: 1,
2210
4504
  },