@lansweeper/scanningconfig-grpc 0.2.5 → 0.2.6
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 +8 -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 +30 -0
- package/gen-proto/scanningconfig_pb.js +238 -4
- package/generated-go/scanningconfig.pb.go +225 -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 +318 -33
- 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 +9 -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 {
|
|
@@ -1373,7 +1436,7 @@ type ADData struct {
|
|
|
1373
1436
|
func (x *ADData) Reset() {
|
|
1374
1437
|
*x = ADData{}
|
|
1375
1438
|
if protoimpl.UnsafeEnabled {
|
|
1376
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1439
|
+
mi := &file_scanningconfig_proto_msgTypes[15]
|
|
1377
1440
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1378
1441
|
ms.StoreMessageInfo(mi)
|
|
1379
1442
|
}
|
|
@@ -1386,7 +1449,7 @@ func (x *ADData) String() string {
|
|
|
1386
1449
|
func (*ADData) ProtoMessage() {}
|
|
1387
1450
|
|
|
1388
1451
|
func (x *ADData) ProtoReflect() protoreflect.Message {
|
|
1389
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1452
|
+
mi := &file_scanningconfig_proto_msgTypes[15]
|
|
1390
1453
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1391
1454
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1392
1455
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1399,7 +1462,7 @@ func (x *ADData) ProtoReflect() protoreflect.Message {
|
|
|
1399
1462
|
|
|
1400
1463
|
// Deprecated: Use ADData.ProtoReflect.Descriptor instead.
|
|
1401
1464
|
func (*ADData) Descriptor() ([]byte, []int) {
|
|
1402
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1465
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{15}
|
|
1403
1466
|
}
|
|
1404
1467
|
|
|
1405
1468
|
func (x *ADData) GetName() string {
|
|
@@ -1462,7 +1525,7 @@ type Agent struct {
|
|
|
1462
1525
|
func (x *Agent) Reset() {
|
|
1463
1526
|
*x = Agent{}
|
|
1464
1527
|
if protoimpl.UnsafeEnabled {
|
|
1465
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1528
|
+
mi := &file_scanningconfig_proto_msgTypes[16]
|
|
1466
1529
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1467
1530
|
ms.StoreMessageInfo(mi)
|
|
1468
1531
|
}
|
|
@@ -1475,7 +1538,7 @@ func (x *Agent) String() string {
|
|
|
1475
1538
|
func (*Agent) ProtoMessage() {}
|
|
1476
1539
|
|
|
1477
1540
|
func (x *Agent) ProtoReflect() protoreflect.Message {
|
|
1478
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1541
|
+
mi := &file_scanningconfig_proto_msgTypes[16]
|
|
1479
1542
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1480
1543
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1481
1544
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1488,7 +1551,7 @@ func (x *Agent) ProtoReflect() protoreflect.Message {
|
|
|
1488
1551
|
|
|
1489
1552
|
// Deprecated: Use Agent.ProtoReflect.Descriptor instead.
|
|
1490
1553
|
func (*Agent) Descriptor() ([]byte, []int) {
|
|
1491
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1554
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{16}
|
|
1492
1555
|
}
|
|
1493
1556
|
|
|
1494
1557
|
func (x *Agent) GetScanFocus() Agent_ScanFocus {
|
|
@@ -1503,14 +1566,16 @@ type Credential struct {
|
|
|
1503
1566
|
sizeCache protoimpl.SizeCache
|
|
1504
1567
|
unknownFields protoimpl.UnknownFields
|
|
1505
1568
|
|
|
1506
|
-
|
|
1507
|
-
|
|
1569
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
1570
|
+
Type Credential_CredentialType `protobuf:"varint,1,opt,name=type,proto3,enum=lansweeper.scanningconfig.v1.Credential_CredentialType" json:"type,omitempty"`
|
|
1571
|
+
Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
|
|
1572
|
+
Order int32 `protobuf:"varint,3,opt,name=order,proto3" json:"order,omitempty"`
|
|
1508
1573
|
}
|
|
1509
1574
|
|
|
1510
1575
|
func (x *Credential) Reset() {
|
|
1511
1576
|
*x = Credential{}
|
|
1512
1577
|
if protoimpl.UnsafeEnabled {
|
|
1513
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1578
|
+
mi := &file_scanningconfig_proto_msgTypes[17]
|
|
1514
1579
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1515
1580
|
ms.StoreMessageInfo(mi)
|
|
1516
1581
|
}
|
|
@@ -1523,7 +1588,7 @@ func (x *Credential) String() string {
|
|
|
1523
1588
|
func (*Credential) ProtoMessage() {}
|
|
1524
1589
|
|
|
1525
1590
|
func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
1526
|
-
mi := &file_scanningconfig_proto_msgTypes[
|
|
1591
|
+
mi := &file_scanningconfig_proto_msgTypes[17]
|
|
1527
1592
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1528
1593
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1529
1594
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1536,9 +1601,10 @@ func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
|
1536
1601
|
|
|
1537
1602
|
// Deprecated: Use Credential.ProtoReflect.Descriptor instead.
|
|
1538
1603
|
func (*Credential) Descriptor() ([]byte, []int) {
|
|
1539
|
-
return file_scanningconfig_proto_rawDescGZIP(), []int{
|
|
1604
|
+
return file_scanningconfig_proto_rawDescGZIP(), []int{17}
|
|
1540
1605
|
}
|
|
1541
1606
|
|
|
1607
|
+
// Deprecated: Marked as deprecated in scanningconfig.proto.
|
|
1542
1608
|
func (x *Credential) GetType() Credential_CredentialType {
|
|
1543
1609
|
if x != nil {
|
|
1544
1610
|
return x.Type
|
|
@@ -1553,6 +1619,13 @@ func (x *Credential) GetId() string {
|
|
|
1553
1619
|
return ""
|
|
1554
1620
|
}
|
|
1555
1621
|
|
|
1622
|
+
func (x *Credential) GetOrder() int32 {
|
|
1623
|
+
if x != nil {
|
|
1624
|
+
return x.Order
|
|
1625
|
+
}
|
|
1626
|
+
return 0
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1556
1629
|
var File_scanningconfig_proto protoreflect.FileDescriptor
|
|
1557
1630
|
|
|
1558
1631
|
var file_scanningconfig_proto_rawDesc = []byte{
|
|
@@ -1697,7 +1770,7 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
1697
1770
|
0x12, 0x07, 0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53, 0x45,
|
|
1698
1771
|
0x52, 0x53, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52,
|
|
1699
1772
|
0x59, 0x10, 0x02, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
|
|
1700
|
-
0x75, 0x73, 0x22,
|
|
1773
|
+
0x75, 0x73, 0x22, 0x97, 0x03, 0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x61, 0x74,
|
|
1701
1774
|
0x61, 0x12, 0x47, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
|
|
1702
1775
|
0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
1703
1776
|
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x54,
|
|
@@ -1711,87 +1784,95 @@ var file_scanningconfig_proto_rawDesc = []byte{
|
|
|
1711
1784
|
0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
1712
1785
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63,
|
|
1713
1786
|
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
|
-
|
|
1787
|
+
0x00, 0x52, 0x06, 0x61, 0x64, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x06, 0x74, 0x61, 0x72,
|
|
1788
|
+
0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52,
|
|
1789
|
+
0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x45, 0x0a, 0x09, 0x73, 0x63, 0x63, 0x6d, 0x5f,
|
|
1790
|
+
0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e,
|
|
1791
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,
|
|
1792
|
+
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x43, 0x43, 0x4d, 0x44, 0x61,
|
|
1793
|
+
0x74, 0x61, 0x48, 0x00, 0x52, 0x08, 0x73, 0x63, 0x63, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x22, 0x44,
|
|
1794
|
+
0x0a, 0x0a, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13,
|
|
1795
|
+
0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x54,
|
|
1796
|
+
0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x50, 0x5f, 0x53, 0x43, 0x41, 0x4e,
|
|
1797
|
+
0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x53, 0x43, 0x43, 0x4d, 0x10, 0x02, 0x12, 0x06, 0x0a, 0x02,
|
|
1798
|
+
0x41, 0x44, 0x10, 0x03, 0x42, 0x06, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x22, 0x0a, 0x08,
|
|
1799
|
+
0x53, 0x43, 0x43, 0x4d, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67,
|
|
1800
|
+
0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
|
|
1801
|
+
0x22, 0xae, 0x01, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12,
|
|
1802
|
+
0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e,
|
|
1803
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e,
|
|
1804
|
+
0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x50, 0x53,
|
|
1805
|
+
0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
|
|
1806
|
+
0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
|
|
1807
|
+
0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x41, 0x0a, 0x04, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20,
|
|
1808
|
+
0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
1809
|
+
0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
|
|
1810
|
+
0x76, 0x31, 0x2e, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x50, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52,
|
|
1811
|
+
0x04, 0x70, 0x69, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x69, 0x6e,
|
|
1812
|
+
0x67, 0x22, 0x79, 0x0a, 0x0a, 0x49, 0x50, 0x53, 0x63, 0x61, 0x6e, 0x50, 0x69, 0x6e, 0x67, 0x12,
|
|
1813
|
+
0x19, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x5f, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
1814
|
+
0x08, 0x52, 0x07, 0x75, 0x73, 0x65, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x69,
|
|
1815
|
+
0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
|
|
1816
|
+
0x52, 0x0b, 0x70, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x2d, 0x0a,
|
|
1817
|
+
0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6e, 0x6f, 0x5f, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x5f,
|
|
1818
|
+
0x73, 0x63, 0x61, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70,
|
|
1819
|
+
0x4e, 0x6f, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e, 0x22, 0xba, 0x02, 0x0a,
|
|
1820
|
+
0x06, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
1821
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61,
|
|
1822
|
+
0x64, 0x73, 0x69, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
1823
|
+
0x52, 0x0a, 0x61, 0x64, 0x73, 0x69, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06,
|
|
1824
|
+
0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f,
|
|
1825
|
+
0x6d, 0x61, 0x69, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x75, 0x74, 0x65, 0x72,
|
|
1826
|
+
0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x63, 0x6f, 0x6d,
|
|
1827
|
+
0x70, 0x75, 0x74, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x26, 0x0a, 0x0f, 0x75, 0x73, 0x65,
|
|
1828
|
+
0x72, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x05, 0x20, 0x01,
|
|
1829
|
+
0x28, 0x08, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x63, 0x61,
|
|
1830
|
+
0x6e, 0x12, 0x4a, 0x0a, 0x09, 0x6c, 0x64, 0x61, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06,
|
|
1831
|
+
0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
1729
1832
|
0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
1730
|
-
0x2e, 0x76, 0x31, 0x2e,
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
0x61,
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x0e,
|
|
1774
|
-
0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x21,
|
|
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,
|
|
1833
|
+
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x44, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4c, 0x44, 0x41, 0x50, 0x54,
|
|
1834
|
+
0x79, 0x70, 0x65, 0x52, 0x08, 0x6c, 0x64, 0x61, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a,
|
|
1835
|
+
0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72,
|
|
1836
|
+
0x74, 0x22, 0x36, 0x0a, 0x08, 0x4c, 0x44, 0x41, 0x50, 0x54, 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a,
|
|
1837
|
+
0x11, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x4c, 0x44, 0x41, 0x50, 0x5f, 0x54, 0x59,
|
|
1838
|
+
0x50, 0x45, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x44, 0x41, 0x50, 0x10, 0x01, 0x12, 0x09,
|
|
1839
|
+
0x0a, 0x05, 0x4c, 0x44, 0x41, 0x50, 0x53, 0x10, 0x02, 0x22, 0x85, 0x01, 0x0a, 0x05, 0x41, 0x67,
|
|
1840
|
+
0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x0a, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
|
|
1841
|
+
0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
1842
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e,
|
|
1843
|
+
0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x2e, 0x53, 0x63, 0x61,
|
|
1844
|
+
0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x52, 0x09, 0x73, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75,
|
|
1845
|
+
0x73, 0x22, 0x2e, 0x0a, 0x09, 0x53, 0x63, 0x61, 0x6e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x12, 0x07,
|
|
1846
|
+
0x0a, 0x03, 0x41, 0x4c, 0x4c, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x53, 0x45, 0x52, 0x53,
|
|
1847
|
+
0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52, 0x59, 0x10,
|
|
1848
|
+
0x02, 0x22, 0xa6, 0x01, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c,
|
|
1849
|
+
0x12, 0x4f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37,
|
|
1850
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61, 0x6e,
|
|
1851
|
+
0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72,
|
|
1852
|
+
0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74,
|
|
1853
|
+
0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x42, 0x02, 0x18, 0x01, 0x52, 0x04, 0x74, 0x79, 0x70,
|
|
1854
|
+
0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
|
|
1855
|
+
0x64, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
|
|
1856
|
+
0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x21, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x64, 0x65,
|
|
1857
|
+
0x6e, 0x74, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
|
|
1858
|
+
0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x2a, 0x3b, 0x0a, 0x0a, 0x49, 0x50,
|
|
1859
|
+
0x53, 0x63, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e,
|
|
1860
|
+
0x4f, 0x57, 0x4e, 0x5f, 0x49, 0x50, 0x5f, 0x53, 0x43, 0x41, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45,
|
|
1861
|
+
0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a,
|
|
1862
|
+
0x04, 0x48, 0x4f, 0x53, 0x54, 0x10, 0x02, 0x32, 0xb8, 0x01, 0x0a, 0x15, 0x53, 0x63, 0x61, 0x6e,
|
|
1863
|
+
0x6e, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
|
|
1864
|
+
0x65, 0x12, 0x9e, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
|
|
1865
|
+
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12,
|
|
1866
|
+
0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
1867
|
+
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
1868
|
+
0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
|
1869
|
+
0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
1870
|
+
0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x63, 0x61,
|
|
1871
|
+
0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
1872
|
+
0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
|
1873
|
+
0x42, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
1874
|
+
0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65,
|
|
1875
|
+
0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
1795
1876
|
}
|
|
1796
1877
|
|
|
1797
1878
|
var (
|
|
@@ -1807,7 +1888,7 @@ func file_scanningconfig_proto_rawDescGZIP() []byte {
|
|
|
1807
1888
|
}
|
|
1808
1889
|
|
|
1809
1890
|
var file_scanningconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 8)
|
|
1810
|
-
var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
1891
|
+
var file_scanningconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 18)
|
|
1811
1892
|
var file_scanningconfig_proto_goTypes = []any{
|
|
1812
1893
|
(IPScanType)(0), // 0: lansweeper.scanningconfig.v1.IPScanType
|
|
1813
1894
|
(Component_ComponentType)(0), // 1: lansweeper.scanningconfig.v1.Component.ComponentType
|
|
@@ -1829,11 +1910,12 @@ var file_scanningconfig_proto_goTypes = []any{
|
|
|
1829
1910
|
(*Agentless)(nil), // 17: lansweeper.scanningconfig.v1.Agentless
|
|
1830
1911
|
(*ActionDefinition)(nil), // 18: lansweeper.scanningconfig.v1.ActionDefinition
|
|
1831
1912
|
(*TargetData)(nil), // 19: lansweeper.scanningconfig.v1.TargetData
|
|
1832
|
-
(*
|
|
1833
|
-
(*
|
|
1834
|
-
(*
|
|
1835
|
-
(*
|
|
1836
|
-
(*
|
|
1913
|
+
(*SCCMData)(nil), // 20: lansweeper.scanningconfig.v1.SCCMData
|
|
1914
|
+
(*IPScanData)(nil), // 21: lansweeper.scanningconfig.v1.IPScanData
|
|
1915
|
+
(*IPScanPing)(nil), // 22: lansweeper.scanningconfig.v1.IPScanPing
|
|
1916
|
+
(*ADData)(nil), // 23: lansweeper.scanningconfig.v1.ADData
|
|
1917
|
+
(*Agent)(nil), // 24: lansweeper.scanningconfig.v1.Agent
|
|
1918
|
+
(*Credential)(nil), // 25: lansweeper.scanningconfig.v1.Credential
|
|
1837
1919
|
}
|
|
1838
1920
|
var file_scanningconfig_proto_depIdxs = []int32{
|
|
1839
1921
|
10, // 0: lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse.configs:type_name -> lansweeper.scanningconfig.v1.Component
|
|
@@ -1845,27 +1927,28 @@ var file_scanningconfig_proto_depIdxs = []int32{
|
|
|
1845
1927
|
12, // 6: lansweeper.scanningconfig.v1.OperationalConfig.network_visibility_config:type_name -> lansweeper.scanningconfig.v1.NetworkVisibility
|
|
1846
1928
|
15, // 7: lansweeper.scanningconfig.v1.Action.triggers:type_name -> lansweeper.scanningconfig.v1.Trigger
|
|
1847
1929
|
2, // 8: lansweeper.scanningconfig.v1.Action.action_type:type_name -> lansweeper.scanningconfig.v1.Action.ActionType
|
|
1848
|
-
|
|
1849
|
-
|
|
1930
|
+
25, // 9: lansweeper.scanningconfig.v1.Action.credentials:type_name -> lansweeper.scanningconfig.v1.Credential
|
|
1931
|
+
24, // 10: lansweeper.scanningconfig.v1.Action.agent:type_name -> lansweeper.scanningconfig.v1.Agent
|
|
1850
1932
|
17, // 11: lansweeper.scanningconfig.v1.Action.agentless:type_name -> lansweeper.scanningconfig.v1.Agentless
|
|
1851
1933
|
18, // 12: lansweeper.scanningconfig.v1.Action.action_definition:type_name -> lansweeper.scanningconfig.v1.ActionDefinition
|
|
1852
1934
|
3, // 13: lansweeper.scanningconfig.v1.ActionDefinition.scan_focus:type_name -> lansweeper.scanningconfig.v1.ActionDefinition.ScanFocus
|
|
1853
1935
|
19, // 14: lansweeper.scanningconfig.v1.ActionDefinition.targets_data:type_name -> lansweeper.scanningconfig.v1.TargetData
|
|
1854
1936
|
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
|
-
|
|
1937
|
+
21, // 16: lansweeper.scanningconfig.v1.TargetData.ip_scan_data:type_name -> lansweeper.scanningconfig.v1.IPScanData
|
|
1938
|
+
23, // 17: lansweeper.scanningconfig.v1.TargetData.ad_data:type_name -> lansweeper.scanningconfig.v1.ADData
|
|
1939
|
+
20, // 18: lansweeper.scanningconfig.v1.TargetData.sccm_data:type_name -> lansweeper.scanningconfig.v1.SCCMData
|
|
1940
|
+
0, // 19: lansweeper.scanningconfig.v1.IPScanData.type:type_name -> lansweeper.scanningconfig.v1.IPScanType
|
|
1941
|
+
22, // 20: lansweeper.scanningconfig.v1.IPScanData.ping:type_name -> lansweeper.scanningconfig.v1.IPScanPing
|
|
1942
|
+
5, // 21: lansweeper.scanningconfig.v1.ADData.ldap_type:type_name -> lansweeper.scanningconfig.v1.ADData.LDAPType
|
|
1943
|
+
6, // 22: lansweeper.scanningconfig.v1.Agent.scan_focus:type_name -> lansweeper.scanningconfig.v1.Agent.ScanFocus
|
|
1944
|
+
7, // 23: lansweeper.scanningconfig.v1.Credential.type:type_name -> lansweeper.scanningconfig.v1.Credential.CredentialType
|
|
1945
|
+
8, // 24: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:input_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceRequest
|
|
1946
|
+
9, // 25: lansweeper.scanningconfig.v1.ScanningConfigService.GetConfigurationsBySource:output_type -> lansweeper.scanningconfig.v1.GetConfigurationsBySourceResponse
|
|
1947
|
+
25, // [25:26] is the sub-list for method output_type
|
|
1948
|
+
24, // [24:25] is the sub-list for method input_type
|
|
1949
|
+
24, // [24:24] is the sub-list for extension type_name
|
|
1950
|
+
24, // [24:24] is the sub-list for extension extendee
|
|
1951
|
+
0, // [0:24] is the sub-list for field type_name
|
|
1869
1952
|
}
|
|
1870
1953
|
|
|
1871
1954
|
func init() { file_scanningconfig_proto_init() }
|
|
@@ -2019,7 +2102,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2019
2102
|
}
|
|
2020
2103
|
}
|
|
2021
2104
|
file_scanningconfig_proto_msgTypes[12].Exporter = func(v any, i int) any {
|
|
2022
|
-
switch v := v.(*
|
|
2105
|
+
switch v := v.(*SCCMData); i {
|
|
2023
2106
|
case 0:
|
|
2024
2107
|
return &v.state
|
|
2025
2108
|
case 1:
|
|
@@ -2031,7 +2114,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2031
2114
|
}
|
|
2032
2115
|
}
|
|
2033
2116
|
file_scanningconfig_proto_msgTypes[13].Exporter = func(v any, i int) any {
|
|
2034
|
-
switch v := v.(*
|
|
2117
|
+
switch v := v.(*IPScanData); i {
|
|
2035
2118
|
case 0:
|
|
2036
2119
|
return &v.state
|
|
2037
2120
|
case 1:
|
|
@@ -2043,7 +2126,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2043
2126
|
}
|
|
2044
2127
|
}
|
|
2045
2128
|
file_scanningconfig_proto_msgTypes[14].Exporter = func(v any, i int) any {
|
|
2046
|
-
switch v := v.(*
|
|
2129
|
+
switch v := v.(*IPScanPing); i {
|
|
2047
2130
|
case 0:
|
|
2048
2131
|
return &v.state
|
|
2049
2132
|
case 1:
|
|
@@ -2055,7 +2138,7 @@ func file_scanningconfig_proto_init() {
|
|
|
2055
2138
|
}
|
|
2056
2139
|
}
|
|
2057
2140
|
file_scanningconfig_proto_msgTypes[15].Exporter = func(v any, i int) any {
|
|
2058
|
-
switch v := v.(*
|
|
2141
|
+
switch v := v.(*ADData); i {
|
|
2059
2142
|
case 0:
|
|
2060
2143
|
return &v.state
|
|
2061
2144
|
case 1:
|
|
@@ -2067,6 +2150,18 @@ func file_scanningconfig_proto_init() {
|
|
|
2067
2150
|
}
|
|
2068
2151
|
}
|
|
2069
2152
|
file_scanningconfig_proto_msgTypes[16].Exporter = func(v any, i int) any {
|
|
2153
|
+
switch v := v.(*Agent); i {
|
|
2154
|
+
case 0:
|
|
2155
|
+
return &v.state
|
|
2156
|
+
case 1:
|
|
2157
|
+
return &v.sizeCache
|
|
2158
|
+
case 2:
|
|
2159
|
+
return &v.unknownFields
|
|
2160
|
+
default:
|
|
2161
|
+
return nil
|
|
2162
|
+
}
|
|
2163
|
+
}
|
|
2164
|
+
file_scanningconfig_proto_msgTypes[17].Exporter = func(v any, i int) any {
|
|
2070
2165
|
switch v := v.(*Credential); i {
|
|
2071
2166
|
case 0:
|
|
2072
2167
|
return &v.state
|
|
@@ -2090,15 +2185,16 @@ func file_scanningconfig_proto_init() {
|
|
|
2090
2185
|
(*TargetData_IpScanData)(nil),
|
|
2091
2186
|
(*TargetData_AdData)(nil),
|
|
2092
2187
|
(*TargetData_Target)(nil),
|
|
2188
|
+
(*TargetData_SccmData)(nil),
|
|
2093
2189
|
}
|
|
2094
|
-
file_scanningconfig_proto_msgTypes[
|
|
2190
|
+
file_scanningconfig_proto_msgTypes[13].OneofWrappers = []any{}
|
|
2095
2191
|
type x struct{}
|
|
2096
2192
|
out := protoimpl.TypeBuilder{
|
|
2097
2193
|
File: protoimpl.DescBuilder{
|
|
2098
2194
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
2099
2195
|
RawDescriptor: file_scanningconfig_proto_rawDesc,
|
|
2100
2196
|
NumEnums: 8,
|
|
2101
|
-
NumMessages:
|
|
2197
|
+
NumMessages: 18,
|
|
2102
2198
|
NumExtensions: 0,
|
|
2103
2199
|
NumServices: 1,
|
|
2104
2200
|
},
|