@lansweeper/scanningconfig-grpc 0.1.0 → 0.1.2
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.
- package/CHANGELOG.md +16 -0
- package/Lansweeper.ScanningConfig.GRPC.csproj +12 -12
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json +2 -2
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/scanningconfig_pb.d.ts +63 -0
- package/gen-proto/scanningconfig_pb.js +531 -6
- package/generated-go/scanningconfig.pb.go +329 -140
- package/generated-go/scanningconfig_grpc.pb.go +1 -1
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.AssemblyReference.cache +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.CoreCompileInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/proto/Scanningconfig.cs +578 -38
- package/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Debug/net6.0/refint/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.dgspec.json +2 -2
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.props +1 -1
- package/obj/project.assets.json +2 -2
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/scanningconfig.proto +16 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
2
|
// versions:
|
|
3
|
-
// protoc-gen-go v1.
|
|
4
|
-
// protoc v3.
|
|
3
|
+
// protoc-gen-go v1.33.0
|
|
4
|
+
// protoc v3.19.1
|
|
5
5
|
// source: scanningconfig.proto
|
|
6
6
|
|
|
7
7
|
package generated_go
|
|
@@ -115,7 +115,7 @@ func (x Action_ActionType) Number() protoreflect.EnumNumber {
|
|
|
115
115
|
|
|
116
116
|
// Deprecated: Use Action_ActionType.Descriptor instead.
|
|
117
117
|
func (Action_ActionType) EnumDescriptor() ([]byte, []int) {
|
|
118
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
118
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{8, 0}
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
type Agent_ScanFocus int32
|
|
@@ -164,7 +164,7 @@ func (x Agent_ScanFocus) Number() protoreflect.EnumNumber {
|
|
|
164
164
|
|
|
165
165
|
// Deprecated: Use Agent_ScanFocus.Descriptor instead.
|
|
166
166
|
func (Agent_ScanFocus) EnumDescriptor() ([]byte, []int) {
|
|
167
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
167
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{10, 0}
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
type Credential_CredentialType int32
|
|
@@ -207,7 +207,7 @@ func (x Credential_CredentialType) Number() protoreflect.EnumNumber {
|
|
|
207
207
|
|
|
208
208
|
// Deprecated: Use Credential_CredentialType.Descriptor instead.
|
|
209
209
|
func (Credential_CredentialType) EnumDescriptor() ([]byte, []int) {
|
|
210
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
210
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{11, 0}
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
type GetConfigurationsBySourceRequest struct {
|
|
@@ -321,6 +321,7 @@ type Component struct {
|
|
|
321
321
|
Type Component_ComponentType `protobuf:"varint,2,opt,name=type,proto3,enum=lansweeper.scanningconfig.v1.Component_ComponentType" json:"type,omitempty"`
|
|
322
322
|
Actions []*Action `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"`
|
|
323
323
|
OpConfig *OperationalConfig `protobuf:"bytes,4,opt,name=op_config,json=opConfig,proto3,oneof" json:"op_config,omitempty"`
|
|
324
|
+
Enabled bool `protobuf:"varint,5,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
324
325
|
}
|
|
325
326
|
|
|
326
327
|
func (x *Component) Reset() {
|
|
@@ -383,6 +384,14 @@ func (x *Component) GetOpConfig() *OperationalConfig {
|
|
|
383
384
|
return nil
|
|
384
385
|
}
|
|
385
386
|
|
|
387
|
+
func (x *Component) GetEnabled() bool {
|
|
388
|
+
if x != nil {
|
|
389
|
+
return x.Enabled
|
|
390
|
+
}
|
|
391
|
+
return false
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
386
395
|
type AssetRadar struct {
|
|
387
396
|
state protoimpl.MessageState
|
|
388
397
|
sizeCache protoimpl.SizeCache
|
|
@@ -438,6 +447,61 @@ func (x *AssetRadar) GetExcludedInterfaces() []string {
|
|
|
438
447
|
return nil
|
|
439
448
|
}
|
|
440
449
|
|
|
450
|
+
type NetworkVisibility struct {
|
|
451
|
+
state protoimpl.MessageState
|
|
452
|
+
sizeCache protoimpl.SizeCache
|
|
453
|
+
unknownFields protoimpl.UnknownFields
|
|
454
|
+
|
|
455
|
+
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
456
|
+
ExcludedInterfaces []string `protobuf:"bytes,2,rep,name=excluded_interfaces,json=excludedInterfaces,proto3" json:"excluded_interfaces,omitempty"`
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
func (x *NetworkVisibility) Reset() {
|
|
460
|
+
*x = NetworkVisibility{}
|
|
461
|
+
if protoimpl.UnsafeEnabled {
|
|
462
|
+
mi := &file_scanningconfig_proto_msgTypes[4]
|
|
463
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
464
|
+
ms.StoreMessageInfo(mi)
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
func (x *NetworkVisibility) String() string {
|
|
469
|
+
return protoimpl.X.MessageStringOf(x)
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
func (*NetworkVisibility) ProtoMessage() {}
|
|
473
|
+
|
|
474
|
+
func (x *NetworkVisibility) ProtoReflect() protoreflect.Message {
|
|
475
|
+
mi := &file_scanningconfig_proto_msgTypes[4]
|
|
476
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
477
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
478
|
+
if ms.LoadMessageInfo() == nil {
|
|
479
|
+
ms.StoreMessageInfo(mi)
|
|
480
|
+
}
|
|
481
|
+
return ms
|
|
482
|
+
}
|
|
483
|
+
return mi.MessageOf(x)
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
// Deprecated: Use NetworkVisibility.ProtoReflect.Descriptor instead.
|
|
487
|
+
func (*NetworkVisibility) Descriptor() ([]byte, []int) {
|
|
488
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{4}
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
func (x *NetworkVisibility) GetEnabled() bool {
|
|
492
|
+
if x != nil {
|
|
493
|
+
return x.Enabled
|
|
494
|
+
}
|
|
495
|
+
return false
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
func (x *NetworkVisibility) GetExcludedInterfaces() []string {
|
|
499
|
+
if x != nil {
|
|
500
|
+
return x.ExcludedInterfaces
|
|
501
|
+
}
|
|
502
|
+
return nil
|
|
503
|
+
}
|
|
504
|
+
|
|
441
505
|
type AutoUpdate struct {
|
|
442
506
|
state protoimpl.MessageState
|
|
443
507
|
sizeCache protoimpl.SizeCache
|
|
@@ -450,7 +514,7 @@ type AutoUpdate struct {
|
|
|
450
514
|
func (x *AutoUpdate) Reset() {
|
|
451
515
|
*x = AutoUpdate{}
|
|
452
516
|
if protoimpl.UnsafeEnabled {
|
|
453
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
517
|
+
mi := &file_scanningconfig_proto_msgTypes[5]
|
|
454
518
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
455
519
|
ms.StoreMessageInfo(mi)
|
|
456
520
|
}
|
|
@@ -463,7 +527,7 @@ func (x *AutoUpdate) String() string {
|
|
|
463
527
|
func (*AutoUpdate) ProtoMessage() {}
|
|
464
528
|
|
|
465
529
|
func (x *AutoUpdate) ProtoReflect() protoreflect.Message {
|
|
466
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
530
|
+
mi := &file_scanningconfig_proto_msgTypes[5]
|
|
467
531
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
468
532
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
469
533
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -476,7 +540,7 @@ func (x *AutoUpdate) ProtoReflect() protoreflect.Message {
|
|
|
476
540
|
|
|
477
541
|
// Deprecated: Use AutoUpdate.ProtoReflect.Descriptor instead.
|
|
478
542
|
func (*AutoUpdate) Descriptor() ([]byte, []int) {
|
|
479
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
543
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{5}
|
|
480
544
|
}
|
|
481
545
|
|
|
482
546
|
func (x *AutoUpdate) GetEnabled() bool {
|
|
@@ -498,14 +562,16 @@ type OperationalConfig struct {
|
|
|
498
562
|
sizeCache protoimpl.SizeCache
|
|
499
563
|
unknownFields protoimpl.UnknownFields
|
|
500
564
|
|
|
501
|
-
|
|
502
|
-
|
|
565
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
566
|
+
AssetRadarConfig *AssetRadar `protobuf:"bytes,1,opt,name=asset_radar_config,json=assetRadarConfig,proto3,oneof" json:"asset_radar_config,omitempty"`
|
|
567
|
+
AutoUpdateConfig *AutoUpdate `protobuf:"bytes,2,opt,name=auto_update_config,json=autoUpdateConfig,proto3,oneof" json:"auto_update_config,omitempty"`
|
|
568
|
+
NetworkVisibilityConfig *NetworkVisibility `protobuf:"bytes,3,opt,name=network_visibility_config,json=networkVisibilityConfig,proto3,oneof" json:"network_visibility_config,omitempty"`
|
|
503
569
|
}
|
|
504
570
|
|
|
505
571
|
func (x *OperationalConfig) Reset() {
|
|
506
572
|
*x = OperationalConfig{}
|
|
507
573
|
if protoimpl.UnsafeEnabled {
|
|
508
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
574
|
+
mi := &file_scanningconfig_proto_msgTypes[6]
|
|
509
575
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
510
576
|
ms.StoreMessageInfo(mi)
|
|
511
577
|
}
|
|
@@ -518,7 +584,7 @@ func (x *OperationalConfig) String() string {
|
|
|
518
584
|
func (*OperationalConfig) ProtoMessage() {}
|
|
519
585
|
|
|
520
586
|
func (x *OperationalConfig) ProtoReflect() protoreflect.Message {
|
|
521
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
587
|
+
mi := &file_scanningconfig_proto_msgTypes[6]
|
|
522
588
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
523
589
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
524
590
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -531,9 +597,10 @@ func (x *OperationalConfig) ProtoReflect() protoreflect.Message {
|
|
|
531
597
|
|
|
532
598
|
// Deprecated: Use OperationalConfig.ProtoReflect.Descriptor instead.
|
|
533
599
|
func (*OperationalConfig) Descriptor() ([]byte, []int) {
|
|
534
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
600
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{6}
|
|
535
601
|
}
|
|
536
602
|
|
|
603
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
537
604
|
func (x *OperationalConfig) GetAssetRadarConfig() *AssetRadar {
|
|
538
605
|
if x != nil {
|
|
539
606
|
return x.AssetRadarConfig
|
|
@@ -548,6 +615,13 @@ func (x *OperationalConfig) GetAutoUpdateConfig() *AutoUpdate {
|
|
|
548
615
|
return nil
|
|
549
616
|
}
|
|
550
617
|
|
|
618
|
+
func (x *OperationalConfig) GetNetworkVisibilityConfig() *NetworkVisibility {
|
|
619
|
+
if x != nil {
|
|
620
|
+
return x.NetworkVisibilityConfig
|
|
621
|
+
}
|
|
622
|
+
return nil
|
|
623
|
+
}
|
|
624
|
+
|
|
551
625
|
type Trigger struct {
|
|
552
626
|
state protoimpl.MessageState
|
|
553
627
|
sizeCache protoimpl.SizeCache
|
|
@@ -559,7 +633,7 @@ type Trigger struct {
|
|
|
559
633
|
func (x *Trigger) Reset() {
|
|
560
634
|
*x = Trigger{}
|
|
561
635
|
if protoimpl.UnsafeEnabled {
|
|
562
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
636
|
+
mi := &file_scanningconfig_proto_msgTypes[7]
|
|
563
637
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
564
638
|
ms.StoreMessageInfo(mi)
|
|
565
639
|
}
|
|
@@ -572,7 +646,7 @@ func (x *Trigger) String() string {
|
|
|
572
646
|
func (*Trigger) ProtoMessage() {}
|
|
573
647
|
|
|
574
648
|
func (x *Trigger) ProtoReflect() protoreflect.Message {
|
|
575
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
649
|
+
mi := &file_scanningconfig_proto_msgTypes[7]
|
|
576
650
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
577
651
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
578
652
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -585,7 +659,7 @@ func (x *Trigger) ProtoReflect() protoreflect.Message {
|
|
|
585
659
|
|
|
586
660
|
// Deprecated: Use Trigger.ProtoReflect.Descriptor instead.
|
|
587
661
|
func (*Trigger) Descriptor() ([]byte, []int) {
|
|
588
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
662
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{7}
|
|
589
663
|
}
|
|
590
664
|
|
|
591
665
|
func (x *Trigger) GetCronExpr() string {
|
|
@@ -604,14 +678,16 @@ type Action struct {
|
|
|
604
678
|
ActionType Action_ActionType `protobuf:"varint,2,opt,name=action_type,json=actionType,proto3,enum=lansweeper.scanningconfig.v1.Action_ActionType" json:"action_type,omitempty"`
|
|
605
679
|
Credentials []*Credential `protobuf:"bytes,3,rep,name=credentials,proto3" json:"credentials,omitempty"`
|
|
606
680
|
// Types that are assignable to Definition:
|
|
681
|
+
//
|
|
607
682
|
// *Action_Agent
|
|
683
|
+
// *Action_Agentless
|
|
608
684
|
Definition isAction_Definition `protobuf_oneof:"definition"`
|
|
609
685
|
}
|
|
610
686
|
|
|
611
687
|
func (x *Action) Reset() {
|
|
612
688
|
*x = Action{}
|
|
613
689
|
if protoimpl.UnsafeEnabled {
|
|
614
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
690
|
+
mi := &file_scanningconfig_proto_msgTypes[8]
|
|
615
691
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
616
692
|
ms.StoreMessageInfo(mi)
|
|
617
693
|
}
|
|
@@ -624,7 +700,7 @@ func (x *Action) String() string {
|
|
|
624
700
|
func (*Action) ProtoMessage() {}
|
|
625
701
|
|
|
626
702
|
func (x *Action) ProtoReflect() protoreflect.Message {
|
|
627
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
703
|
+
mi := &file_scanningconfig_proto_msgTypes[8]
|
|
628
704
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
629
705
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
630
706
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -637,7 +713,7 @@ func (x *Action) ProtoReflect() protoreflect.Message {
|
|
|
637
713
|
|
|
638
714
|
// Deprecated: Use Action.ProtoReflect.Descriptor instead.
|
|
639
715
|
func (*Action) Descriptor() ([]byte, []int) {
|
|
640
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
716
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{8}
|
|
641
717
|
}
|
|
642
718
|
|
|
643
719
|
func (x *Action) GetTriggers() []*Trigger {
|
|
@@ -675,6 +751,13 @@ func (x *Action) GetAgent() *Agent {
|
|
|
675
751
|
return nil
|
|
676
752
|
}
|
|
677
753
|
|
|
754
|
+
func (x *Action) GetAgentless() *Agentless {
|
|
755
|
+
if x, ok := x.GetDefinition().(*Action_Agentless); ok {
|
|
756
|
+
return x.Agentless
|
|
757
|
+
}
|
|
758
|
+
return nil
|
|
759
|
+
}
|
|
760
|
+
|
|
678
761
|
type isAction_Definition interface {
|
|
679
762
|
isAction_Definition()
|
|
680
763
|
}
|
|
@@ -683,8 +766,61 @@ type Action_Agent struct {
|
|
|
683
766
|
Agent *Agent `protobuf:"bytes,4,opt,name=agent,proto3,oneof"`
|
|
684
767
|
}
|
|
685
768
|
|
|
769
|
+
type Action_Agentless struct {
|
|
770
|
+
Agentless *Agentless `protobuf:"bytes,5,opt,name=agentless,proto3,oneof"`
|
|
771
|
+
}
|
|
772
|
+
|
|
686
773
|
func (*Action_Agent) isAction_Definition() {}
|
|
687
774
|
|
|
775
|
+
func (*Action_Agentless) isAction_Definition() {}
|
|
776
|
+
|
|
777
|
+
type Agentless struct {
|
|
778
|
+
state protoimpl.MessageState
|
|
779
|
+
sizeCache protoimpl.SizeCache
|
|
780
|
+
unknownFields protoimpl.UnknownFields
|
|
781
|
+
|
|
782
|
+
Targets []string `protobuf:"bytes,1,rep,name=targets,proto3" json:"targets,omitempty"`
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
func (x *Agentless) Reset() {
|
|
786
|
+
*x = Agentless{}
|
|
787
|
+
if protoimpl.UnsafeEnabled {
|
|
788
|
+
mi := &file_scanningconfig_proto_msgTypes[9]
|
|
789
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
790
|
+
ms.StoreMessageInfo(mi)
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
func (x *Agentless) String() string {
|
|
795
|
+
return protoimpl.X.MessageStringOf(x)
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
func (*Agentless) ProtoMessage() {}
|
|
799
|
+
|
|
800
|
+
func (x *Agentless) ProtoReflect() protoreflect.Message {
|
|
801
|
+
mi := &file_scanningconfig_proto_msgTypes[9]
|
|
802
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
803
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
804
|
+
if ms.LoadMessageInfo() == nil {
|
|
805
|
+
ms.StoreMessageInfo(mi)
|
|
806
|
+
}
|
|
807
|
+
return ms
|
|
808
|
+
}
|
|
809
|
+
return mi.MessageOf(x)
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
// Deprecated: Use Agentless.ProtoReflect.Descriptor instead.
|
|
813
|
+
func (*Agentless) Descriptor() ([]byte, []int) {
|
|
814
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{9}
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
func (x *Agentless) GetTargets() []string {
|
|
818
|
+
if x != nil {
|
|
819
|
+
return x.Targets
|
|
820
|
+
}
|
|
821
|
+
return nil
|
|
822
|
+
}
|
|
823
|
+
|
|
688
824
|
type Agent struct {
|
|
689
825
|
state protoimpl.MessageState
|
|
690
826
|
sizeCache protoimpl.SizeCache
|
|
@@ -696,7 +832,7 @@ type Agent struct {
|
|
|
696
832
|
func (x *Agent) Reset() {
|
|
697
833
|
*x = Agent{}
|
|
698
834
|
if protoimpl.UnsafeEnabled {
|
|
699
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
835
|
+
mi := &file_scanningconfig_proto_msgTypes[10]
|
|
700
836
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
701
837
|
ms.StoreMessageInfo(mi)
|
|
702
838
|
}
|
|
@@ -709,7 +845,7 @@ func (x *Agent) String() string {
|
|
|
709
845
|
func (*Agent) ProtoMessage() {}
|
|
710
846
|
|
|
711
847
|
func (x *Agent) ProtoReflect() protoreflect.Message {
|
|
712
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
848
|
+
mi := &file_scanningconfig_proto_msgTypes[10]
|
|
713
849
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
714
850
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
715
851
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -722,7 +858,7 @@ func (x *Agent) ProtoReflect() protoreflect.Message {
|
|
|
722
858
|
|
|
723
859
|
// Deprecated: Use Agent.ProtoReflect.Descriptor instead.
|
|
724
860
|
func (*Agent) Descriptor() ([]byte, []int) {
|
|
725
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
861
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{10}
|
|
726
862
|
}
|
|
727
863
|
|
|
728
864
|
func (x *Agent) GetScanFocus() Agent_ScanFocus {
|
|
@@ -743,7 +879,7 @@ type Credential struct {
|
|
|
743
879
|
func (x *Credential) Reset() {
|
|
744
880
|
*x = Credential{}
|
|
745
881
|
if protoimpl.UnsafeEnabled {
|
|
746
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
882
|
+
mi := &file_scanningconfig_proto_msgTypes[11]
|
|
747
883
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
748
884
|
ms.StoreMessageInfo(mi)
|
|
749
885
|
}
|
|
@@ -756,7 +892,7 @@ func (x *Credential) String() string {
|
|
|
756
892
|
func (*Credential) ProtoMessage() {}
|
|
757
893
|
|
|
758
894
|
func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
759
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
895
|
+
mi := &file_scanningconfig_proto_msgTypes[11]
|
|
760
896
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
761
897
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
762
898
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -769,7 +905,7 @@ func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
|
769
905
|
|
|
770
906
|
// Deprecated: Use Credential.ProtoReflect.Descriptor instead.
|
|
771
907
|
func (*Credential) Descriptor() ([]byte, []int) {
|
|
772
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
908
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{11}
|
|
773
909
|
}
|
|
774
910
|
|
|
775
911
|
func (x *Credential) GetType() Credential_CredentialType {
|
|
@@ -797,7 +933,7 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
797
933
|
0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
798
934
|
0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
799
935
|
0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63,
|
|
800
|
-
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22,
|
|
936
|
+
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0xe9, 0x02, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x70, 0x6f,
|
|
801
937
|
0x6e, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
802
938
|
0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
803
939
|
0x28, 0x0e, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
@@ -813,92 +949,116 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
813
949
|
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
814
950
|
0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e,
|
|
815
951
|
0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88,
|
|
816
|
-
0x01, 0x01,
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
0x0a,
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
0x12,
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
0x73,
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
0x09, 0x52, 0x08, 0x63, 0x72, 0x6f, 0x6e, 0x45, 0x78, 0x70, 0x72, 0x22, 0xde, 0x02, 0x0a, 0x06,
|
|
850
|
-
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65,
|
|
851
|
-
0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
852
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
|
|
853
|
-
0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x52,
|
|
854
|
-
0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x12, 0x50, 0x0a, 0x0b, 0x61, 0x63, 0x74,
|
|
855
|
-
0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f,
|
|
856
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
|
|
857
|
-
0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x63,
|
|
858
|
-
0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52,
|
|
859
|
-
0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4a, 0x0a, 0x0b, 0x63,
|
|
860
|
-
0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
|
|
861
|
-
0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
|
|
862
|
-
0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
863
|
-
0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x64,
|
|
864
|
-
0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3b, 0x0a, 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74,
|
|
865
|
-
0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
952
|
+
0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x05, 0x20,
|
|
953
|
+
0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x46, 0x0a, 0x0d,
|
|
954
|
+
0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
|
|
955
|
+
0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09,
|
|
956
|
+
0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x5f,
|
|
957
|
+
0x53, 0x45, 0x4e, 0x53, 0x4f, 0x52, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x54, 0x5f, 0x48,
|
|
958
|
+
0x55, 0x42, 0x10, 0x03, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
|
|
959
|
+
0x69, 0x67, 0x22, 0x5b, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72,
|
|
960
|
+
0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
961
|
+
0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x13, 0x65, 0x78,
|
|
962
|
+
0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65,
|
|
963
|
+
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65,
|
|
964
|
+
0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22,
|
|
965
|
+
0x5e, 0x0a, 0x11, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69,
|
|
966
|
+
0x6c, 0x69, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18,
|
|
967
|
+
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x2f,
|
|
968
|
+
0x0a, 0x13, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
|
|
969
|
+
0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x63,
|
|
970
|
+
0x6c, 0x75, 0x64, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22,
|
|
971
|
+
0x42, 0x0a, 0x0a, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a,
|
|
972
|
+
0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
|
|
973
|
+
0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64,
|
|
974
|
+
0x75, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x63, 0x68, 0x65, 0x64,
|
|
975
|
+
0x75, 0x6c, 0x65, 0x22, 0x8f, 0x03, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
|
|
976
|
+
0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x5f, 0x0a, 0x12, 0x61, 0x73, 0x73,
|
|
977
|
+
0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18,
|
|
978
|
+
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
979
|
+
0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69,
|
|
980
|
+
0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61, 0x72, 0x42,
|
|
981
|
+
0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x52, 0x61, 0x64, 0x61,
|
|
982
|
+
0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x12, 0x61, 0x75,
|
|
983
|
+
0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
984
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
866
985
|
0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
|
|
867
|
-
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41,
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
0x05, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66,
|
|
873
|
-
0x6f, 0x63, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e,
|
|
986
|
+
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
987
|
+
0x48, 0x01, 0x52, 0x10, 0x61, 0x75, 0x74, 0x6f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f,
|
|
988
|
+
0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x19, 0x6e, 0x65, 0x74, 0x77, 0x6f,
|
|
989
|
+
0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f,
|
|
990
|
+
0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e,
|
|
874
991
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
875
|
-
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
0x10, 0x00, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x43,
|
|
889
|
-
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e, 0x01, 0x0a,
|
|
890
|
-
0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
|
|
891
|
-
0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e,
|
|
892
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
893
|
-
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e,
|
|
894
|
-
0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75,
|
|
895
|
-
0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e,
|
|
992
|
+
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
|
|
993
|
+
0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x48, 0x02, 0x52, 0x17, 0x6e,
|
|
994
|
+
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
|
|
995
|
+
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x73,
|
|
996
|
+
0x73, 0x65, 0x74, 0x5f, 0x72, 0x61, 0x64, 0x61, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
997
|
+
0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
998
|
+
0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6e, 0x65, 0x74, 0x77,
|
|
999
|
+
0x6f, 0x72, 0x6b, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x63,
|
|
1000
|
+
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x26, 0x0a, 0x07, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72,
|
|
1001
|
+
0x12, 0x1b, 0x0a, 0x09, 0x63, 0x72, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x72, 0x18, 0x01, 0x20,
|
|
1002
|
+
0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x72, 0x6f, 0x6e, 0x45, 0x78, 0x70, 0x72, 0x22, 0xa7, 0x03,
|
|
1003
|
+
0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x08, 0x74, 0x72, 0x69, 0x67,
|
|
1004
|
+
0x67, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6c, 0x61, 0x6e,
|
|
896
1005
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
897
|
-
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
1006
|
+
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65,
|
|
1007
|
+
0x72, 0x52, 0x08, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x73, 0x12, 0x50, 0x0a, 0x0b, 0x61,
|
|
1008
|
+
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
|
|
1009
|
+
0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63,
|
|
1010
|
+
0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e,
|
|
1011
|
+
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
|
|
1012
|
+
0x65, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4a, 0x0a,
|
|
1013
|
+
0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03,
|
|
1014
|
+
0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
1015
|
+
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
1016
|
+
0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x0b, 0x63, 0x72,
|
|
1017
|
+
0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3b, 0x0a, 0x05, 0x61, 0x67, 0x65,
|
|
1018
|
+
0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
1019
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f,
|
|
1020
|
+
0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52,
|
|
1021
|
+
0x05, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x47, 0x0a, 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x6c,
|
|
1022
|
+
0x65, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
1023
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
|
|
1024
|
+
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65,
|
|
1025
|
+
0x73, 0x73, 0x48, 0x00, 0x52, 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x6c, 0x65, 0x73, 0x73, 0x22,
|
|
1026
|
+
0x28, 0x0a, 0x0a, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
|
|
1027
|
+
0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09,
|
|
1028
|
+
0x0a, 0x05, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x64, 0x65, 0x66,
|
|
1029
|
+
0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x25, 0x0a, 0x09, 0x41, 0x67, 0x65, 0x6e, 0x74,
|
|
1030
|
+
0x6c, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18,
|
|
1031
|
+
0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x22, 0x85,
|
|
1032
|
+
0x01, 0x0a, 0x05, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e,
|
|
1033
|
+
0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c,
|
|
1034
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
|
|
1035
|
+
0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e,
|
|
1036
|
+
0x74, 0x2e, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x52, 0x09, 0x73, 0x63, 0x61,
|
|
1037
|
+
0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f,
|
|
1038
|
+
0x63, 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05,
|
|
1039
|
+
0x55, 0x53, 0x45, 0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e,
|
|
1040
|
+
0x54, 0x4f, 0x52, 0x59, 0x10, 0x02, 0x22, 0x7c, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e,
|
|
1041
|
+
0x74, 0x69, 0x61, 0x6c, 0x12, 0x4b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
|
|
1042
|
+
0x28, 0x0e, 0x32, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
1043
|
+
0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76,
|
|
1044
|
+
0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x72, 0x65,
|
|
1045
|
+
0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
|
|
1046
|
+
0x65, 0x22, 0x21, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54,
|
|
1047
|
+
0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
|
|
1048
|
+
0x45, 0x44, 0x10, 0x00, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e,
|
|
1049
|
+
0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e,
|
|
1050
|
+
0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,
|
|
1051
|
+
0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c,
|
|
1052
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
|
|
1053
|
+
0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43,
|
|
1054
|
+
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53,
|
|
1055
|
+
0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c,
|
|
1056
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69,
|
|
1057
|
+
0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43,
|
|
1058
|
+
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53,
|
|
1059
|
+
0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42,
|
|
1060
|
+
0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67,
|
|
1061
|
+
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
902
1062
|
}
|
|
903
1063
|
|
|
904
1064
|
var (
|
|
@@ -914,7 +1074,7 @@ func file_scanningconfig_proto_rawDescGZIP() []byte {
|
|
|
914
1074
|
}
|
|
915
1075
|
|
|
916
1076
|
var file_scanningconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
|
|
917
|
-
var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
1077
|
+
var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
|
|
918
1078
|
var file_scanningconfig_proto_goTypes = []interface{}{
|
|
919
1079
|
(Component_ComponentType)(0), // 0: lansweeper.scanningconfig.v1.Component.ComponentType
|
|
920
1080
|
(Action_ActionType)(0), // 1: lansweeper.scanningconfig.v1.Action.ActionType
|
|
@@ -924,33 +1084,37 @@ var file_scanningconfig_proto_goTypes = []interface{}{
|
|
|
924
1084
|
(*GetConfigurationsBySourceResponse)(nil), // 5: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
|
|
925
1085
|
(*Component)(nil), // 6: lansweeper.scanningconfig.v1.Component
|
|
926
1086
|
(*AssetRadar)(nil), // 7: lansweeper.scanningconfig.v1.AssetRadar
|
|
927
|
-
(*
|
|
928
|
-
(*
|
|
929
|
-
(*
|
|
930
|
-
(*
|
|
931
|
-
(*
|
|
932
|
-
(*
|
|
1087
|
+
(*NetworkVisibility)(nil), // 8: lansweeper.scanningconfig.v1.NetworkVisibility
|
|
1088
|
+
(*AutoUpdate)(nil), // 9: lansweeper.scanningconfig.v1.AutoUpdate
|
|
1089
|
+
(*OperationalConfig)(nil), // 10: lansweeper.scanningconfig.v1.OperationalConfig
|
|
1090
|
+
(*Trigger)(nil), // 11: lansweeper.scanningconfig.v1.Trigger
|
|
1091
|
+
(*Action)(nil), // 12: lansweeper.scanningconfig.v1.Action
|
|
1092
|
+
(*Agentless)(nil), // 13: lansweeper.scanningconfig.v1.Agentless
|
|
1093
|
+
(*Agent)(nil), // 14: lansweeper.scanningconfig.v1.Agent
|
|
1094
|
+
(*Credential)(nil), // 15: lansweeper.scanningconfig.v1.Credential
|
|
933
1095
|
}
|
|
934
1096
|
var file_scanningconfig_proto_depIdxs = []int32{
|
|
935
1097
|
6, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
|
|
936
1098
|
0, // 1: lansweeper.scanningconfig.v1.Component.type:type_name -> lansweeper.scanningconfig.v1.Component.ComponentType
|
|
937
|
-
|
|
938
|
-
|
|
1099
|
+
12, // 2: lansweeper.scanningconfig.v1.Component.actions:type_name -> lansweeper.scanningconfig.v1.Action
|
|
1100
|
+
10, // 3: lansweeper.scanningconfig.v1.Component.op_config:type_name -> lansweeper.scanningconfig.v1.OperationalConfig
|
|
939
1101
|
7, // 4: lansweeper.scanningconfig.v1.OperationalConfig.asset_radar_config:type_name -> lansweeper.scanningconfig.v1.AssetRadar
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
1102
|
+
9, // 5: lansweeper.scanningconfig.v1.OperationalConfig.auto_update_config:type_name -> lansweeper.scanningconfig.v1.AutoUpdate
|
|
1103
|
+
8, // 6: lansweeper.scanningconfig.v1.OperationalConfig.network_visibility_config:type_name -> lansweeper.scanningconfig.v1.NetworkVisibility
|
|
1104
|
+
11, // 7: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
|
|
1105
|
+
1, // 8: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
|
|
1106
|
+
15, // 9: lansweeper.scanningconfig.v1.Action.credentials:type_name -> lansweeper.scanningconfig.v1.Credential
|
|
1107
|
+
14, // 10: lansweeper.scanningconfig.v1.Action.agent:type_name -> lansweeper.scanningconfig.v1.Agent
|
|
1108
|
+
13, // 11: lansweeper.scanningconfig.v1.Action.agentless:type_name -> lansweeper.scanningconfig.v1.Agentless
|
|
1109
|
+
2, // 12: lansweeper.scanningconfig.v1.Agent.scan_focus:type_name -> lansweeper.scanningconfig.v1.Agent.ScanFocus
|
|
1110
|
+
3, // 13: lansweeper.scanningconfig.v1.Credential.type:type_name -> lansweeper.scanningconfig.v1.Credential.CredentialType
|
|
1111
|
+
4, // 14: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
|
|
1112
|
+
5, // 15: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
|
|
1113
|
+
15, // [15:16] is the sub-list for method output_type
|
|
1114
|
+
14, // [14:15] is the sub-list for method input_type
|
|
1115
|
+
14, // [14:14] is the sub-list for extension type_name
|
|
1116
|
+
14, // [14:14] is the sub-list for extension extendee
|
|
1117
|
+
0, // [0:14] is the sub-list for field type_name
|
|
954
1118
|
}
|
|
955
1119
|
|
|
956
1120
|
func init() { file_scanningconfig_proto_init() }
|
|
@@ -1008,7 +1172,7 @@ func file_scanningconfig_proto_init() {
|
|
|
1008
1172
|
}
|
|
1009
1173
|
}
|
|
1010
1174
|
file_scanningconfig_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
1011
|
-
switch v := v.(*
|
|
1175
|
+
switch v := v.(*NetworkVisibility); i {
|
|
1012
1176
|
case 0:
|
|
1013
1177
|
return &v.state
|
|
1014
1178
|
case 1:
|
|
@@ -1020,7 +1184,7 @@ func file_scanningconfig_proto_init() {
|
|
|
1020
1184
|
}
|
|
1021
1185
|
}
|
|
1022
1186
|
file_scanningconfig_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
1023
|
-
switch v := v.(*
|
|
1187
|
+
switch v := v.(*AutoUpdate); i {
|
|
1024
1188
|
case 0:
|
|
1025
1189
|
return &v.state
|
|
1026
1190
|
case 1:
|
|
@@ -1032,7 +1196,7 @@ func file_scanningconfig_proto_init() {
|
|
|
1032
1196
|
}
|
|
1033
1197
|
}
|
|
1034
1198
|
file_scanningconfig_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
1035
|
-
switch v := v.(*
|
|
1199
|
+
switch v := v.(*OperationalConfig); i {
|
|
1036
1200
|
case 0:
|
|
1037
1201
|
return &v.state
|
|
1038
1202
|
case 1:
|
|
@@ -1044,7 +1208,7 @@ func file_scanningconfig_proto_init() {
|
|
|
1044
1208
|
}
|
|
1045
1209
|
}
|
|
1046
1210
|
file_scanningconfig_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
1047
|
-
switch v := v.(*
|
|
1211
|
+
switch v := v.(*Trigger); i {
|
|
1048
1212
|
case 0:
|
|
1049
1213
|
return &v.state
|
|
1050
1214
|
case 1:
|
|
@@ -1056,7 +1220,7 @@ func file_scanningconfig_proto_init() {
|
|
|
1056
1220
|
}
|
|
1057
1221
|
}
|
|
1058
1222
|
file_scanningconfig_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
1059
|
-
switch v := v.(*
|
|
1223
|
+
switch v := v.(*Action); i {
|
|
1060
1224
|
case 0:
|
|
1061
1225
|
return &v.state
|
|
1062
1226
|
case 1:
|
|
@@ -1068,6 +1232,30 @@ func file_scanningconfig_proto_init() {
|
|
|
1068
1232
|
}
|
|
1069
1233
|
}
|
|
1070
1234
|
file_scanningconfig_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
1235
|
+
switch v := v.(*Agentless); i {
|
|
1236
|
+
case 0:
|
|
1237
|
+
return &v.state
|
|
1238
|
+
case 1:
|
|
1239
|
+
return &v.sizeCache
|
|
1240
|
+
case 2:
|
|
1241
|
+
return &v.unknownFields
|
|
1242
|
+
default:
|
|
1243
|
+
return nil
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
file_scanningconfig_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
1247
|
+
switch v := v.(*Agent); i {
|
|
1248
|
+
case 0:
|
|
1249
|
+
return &v.state
|
|
1250
|
+
case 1:
|
|
1251
|
+
return &v.sizeCache
|
|
1252
|
+
case 2:
|
|
1253
|
+
return &v.unknownFields
|
|
1254
|
+
default:
|
|
1255
|
+
return nil
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
file_scanningconfig_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
1071
1259
|
switch v := v.(*Credential); i {
|
|
1072
1260
|
case 0:
|
|
1073
1261
|
return &v.state
|
|
@@ -1081,9 +1269,10 @@ func file_scanningconfig_proto_init() {
|
|
|
1081
1269
|
}
|
|
1082
1270
|
}
|
|
1083
1271
|
file_scanningconfig_proto_msgTypes[2].OneofWrappers = []interface{}{}
|
|
1084
|
-
file_scanningconfig_proto_msgTypes[
|
|
1085
|
-
file_scanningconfig_proto_msgTypes[
|
|
1272
|
+
file_scanningconfig_proto_msgTypes[6].OneofWrappers = []interface{}{}
|
|
1273
|
+
file_scanningconfig_proto_msgTypes[8].OneofWrappers = []interface{}{
|
|
1086
1274
|
(*Action_Agent)(nil),
|
|
1275
|
+
(*Action_Agentless)(nil),
|
|
1087
1276
|
}
|
|
1088
1277
|
type x struct{}
|
|
1089
1278
|
out := protoimpl.TypeBuilder{
|
|
@@ -1091,7 +1280,7 @@ func file_scanningconfig_proto_init() {
|
|
|
1091
1280
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
1092
1281
|
RawDescriptor: file_scanningconfig_proto_rawDesc,
|
|
1093
1282
|
NumEnums: 4,
|
|
1094
|
-
NumMessages:
|
|
1283
|
+
NumMessages: 12,
|
|
1095
1284
|
NumExtensions: 0,
|
|
1096
1285
|
NumServices: 1,
|
|
1097
1286
|
},
|