@lansweeper/servicestatus-grpc 0.2.0 → 0.2.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 +22 -0
- package/Lansweeper.ServiceStatus.GRPC.csproj +3 -3
- package/bin/Debug/net46/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/bin/Debug/net46/Lansweeper.ServiceStatus.GRPC.pdb +0 -0
- package/bin/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.deps.json +2 -2
- package/bin/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/bin/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.pdb +0 -0
- package/bin/Debug/net5.0/ref/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/bin/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.deps.json +2 -2
- package/bin/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/bin/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.pdb +0 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/servicestatus_pb.d.ts +0 -6
- package/gen-proto/servicestatus_pb.js +3 -60
- package/obj/Debug/net46/Lansweeper.ServiceStatus.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net46/Lansweeper.ServiceStatus.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net46/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/obj/Debug/net46/Lansweeper.ServiceStatus.GRPC.pdb +0 -0
- package/obj/Debug/net46/proto/Servicestatus.cs +22 -51
- package/obj/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/obj/Debug/net5.0/Lansweeper.ServiceStatus.GRPC.pdb +0 -0
- package/obj/Debug/net5.0/proto/Servicestatus.cs +22 -51
- package/obj/Debug/net5.0/ref/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/obj/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.dll +0 -0
- package/obj/Debug/netstandard2.0/Lansweeper.ServiceStatus.GRPC.pdb +0 -0
- package/obj/Debug/netstandard2.0/proto/Servicestatus.cs +22 -51
- package/obj/Lansweeper.ServiceStatus.GRPC.csproj.nuget.dgspec.json +1 -1
- package/obj/project.assets.json +1 -1
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/servicestatus.proto +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.2.2](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/servicestatus-grpc@0.2.1...@lansweeper/servicestatus-grpc@0.2.2) (2025-03-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* ACME-29971 remove ignorecompat ([b10c618](https://github.com/Lansweeper/lansweeperapis/commit/b10c6188d75ffdbeac9ed46a52b0b68e185e2dc8))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.2.1](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/servicestatus-grpc@0.2.0...@lansweeper/servicestatus-grpc@0.2.1) (2025-03-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* ACME-29971 privileges ([8b405d4](https://github.com/Lansweeper/lansweeperapis/commit/8b405d4269391194e452d930343d3ce0e0c9ce4b))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [0.2.0](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/servicestatus-grpc@0.1.9...@lansweeper/servicestatus-grpc@0.2.0) (2025-03-04)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
<Company>Lansweeper</Company>
|
|
8
8
|
<Product>Lansweeper Syncer</Product>
|
|
9
9
|
<Copyright>Lansweeper</Copyright>
|
|
10
|
-
<PackageVersion>0.1
|
|
11
|
-
<Version>0.1
|
|
12
|
-
<FileVersion>0.1
|
|
10
|
+
<PackageVersion>0.2.1</PackageVersion>
|
|
11
|
+
<Version>0.2.1</Version>
|
|
12
|
+
<FileVersion>0.2.1</FileVersion>
|
|
13
13
|
<RepositoryUrl>https://github.com/Lansweeper/lansweeperapis</RepositoryUrl>
|
|
14
14
|
</PropertyGroup>
|
|
15
15
|
<ItemGroup>
|
|
Binary file
|
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"compilationOptions": {},
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v5.0": {
|
|
9
|
-
"Lansweeper.ServiceStatus.GRPC/0.1
|
|
9
|
+
"Lansweeper.ServiceStatus.GRPC/0.2.1": {
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"Google.Protobuf": "3.15.0",
|
|
12
12
|
"Grpc": "2.46.1",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"libraries": {
|
|
94
|
-
"Lansweeper.ServiceStatus.GRPC/0.1
|
|
94
|
+
"Lansweeper.ServiceStatus.GRPC/0.2.1": {
|
|
95
95
|
"type": "project",
|
|
96
96
|
"serviceable": false,
|
|
97
97
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETStandard,Version=v2.0": {},
|
|
9
9
|
".NETStandard,Version=v2.0/": {
|
|
10
|
-
"Lansweeper.ServiceStatus.GRPC/0.1
|
|
10
|
+
"Lansweeper.ServiceStatus.GRPC/0.2.1": {
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"Google.Protobuf": "3.15.0",
|
|
13
13
|
"Grpc": "2.46.1",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
"libraries": {
|
|
110
|
-
"Lansweeper.ServiceStatus.GRPC/0.1
|
|
110
|
+
"Lansweeper.ServiceStatus.GRPC/0.2.1": {
|
|
111
111
|
"type": "project",
|
|
112
112
|
"serviceable": false,
|
|
113
113
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
package/gen-proto/image.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"file":[{"name":"proto/servicestatus.proto","package":"lansweeper.servicestatus.v1","messageType":[{"name":"ScanningQueueMessage","field":[{"name":"TotalInWindowsQueue","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"TotalInWindowsQueue"},{"name":"TotalInIpQueue","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"TotalInIpQueue"},{"name":"Data","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.ScanningQueueRecord","jsonName":"Data"}]},{"name":"ScanningQueueRecord","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"target","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"target"},{"name":"scanServer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServer"},{"name":"isPrimary","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPrimary"},{"name":"scanType","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.servicestatus.v1.ScanningQueueRecord.ScanType","jsonName":"scanType"},{"name":"ipAddress","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"}],"enumType":[{"name":"ScanType","value":[{"name":"SCAN_TYPE_UNKNOWN_UNSPECIFIED","number":0},{"name":"SCAN_TYPE_IN_QUEUE","number":1},{"name":"SCAN_TYPE_IN_PROCESS","number":2},{"name":"SCAN_TYPE_IN_IP_QUEUE","number":3},{"name":"SCAN_TYPE_IN_IP_PROCESS","number":4},{"name":"SCAN_TYPE_NO_ACTION","number":5},{"name":"SCAN_TYPE_IN_INSTALL_QUEUE","number":6},{"name":"SCAN_TYPE_IN_INSTALL_PROCESS","number":7}]}]},{"name":"InstallationDataMessage","field":[{"name":"isFullInfo","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.servicestatus.v1.InstallationDataMessage.InstallationMessageType","jsonName":"isFullInfo"},{"name":"assetJournalSizeInMb","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"assetJournalSizeInMb"},{"name":"assetJournalSizeInRows","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetJournalSizeInRows"},{"name":"totalScannedAssets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"totalScannedAssets"},{"name":"newAssetsLast30Days","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"newAssetsLast30Days"},{"name":"databaseInfo","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.DatabaseInfo","jsonName":"databaseInfo"},{"name":"scanServersData","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.ScanServerData","jsonName":"scanServersData"}],"enumType":[{"name":"InstallationMessageType","value":[{"name":"INSTALLATION_MESSAGE_TYPE_UNKNOWN_UNSPECIFIED","number":0},{"name":"INSTALLATION_MESSAGE_TYPE_PARTIAL","number":1},{"name":"INSTALLATION_MESSAGE_TYPE_FULL","number":2}]}],"options":{"deprecated":true}},{"name":"DatabaseInfo","field":[{"name":"connection","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"connection"},{"name":"size","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"size"},{"name":"availableSize","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"availableSize"},{"name":"usedSize","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"usedSize"},{"name":"instanceName","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"instanceName"},{"name":"details","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"details"}],"options":{"deprecated":true}},{"name":"ScanServerData","field":[{"name":"scanServerName","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServerName"},{"name":"scanServerVersion","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServerVersion"},{"name":"scanServerStatus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.servicestatus.v1.ScanServerData.ScanServerStatus","jsonName":"scanServerStatus"},{"name":"scanServerStatusDescription","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServerStatusDescription"},{"name":"totalScannedAssets","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"totalScannedAssets"},{"name":"newAssetsLast30Days","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"newAssetsLast30Days"},{"name":"lastScannedAt","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastScannedAt"},{"name":"lastScannedMessage","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastScannedMessage"},{"name":"isPrimary","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPrimary"},{"name":"errors","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"errors"}],"enumType":[{"name":"ScanServerStatus","value":[{"name":"SCAN_SERVER_STATUS_SCANNING_UNSPECIFIED","number":0},{"name":"SCAN_SERVER_STATUS_ERRORS","number":1},{"name":"SCAN_SERVER_STATUS_SUCCESS","number":2},{"name":"SCAN_SERVER_STATUS_SERVER_DOWN","number":3},{"name":"SCAN_SERVER_STATUS_SCANNING","number":4},{"name":"SCAN_SERVER_STATUS_MAINTENANCE","number":5}]}],"options":{"deprecated":true}},{"name":"SendQueueInfoRequest","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.ScanningQueueMessage","jsonName":"message"},{"name":"installKey","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"},{"name":"clientKey","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"}]},{"name":"SendStatusInfoRequest","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.InstallationDataMessage","jsonName":"message"},{"name":"installKey","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"},{"name":"clientKey","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"lsVersion","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsVersion"}],"options":{"deprecated":true}},{"name":"SendQueueInfoResponse","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]},{"name":"SendStatusInfoResponse","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}],"options":{"deprecated":true}}],"service":[{"name":"ScanningStatus","method":[{"name":"SendQueueInfo","inputType":".lansweeper.servicestatus.v1.SendQueueInfoRequest","outputType":".lansweeper.servicestatus.v1.SendQueueInfoResponse"},{"name":"SendStatusInfo","inputType":".lansweeper.servicestatus.v1.SendStatusInfoRequest","outputType":".lansweeper.servicestatus.v1.SendStatusInfoResponse","options":{"deprecated":true}}]}],"options":{"csharpNamespace":"Lansweeper.ServiceStatusAPI.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,109,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[4,0,61]},{"path":[8,37],"span":[4,0,61]},{"path":[4,0],"span":[6,0,10,1]},{"path":[4,0,1],"span":[6,8,28]},{"path":[4,0,2,0],"span":[7,4,34]},{"path":[4,0,2,0,5],"span":[7,4,9]},{"path":[4,0,2,0,1],"span":[7,10,29]},{"path":[4,0,2,0,3],"span":[7,32,33]},{"path":[4,0,2,1],"span":[8,4,29]},{"path":[4,0,2,1,5],"span":[8,4,9]},{"path":[4,0,2,1,1],"span":[8,10,24]},{"path":[4,0,2,1,3],"span":[8,27,28]},{"path":[4,0,2,2],"span":[9,4,42]},{"path":[4,0,2,2,4],"span":[9,4,12]},{"path":[4,0,2,2,6],"span":[9,13,32]},{"path":[4,0,2,2,1],"span":[9,33,37]},{"path":[4,0,2,2,3],"span":[9,40,41]},{"path":[4,1],"span":[12,0,29,1]},{"path":[4,1,1],"span":[12,8,27]},{"path":[4,1,2,0],"span":[13,4,17]},{"path":[4,1,2,0,5],"span":[13,4,9]},{"path":[4,1,2,0,1],"span":[13,10,12]},{"path":[4,1,2,0,3],"span":[13,15,16]},{"path":[4,1,2,1],"span":[14,4,22]},{"path":[4,1,2,1,5],"span":[14,4,10]},{"path":[4,1,2,1,1],"span":[14,11,17]},{"path":[4,1,2,1,3],"span":[14,20,21]},{"path":[4,1,2,2],"span":[15,4,26]},{"path":[4,1,2,2,5],"span":[15,4,10]},{"path":[4,1,2,2,1],"span":[15,11,21]},{"path":[4,1,2,2,3],"span":[15,24,25]},{"path":[4,1,2,3],"span":[16,4,23]},{"path":[4,1,2,3,5],"span":[16,4,8]},{"path":[4,1,2,3,1],"span":[16,9,18]},{"path":[4,1,2,3,3],"span":[16,21,22]},{"path":[4,1,4,0],"span":[17,4,26,5]},{"path":[4,1,4,0,1],"span":[17,9,17]},{"path":[4,1,4,0,2,0],"span":[18,8,42]},{"path":[4,1,4,0,2,0,1],"span":[18,8,37]},{"path":[4,1,4,0,2,0,2],"span":[18,40,41]},{"path":[4,1,4,0,2,1],"span":[19,8,31]},{"path":[4,1,4,0,2,1,1],"span":[19,8,26]},{"path":[4,1,4,0,2,1,2],"span":[19,29,30]},{"path":[4,1,4,0,2,2],"span":[20,8,33]},{"path":[4,1,4,0,2,2,1],"span":[20,8,28]},{"path":[4,1,4,0,2,2,2],"span":[20,31,32]},{"path":[4,1,4,0,2,3],"span":[21,8,34]},{"path":[4,1,4,0,2,3,1],"span":[21,8,29]},{"path":[4,1,4,0,2,3,2],"span":[21,32,33]},{"path":[4,1,4,0,2,4],"span":[22,8,36]},{"path":[4,1,4,0,2,4,1],"span":[22,8,31]},{"path":[4,1,4,0,2,4,2],"span":[22,34,35]},{"path":[4,1,4,0,2,5],"span":[23,8,32]},{"path":[4,1,4,0,2,5,1],"span":[23,8,27]},{"path":[4,1,4,0,2,5,2],"span":[23,30,31]},{"path":[4,1,4,0,2,6],"span":[24,8,39]},{"path":[4,1,4,0,2,6,1],"span":[24,8,34]},{"path":[4,1,4,0,2,6,2],"span":[24,37,38]},{"path":[4,1,4,0,2,7],"span":[25,8,41]},{"path":[4,1,4,0,2,7,1],"span":[25,8,36]},{"path":[4,1,4,0,2,7,2],"span":[25,39,40]},{"path":[4,1,2,4],"span":[27,4,26]},{"path":[4,1,2,4,6],"span":[27,4,12]},{"path":[4,1,2,4,1],"span":[27,13,21]},{"path":[4,1,2,4,3],"span":[27,24,25]},{"path":[4,1,2,5],"span":[28,4,25]},{"path":[4,1,2,5,5],"span":[28,4,10]},{"path":[4,1,2,5,1],"span":[28,11,20]},{"path":[4,1,2,5,3],"span":[28,23,24]},{"path":[4,2],"span":[32,0,46,1]},{"path":[4,2,1],"span":[32,8,31]},{"path":[4,2,7],"span":[33,4,29]},{"path":[4,2,7,3],"span":[33,4,29]},{"path":[4,2,4,0],"span":[34,4,38,5]},{"path":[4,2,4,0,1],"span":[34,9,32]},{"path":[4,2,4,0,2,0],"span":[35,8,58]},{"path":[4,2,4,0,2,0,1],"span":[35,8,53]},{"path":[4,2,4,0,2,0,2],"span":[35,56,57]},{"path":[4,2,4,0,2,1],"span":[36,8,46]},{"path":[4,2,4,0,2,1,1],"span":[36,8,41]},{"path":[4,2,4,0,2,1,2],"span":[36,44,45]},{"path":[4,2,4,0,2,2],"span":[37,8,43]},{"path":[4,2,4,0,2,2,1],"span":[37,8,38]},{"path":[4,2,4,0,2,2,2],"span":[37,41,42]},{"path":[4,2,2,0],"span":[39,4,43]},{"path":[4,2,2,0,6],"span":[39,4,27]},{"path":[4,2,2,0,1],"span":[39,28,38]},{"path":[4,2,2,0,3],"span":[39,41,42]},{"path":[4,2,2,1],"span":[40,4,36]},{"path":[4,2,2,1,5],"span":[40,4,10]},{"path":[4,2,2,1,1],"span":[40,11,31]},{"path":[4,2,2,1,3],"span":[40,34,35]},{"path":[4,2,2,2],"span":[41,4,37]},{"path":[4,2,2,2,5],"span":[41,4,9]},{"path":[4,2,2,2,1],"span":[41,10,32]},{"path":[4,2,2,2,3],"span":[41,35,36]},{"path":[4,2,2,3],"span":[42,4,33]},{"path":[4,2,2,3,5],"span":[42,4,9]},{"path":[4,2,2,3,1],"span":[42,10,28]},{"path":[4,2,2,3,3],"span":[42,31,32]},{"path":[4,2,2,4],"span":[43,4,34]},{"path":[4,2,2,4,5],"span":[43,4,9]},{"path":[4,2,2,4,1],"span":[43,10,29]},{"path":[4,2,2,4,3],"span":[43,32,33]},{"path":[4,2,2,5],"span":[44,4,34]},{"path":[4,2,2,5,6],"span":[44,4,16]},{"path":[4,2,2,5,1],"span":[44,17,29]},{"path":[4,2,2,5,3],"span":[44,32,33]},{"path":[4,2,2,6],"span":[45,4,48]},{"path":[4,2,2,6,4],"span":[45,4,12]},{"path":[4,2,2,6,6],"span":[45,13,27]},{"path":[4,2,2,6,1],"span":[45,28,43]},{"path":[4,2,2,6,3],"span":[45,46,47]},{"path":[4,3],"span":[48,0,56,1]},{"path":[4,3,1],"span":[48,8,20]},{"path":[4,3,7],"span":[49,4,29]},{"path":[4,3,7,3],"span":[49,4,29]},{"path":[4,3,2,0],"span":[50,4,26]},{"path":[4,3,2,0,5],"span":[50,4,10]},{"path":[4,3,2,0,1],"span":[50,11,21]},{"path":[4,3,2,0,3],"span":[50,24,25]},{"path":[4,3,2,1],"span":[51,4,20]},{"path":[4,3,2,1,5],"span":[51,4,10]},{"path":[4,3,2,1,1],"span":[51,11,15]},{"path":[4,3,2,1,3],"span":[51,18,19]},{"path":[4,3,2,2],"span":[52,4,29]},{"path":[4,3,2,2,5],"span":[52,4,10]},{"path":[4,3,2,2,1],"span":[52,11,24]},{"path":[4,3,2,2,3],"span":[52,27,28]},{"path":[4,3,2,3],"span":[53,4,24]},{"path":[4,3,2,3,5],"span":[53,4,10]},{"path":[4,3,2,3,1],"span":[53,11,19]},{"path":[4,3,2,3,3],"span":[53,22,23]},{"path":[4,3,2,4],"span":[54,4,28]},{"path":[4,3,2,4,5],"span":[54,4,10]},{"path":[4,3,2,4,1],"span":[54,11,23]},{"path":[4,3,2,4,3],"span":[54,26,27]},{"path":[4,3,2,5],"span":[55,4,23]},{"path":[4,3,2,5,5],"span":[55,4,10]},{"path":[4,3,2,5,1],"span":[55,11,18]},{"path":[4,3,2,5,3],"span":[55,21,22]},{"path":[4,4],"span":[58,0,79,1]},{"path":[4,4,1],"span":[58,8,22]},{"path":[4,4,7],"span":[59,4,29]},{"path":[4,4,7,3],"span":[59,4,29]},{"path":[4,4,2,0],"span":[60,4,30]},{"path":[4,4,2,0,5],"span":[60,4,10]},{"path":[4,4,2,0,1],"span":[60,11,25]},{"path":[4,4,2,0,3],"span":[60,28,29]},{"path":[4,4,2,1],"span":[61,4,33]},{"path":[4,4,2,1,5],"span":[61,4,10]},{"path":[4,4,2,1,1],"span":[61,11,28]},{"path":[4,4,2,1,3],"span":[61,31,32]},{"path":[4,4,4,0],"span":[62,4,69,5]},{"path":[4,4,4,0,1],"span":[62,9,25]},{"path":[4,4,4,0,2,0],"span":[63,8,52]},{"path":[4,4,4,0,2,0,1],"span":[63,8,47]},{"path":[4,4,4,0,2,0,2],"span":[63,50,51]},{"path":[4,4,4,0,2,1],"span":[64,8,38]},{"path":[4,4,4,0,2,1,1],"span":[64,8,33]},{"path":[4,4,4,0,2,1,2],"span":[64,36,37]},{"path":[4,4,4,0,2,2],"span":[65,8,39]},{"path":[4,4,4,0,2,2,1],"span":[65,8,34]},{"path":[4,4,4,0,2,2,2],"span":[65,37,38]},{"path":[4,4,4,0,2,3],"span":[66,8,43]},{"path":[4,4,4,0,2,3,1],"span":[66,8,38]},{"path":[4,4,4,0,2,3,2],"span":[66,41,42]},{"path":[4,4,4,0,2,4],"span":[67,8,40]},{"path":[4,4,4,0,2,4,1],"span":[67,8,35]},{"path":[4,4,4,0,2,4,2],"span":[67,38,39]},{"path":[4,4,4,0,2,5],"span":[68,8,43]},{"path":[4,4,4,0,2,5,1],"span":[68,8,38]},{"path":[4,4,4,0,2,5,2],"span":[68,41,42]},{"path":[4,4,2,2],"span":[70,4,42]},{"path":[4,4,2,2,6],"span":[70,4,20]},{"path":[4,4,2,2,1],"span":[70,21,37]},{"path":[4,4,2,2,3],"span":[70,40,41]},{"path":[4,4,2,3],"span":[71,4,43]},{"path":[4,4,2,3,5],"span":[71,4,10]},{"path":[4,4,2,3,1],"span":[71,11,38]},{"path":[4,4,2,3,3],"span":[71,41,42]},{"path":[4,4,2,4],"span":[72,4,33]},{"path":[4,4,2,4,5],"span":[72,4,9]},{"path":[4,4,2,4,1],"span":[72,10,28]},{"path":[4,4,2,4,3],"span":[72,31,32]},{"path":[4,4,2,5],"span":[73,4,34]},{"path":[4,4,2,5,5],"span":[73,4,9]},{"path":[4,4,2,5,1],"span":[73,10,29]},{"path":[4,4,2,5,3],"span":[73,32,33]},{"path":[4,4,2,6],"span":[74,4,29]},{"path":[4,4,2,6,5],"span":[74,4,10]},{"path":[4,4,2,6,1],"span":[74,11,24]},{"path":[4,4,2,6,3],"span":[74,27,28]},{"path":[4,4,2,7],"span":[75,4,34]},{"path":[4,4,2,7,5],"span":[75,4,10]},{"path":[4,4,2,7,1],"span":[75,11,29]},{"path":[4,4,2,7,3],"span":[75,32,33]},{"path":[4,4,2,8],"span":[76,4,23]},{"path":[4,4,2,8,5],"span":[76,4,8]},{"path":[4,4,2,8,1],"span":[76,9,18]},{"path":[4,4,2,8,3],"span":[76,21,22]},{"path":[4,4,2,9],"span":[77,4,32]},{"path":[4,4,2,9,4],"span":[77,4,12]},{"path":[4,4,2,9,5],"span":[77,13,19]},{"path":[4,4,2,9,1],"span":[77,20,26]},{"path":[4,4,2,9,3],"span":[77,29,31]},{"path":[4,5],"span":[81,0,85,1]},{"path":[4,5,1],"span":[81,8,28]},{"path":[4,5,2,0],"span":[82,4,37]},{"path":[4,5,2,0,6],"span":[82,4,24]},{"path":[4,5,2,0,1],"span":[82,25,32]},{"path":[4,5,2,0,3],"span":[82,35,36]},{"path":[4,5,2,1],"span":[83,4,26]},{"path":[4,5,2,1,5],"span":[83,4,10]},{"path":[4,5,2,1,1],"span":[83,11,21]},{"path":[4,5,2,1,3],"span":[83,24,25]},{"path":[4,5,2,2],"span":[84,4,25]},{"path":[4,5,2,2,5],"span":[84,4,10]},{"path":[4,5,2,2,1],"span":[84,11,20]},{"path":[4,5,2,2,3],"span":[84,23,24]},{"path":[4,6],"span":[87,0,93,1]},{"path":[4,6,1],"span":[87,8,29]},{"path":[4,6,7],"span":[88,4,29]},{"path":[4,6,7,3],"span":[88,4,29]},{"path":[4,6,2,0],"span":[89,4,40]},{"path":[4,6,2,0,6],"span":[89,4,27]},{"path":[4,6,2,0,1],"span":[89,28,35]},{"path":[4,6,2,0,3],"span":[89,38,39]},{"path":[4,6,2,1],"span":[90,4,26]},{"path":[4,6,2,1,5],"span":[90,4,10]},{"path":[4,6,2,1,1],"span":[90,11,21]},{"path":[4,6,2,1,3],"span":[90,24,25]},{"path":[4,6,2,2],"span":[91,4,25]},{"path":[4,6,2,2,5],"span":[91,4,10]},{"path":[4,6,2,2,1],"span":[91,11,20]},{"path":[4,6,2,2,3],"span":[91,23,24]},{"path":[4,6,2,3],"span":[92,4,25]},{"path":[4,6,2,3,5],"span":[92,4,10]},{"path":[4,6,2,3,1],"span":[92,11,20]},{"path":[4,6,2,3,3],"span":[92,23,24]},{"path":[4,7],"span":[95,0,97,1]},{"path":[4,7,1],"span":[95,8,29]},{"path":[4,7,2,0],"span":[96,4,23]},{"path":[4,7,2,0,5],"span":[96,4,10]},{"path":[4,7,2,0,1],"span":[96,11,18]},{"path":[4,7,2,0,3],"span":[96,21,22]},{"path":[4,8],"span":[99,0,102,1]},{"path":[4,8,1],"span":[99,8,30]},{"path":[4,8,7],"span":[100,4,29]},{"path":[4,8,7,3],"span":[100,4,29]},{"path":[4,8,2,0],"span":[101,4,23]},{"path":[4,8,2,0,5],"span":[101,4,10]},{"path":[4,8,2,0,1],"span":[101,11,18]},{"path":[4,8,2,0,3],"span":[101,21,22]},{"path":[6,0],"span":[104,0,109,1]},{"path":[6,0,1],"span":[104,8,22]},{"path":[6,0,2,0],"span":[105,4,76]},{"path":[6,0,2,0,1],"span":[105,8,21]},{"path":[6,0,2,0,2],"span":[105,22,42]},{"path":[6,0,2,0,3],"span":[105,53,74]},{"path":[6,0,2,1],"span":[106,4,108,5]},{"path":[6,0,2,1,1],"span":[106,8,22]},{"path":[6,0,2,1,2],"span":[106,23,44]},{"path":[6,0,2,1,3],"span":[106,55,77]},{"path":[6,0,2,1,4],"span":[107,6,31]},{"path":[6,0,2,1,4,33],"span":[107,6,31]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|
|
1
|
+
{"file":[{"name":"proto/servicestatus.proto","package":"lansweeper.servicestatus.v1","messageType":[{"name":"ScanningQueueMessage","field":[{"name":"TotalInWindowsQueue","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"TotalInWindowsQueue"},{"name":"TotalInIpQueue","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"TotalInIpQueue"},{"name":"Data","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.ScanningQueueRecord","jsonName":"Data"}]},{"name":"ScanningQueueRecord","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"target","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"target"},{"name":"scanServer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServer"},{"name":"isPrimary","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPrimary"},{"name":"scanType","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.servicestatus.v1.ScanningQueueRecord.ScanType","jsonName":"scanType"},{"name":"ipAddress","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"}],"enumType":[{"name":"ScanType","value":[{"name":"SCAN_TYPE_UNKNOWN_UNSPECIFIED","number":0},{"name":"SCAN_TYPE_IN_QUEUE","number":1},{"name":"SCAN_TYPE_IN_PROCESS","number":2},{"name":"SCAN_TYPE_IN_IP_QUEUE","number":3},{"name":"SCAN_TYPE_IN_IP_PROCESS","number":4},{"name":"SCAN_TYPE_NO_ACTION","number":5},{"name":"SCAN_TYPE_IN_INSTALL_QUEUE","number":6},{"name":"SCAN_TYPE_IN_INSTALL_PROCESS","number":7}]}]},{"name":"InstallationDataMessage","field":[{"name":"isFullInfo","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.servicestatus.v1.InstallationDataMessage.InstallationMessageType","jsonName":"isFullInfo"},{"name":"assetJournalSizeInMb","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"assetJournalSizeInMb"},{"name":"assetJournalSizeInRows","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetJournalSizeInRows"},{"name":"totalScannedAssets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"totalScannedAssets"},{"name":"newAssetsLast30Days","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"newAssetsLast30Days"},{"name":"databaseInfo","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.DatabaseInfo","jsonName":"databaseInfo"},{"name":"scanServersData","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.ScanServerData","jsonName":"scanServersData"}],"enumType":[{"name":"InstallationMessageType","value":[{"name":"INSTALLATION_MESSAGE_TYPE_UNKNOWN_UNSPECIFIED","number":0},{"name":"INSTALLATION_MESSAGE_TYPE_PARTIAL","number":1},{"name":"INSTALLATION_MESSAGE_TYPE_FULL","number":2}]}],"options":{"deprecated":true}},{"name":"DatabaseInfo","field":[{"name":"connection","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"connection"},{"name":"size","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"size"},{"name":"availableSize","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"availableSize"},{"name":"usedSize","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"usedSize"},{"name":"instanceName","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"instanceName"},{"name":"details","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"details"}],"options":{"deprecated":true}},{"name":"ScanServerData","field":[{"name":"scanServerName","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServerName"},{"name":"scanServerVersion","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServerVersion"},{"name":"scanServerStatus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.servicestatus.v1.ScanServerData.ScanServerStatus","jsonName":"scanServerStatus"},{"name":"scanServerStatusDescription","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"scanServerStatusDescription"},{"name":"totalScannedAssets","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"totalScannedAssets"},{"name":"newAssetsLast30Days","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"newAssetsLast30Days"},{"name":"lastScannedAt","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastScannedAt"},{"name":"lastScannedMessage","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastScannedMessage"},{"name":"isPrimary","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPrimary"}],"enumType":[{"name":"ScanServerStatus","value":[{"name":"SCAN_SERVER_STATUS_SCANNING_UNSPECIFIED","number":0},{"name":"SCAN_SERVER_STATUS_ERRORS","number":1},{"name":"SCAN_SERVER_STATUS_SUCCESS","number":2},{"name":"SCAN_SERVER_STATUS_SERVER_DOWN","number":3},{"name":"SCAN_SERVER_STATUS_SCANNING","number":4}]}],"options":{"deprecated":true}},{"name":"SendQueueInfoRequest","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.ScanningQueueMessage","jsonName":"message"},{"name":"installKey","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"},{"name":"clientKey","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"}]},{"name":"SendStatusInfoRequest","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.servicestatus.v1.InstallationDataMessage","jsonName":"message"},{"name":"installKey","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"},{"name":"clientKey","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"lsVersion","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsVersion"}],"options":{"deprecated":true}},{"name":"SendQueueInfoResponse","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]},{"name":"SendStatusInfoResponse","field":[{"name":"message","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}],"options":{"deprecated":true}}],"service":[{"name":"ScanningStatus","method":[{"name":"SendQueueInfo","inputType":".lansweeper.servicestatus.v1.SendQueueInfoRequest","outputType":".lansweeper.servicestatus.v1.SendQueueInfoResponse"},{"name":"SendStatusInfo","inputType":".lansweeper.servicestatus.v1.SendStatusInfoRequest","outputType":".lansweeper.servicestatus.v1.SendStatusInfoResponse","options":{"deprecated":true}}]}],"options":{"csharpNamespace":"Lansweeper.ServiceStatusAPI.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,107,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[4,0,61]},{"path":[8,37],"span":[4,0,61]},{"path":[4,0],"span":[6,0,10,1]},{"path":[4,0,1],"span":[6,8,28]},{"path":[4,0,2,0],"span":[7,4,34]},{"path":[4,0,2,0,5],"span":[7,4,9]},{"path":[4,0,2,0,1],"span":[7,10,29]},{"path":[4,0,2,0,3],"span":[7,32,33]},{"path":[4,0,2,1],"span":[8,4,29]},{"path":[4,0,2,1,5],"span":[8,4,9]},{"path":[4,0,2,1,1],"span":[8,10,24]},{"path":[4,0,2,1,3],"span":[8,27,28]},{"path":[4,0,2,2],"span":[9,4,42]},{"path":[4,0,2,2,4],"span":[9,4,12]},{"path":[4,0,2,2,6],"span":[9,13,32]},{"path":[4,0,2,2,1],"span":[9,33,37]},{"path":[4,0,2,2,3],"span":[9,40,41]},{"path":[4,1],"span":[12,0,29,1]},{"path":[4,1,1],"span":[12,8,27]},{"path":[4,1,2,0],"span":[13,4,17]},{"path":[4,1,2,0,5],"span":[13,4,9]},{"path":[4,1,2,0,1],"span":[13,10,12]},{"path":[4,1,2,0,3],"span":[13,15,16]},{"path":[4,1,2,1],"span":[14,4,22]},{"path":[4,1,2,1,5],"span":[14,4,10]},{"path":[4,1,2,1,1],"span":[14,11,17]},{"path":[4,1,2,1,3],"span":[14,20,21]},{"path":[4,1,2,2],"span":[15,4,26]},{"path":[4,1,2,2,5],"span":[15,4,10]},{"path":[4,1,2,2,1],"span":[15,11,21]},{"path":[4,1,2,2,3],"span":[15,24,25]},{"path":[4,1,2,3],"span":[16,4,23]},{"path":[4,1,2,3,5],"span":[16,4,8]},{"path":[4,1,2,3,1],"span":[16,9,18]},{"path":[4,1,2,3,3],"span":[16,21,22]},{"path":[4,1,4,0],"span":[17,4,26,5]},{"path":[4,1,4,0,1],"span":[17,9,17]},{"path":[4,1,4,0,2,0],"span":[18,8,42]},{"path":[4,1,4,0,2,0,1],"span":[18,8,37]},{"path":[4,1,4,0,2,0,2],"span":[18,40,41]},{"path":[4,1,4,0,2,1],"span":[19,8,31]},{"path":[4,1,4,0,2,1,1],"span":[19,8,26]},{"path":[4,1,4,0,2,1,2],"span":[19,29,30]},{"path":[4,1,4,0,2,2],"span":[20,8,33]},{"path":[4,1,4,0,2,2,1],"span":[20,8,28]},{"path":[4,1,4,0,2,2,2],"span":[20,31,32]},{"path":[4,1,4,0,2,3],"span":[21,8,34]},{"path":[4,1,4,0,2,3,1],"span":[21,8,29]},{"path":[4,1,4,0,2,3,2],"span":[21,32,33]},{"path":[4,1,4,0,2,4],"span":[22,8,36]},{"path":[4,1,4,0,2,4,1],"span":[22,8,31]},{"path":[4,1,4,0,2,4,2],"span":[22,34,35]},{"path":[4,1,4,0,2,5],"span":[23,8,32]},{"path":[4,1,4,0,2,5,1],"span":[23,8,27]},{"path":[4,1,4,0,2,5,2],"span":[23,30,31]},{"path":[4,1,4,0,2,6],"span":[24,8,39]},{"path":[4,1,4,0,2,6,1],"span":[24,8,34]},{"path":[4,1,4,0,2,6,2],"span":[24,37,38]},{"path":[4,1,4,0,2,7],"span":[25,8,41]},{"path":[4,1,4,0,2,7,1],"span":[25,8,36]},{"path":[4,1,4,0,2,7,2],"span":[25,39,40]},{"path":[4,1,2,4],"span":[27,4,26]},{"path":[4,1,2,4,6],"span":[27,4,12]},{"path":[4,1,2,4,1],"span":[27,13,21]},{"path":[4,1,2,4,3],"span":[27,24,25]},{"path":[4,1,2,5],"span":[28,4,25]},{"path":[4,1,2,5,5],"span":[28,4,10]},{"path":[4,1,2,5,1],"span":[28,11,20]},{"path":[4,1,2,5,3],"span":[28,23,24]},{"path":[4,2],"span":[32,0,46,1]},{"path":[4,2,1],"span":[32,8,31]},{"path":[4,2,7],"span":[33,4,29]},{"path":[4,2,7,3],"span":[33,4,29]},{"path":[4,2,4,0],"span":[34,4,38,5]},{"path":[4,2,4,0,1],"span":[34,9,32]},{"path":[4,2,4,0,2,0],"span":[35,8,58]},{"path":[4,2,4,0,2,0,1],"span":[35,8,53]},{"path":[4,2,4,0,2,0,2],"span":[35,56,57]},{"path":[4,2,4,0,2,1],"span":[36,8,46]},{"path":[4,2,4,0,2,1,1],"span":[36,8,41]},{"path":[4,2,4,0,2,1,2],"span":[36,44,45]},{"path":[4,2,4,0,2,2],"span":[37,8,43]},{"path":[4,2,4,0,2,2,1],"span":[37,8,38]},{"path":[4,2,4,0,2,2,2],"span":[37,41,42]},{"path":[4,2,2,0],"span":[39,4,43]},{"path":[4,2,2,0,6],"span":[39,4,27]},{"path":[4,2,2,0,1],"span":[39,28,38]},{"path":[4,2,2,0,3],"span":[39,41,42]},{"path":[4,2,2,1],"span":[40,4,36]},{"path":[4,2,2,1,5],"span":[40,4,10]},{"path":[4,2,2,1,1],"span":[40,11,31]},{"path":[4,2,2,1,3],"span":[40,34,35]},{"path":[4,2,2,2],"span":[41,4,37]},{"path":[4,2,2,2,5],"span":[41,4,9]},{"path":[4,2,2,2,1],"span":[41,10,32]},{"path":[4,2,2,2,3],"span":[41,35,36]},{"path":[4,2,2,3],"span":[42,4,33]},{"path":[4,2,2,3,5],"span":[42,4,9]},{"path":[4,2,2,3,1],"span":[42,10,28]},{"path":[4,2,2,3,3],"span":[42,31,32]},{"path":[4,2,2,4],"span":[43,4,34]},{"path":[4,2,2,4,5],"span":[43,4,9]},{"path":[4,2,2,4,1],"span":[43,10,29]},{"path":[4,2,2,4,3],"span":[43,32,33]},{"path":[4,2,2,5],"span":[44,4,34]},{"path":[4,2,2,5,6],"span":[44,4,16]},{"path":[4,2,2,5,1],"span":[44,17,29]},{"path":[4,2,2,5,3],"span":[44,32,33]},{"path":[4,2,2,6],"span":[45,4,48]},{"path":[4,2,2,6,4],"span":[45,4,12]},{"path":[4,2,2,6,6],"span":[45,13,27]},{"path":[4,2,2,6,1],"span":[45,28,43]},{"path":[4,2,2,6,3],"span":[45,46,47]},{"path":[4,3],"span":[48,0,56,1]},{"path":[4,3,1],"span":[48,8,20]},{"path":[4,3,7],"span":[49,4,29]},{"path":[4,3,7,3],"span":[49,4,29]},{"path":[4,3,2,0],"span":[50,4,26]},{"path":[4,3,2,0,5],"span":[50,4,10]},{"path":[4,3,2,0,1],"span":[50,11,21]},{"path":[4,3,2,0,3],"span":[50,24,25]},{"path":[4,3,2,1],"span":[51,4,20]},{"path":[4,3,2,1,5],"span":[51,4,10]},{"path":[4,3,2,1,1],"span":[51,11,15]},{"path":[4,3,2,1,3],"span":[51,18,19]},{"path":[4,3,2,2],"span":[52,4,29]},{"path":[4,3,2,2,5],"span":[52,4,10]},{"path":[4,3,2,2,1],"span":[52,11,24]},{"path":[4,3,2,2,3],"span":[52,27,28]},{"path":[4,3,2,3],"span":[53,4,24]},{"path":[4,3,2,3,5],"span":[53,4,10]},{"path":[4,3,2,3,1],"span":[53,11,19]},{"path":[4,3,2,3,3],"span":[53,22,23]},{"path":[4,3,2,4],"span":[54,4,28]},{"path":[4,3,2,4,5],"span":[54,4,10]},{"path":[4,3,2,4,1],"span":[54,11,23]},{"path":[4,3,2,4,3],"span":[54,26,27]},{"path":[4,3,2,5],"span":[55,4,23]},{"path":[4,3,2,5,5],"span":[55,4,10]},{"path":[4,3,2,5,1],"span":[55,11,18]},{"path":[4,3,2,5,3],"span":[55,21,22]},{"path":[4,4],"span":[58,0,77,1]},{"path":[4,4,1],"span":[58,8,22]},{"path":[4,4,7],"span":[59,4,29]},{"path":[4,4,7,3],"span":[59,4,29]},{"path":[4,4,2,0],"span":[60,4,30]},{"path":[4,4,2,0,5],"span":[60,4,10]},{"path":[4,4,2,0,1],"span":[60,11,25]},{"path":[4,4,2,0,3],"span":[60,28,29]},{"path":[4,4,2,1],"span":[61,4,33]},{"path":[4,4,2,1,5],"span":[61,4,10]},{"path":[4,4,2,1,1],"span":[61,11,28]},{"path":[4,4,2,1,3],"span":[61,31,32]},{"path":[4,4,4,0],"span":[62,4,68,5]},{"path":[4,4,4,0,1],"span":[62,9,25]},{"path":[4,4,4,0,2,0],"span":[63,8,52]},{"path":[4,4,4,0,2,0,1],"span":[63,8,47]},{"path":[4,4,4,0,2,0,2],"span":[63,50,51]},{"path":[4,4,4,0,2,1],"span":[64,8,38]},{"path":[4,4,4,0,2,1,1],"span":[64,8,33]},{"path":[4,4,4,0,2,1,2],"span":[64,36,37]},{"path":[4,4,4,0,2,2],"span":[65,8,39]},{"path":[4,4,4,0,2,2,1],"span":[65,8,34]},{"path":[4,4,4,0,2,2,2],"span":[65,37,38]},{"path":[4,4,4,0,2,3],"span":[66,8,43]},{"path":[4,4,4,0,2,3,1],"span":[66,8,38]},{"path":[4,4,4,0,2,3,2],"span":[66,41,42]},{"path":[4,4,4,0,2,4],"span":[67,8,40]},{"path":[4,4,4,0,2,4,1],"span":[67,8,35]},{"path":[4,4,4,0,2,4,2],"span":[67,38,39]},{"path":[4,4,2,2],"span":[69,4,42]},{"path":[4,4,2,2,6],"span":[69,4,20]},{"path":[4,4,2,2,1],"span":[69,21,37]},{"path":[4,4,2,2,3],"span":[69,40,41]},{"path":[4,4,2,3],"span":[70,4,43]},{"path":[4,4,2,3,5],"span":[70,4,10]},{"path":[4,4,2,3,1],"span":[70,11,38]},{"path":[4,4,2,3,3],"span":[70,41,42]},{"path":[4,4,2,4],"span":[71,4,33]},{"path":[4,4,2,4,5],"span":[71,4,9]},{"path":[4,4,2,4,1],"span":[71,10,28]},{"path":[4,4,2,4,3],"span":[71,31,32]},{"path":[4,4,2,5],"span":[72,4,34]},{"path":[4,4,2,5,5],"span":[72,4,9]},{"path":[4,4,2,5,1],"span":[72,10,29]},{"path":[4,4,2,5,3],"span":[72,32,33]},{"path":[4,4,2,6],"span":[73,4,29]},{"path":[4,4,2,6,5],"span":[73,4,10]},{"path":[4,4,2,6,1],"span":[73,11,24]},{"path":[4,4,2,6,3],"span":[73,27,28]},{"path":[4,4,2,7],"span":[74,4,34]},{"path":[4,4,2,7,5],"span":[74,4,10]},{"path":[4,4,2,7,1],"span":[74,11,29]},{"path":[4,4,2,7,3],"span":[74,32,33]},{"path":[4,4,2,8],"span":[75,4,23]},{"path":[4,4,2,8,5],"span":[75,4,8]},{"path":[4,4,2,8,1],"span":[75,9,18]},{"path":[4,4,2,8,3],"span":[75,21,22]},{"path":[4,5],"span":[79,0,83,1]},{"path":[4,5,1],"span":[79,8,28]},{"path":[4,5,2,0],"span":[80,4,37]},{"path":[4,5,2,0,6],"span":[80,4,24]},{"path":[4,5,2,0,1],"span":[80,25,32]},{"path":[4,5,2,0,3],"span":[80,35,36]},{"path":[4,5,2,1],"span":[81,4,26]},{"path":[4,5,2,1,5],"span":[81,4,10]},{"path":[4,5,2,1,1],"span":[81,11,21]},{"path":[4,5,2,1,3],"span":[81,24,25]},{"path":[4,5,2,2],"span":[82,4,25]},{"path":[4,5,2,2,5],"span":[82,4,10]},{"path":[4,5,2,2,1],"span":[82,11,20]},{"path":[4,5,2,2,3],"span":[82,23,24]},{"path":[4,6],"span":[85,0,91,1]},{"path":[4,6,1],"span":[85,8,29]},{"path":[4,6,7],"span":[86,4,29]},{"path":[4,6,7,3],"span":[86,4,29]},{"path":[4,6,2,0],"span":[87,4,40]},{"path":[4,6,2,0,6],"span":[87,4,27]},{"path":[4,6,2,0,1],"span":[87,28,35]},{"path":[4,6,2,0,3],"span":[87,38,39]},{"path":[4,6,2,1],"span":[88,4,26]},{"path":[4,6,2,1,5],"span":[88,4,10]},{"path":[4,6,2,1,1],"span":[88,11,21]},{"path":[4,6,2,1,3],"span":[88,24,25]},{"path":[4,6,2,2],"span":[89,4,25]},{"path":[4,6,2,2,5],"span":[89,4,10]},{"path":[4,6,2,2,1],"span":[89,11,20]},{"path":[4,6,2,2,3],"span":[89,23,24]},{"path":[4,6,2,3],"span":[90,4,25]},{"path":[4,6,2,3,5],"span":[90,4,10]},{"path":[4,6,2,3,1],"span":[90,11,20]},{"path":[4,6,2,3,3],"span":[90,23,24]},{"path":[4,7],"span":[93,0,95,1]},{"path":[4,7,1],"span":[93,8,29]},{"path":[4,7,2,0],"span":[94,4,23]},{"path":[4,7,2,0,5],"span":[94,4,10]},{"path":[4,7,2,0,1],"span":[94,11,18]},{"path":[4,7,2,0,3],"span":[94,21,22]},{"path":[4,8],"span":[97,0,100,1]},{"path":[4,8,1],"span":[97,8,30]},{"path":[4,8,7],"span":[98,4,29]},{"path":[4,8,7,3],"span":[98,4,29]},{"path":[4,8,2,0],"span":[99,4,23]},{"path":[4,8,2,0,5],"span":[99,4,10]},{"path":[4,8,2,0,1],"span":[99,11,18]},{"path":[4,8,2,0,3],"span":[99,21,22]},{"path":[6,0],"span":[102,0,107,1]},{"path":[6,0,1],"span":[102,8,22]},{"path":[6,0,2,0],"span":[103,4,76]},{"path":[6,0,2,0,1],"span":[103,8,21]},{"path":[6,0,2,0,2],"span":[103,22,42]},{"path":[6,0,2,0,3],"span":[103,53,74]},{"path":[6,0,2,1],"span":[104,4,106,5]},{"path":[6,0,2,1,1],"span":[104,8,22]},{"path":[6,0,2,1,2],"span":[104,23,44]},{"path":[6,0,2,1,3],"span":[104,55,77]},{"path":[6,0,2,1,4],"span":[105,6,31]},{"path":[6,0,2,1,4,33],"span":[105,6,31]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|
|
@@ -185,10 +185,6 @@ export class ScanServerData extends jspb.Message {
|
|
|
185
185
|
setLastscannedmessage(value: string): ScanServerData;
|
|
186
186
|
getIsprimary(): boolean;
|
|
187
187
|
setIsprimary(value: boolean): ScanServerData;
|
|
188
|
-
clearErrorsList(): void;
|
|
189
|
-
getErrorsList(): Array<string>;
|
|
190
|
-
setErrorsList(value: Array<string>): ScanServerData;
|
|
191
|
-
addErrors(value: string, index?: number): string;
|
|
192
188
|
|
|
193
189
|
serializeBinary(): Uint8Array;
|
|
194
190
|
toObject(includeInstance?: boolean): ScanServerData.AsObject;
|
|
@@ -211,7 +207,6 @@ export namespace ScanServerData {
|
|
|
211
207
|
lastscannedat: string,
|
|
212
208
|
lastscannedmessage: string,
|
|
213
209
|
isprimary: boolean,
|
|
214
|
-
errorsList: Array<string>,
|
|
215
210
|
}
|
|
216
211
|
|
|
217
212
|
export enum ScanServerStatus {
|
|
@@ -220,7 +215,6 @@ export namespace ScanServerData {
|
|
|
220
215
|
SCAN_SERVER_STATUS_SUCCESS = 2,
|
|
221
216
|
SCAN_SERVER_STATUS_SERVER_DOWN = 3,
|
|
222
217
|
SCAN_SERVER_STATUS_SCANNING = 4,
|
|
223
|
-
SCAN_SERVER_STATUS_MAINTENANCE = 5,
|
|
224
218
|
}
|
|
225
219
|
|
|
226
220
|
}
|
|
@@ -128,7 +128,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
128
128
|
* @constructor
|
|
129
129
|
*/
|
|
130
130
|
proto.lansweeper.servicestatus.v1.ScanServerData = function(opt_data) {
|
|
131
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
131
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
132
132
|
};
|
|
133
133
|
goog.inherits(proto.lansweeper.servicestatus.v1.ScanServerData, jspb.Message);
|
|
134
134
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -1387,13 +1387,6 @@ proto.lansweeper.servicestatus.v1.DatabaseInfo.prototype.setDetails = function(v
|
|
|
1387
1387
|
|
|
1388
1388
|
|
|
1389
1389
|
|
|
1390
|
-
/**
|
|
1391
|
-
* List of repeated fields within this message type.
|
|
1392
|
-
* @private {!Array<number>}
|
|
1393
|
-
* @const
|
|
1394
|
-
*/
|
|
1395
|
-
proto.lansweeper.servicestatus.v1.ScanServerData.repeatedFields_ = [10];
|
|
1396
|
-
|
|
1397
1390
|
|
|
1398
1391
|
|
|
1399
1392
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -1433,8 +1426,7 @@ proto.lansweeper.servicestatus.v1.ScanServerData.toObject = function(includeInst
|
|
|
1433
1426
|
newassetslast30days: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
1434
1427
|
lastscannedat: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
1435
1428
|
lastscannedmessage: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
1436
|
-
isprimary: jspb.Message.getBooleanFieldWithDefault(msg, 9, false)
|
|
1437
|
-
errorsList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f
|
|
1429
|
+
isprimary: jspb.Message.getBooleanFieldWithDefault(msg, 9, false)
|
|
1438
1430
|
};
|
|
1439
1431
|
|
|
1440
1432
|
if (includeInstance) {
|
|
@@ -1507,10 +1499,6 @@ proto.lansweeper.servicestatus.v1.ScanServerData.deserializeBinaryFromReader = f
|
|
|
1507
1499
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1508
1500
|
msg.setIsprimary(value);
|
|
1509
1501
|
break;
|
|
1510
|
-
case 10:
|
|
1511
|
-
var value = /** @type {string} */ (reader.readString());
|
|
1512
|
-
msg.addErrors(value);
|
|
1513
|
-
break;
|
|
1514
1502
|
default:
|
|
1515
1503
|
reader.skipField();
|
|
1516
1504
|
break;
|
|
@@ -1603,13 +1591,6 @@ proto.lansweeper.servicestatus.v1.ScanServerData.serializeBinaryToWriter = funct
|
|
|
1603
1591
|
f
|
|
1604
1592
|
);
|
|
1605
1593
|
}
|
|
1606
|
-
f = message.getErrorsList();
|
|
1607
|
-
if (f.length > 0) {
|
|
1608
|
-
writer.writeRepeatedString(
|
|
1609
|
-
10,
|
|
1610
|
-
f
|
|
1611
|
-
);
|
|
1612
|
-
}
|
|
1613
1594
|
};
|
|
1614
1595
|
|
|
1615
1596
|
|
|
@@ -1621,8 +1602,7 @@ proto.lansweeper.servicestatus.v1.ScanServerData.ScanServerStatus = {
|
|
|
1621
1602
|
SCAN_SERVER_STATUS_ERRORS: 1,
|
|
1622
1603
|
SCAN_SERVER_STATUS_SUCCESS: 2,
|
|
1623
1604
|
SCAN_SERVER_STATUS_SERVER_DOWN: 3,
|
|
1624
|
-
SCAN_SERVER_STATUS_SCANNING: 4
|
|
1625
|
-
SCAN_SERVER_STATUS_MAINTENANCE: 5
|
|
1605
|
+
SCAN_SERVER_STATUS_SCANNING: 4
|
|
1626
1606
|
};
|
|
1627
1607
|
|
|
1628
1608
|
/**
|
|
@@ -1787,43 +1767,6 @@ proto.lansweeper.servicestatus.v1.ScanServerData.prototype.setIsprimary = functi
|
|
|
1787
1767
|
};
|
|
1788
1768
|
|
|
1789
1769
|
|
|
1790
|
-
/**
|
|
1791
|
-
* repeated string errors = 10;
|
|
1792
|
-
* @return {!Array<string>}
|
|
1793
|
-
*/
|
|
1794
|
-
proto.lansweeper.servicestatus.v1.ScanServerData.prototype.getErrorsList = function() {
|
|
1795
|
-
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 10));
|
|
1796
|
-
};
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
/**
|
|
1800
|
-
* @param {!Array<string>} value
|
|
1801
|
-
* @return {!proto.lansweeper.servicestatus.v1.ScanServerData} returns this
|
|
1802
|
-
*/
|
|
1803
|
-
proto.lansweeper.servicestatus.v1.ScanServerData.prototype.setErrorsList = function(value) {
|
|
1804
|
-
return jspb.Message.setField(this, 10, value || []);
|
|
1805
|
-
};
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
/**
|
|
1809
|
-
* @param {string} value
|
|
1810
|
-
* @param {number=} opt_index
|
|
1811
|
-
* @return {!proto.lansweeper.servicestatus.v1.ScanServerData} returns this
|
|
1812
|
-
*/
|
|
1813
|
-
proto.lansweeper.servicestatus.v1.ScanServerData.prototype.addErrors = function(value, opt_index) {
|
|
1814
|
-
return jspb.Message.addToRepeatedField(this, 10, value, opt_index);
|
|
1815
|
-
};
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
/**
|
|
1819
|
-
* Clears the list making it empty but non-null.
|
|
1820
|
-
* @return {!proto.lansweeper.servicestatus.v1.ScanServerData} returns this
|
|
1821
|
-
*/
|
|
1822
|
-
proto.lansweeper.servicestatus.v1.ScanServerData.prototype.clearErrorsList = function() {
|
|
1823
|
-
return this.setErrorsList([]);
|
|
1824
|
-
};
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
1770
|
|
|
1828
1771
|
|
|
1829
1772
|
|
|
@@ -14,11 +14,11 @@ using System.Reflection;
|
|
|
14
14
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
15
15
|
[assembly: System.Reflection.AssemblyCopyrightAttribute("Lansweeper")]
|
|
16
16
|
[assembly: System.Reflection.AssemblyDescriptionAttribute("More Info : http://www.lansweeper.com")]
|
|
17
|
-
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1
|
|
18
|
-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.1
|
|
17
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.2.1")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.2.1")]
|
|
19
19
|
[assembly: System.Reflection.AssemblyProductAttribute("Lansweeper Syncer")]
|
|
20
20
|
[assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.ServiceStatus.GRPC")]
|
|
21
|
-
[assembly: System.Reflection.AssemblyVersionAttribute("0.1.
|
|
21
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("0.2.1.0")]
|
|
22
22
|
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Lansweeper/lansweeperapis")]
|
|
23
23
|
|
|
24
24
|
// Generated by the MSBuild WriteCodeFragment class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ee392987989339caeffc29447156c0f4cd82f399
|
|
Binary file
|
|
Binary file
|
|
@@ -52,7 +52,7 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
52
52
|
"TBABEiIKHklOU1RBTExBVElPTl9NRVNTQUdFX1RZUEVfRlVMTBACOgIYASKE",
|
|
53
53
|
"AQoMRGF0YWJhc2VJbmZvEhIKCmNvbm5lY3Rpb24YASABKAkSDAoEc2l6ZRgC",
|
|
54
54
|
"IAEoCRIVCg1hdmFpbGFibGVTaXplGAMgASgJEhAKCHVzZWRTaXplGAQgASgJ",
|
|
55
|
-
"
|
|
55
|
+
"EhQKDGluc3RhbmNlTmFtZRgFIAEoCRIPCgdkZXRhaWxzGAYgASgJOgIYASKJ",
|
|
56
56
|
"BAoOU2NhblNlcnZlckRhdGESFgoOc2NhblNlcnZlck5hbWUYASABKAkSGQoR",
|
|
57
57
|
"c2NhblNlcnZlclZlcnNpb24YAiABKAkSVgoQc2NhblNlcnZlclN0YXR1cxgD",
|
|
58
58
|
"IAEoDjI8LmxhbnN3ZWVwZXIuc2VydmljZXN0YXR1cy52MS5TY2FuU2VydmVy",
|
|
@@ -60,28 +60,26 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
60
60
|
"cmlwdGlvbhgEIAEoCRIaChJ0b3RhbFNjYW5uZWRBc3NldHMYBSABKAMSGwoT",
|
|
61
61
|
"bmV3QXNzZXRzTGFzdDMwRGF5cxgGIAEoAxIVCg1sYXN0U2Nhbm5lZEF0GAcg",
|
|
62
62
|
"ASgJEhoKEmxhc3RTY2FubmVkTWVzc2FnZRgIIAEoCRIRCglpc1ByaW1hcnkY",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"ZSIDiAIBQiOqAiBMYW5zd2VlcGVyLlNlcnZpY2VTdGF0dXNBUEkuR1JQQ2IG",
|
|
84
|
-
"cHJvdG8z"));
|
|
63
|
+
"CSABKAgiwwEKEFNjYW5TZXJ2ZXJTdGF0dXMSKwonU0NBTl9TRVJWRVJfU1RB",
|
|
64
|
+
"VFVTX1NDQU5OSU5HX1VOU1BFQ0lGSUVEEAASHQoZU0NBTl9TRVJWRVJfU1RB",
|
|
65
|
+
"VFVTX0VSUk9SUxABEh4KGlNDQU5fU0VSVkVSX1NUQVRVU19TVUNDRVNTEAIS",
|
|
66
|
+
"IgoeU0NBTl9TRVJWRVJfU1RBVFVTX1NFUlZFUl9ET1dOEAMSHwobU0NBTl9T",
|
|
67
|
+
"RVJWRVJfU1RBVFVTX1NDQU5OSU5HEAQ6AhgBIoEBChRTZW5kUXVldWVJbmZv",
|
|
68
|
+
"UmVxdWVzdBJCCgdtZXNzYWdlGAEgASgLMjEubGFuc3dlZXBlci5zZXJ2aWNl",
|
|
69
|
+
"c3RhdHVzLnYxLlNjYW5uaW5nUXVldWVNZXNzYWdlEhIKCmluc3RhbGxLZXkY",
|
|
70
|
+
"AiABKAkSEQoJY2xpZW50S2V5GAMgASgJIpwBChVTZW5kU3RhdHVzSW5mb1Jl",
|
|
71
|
+
"cXVlc3QSRQoHbWVzc2FnZRgBIAEoCzI0LmxhbnN3ZWVwZXIuc2VydmljZXN0",
|
|
72
|
+
"YXR1cy52MS5JbnN0YWxsYXRpb25EYXRhTWVzc2FnZRISCgppbnN0YWxsS2V5",
|
|
73
|
+
"GAIgASgJEhEKCWNsaWVudEtleRgDIAEoCRIRCglsc1ZlcnNpb24YBCABKAk6",
|
|
74
|
+
"AhgBIigKFVNlbmRRdWV1ZUluZm9SZXNwb25zZRIPCgdtZXNzYWdlGAEgASgJ",
|
|
75
|
+
"Ii0KFlNlbmRTdGF0dXNJbmZvUmVzcG9uc2USDwoHbWVzc2FnZRgBIAEoCToC",
|
|
76
|
+
"GAEyiAIKDlNjYW5uaW5nU3RhdHVzEnYKDVNlbmRRdWV1ZUluZm8SMS5sYW5z",
|
|
77
|
+
"d2VlcGVyLnNlcnZpY2VzdGF0dXMudjEuU2VuZFF1ZXVlSW5mb1JlcXVlc3Qa",
|
|
78
|
+
"Mi5sYW5zd2VlcGVyLnNlcnZpY2VzdGF0dXMudjEuU2VuZFF1ZXVlSW5mb1Jl",
|
|
79
|
+
"c3BvbnNlEn4KDlNlbmRTdGF0dXNJbmZvEjIubGFuc3dlZXBlci5zZXJ2aWNl",
|
|
80
|
+
"c3RhdHVzLnYxLlNlbmRTdGF0dXNJbmZvUmVxdWVzdBozLmxhbnN3ZWVwZXIu",
|
|
81
|
+
"c2VydmljZXN0YXR1cy52MS5TZW5kU3RhdHVzSW5mb1Jlc3BvbnNlIgOIAgFC",
|
|
82
|
+
"I6oCIExhbnN3ZWVwZXIuU2VydmljZVN0YXR1c0FQSS5HUlBDYgZwcm90bzM="));
|
|
85
83
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
86
84
|
new pbr::FileDescriptor[] { },
|
|
87
85
|
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
|
@@ -89,7 +87,7 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
89
87
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord), global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord.Parser, new[]{ "Id", "Target", "ScanServer", "IsPrimary", "ScanType", "IpAddress" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord.Types.ScanType) }, null, null),
|
|
90
88
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage), global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage.Parser, new[]{ "IsFullInfo", "AssetJournalSizeInMb", "AssetJournalSizeInRows", "TotalScannedAssets", "NewAssetsLast30Days", "DatabaseInfo", "ScanServersData" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage.Types.InstallationMessageType) }, null, null),
|
|
91
89
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.DatabaseInfo), global::Lansweeper.ServiceStatusAPI.GRPC.DatabaseInfo.Parser, new[]{ "Connection", "Size", "AvailableSize", "UsedSize", "InstanceName", "Details" }, null, null, null, null),
|
|
92
|
-
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData), global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Parser, new[]{ "ScanServerName", "ScanServerVersion", "ScanServerStatus", "ScanServerStatusDescription", "TotalScannedAssets", "NewAssetsLast30Days", "LastScannedAt", "LastScannedMessage", "IsPrimary"
|
|
90
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData), global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Parser, new[]{ "ScanServerName", "ScanServerVersion", "ScanServerStatus", "ScanServerStatusDescription", "TotalScannedAssets", "NewAssetsLast30Days", "LastScannedAt", "LastScannedMessage", "IsPrimary" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Types.ScanServerStatus) }, null, null),
|
|
93
91
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoRequest), global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoRequest.Parser, new[]{ "Message", "InstallKey", "ClientKey" }, null, null, null, null),
|
|
94
92
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendStatusInfoRequest), global::Lansweeper.ServiceStatusAPI.GRPC.SendStatusInfoRequest.Parser, new[]{ "Message", "InstallKey", "ClientKey", "LsVersion" }, null, null, null, null),
|
|
95
93
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoResponse), global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoResponse.Parser, new[]{ "Message" }, null, null, null, null),
|
|
@@ -1590,7 +1588,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1590
1588
|
lastScannedAt_ = other.lastScannedAt_;
|
|
1591
1589
|
lastScannedMessage_ = other.lastScannedMessage_;
|
|
1592
1590
|
isPrimary_ = other.isPrimary_;
|
|
1593
|
-
errors_ = other.errors_.Clone();
|
|
1594
1591
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
1595
1592
|
}
|
|
1596
1593
|
|
|
@@ -1708,17 +1705,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1708
1705
|
}
|
|
1709
1706
|
}
|
|
1710
1707
|
|
|
1711
|
-
/// <summary>Field number for the "errors" field.</summary>
|
|
1712
|
-
public const int ErrorsFieldNumber = 10;
|
|
1713
|
-
private static readonly pb::FieldCodec<string> _repeated_errors_codec
|
|
1714
|
-
= pb::FieldCodec.ForString(82);
|
|
1715
|
-
private readonly pbc::RepeatedField<string> errors_ = new pbc::RepeatedField<string>();
|
|
1716
|
-
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1717
|
-
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1718
|
-
public pbc::RepeatedField<string> Errors {
|
|
1719
|
-
get { return errors_; }
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
1708
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1723
1709
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1724
1710
|
public override bool Equals(object other) {
|
|
@@ -1743,7 +1729,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1743
1729
|
if (LastScannedAt != other.LastScannedAt) return false;
|
|
1744
1730
|
if (LastScannedMessage != other.LastScannedMessage) return false;
|
|
1745
1731
|
if (IsPrimary != other.IsPrimary) return false;
|
|
1746
|
-
if(!errors_.Equals(other.errors_)) return false;
|
|
1747
1732
|
return Equals(_unknownFields, other._unknownFields);
|
|
1748
1733
|
}
|
|
1749
1734
|
|
|
@@ -1760,7 +1745,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1760
1745
|
if (LastScannedAt.Length != 0) hash ^= LastScannedAt.GetHashCode();
|
|
1761
1746
|
if (LastScannedMessage.Length != 0) hash ^= LastScannedMessage.GetHashCode();
|
|
1762
1747
|
if (IsPrimary != false) hash ^= IsPrimary.GetHashCode();
|
|
1763
|
-
hash ^= errors_.GetHashCode();
|
|
1764
1748
|
if (_unknownFields != null) {
|
|
1765
1749
|
hash ^= _unknownFields.GetHashCode();
|
|
1766
1750
|
}
|
|
@@ -1815,7 +1799,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1815
1799
|
output.WriteRawTag(72);
|
|
1816
1800
|
output.WriteBool(IsPrimary);
|
|
1817
1801
|
}
|
|
1818
|
-
errors_.WriteTo(output, _repeated_errors_codec);
|
|
1819
1802
|
if (_unknownFields != null) {
|
|
1820
1803
|
_unknownFields.WriteTo(output);
|
|
1821
1804
|
}
|
|
@@ -1862,7 +1845,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1862
1845
|
output.WriteRawTag(72);
|
|
1863
1846
|
output.WriteBool(IsPrimary);
|
|
1864
1847
|
}
|
|
1865
|
-
errors_.WriteTo(ref output, _repeated_errors_codec);
|
|
1866
1848
|
if (_unknownFields != null) {
|
|
1867
1849
|
_unknownFields.WriteTo(ref output);
|
|
1868
1850
|
}
|
|
@@ -1900,7 +1882,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1900
1882
|
if (IsPrimary != false) {
|
|
1901
1883
|
size += 1 + 1;
|
|
1902
1884
|
}
|
|
1903
|
-
size += errors_.CalculateSize(_repeated_errors_codec);
|
|
1904
1885
|
if (_unknownFields != null) {
|
|
1905
1886
|
size += _unknownFields.CalculateSize();
|
|
1906
1887
|
}
|
|
@@ -1940,7 +1921,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1940
1921
|
if (other.IsPrimary != false) {
|
|
1941
1922
|
IsPrimary = other.IsPrimary;
|
|
1942
1923
|
}
|
|
1943
|
-
errors_.Add(other.errors_);
|
|
1944
1924
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1945
1925
|
}
|
|
1946
1926
|
|
|
@@ -1992,10 +1972,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1992
1972
|
IsPrimary = input.ReadBool();
|
|
1993
1973
|
break;
|
|
1994
1974
|
}
|
|
1995
|
-
case 82: {
|
|
1996
|
-
errors_.AddEntriesFrom(input, _repeated_errors_codec);
|
|
1997
|
-
break;
|
|
1998
|
-
}
|
|
1999
1975
|
}
|
|
2000
1976
|
}
|
|
2001
1977
|
#endif
|
|
@@ -2047,10 +2023,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
2047
2023
|
IsPrimary = input.ReadBool();
|
|
2048
2024
|
break;
|
|
2049
2025
|
}
|
|
2050
|
-
case 82: {
|
|
2051
|
-
errors_.AddEntriesFrom(ref input, _repeated_errors_codec);
|
|
2052
|
-
break;
|
|
2053
|
-
}
|
|
2054
2026
|
}
|
|
2055
2027
|
}
|
|
2056
2028
|
}
|
|
@@ -2067,7 +2039,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
2067
2039
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SUCCESS")] Success = 2,
|
|
2068
2040
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SERVER_DOWN")] ServerDown = 3,
|
|
2069
2041
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SCANNING")] Scanning = 4,
|
|
2070
|
-
[pbr::OriginalName("SCAN_SERVER_STATUS_MAINTENANCE")] Maintenance = 5,
|
|
2071
2042
|
}
|
|
2072
2043
|
|
|
2073
2044
|
}
|
|
@@ -14,11 +14,11 @@ using System.Reflection;
|
|
|
14
14
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
15
15
|
[assembly: System.Reflection.AssemblyCopyrightAttribute("Lansweeper")]
|
|
16
16
|
[assembly: System.Reflection.AssemblyDescriptionAttribute("More Info : http://www.lansweeper.com")]
|
|
17
|
-
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1
|
|
18
|
-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.1
|
|
17
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.2.1")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.2.1")]
|
|
19
19
|
[assembly: System.Reflection.AssemblyProductAttribute("Lansweeper Syncer")]
|
|
20
20
|
[assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.ServiceStatus.GRPC")]
|
|
21
|
-
[assembly: System.Reflection.AssemblyVersionAttribute("0.1.
|
|
21
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("0.2.1.0")]
|
|
22
22
|
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Lansweeper/lansweeperapis")]
|
|
23
23
|
|
|
24
24
|
// Generated by the MSBuild WriteCodeFragment class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ee392987989339caeffc29447156c0f4cd82f399
|
|
Binary file
|
|
Binary file
|
|
@@ -52,7 +52,7 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
52
52
|
"TBABEiIKHklOU1RBTExBVElPTl9NRVNTQUdFX1RZUEVfRlVMTBACOgIYASKE",
|
|
53
53
|
"AQoMRGF0YWJhc2VJbmZvEhIKCmNvbm5lY3Rpb24YASABKAkSDAoEc2l6ZRgC",
|
|
54
54
|
"IAEoCRIVCg1hdmFpbGFibGVTaXplGAMgASgJEhAKCHVzZWRTaXplGAQgASgJ",
|
|
55
|
-
"
|
|
55
|
+
"EhQKDGluc3RhbmNlTmFtZRgFIAEoCRIPCgdkZXRhaWxzGAYgASgJOgIYASKJ",
|
|
56
56
|
"BAoOU2NhblNlcnZlckRhdGESFgoOc2NhblNlcnZlck5hbWUYASABKAkSGQoR",
|
|
57
57
|
"c2NhblNlcnZlclZlcnNpb24YAiABKAkSVgoQc2NhblNlcnZlclN0YXR1cxgD",
|
|
58
58
|
"IAEoDjI8LmxhbnN3ZWVwZXIuc2VydmljZXN0YXR1cy52MS5TY2FuU2VydmVy",
|
|
@@ -60,28 +60,26 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
60
60
|
"cmlwdGlvbhgEIAEoCRIaChJ0b3RhbFNjYW5uZWRBc3NldHMYBSABKAMSGwoT",
|
|
61
61
|
"bmV3QXNzZXRzTGFzdDMwRGF5cxgGIAEoAxIVCg1sYXN0U2Nhbm5lZEF0GAcg",
|
|
62
62
|
"ASgJEhoKEmxhc3RTY2FubmVkTWVzc2FnZRgIIAEoCRIRCglpc1ByaW1hcnkY",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"ZSIDiAIBQiOqAiBMYW5zd2VlcGVyLlNlcnZpY2VTdGF0dXNBUEkuR1JQQ2IG",
|
|
84
|
-
"cHJvdG8z"));
|
|
63
|
+
"CSABKAgiwwEKEFNjYW5TZXJ2ZXJTdGF0dXMSKwonU0NBTl9TRVJWRVJfU1RB",
|
|
64
|
+
"VFVTX1NDQU5OSU5HX1VOU1BFQ0lGSUVEEAASHQoZU0NBTl9TRVJWRVJfU1RB",
|
|
65
|
+
"VFVTX0VSUk9SUxABEh4KGlNDQU5fU0VSVkVSX1NUQVRVU19TVUNDRVNTEAIS",
|
|
66
|
+
"IgoeU0NBTl9TRVJWRVJfU1RBVFVTX1NFUlZFUl9ET1dOEAMSHwobU0NBTl9T",
|
|
67
|
+
"RVJWRVJfU1RBVFVTX1NDQU5OSU5HEAQ6AhgBIoEBChRTZW5kUXVldWVJbmZv",
|
|
68
|
+
"UmVxdWVzdBJCCgdtZXNzYWdlGAEgASgLMjEubGFuc3dlZXBlci5zZXJ2aWNl",
|
|
69
|
+
"c3RhdHVzLnYxLlNjYW5uaW5nUXVldWVNZXNzYWdlEhIKCmluc3RhbGxLZXkY",
|
|
70
|
+
"AiABKAkSEQoJY2xpZW50S2V5GAMgASgJIpwBChVTZW5kU3RhdHVzSW5mb1Jl",
|
|
71
|
+
"cXVlc3QSRQoHbWVzc2FnZRgBIAEoCzI0LmxhbnN3ZWVwZXIuc2VydmljZXN0",
|
|
72
|
+
"YXR1cy52MS5JbnN0YWxsYXRpb25EYXRhTWVzc2FnZRISCgppbnN0YWxsS2V5",
|
|
73
|
+
"GAIgASgJEhEKCWNsaWVudEtleRgDIAEoCRIRCglsc1ZlcnNpb24YBCABKAk6",
|
|
74
|
+
"AhgBIigKFVNlbmRRdWV1ZUluZm9SZXNwb25zZRIPCgdtZXNzYWdlGAEgASgJ",
|
|
75
|
+
"Ii0KFlNlbmRTdGF0dXNJbmZvUmVzcG9uc2USDwoHbWVzc2FnZRgBIAEoCToC",
|
|
76
|
+
"GAEyiAIKDlNjYW5uaW5nU3RhdHVzEnYKDVNlbmRRdWV1ZUluZm8SMS5sYW5z",
|
|
77
|
+
"d2VlcGVyLnNlcnZpY2VzdGF0dXMudjEuU2VuZFF1ZXVlSW5mb1JlcXVlc3Qa",
|
|
78
|
+
"Mi5sYW5zd2VlcGVyLnNlcnZpY2VzdGF0dXMudjEuU2VuZFF1ZXVlSW5mb1Jl",
|
|
79
|
+
"c3BvbnNlEn4KDlNlbmRTdGF0dXNJbmZvEjIubGFuc3dlZXBlci5zZXJ2aWNl",
|
|
80
|
+
"c3RhdHVzLnYxLlNlbmRTdGF0dXNJbmZvUmVxdWVzdBozLmxhbnN3ZWVwZXIu",
|
|
81
|
+
"c2VydmljZXN0YXR1cy52MS5TZW5kU3RhdHVzSW5mb1Jlc3BvbnNlIgOIAgFC",
|
|
82
|
+
"I6oCIExhbnN3ZWVwZXIuU2VydmljZVN0YXR1c0FQSS5HUlBDYgZwcm90bzM="));
|
|
85
83
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
86
84
|
new pbr::FileDescriptor[] { },
|
|
87
85
|
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
|
@@ -89,7 +87,7 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
89
87
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord), global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord.Parser, new[]{ "Id", "Target", "ScanServer", "IsPrimary", "ScanType", "IpAddress" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord.Types.ScanType) }, null, null),
|
|
90
88
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage), global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage.Parser, new[]{ "IsFullInfo", "AssetJournalSizeInMb", "AssetJournalSizeInRows", "TotalScannedAssets", "NewAssetsLast30Days", "DatabaseInfo", "ScanServersData" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage.Types.InstallationMessageType) }, null, null),
|
|
91
89
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.DatabaseInfo), global::Lansweeper.ServiceStatusAPI.GRPC.DatabaseInfo.Parser, new[]{ "Connection", "Size", "AvailableSize", "UsedSize", "InstanceName", "Details" }, null, null, null, null),
|
|
92
|
-
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData), global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Parser, new[]{ "ScanServerName", "ScanServerVersion", "ScanServerStatus", "ScanServerStatusDescription", "TotalScannedAssets", "NewAssetsLast30Days", "LastScannedAt", "LastScannedMessage", "IsPrimary"
|
|
90
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData), global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Parser, new[]{ "ScanServerName", "ScanServerVersion", "ScanServerStatus", "ScanServerStatusDescription", "TotalScannedAssets", "NewAssetsLast30Days", "LastScannedAt", "LastScannedMessage", "IsPrimary" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Types.ScanServerStatus) }, null, null),
|
|
93
91
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoRequest), global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoRequest.Parser, new[]{ "Message", "InstallKey", "ClientKey" }, null, null, null, null),
|
|
94
92
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendStatusInfoRequest), global::Lansweeper.ServiceStatusAPI.GRPC.SendStatusInfoRequest.Parser, new[]{ "Message", "InstallKey", "ClientKey", "LsVersion" }, null, null, null, null),
|
|
95
93
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoResponse), global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoResponse.Parser, new[]{ "Message" }, null, null, null, null),
|
|
@@ -1590,7 +1588,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1590
1588
|
lastScannedAt_ = other.lastScannedAt_;
|
|
1591
1589
|
lastScannedMessage_ = other.lastScannedMessage_;
|
|
1592
1590
|
isPrimary_ = other.isPrimary_;
|
|
1593
|
-
errors_ = other.errors_.Clone();
|
|
1594
1591
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
1595
1592
|
}
|
|
1596
1593
|
|
|
@@ -1708,17 +1705,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1708
1705
|
}
|
|
1709
1706
|
}
|
|
1710
1707
|
|
|
1711
|
-
/// <summary>Field number for the "errors" field.</summary>
|
|
1712
|
-
public const int ErrorsFieldNumber = 10;
|
|
1713
|
-
private static readonly pb::FieldCodec<string> _repeated_errors_codec
|
|
1714
|
-
= pb::FieldCodec.ForString(82);
|
|
1715
|
-
private readonly pbc::RepeatedField<string> errors_ = new pbc::RepeatedField<string>();
|
|
1716
|
-
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1717
|
-
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1718
|
-
public pbc::RepeatedField<string> Errors {
|
|
1719
|
-
get { return errors_; }
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
1708
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1723
1709
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1724
1710
|
public override bool Equals(object other) {
|
|
@@ -1743,7 +1729,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1743
1729
|
if (LastScannedAt != other.LastScannedAt) return false;
|
|
1744
1730
|
if (LastScannedMessage != other.LastScannedMessage) return false;
|
|
1745
1731
|
if (IsPrimary != other.IsPrimary) return false;
|
|
1746
|
-
if(!errors_.Equals(other.errors_)) return false;
|
|
1747
1732
|
return Equals(_unknownFields, other._unknownFields);
|
|
1748
1733
|
}
|
|
1749
1734
|
|
|
@@ -1760,7 +1745,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1760
1745
|
if (LastScannedAt.Length != 0) hash ^= LastScannedAt.GetHashCode();
|
|
1761
1746
|
if (LastScannedMessage.Length != 0) hash ^= LastScannedMessage.GetHashCode();
|
|
1762
1747
|
if (IsPrimary != false) hash ^= IsPrimary.GetHashCode();
|
|
1763
|
-
hash ^= errors_.GetHashCode();
|
|
1764
1748
|
if (_unknownFields != null) {
|
|
1765
1749
|
hash ^= _unknownFields.GetHashCode();
|
|
1766
1750
|
}
|
|
@@ -1815,7 +1799,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1815
1799
|
output.WriteRawTag(72);
|
|
1816
1800
|
output.WriteBool(IsPrimary);
|
|
1817
1801
|
}
|
|
1818
|
-
errors_.WriteTo(output, _repeated_errors_codec);
|
|
1819
1802
|
if (_unknownFields != null) {
|
|
1820
1803
|
_unknownFields.WriteTo(output);
|
|
1821
1804
|
}
|
|
@@ -1862,7 +1845,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1862
1845
|
output.WriteRawTag(72);
|
|
1863
1846
|
output.WriteBool(IsPrimary);
|
|
1864
1847
|
}
|
|
1865
|
-
errors_.WriteTo(ref output, _repeated_errors_codec);
|
|
1866
1848
|
if (_unknownFields != null) {
|
|
1867
1849
|
_unknownFields.WriteTo(ref output);
|
|
1868
1850
|
}
|
|
@@ -1900,7 +1882,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1900
1882
|
if (IsPrimary != false) {
|
|
1901
1883
|
size += 1 + 1;
|
|
1902
1884
|
}
|
|
1903
|
-
size += errors_.CalculateSize(_repeated_errors_codec);
|
|
1904
1885
|
if (_unknownFields != null) {
|
|
1905
1886
|
size += _unknownFields.CalculateSize();
|
|
1906
1887
|
}
|
|
@@ -1940,7 +1921,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1940
1921
|
if (other.IsPrimary != false) {
|
|
1941
1922
|
IsPrimary = other.IsPrimary;
|
|
1942
1923
|
}
|
|
1943
|
-
errors_.Add(other.errors_);
|
|
1944
1924
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1945
1925
|
}
|
|
1946
1926
|
|
|
@@ -1992,10 +1972,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1992
1972
|
IsPrimary = input.ReadBool();
|
|
1993
1973
|
break;
|
|
1994
1974
|
}
|
|
1995
|
-
case 82: {
|
|
1996
|
-
errors_.AddEntriesFrom(input, _repeated_errors_codec);
|
|
1997
|
-
break;
|
|
1998
|
-
}
|
|
1999
1975
|
}
|
|
2000
1976
|
}
|
|
2001
1977
|
#endif
|
|
@@ -2047,10 +2023,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
2047
2023
|
IsPrimary = input.ReadBool();
|
|
2048
2024
|
break;
|
|
2049
2025
|
}
|
|
2050
|
-
case 82: {
|
|
2051
|
-
errors_.AddEntriesFrom(ref input, _repeated_errors_codec);
|
|
2052
|
-
break;
|
|
2053
|
-
}
|
|
2054
2026
|
}
|
|
2055
2027
|
}
|
|
2056
2028
|
}
|
|
@@ -2067,7 +2039,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
2067
2039
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SUCCESS")] Success = 2,
|
|
2068
2040
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SERVER_DOWN")] ServerDown = 3,
|
|
2069
2041
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SCANNING")] Scanning = 4,
|
|
2070
|
-
[pbr::OriginalName("SCAN_SERVER_STATUS_MAINTENANCE")] Maintenance = 5,
|
|
2071
2042
|
}
|
|
2072
2043
|
|
|
2073
2044
|
}
|
|
Binary file
|
|
@@ -14,11 +14,11 @@ using System.Reflection;
|
|
|
14
14
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
15
15
|
[assembly: System.Reflection.AssemblyCopyrightAttribute("Lansweeper")]
|
|
16
16
|
[assembly: System.Reflection.AssemblyDescriptionAttribute("More Info : http://www.lansweeper.com")]
|
|
17
|
-
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1
|
|
18
|
-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.1
|
|
17
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.2.1")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.2.1")]
|
|
19
19
|
[assembly: System.Reflection.AssemblyProductAttribute("Lansweeper Syncer")]
|
|
20
20
|
[assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.ServiceStatus.GRPC")]
|
|
21
|
-
[assembly: System.Reflection.AssemblyVersionAttribute("0.1.
|
|
21
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("0.2.1.0")]
|
|
22
22
|
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Lansweeper/lansweeperapis")]
|
|
23
23
|
|
|
24
24
|
// Generated by the MSBuild WriteCodeFragment class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ee392987989339caeffc29447156c0f4cd82f399
|
|
Binary file
|
|
Binary file
|
|
@@ -52,7 +52,7 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
52
52
|
"TBABEiIKHklOU1RBTExBVElPTl9NRVNTQUdFX1RZUEVfRlVMTBACOgIYASKE",
|
|
53
53
|
"AQoMRGF0YWJhc2VJbmZvEhIKCmNvbm5lY3Rpb24YASABKAkSDAoEc2l6ZRgC",
|
|
54
54
|
"IAEoCRIVCg1hdmFpbGFibGVTaXplGAMgASgJEhAKCHVzZWRTaXplGAQgASgJ",
|
|
55
|
-
"
|
|
55
|
+
"EhQKDGluc3RhbmNlTmFtZRgFIAEoCRIPCgdkZXRhaWxzGAYgASgJOgIYASKJ",
|
|
56
56
|
"BAoOU2NhblNlcnZlckRhdGESFgoOc2NhblNlcnZlck5hbWUYASABKAkSGQoR",
|
|
57
57
|
"c2NhblNlcnZlclZlcnNpb24YAiABKAkSVgoQc2NhblNlcnZlclN0YXR1cxgD",
|
|
58
58
|
"IAEoDjI8LmxhbnN3ZWVwZXIuc2VydmljZXN0YXR1cy52MS5TY2FuU2VydmVy",
|
|
@@ -60,28 +60,26 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
60
60
|
"cmlwdGlvbhgEIAEoCRIaChJ0b3RhbFNjYW5uZWRBc3NldHMYBSABKAMSGwoT",
|
|
61
61
|
"bmV3QXNzZXRzTGFzdDMwRGF5cxgGIAEoAxIVCg1sYXN0U2Nhbm5lZEF0GAcg",
|
|
62
62
|
"ASgJEhoKEmxhc3RTY2FubmVkTWVzc2FnZRgIIAEoCRIRCglpc1ByaW1hcnkY",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"ZSIDiAIBQiOqAiBMYW5zd2VlcGVyLlNlcnZpY2VTdGF0dXNBUEkuR1JQQ2IG",
|
|
84
|
-
"cHJvdG8z"));
|
|
63
|
+
"CSABKAgiwwEKEFNjYW5TZXJ2ZXJTdGF0dXMSKwonU0NBTl9TRVJWRVJfU1RB",
|
|
64
|
+
"VFVTX1NDQU5OSU5HX1VOU1BFQ0lGSUVEEAASHQoZU0NBTl9TRVJWRVJfU1RB",
|
|
65
|
+
"VFVTX0VSUk9SUxABEh4KGlNDQU5fU0VSVkVSX1NUQVRVU19TVUNDRVNTEAIS",
|
|
66
|
+
"IgoeU0NBTl9TRVJWRVJfU1RBVFVTX1NFUlZFUl9ET1dOEAMSHwobU0NBTl9T",
|
|
67
|
+
"RVJWRVJfU1RBVFVTX1NDQU5OSU5HEAQ6AhgBIoEBChRTZW5kUXVldWVJbmZv",
|
|
68
|
+
"UmVxdWVzdBJCCgdtZXNzYWdlGAEgASgLMjEubGFuc3dlZXBlci5zZXJ2aWNl",
|
|
69
|
+
"c3RhdHVzLnYxLlNjYW5uaW5nUXVldWVNZXNzYWdlEhIKCmluc3RhbGxLZXkY",
|
|
70
|
+
"AiABKAkSEQoJY2xpZW50S2V5GAMgASgJIpwBChVTZW5kU3RhdHVzSW5mb1Jl",
|
|
71
|
+
"cXVlc3QSRQoHbWVzc2FnZRgBIAEoCzI0LmxhbnN3ZWVwZXIuc2VydmljZXN0",
|
|
72
|
+
"YXR1cy52MS5JbnN0YWxsYXRpb25EYXRhTWVzc2FnZRISCgppbnN0YWxsS2V5",
|
|
73
|
+
"GAIgASgJEhEKCWNsaWVudEtleRgDIAEoCRIRCglsc1ZlcnNpb24YBCABKAk6",
|
|
74
|
+
"AhgBIigKFVNlbmRRdWV1ZUluZm9SZXNwb25zZRIPCgdtZXNzYWdlGAEgASgJ",
|
|
75
|
+
"Ii0KFlNlbmRTdGF0dXNJbmZvUmVzcG9uc2USDwoHbWVzc2FnZRgBIAEoCToC",
|
|
76
|
+
"GAEyiAIKDlNjYW5uaW5nU3RhdHVzEnYKDVNlbmRRdWV1ZUluZm8SMS5sYW5z",
|
|
77
|
+
"d2VlcGVyLnNlcnZpY2VzdGF0dXMudjEuU2VuZFF1ZXVlSW5mb1JlcXVlc3Qa",
|
|
78
|
+
"Mi5sYW5zd2VlcGVyLnNlcnZpY2VzdGF0dXMudjEuU2VuZFF1ZXVlSW5mb1Jl",
|
|
79
|
+
"c3BvbnNlEn4KDlNlbmRTdGF0dXNJbmZvEjIubGFuc3dlZXBlci5zZXJ2aWNl",
|
|
80
|
+
"c3RhdHVzLnYxLlNlbmRTdGF0dXNJbmZvUmVxdWVzdBozLmxhbnN3ZWVwZXIu",
|
|
81
|
+
"c2VydmljZXN0YXR1cy52MS5TZW5kU3RhdHVzSW5mb1Jlc3BvbnNlIgOIAgFC",
|
|
82
|
+
"I6oCIExhbnN3ZWVwZXIuU2VydmljZVN0YXR1c0FQSS5HUlBDYgZwcm90bzM="));
|
|
85
83
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
86
84
|
new pbr::FileDescriptor[] { },
|
|
87
85
|
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
|
@@ -89,7 +87,7 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
89
87
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord), global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord.Parser, new[]{ "Id", "Target", "ScanServer", "IsPrimary", "ScanType", "IpAddress" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanningQueueRecord.Types.ScanType) }, null, null),
|
|
90
88
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage), global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage.Parser, new[]{ "IsFullInfo", "AssetJournalSizeInMb", "AssetJournalSizeInRows", "TotalScannedAssets", "NewAssetsLast30Days", "DatabaseInfo", "ScanServersData" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.InstallationDataMessage.Types.InstallationMessageType) }, null, null),
|
|
91
89
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.DatabaseInfo), global::Lansweeper.ServiceStatusAPI.GRPC.DatabaseInfo.Parser, new[]{ "Connection", "Size", "AvailableSize", "UsedSize", "InstanceName", "Details" }, null, null, null, null),
|
|
92
|
-
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData), global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Parser, new[]{ "ScanServerName", "ScanServerVersion", "ScanServerStatus", "ScanServerStatusDescription", "TotalScannedAssets", "NewAssetsLast30Days", "LastScannedAt", "LastScannedMessage", "IsPrimary"
|
|
90
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData), global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Parser, new[]{ "ScanServerName", "ScanServerVersion", "ScanServerStatus", "ScanServerStatusDescription", "TotalScannedAssets", "NewAssetsLast30Days", "LastScannedAt", "LastScannedMessage", "IsPrimary" }, null, new[]{ typeof(global::Lansweeper.ServiceStatusAPI.GRPC.ScanServerData.Types.ScanServerStatus) }, null, null),
|
|
93
91
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoRequest), global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoRequest.Parser, new[]{ "Message", "InstallKey", "ClientKey" }, null, null, null, null),
|
|
94
92
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendStatusInfoRequest), global::Lansweeper.ServiceStatusAPI.GRPC.SendStatusInfoRequest.Parser, new[]{ "Message", "InstallKey", "ClientKey", "LsVersion" }, null, null, null, null),
|
|
95
93
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoResponse), global::Lansweeper.ServiceStatusAPI.GRPC.SendQueueInfoResponse.Parser, new[]{ "Message" }, null, null, null, null),
|
|
@@ -1590,7 +1588,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1590
1588
|
lastScannedAt_ = other.lastScannedAt_;
|
|
1591
1589
|
lastScannedMessage_ = other.lastScannedMessage_;
|
|
1592
1590
|
isPrimary_ = other.isPrimary_;
|
|
1593
|
-
errors_ = other.errors_.Clone();
|
|
1594
1591
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
1595
1592
|
}
|
|
1596
1593
|
|
|
@@ -1708,17 +1705,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1708
1705
|
}
|
|
1709
1706
|
}
|
|
1710
1707
|
|
|
1711
|
-
/// <summary>Field number for the "errors" field.</summary>
|
|
1712
|
-
public const int ErrorsFieldNumber = 10;
|
|
1713
|
-
private static readonly pb::FieldCodec<string> _repeated_errors_codec
|
|
1714
|
-
= pb::FieldCodec.ForString(82);
|
|
1715
|
-
private readonly pbc::RepeatedField<string> errors_ = new pbc::RepeatedField<string>();
|
|
1716
|
-
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1717
|
-
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1718
|
-
public pbc::RepeatedField<string> Errors {
|
|
1719
|
-
get { return errors_; }
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
1708
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1723
1709
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1724
1710
|
public override bool Equals(object other) {
|
|
@@ -1743,7 +1729,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1743
1729
|
if (LastScannedAt != other.LastScannedAt) return false;
|
|
1744
1730
|
if (LastScannedMessage != other.LastScannedMessage) return false;
|
|
1745
1731
|
if (IsPrimary != other.IsPrimary) return false;
|
|
1746
|
-
if(!errors_.Equals(other.errors_)) return false;
|
|
1747
1732
|
return Equals(_unknownFields, other._unknownFields);
|
|
1748
1733
|
}
|
|
1749
1734
|
|
|
@@ -1760,7 +1745,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1760
1745
|
if (LastScannedAt.Length != 0) hash ^= LastScannedAt.GetHashCode();
|
|
1761
1746
|
if (LastScannedMessage.Length != 0) hash ^= LastScannedMessage.GetHashCode();
|
|
1762
1747
|
if (IsPrimary != false) hash ^= IsPrimary.GetHashCode();
|
|
1763
|
-
hash ^= errors_.GetHashCode();
|
|
1764
1748
|
if (_unknownFields != null) {
|
|
1765
1749
|
hash ^= _unknownFields.GetHashCode();
|
|
1766
1750
|
}
|
|
@@ -1815,7 +1799,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1815
1799
|
output.WriteRawTag(72);
|
|
1816
1800
|
output.WriteBool(IsPrimary);
|
|
1817
1801
|
}
|
|
1818
|
-
errors_.WriteTo(output, _repeated_errors_codec);
|
|
1819
1802
|
if (_unknownFields != null) {
|
|
1820
1803
|
_unknownFields.WriteTo(output);
|
|
1821
1804
|
}
|
|
@@ -1862,7 +1845,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1862
1845
|
output.WriteRawTag(72);
|
|
1863
1846
|
output.WriteBool(IsPrimary);
|
|
1864
1847
|
}
|
|
1865
|
-
errors_.WriteTo(ref output, _repeated_errors_codec);
|
|
1866
1848
|
if (_unknownFields != null) {
|
|
1867
1849
|
_unknownFields.WriteTo(ref output);
|
|
1868
1850
|
}
|
|
@@ -1900,7 +1882,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1900
1882
|
if (IsPrimary != false) {
|
|
1901
1883
|
size += 1 + 1;
|
|
1902
1884
|
}
|
|
1903
|
-
size += errors_.CalculateSize(_repeated_errors_codec);
|
|
1904
1885
|
if (_unknownFields != null) {
|
|
1905
1886
|
size += _unknownFields.CalculateSize();
|
|
1906
1887
|
}
|
|
@@ -1940,7 +1921,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1940
1921
|
if (other.IsPrimary != false) {
|
|
1941
1922
|
IsPrimary = other.IsPrimary;
|
|
1942
1923
|
}
|
|
1943
|
-
errors_.Add(other.errors_);
|
|
1944
1924
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1945
1925
|
}
|
|
1946
1926
|
|
|
@@ -1992,10 +1972,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
1992
1972
|
IsPrimary = input.ReadBool();
|
|
1993
1973
|
break;
|
|
1994
1974
|
}
|
|
1995
|
-
case 82: {
|
|
1996
|
-
errors_.AddEntriesFrom(input, _repeated_errors_codec);
|
|
1997
|
-
break;
|
|
1998
|
-
}
|
|
1999
1975
|
}
|
|
2000
1976
|
}
|
|
2001
1977
|
#endif
|
|
@@ -2047,10 +2023,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
2047
2023
|
IsPrimary = input.ReadBool();
|
|
2048
2024
|
break;
|
|
2049
2025
|
}
|
|
2050
|
-
case 82: {
|
|
2051
|
-
errors_.AddEntriesFrom(ref input, _repeated_errors_codec);
|
|
2052
|
-
break;
|
|
2053
|
-
}
|
|
2054
2026
|
}
|
|
2055
2027
|
}
|
|
2056
2028
|
}
|
|
@@ -2067,7 +2039,6 @@ namespace Lansweeper.ServiceStatusAPI.GRPC {
|
|
|
2067
2039
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SUCCESS")] Success = 2,
|
|
2068
2040
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SERVER_DOWN")] ServerDown = 3,
|
|
2069
2041
|
[pbr::OriginalName("SCAN_SERVER_STATUS_SCANNING")] Scanning = 4,
|
|
2070
|
-
[pbr::OriginalName("SCAN_SERVER_STATUS_MAINTENANCE")] Maintenance = 5,
|
|
2071
2042
|
}
|
|
2072
2043
|
|
|
2073
2044
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"projects": {
|
|
7
7
|
"/home/circleci/project/packages/servicestatus/grpc/Lansweeper.ServiceStatus.GRPC.csproj": {
|
|
8
|
-
"version": "0.1
|
|
8
|
+
"version": "0.2.1",
|
|
9
9
|
"restore": {
|
|
10
10
|
"projectUniqueName": "/home/circleci/project/packages/servicestatus/grpc/Lansweeper.ServiceStatus.GRPC.csproj",
|
|
11
11
|
"projectName": "Lansweeper.ServiceStatus.GRPC",
|
package/obj/project.assets.json
CHANGED
|
@@ -1124,7 +1124,7 @@
|
|
|
1124
1124
|
"/home/circleci/.nuget/packages/": {}
|
|
1125
1125
|
},
|
|
1126
1126
|
"project": {
|
|
1127
|
-
"version": "0.1
|
|
1127
|
+
"version": "0.2.1",
|
|
1128
1128
|
"restore": {
|
|
1129
1129
|
"projectUniqueName": "/home/circleci/project/packages/servicestatus/grpc/Lansweeper.ServiceStatus.GRPC.csproj",
|
|
1130
1130
|
"projectName": "Lansweeper.ServiceStatus.GRPC",
|
package/obj/project.nuget.cache
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 2,
|
|
3
|
-
"dgSpecHash": "
|
|
3
|
+
"dgSpecHash": "4NC8Kf6Y0cgUn+6EoXFyjWQ///GIO7P/dpAaXbCEqdKVO6JLc/IgVFpxWfmLbl01KB7Zr009ZysPjKlB4kUizA==",
|
|
4
4
|
"success": true,
|
|
5
5
|
"projectFilePath": "/home/circleci/project/packages/servicestatus/grpc/Lansweeper.ServiceStatus.GRPC.csproj",
|
|
6
6
|
"expectedPackageFiles": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/servicestatus-grpc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Servicestatus grpc",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -12,5 +12,5 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@types/google-protobuf": "^3.15.5"
|
|
14
14
|
},
|
|
15
|
-
"gitHead": "
|
|
15
|
+
"gitHead": "50678ca6e0eb2567064416181ae35571217f9af7"
|
|
16
16
|
}
|
|
@@ -66,7 +66,6 @@ message ScanServerData {
|
|
|
66
66
|
SCAN_SERVER_STATUS_SUCCESS = 2;
|
|
67
67
|
SCAN_SERVER_STATUS_SERVER_DOWN = 3;
|
|
68
68
|
SCAN_SERVER_STATUS_SCANNING = 4;
|
|
69
|
-
SCAN_SERVER_STATUS_MAINTENANCE = 5;
|
|
70
69
|
};
|
|
71
70
|
ScanServerStatus scanServerStatus = 3;
|
|
72
71
|
string scanServerStatusDescription = 4;
|
|
@@ -75,7 +74,6 @@ message ScanServerData {
|
|
|
75
74
|
string lastScannedAt = 7;
|
|
76
75
|
string lastScannedMessage = 8;
|
|
77
76
|
bool isPrimary = 9;
|
|
78
|
-
repeated string errors = 10;
|
|
79
77
|
|
|
80
78
|
}
|
|
81
79
|
|