@lansweeper/scanningconfig-grpc 0.2.5 → 0.2.7
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 +3 -3
- 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/bin/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/scanningconfig_pb.d.ts +33 -0
- package/gen-proto/scanningconfig_pb.js +269 -5
- package/generated-go/scanningconfig.pb.go +235 -129
- 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 +356 -34
- package/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.dgspec.json +2 -2
- package/obj/project.assets.json +2 -2
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/scanningconfig.proto +10 -3
|
@@ -320,7 +320,7 @@ func (x ADData_LDAPType) Number() protoreflect.EnumNumber {
|
|
|
320
320
|
|
|
321
321
|
// Deprecated: Use ADData_LDAPType.Descriptor instead.
|
|
322
322
|
func (ADData_LDAPType) EnumDescriptor() ([]byte, []int) {
|
|
323
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
323
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{15, 0}
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
type Agent_ScanFocus int32
|
|
@@ -369,7 +369,7 @@ func (x Agent_ScanFocus) Number() protoreflect.EnumNumber {
|
|
|
369
369
|
|
|
370
370
|
// Deprecated: Use Agent_ScanFocus.Descriptor instead.
|
|
371
371
|
func (Agent_ScanFocus) EnumDescriptor() ([]byte, []int) {
|
|
372
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
372
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{16, 0}
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
type Credential_CredentialType int32
|
|
@@ -412,7 +412,7 @@ func (x Credential_CredentialType) Number() protoreflect.EnumNumber {
|
|
|
412
412
|
|
|
413
413
|
// Deprecated: Use Credential_CredentialType.Descriptor instead.
|
|
414
414
|
func (Credential_CredentialType) EnumDescriptor() ([]byte, []int) {
|
|
415
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
415
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{17, 0}
|
|
416
416
|
}
|
|
417
417
|
|
|
418
418
|
type GetConfigurationsBySourceRequest struct {
|
|
@@ -1138,6 +1138,7 @@ type TargetData struct {
|
|
|
1138
1138
|
// *TargetData_IpScanData
|
|
1139
1139
|
// *TargetData_AdData
|
|
1140
1140
|
// *TargetData_Target
|
|
1141
|
+
// *TargetData_SccmData
|
|
1141
1142
|
Info isTargetData_Info `protobuf_oneof:"info"`
|
|
1142
1143
|
}
|
|
1143
1144
|
|
|
@@ -1201,6 +1202,7 @@ func (x *TargetData) GetAdData() *ADData {
|
|
|
1201
1202
|
return nil
|
|
1202
1203
|
}
|
|
1203
1204
|
|
|
1205
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
1204
1206
|
func (x *TargetData) GetTarget() string {
|
|
1205
1207
|
if x, ok := x.GetInfo().(*TargetData_Target); ok {
|
|
1206
1208
|
return x.Target
|
|
@@ -1208,6 +1210,13 @@ func (x *TargetData) GetTarget() string {
|
|
|
1208
1210
|
return ""
|
|
1209
1211
|
}
|
|
1210
1212
|
|
|
1213
|
+
func (x *TargetData) GetSccmData() *SCCMData {
|
|
1214
|
+
if x, ok := x.GetInfo().(*TargetData_SccmData); ok {
|
|
1215
|
+
return x.SccmData
|
|
1216
|
+
}
|
|
1217
|
+
return nil
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1211
1220
|
type isTargetData_Info interface {
|
|
1212
1221
|
isTargetData_Info()
|
|
1213
1222
|
}
|
|
@@ -1221,15 +1230,69 @@ type TargetData_AdData struct {
|
|
|
1221
1230
|
}
|
|
1222
1231
|
|
|
1223
1232
|
type TargetData_Target struct {
|
|
1233
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
1224
1234
|
Target string `protobuf:"bytes,4,opt,name=target,proto3,oneof"`
|
|
1225
1235
|
}
|
|
1226
1236
|
|
|
1237
|
+
type TargetData_SccmData struct {
|
|
1238
|
+
SccmData *SCCMData `protobuf:"bytes,5,opt,name=sccm_data,json=sccmData,proto3,oneof"`
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1227
1241
|
func (*TargetData_IpScanData) isTargetData_Info() {}
|
|
1228
1242
|
|
|
1229
1243
|
func (*TargetData_AdData) isTargetData_Info() {}
|
|
1230
1244
|
|
|
1231
1245
|
func (*TargetData_Target) isTargetData_Info() {}
|
|
1232
1246
|
|
|
1247
|
+
func (*TargetData_SccmData) isTargetData_Info() {}
|
|
1248
|
+
|
|
1249
|
+
type SCCMData struct {
|
|
1250
|
+
state protoimpl.MessageState
|
|
1251
|
+
sizeCache protoimpl.SizeCache
|
|
1252
|
+
unknownFields protoimpl.UnknownFields
|
|
1253
|
+
|
|
1254
|
+
Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"`
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
func (x *SCCMData) Reset() {
|
|
1258
|
+
*x = SCCMData{}
|
|
1259
|
+
if protoimpl.UnsafeEnabled {
|
|
1260
|
+
mi := &file_scanningconfig_proto_msgTypes[12]
|
|
1261
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1262
|
+
ms.StoreMessageInfo(mi)
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
func (x *SCCMData) String() string {
|
|
1267
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
func (*SCCMData) ProtoMessage() {}
|
|
1271
|
+
|
|
1272
|
+
func (x *SCCMData) ProtoReflect() protoreflect.Message {
|
|
1273
|
+
mi := &file_scanningconfig_proto_msgTypes[12]
|
|
1274
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1275
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1276
|
+
if ms.LoadMessageInfo() == nil {
|
|
1277
|
+
ms.StoreMessageInfo(mi)
|
|
1278
|
+
}
|
|
1279
|
+
return ms
|
|
1280
|
+
}
|
|
1281
|
+
return mi.MessageOf(x)
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
// Deprecated: Use SCCMData.ProtoReflect.Descriptor instead.
|
|
1285
|
+
func (*SCCMData) Descriptor() ([]byte, []int) {
|
|
1286
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{12}
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
func (x *SCCMData) GetTarget() string {
|
|
1290
|
+
if x != nil {
|
|
1291
|
+
return x.Target
|
|
1292
|
+
}
|
|
1293
|
+
return ""
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1233
1296
|
type IPScanData struct {
|
|
1234
1297
|
state protoimpl.MessageState
|
|
1235
1298
|
sizeCache protoimpl.SizeCache
|
|
@@ -1243,7 +1306,7 @@ type IPScanData struct {
|
|
|
1243
1306
|
func (x *IPScanData) Reset() {
|
|
1244
1307
|
*x = IPScanData{}
|
|
1245
1308
|
if protoimpl.UnsafeEnabled {
|
|
1246
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1309
|
+
mi := &file_scanningconfig_proto_msgTypes[13]
|
|
1247
1310
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1248
1311
|
ms.StoreMessageInfo(mi)
|
|
1249
1312
|
}
|
|
@@ -1256,7 +1319,7 @@ func (x *IPScanData) String() string {
|
|
|
1256
1319
|
func (*IPScanData) ProtoMessage() {}
|
|
1257
1320
|
|
|
1258
1321
|
func (x *IPScanData) ProtoReflect() protoreflect.Message {
|
|
1259
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1322
|
+
mi := &file_scanningconfig_proto_msgTypes[13]
|
|
1260
1323
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1261
1324
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1262
1325
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1269,7 +1332,7 @@ func (x *IPScanData) ProtoReflect() protoreflect.Message {
|
|
|
1269
1332
|
|
|
1270
1333
|
// Deprecated: Use IPScanData.ProtoReflect.Descriptor instead.
|
|
1271
1334
|
func (*IPScanData) Descriptor() ([]byte, []int) {
|
|
1272
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1335
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{13}
|
|
1273
1336
|
}
|
|
1274
1337
|
|
|
1275
1338
|
func (x *IPScanData) GetType() IPScanType {
|
|
@@ -1306,7 +1369,7 @@ type IPScanPing struct {
|
|
|
1306
1369
|
func (x *IPScanPing) Reset() {
|
|
1307
1370
|
*x = IPScanPing{}
|
|
1308
1371
|
if protoimpl.UnsafeEnabled {
|
|
1309
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1372
|
+
mi := &file_scanningconfig_proto_msgTypes[14]
|
|
1310
1373
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1311
1374
|
ms.StoreMessageInfo(mi)
|
|
1312
1375
|
}
|
|
@@ -1319,7 +1382,7 @@ func (x *IPScanPing) String() string {
|
|
|
1319
1382
|
func (*IPScanPing) ProtoMessage() {}
|
|
1320
1383
|
|
|
1321
1384
|
func (x *IPScanPing) ProtoReflect() protoreflect.Message {
|
|
1322
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1385
|
+
mi := &file_scanningconfig_proto_msgTypes[14]
|
|
1323
1386
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1324
1387
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1325
1388
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1332,7 +1395,7 @@ func (x *IPScanPing) ProtoReflect() protoreflect.Message {
|
|
|
1332
1395
|
|
|
1333
1396
|
// Deprecated: Use IPScanPing.ProtoReflect.Descriptor instead.
|
|
1334
1397
|
func (*IPScanPing) Descriptor() ([]byte, []int) {
|
|
1335
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1398
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{14}
|
|
1336
1399
|
}
|
|
1337
1400
|
|
|
1338
1401
|
func (x *IPScanPing) GetUsePing() bool {
|
|
@@ -1368,12 +1431,13 @@ type ADData struct {
|
|
|
1368
1431
|
UserGroupScan bool `protobuf:"varint,5,opt,name=user_group_scan,json=userGroupScan,proto3" json:"user_group_scan,omitempty"`
|
|
1369
1432
|
LdapType ADData_LDAPType `protobuf:"varint,6,opt,name=ldap_type,json=ldapType,proto3,enum=lansweeper.scanningconfig.v1.ADData_LDAPType" json:"ldap_type,omitempty"`
|
|
1370
1433
|
Port int32 `protobuf:"varint,7,opt,name=port,proto3" json:"port,omitempty"`
|
|
1434
|
+
AdsiPath string `protobuf:"bytes,8,opt,name=adsi_path,json=adsiPath,proto3" json:"adsi_path,omitempty"`
|
|
1371
1435
|
}
|
|
1372
1436
|
|
|
1373
1437
|
func (x *ADData) Reset() {
|
|
1374
1438
|
*x = ADData{}
|
|
1375
1439
|
if protoimpl.UnsafeEnabled {
|
|
1376
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1440
|
+
mi := &file_scanningconfig_proto_msgTypes[15]
|
|
1377
1441
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1378
1442
|
ms.StoreMessageInfo(mi)
|
|
1379
1443
|
}
|
|
@@ -1386,7 +1450,7 @@ func (x *ADData) String() string {
|
|
|
1386
1450
|
func (*ADData) ProtoMessage() {}
|
|
1387
1451
|
|
|
1388
1452
|
func (x *ADData) ProtoReflect() protoreflect.Message {
|
|
1389
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1453
|
+
mi := &file_scanningconfig_proto_msgTypes[15]
|
|
1390
1454
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1391
1455
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1392
1456
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1399,7 +1463,7 @@ func (x *ADData) ProtoReflect() protoreflect.Message {
|
|
|
1399
1463
|
|
|
1400
1464
|
// Deprecated: Use ADData.ProtoReflect.Descriptor instead.
|
|
1401
1465
|
func (*ADData) Descriptor() ([]byte, []int) {
|
|
1402
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1466
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{15}
|
|
1403
1467
|
}
|
|
1404
1468
|
|
|
1405
1469
|
func (x *ADData) GetName() string {
|
|
@@ -1451,6 +1515,13 @@ func (x *ADData) GetPort() int32 {
|
|
|
1451
1515
|
return 0
|
|
1452
1516
|
}
|
|
1453
1517
|
|
|
1518
|
+
func (x *ADData) GetAdsiPath() string {
|
|
1519
|
+
if x != nil {
|
|
1520
|
+
return x.AdsiPath
|
|
1521
|
+
}
|
|
1522
|
+
return ""
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1454
1525
|
type Agent struct {
|
|
1455
1526
|
state protoimpl.MessageState
|
|
1456
1527
|
sizeCache protoimpl.SizeCache
|
|
@@ -1462,7 +1533,7 @@ type Agent struct {
|
|
|
1462
1533
|
func (x *Agent) Reset() {
|
|
1463
1534
|
*x = Agent{}
|
|
1464
1535
|
if protoimpl.UnsafeEnabled {
|
|
1465
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1536
|
+
mi := &file_scanningconfig_proto_msgTypes[16]
|
|
1466
1537
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1467
1538
|
ms.StoreMessageInfo(mi)
|
|
1468
1539
|
}
|
|
@@ -1475,7 +1546,7 @@ func (x *Agent) String() string {
|
|
|
1475
1546
|
func (*Agent) ProtoMessage() {}
|
|
1476
1547
|
|
|
1477
1548
|
func (x *Agent) ProtoReflect() protoreflect.Message {
|
|
1478
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1549
|
+
mi := &file_scanningconfig_proto_msgTypes[16]
|
|
1479
1550
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1480
1551
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1481
1552
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1488,7 +1559,7 @@ func (x *Agent) ProtoReflect() protoreflect.Message {
|
|
|
1488
1559
|
|
|
1489
1560
|
// Deprecated: Use Agent.ProtoReflect.Descriptor instead.
|
|
1490
1561
|
func (*Agent) Descriptor() ([]byte, []int) {
|
|
1491
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1562
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{16}
|
|
1492
1563
|
}
|
|
1493
1564
|
|
|
1494
1565
|
func (x *Agent) GetScanFocus() Agent_ScanFocus {
|
|
@@ -1503,14 +1574,16 @@ type Credential struct {
|
|
|
1503
1574
|
sizeCache protoimpl.SizeCache
|
|
1504
1575
|
unknownFields protoimpl.UnknownFields
|
|
1505
1576
|
|
|
1506
|
-
|
|
1507
|
-
|
|
1577
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
1578
|
+
Type Credential_CredentialType `protobuf:"varint,1,opt,name=type,proto3,enum=lansweeper.scanningconfig.v1.Credential_CredentialType" json:"type,omitempty"`
|
|
1579
|
+
Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
|
|
1580
|
+
Order int32 `protobuf:"varint,3,opt,name=order,proto3" json:"order,omitempty"`
|
|
1508
1581
|
}
|
|
1509
1582
|
|
|
1510
1583
|
func (x *Credential) Reset() {
|
|
1511
1584
|
*x = Credential{}
|
|
1512
1585
|
if protoimpl.UnsafeEnabled {
|
|
1513
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1586
|
+
mi := &file_scanningconfig_proto_msgTypes[17]
|
|
1514
1587
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1515
1588
|
ms.StoreMessageInfo(mi)
|
|
1516
1589
|
}
|
|
@@ -1523,7 +1596,7 @@ func (x *Credential) String() string {
|
|
|
1523
1596
|
func (*Credential) ProtoMessage() {}
|
|
1524
1597
|
|
|
1525
1598
|
func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
1526
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1599
|
+
mi := &file_scanningconfig_proto_msgTypes[17]
|
|
1527
1600
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1528
1601
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1529
1602
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1536,9 +1609,10 @@ func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
|
1536
1609
|
|
|
1537
1610
|
// Deprecated: Use Credential.ProtoReflect.Descriptor instead.
|
|
1538
1611
|
func (*Credential) Descriptor() ([]byte, []int) {
|
|
1539
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1612
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{17}
|
|
1540
1613
|
}
|
|
1541
1614
|
|
|
1615
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
1542
1616
|
func (x *Credential) GetType() Credential_CredentialType {
|
|
1543
1617
|
if x != nil {
|
|
1544
1618
|
return x.Type
|
|
@@ -1553,6 +1627,13 @@ func (x *Credential) GetId() string {
|
|
|
1553
1627
|
return ""
|
|
1554
1628
|
}
|
|
1555
1629
|
|
|
1630
|
+
func (x *Credential) GetOrder() int32 {
|
|
1631
|
+
if x != nil {
|
|
1632
|
+
return x.Order
|
|
1633
|
+
}
|
|
1634
|
+
return 0
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1556
1637
|
var File_scanningconfig_proto protoreflect.FileDescriptor
|
|
1557
1638
|
|
|
1558
1639
|
var file_scanningconfig_proto_rawDesc = []byte{
|
|
@@ -1697,7 +1778,7 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
1697
1778
|
0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53, 0x45,
|
|
1698
1779
|
0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52,
|
|
1699
1780
|
0x59, 0x10, 0x02, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
|
|
1700
|
-
0x75, 0x73, 0x22,
|
|
1781
|
+
0x75, 0x73, 0x22, 0x97, 0x03, 0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x61, 0x74,
|
|
1701
1782
|
0x61, 0x12, 0x47, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
|
|
1702
1783
|
0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
1703
1784
|
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54,
|
|
@@ -1711,87 +1792,97 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
1711
1792
|
0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
1712
1793
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
|
|
1713
1794
|
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x48,
|
|
1714
|
-
0x00, 0x52, 0x06, 0x61, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12,
|
|
1715
|
-
0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
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,
|
|
1729
1840
|
0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
1730
|
-
0x2e, 0x76, 0x31, 0x2e,
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
0x12,
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65,
|
|
1776
|
-
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
|
|
1777
|
-
0x00, 0x2a, 0x3b, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
1778
|
-
0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x49, 0x50, 0x5f, 0x53, 0x43,
|
|
1779
|
-
0x41, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x41, 0x4e,
|
|
1780
|
-
0x47, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x4f, 0x53, 0x54, 0x10, 0x02, 0x32, 0xb8,
|
|
1781
|
-
0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
1782
|
-
0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9e, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74,
|
|
1783
|
-
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79,
|
|
1784
|
-
0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
1785
|
-
0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
|
|
1786
|
-
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
|
|
1787
|
-
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52,
|
|
1788
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
1789
|
-
0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66,
|
|
1790
|
-
0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
|
|
1791
|
-
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52,
|
|
1792
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67,
|
|
1793
|
-
0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
|
1794
|
-
0x74, 0x6f, 0x33,
|
|
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,
|
|
1795
1886
|
}
|
|
1796
1887
|
|
|
1797
1888
|
var (
|
|
@@ -1807,7 +1898,7 @@ func file_scanningconfig_proto_rawDescGZIP() []byte {
|
|
|
1807
1898
|
}
|
|
1808
1899
|
|
|
1809
1900
|
var file_scanningconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 8)
|
|
1810
|
-
var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
1901
|
+
var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 18)
|
|
1811
1902
|
var file_scanningconfig_proto_goTypes = []any{
|
|
1812
1903
|
(IPScanType)(0), // 0: lansweeper.scanningconfig.v1.IPScanType
|
|
1813
1904
|
(Component_ComponentType)(0), // 1: lansweeper.scanningconfig.v1.Component.ComponentType
|
|
@@ -1829,11 +1920,12 @@ var file_scanningconfig_proto_goTypes = []any{
|
|
|
1829
1920
|
(*Agentless)(nil), // 17: lansweeper.scanningconfig.v1.Agentless
|
|
1830
1921
|
(*ActionDefinition)(nil), // 18: lansweeper.scanningconfig.v1.ActionDefinition
|
|
1831
1922
|
(*TargetData)(nil), // 19: lansweeper.scanningconfig.v1.TargetData
|
|
1832
|
-
(*
|
|
1833
|
-
(*
|
|
1834
|
-
(*
|
|
1835
|
-
(*
|
|
1836
|
-
(*
|
|
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
|
|
1837
1929
|
}
|
|
1838
1930
|
var file_scanningconfig_proto_depIdxs = []int32{
|
|
1839
1931
|
10, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
|
|
@@ -1845,27 +1937,28 @@ var file_scanningconfig_proto_depIdxs = []int32{
|
|
|
1845
1937
|
12, // 6: lansweeper.scanningconfig.v1.OperationalConfig.network_visibility_config:type_name -> lansweeper.scanningconfig.v1.NetworkVisibility
|
|
1846
1938
|
15, // 7: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
|
|
1847
1939
|
2, // 8: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
|
|
1848
|
-
|
|
1849
|
-
|
|
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
|
|
1850
1942
|
17, // 11: lansweeper.scanningconfig.v1.Action.agentless:type_name -> lansweeper.scanningconfig.v1.Agentless
|
|
1851
1943
|
18, // 12: lansweeper.scanningconfig.v1.Action.action_definition:type_name -> lansweeper.scanningconfig.v1.ActionDefinition
|
|
1852
1944
|
3, // 13: lansweeper.scanningconfig.v1.ActionDefinition.scan_focus:type_name -> lansweeper.scanningconfig.v1.ActionDefinition.ScanFocus
|
|
1853
1945
|
19, // 14: lansweeper.scanningconfig.v1.ActionDefinition.targets_data:type_name -> lansweeper.scanningconfig.v1.TargetData
|
|
1854
1946
|
4, // 15: lansweeper.scanningconfig.v1.TargetData.type:type_name -> lansweeper.scanningconfig.v1.TargetData.TargetType
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
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
|
|
1869
1962
|
}
|
|
1870
1963
|
|
|
1871
1964
|
func init() { file_scanningconfig_proto_init() }
|
|
@@ -2019,7 +2112,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2019
2112
|
}
|
|
2020
2113
|
}
|
|
2021
2114
|
file_scanningconfig_proto_msgTypes[12].Exporter = func(v any, i int) any {
|
|
2022
|
-
switch v := v.(*
|
|
2115
|
+
switch v := v.(*SCCMData); i {
|
|
2023
2116
|
case 0:
|
|
2024
2117
|
return &v.state
|
|
2025
2118
|
case 1:
|
|
@@ -2031,7 +2124,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2031
2124
|
}
|
|
2032
2125
|
}
|
|
2033
2126
|
file_scanningconfig_proto_msgTypes[13].Exporter = func(v any, i int) any {
|
|
2034
|
-
switch v := v.(*
|
|
2127
|
+
switch v := v.(*IPScanData); i {
|
|
2035
2128
|
case 0:
|
|
2036
2129
|
return &v.state
|
|
2037
2130
|
case 1:
|
|
@@ -2043,7 +2136,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2043
2136
|
}
|
|
2044
2137
|
}
|
|
2045
2138
|
file_scanningconfig_proto_msgTypes[14].Exporter = func(v any, i int) any {
|
|
2046
|
-
switch v := v.(*
|
|
2139
|
+
switch v := v.(*IPScanPing); i {
|
|
2047
2140
|
case 0:
|
|
2048
2141
|
return &v.state
|
|
2049
2142
|
case 1:
|
|
@@ -2055,7 +2148,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2055
2148
|
}
|
|
2056
2149
|
}
|
|
2057
2150
|
file_scanningconfig_proto_msgTypes[15].Exporter = func(v any, i int) any {
|
|
2058
|
-
switch v := v.(*
|
|
2151
|
+
switch v := v.(*ADData); i {
|
|
2059
2152
|
case 0:
|
|
2060
2153
|
return &v.state
|
|
2061
2154
|
case 1:
|
|
@@ -2067,6 +2160,18 @@ func file_scanningconfig_proto_init() {
|
|
|
2067
2160
|
}
|
|
2068
2161
|
}
|
|
2069
2162
|
file_scanningconfig_proto_msgTypes[16].Exporter = func(v any, i int) any {
|
|
2163
|
+
switch v := v.(*Agent); i {
|
|
2164
|
+
case 0:
|
|
2165
|
+
return &v.state
|
|
2166
|
+
case 1:
|
|
2167
|
+
return &v.sizeCache
|
|
2168
|
+
case 2:
|
|
2169
|
+
return &v.unknownFields
|
|
2170
|
+
default:
|
|
2171
|
+
return nil
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
file_scanningconfig_proto_msgTypes[17].Exporter = func(v any, i int) any {
|
|
2070
2175
|
switch v := v.(*Credential); i {
|
|
2071
2176
|
case 0:
|
|
2072
2177
|
return &v.state
|
|
@@ -2090,15 +2195,16 @@ func file_scanningconfig_proto_init() {
|
|
|
2090
2195
|
(*TargetData_IpScanData)(nil),
|
|
2091
2196
|
(*TargetData_AdData)(nil),
|
|
2092
2197
|
(*TargetData_Target)(nil),
|
|
2198
|
+
(*TargetData_SccmData)(nil),
|
|
2093
2199
|
}
|
|
2094
|
-
file_scanningconfig_proto_msgTypes[
|
|
2200
|
+
file_scanningconfig_proto_msgTypes[13].OneofWrappers = []any{}
|
|
2095
2201
|
type x struct{}
|
|
2096
2202
|
out := protoimpl.TypeBuilder{
|
|
2097
2203
|
File: protoimpl.DescBuilder{
|
|
2098
2204
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
2099
2205
|
RawDescriptor: file_scanningconfig_proto_rawDesc,
|
|
2100
2206
|
NumEnums: 8,
|
|
2101
|
-
NumMessages:
|
|
2207
|
+
NumMessages: 18,
|
|
2102
2208
|
NumExtensions: 0,
|
|
2103
2209
|
NumServices: 1,
|
|
2104
2210
|
},
|