@lansweeper/data-platform-outbound-grpc 0.8.3 → 0.8.5
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/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +125 -0
- package/gen-proto/outbound_pb.js +1497 -469
- package/generated-go/outbound.pb.go +3971 -3661
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +29 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AssetOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +29 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +1111 -435
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +71 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java +1351 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java +85 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +4012 -3968
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSection.java +1814 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.java +194 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +8 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +4 -0
- package/model/target/{outbound-model-0.8.2-sources.jar → outbound-model-0.8.4-sources.jar} +0 -0
- package/model/target/{outbound-model-0.8.2.jar → outbound-model-0.8.4.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +29 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.8.2-sources.jar → outbound-service-0.8.4-sources.jar} +0 -0
- package/service/target/{outbound-service-0.8.2.jar → outbound-service-0.8.4.jar} +0 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
+
// source: outbound.proto
|
|
3
|
+
|
|
4
|
+
// Protobuf Java Version: 3.25.1
|
|
5
|
+
package com.lansweeper.dp.outbound.v1;
|
|
6
|
+
|
|
7
|
+
public interface ScanSectionOrBuilder extends
|
|
8
|
+
// @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.ScanSection)
|
|
9
|
+
com.google.protobuf.MessageOrBuilder {
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* <code>int32 key = 1;</code>
|
|
13
|
+
* @return The key.
|
|
14
|
+
*/
|
|
15
|
+
int getKey();
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* <pre>
|
|
19
|
+
* e.g.: Windows:BasicInfo
|
|
20
|
+
* </pre>
|
|
21
|
+
*
|
|
22
|
+
* <code>optional string name = 2;</code>
|
|
23
|
+
* @return Whether the name field is set.
|
|
24
|
+
*/
|
|
25
|
+
boolean hasName();
|
|
26
|
+
/**
|
|
27
|
+
* <pre>
|
|
28
|
+
* e.g.: Windows:BasicInfo
|
|
29
|
+
* </pre>
|
|
30
|
+
*
|
|
31
|
+
* <code>optional string name = 2;</code>
|
|
32
|
+
* @return The name.
|
|
33
|
+
*/
|
|
34
|
+
java.lang.String getName();
|
|
35
|
+
/**
|
|
36
|
+
* <pre>
|
|
37
|
+
* e.g.: Windows:BasicInfo
|
|
38
|
+
* </pre>
|
|
39
|
+
*
|
|
40
|
+
* <code>optional string name = 2;</code>
|
|
41
|
+
* @return The bytes for name.
|
|
42
|
+
*/
|
|
43
|
+
com.google.protobuf.ByteString
|
|
44
|
+
getNameBytes();
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* <pre>
|
|
48
|
+
* e.g.: Wmi.Registry.WinApi
|
|
49
|
+
* </pre>
|
|
50
|
+
*
|
|
51
|
+
* <code>optional string source = 3;</code>
|
|
52
|
+
* @return Whether the source field is set.
|
|
53
|
+
*/
|
|
54
|
+
boolean hasSource();
|
|
55
|
+
/**
|
|
56
|
+
* <pre>
|
|
57
|
+
* e.g.: Wmi.Registry.WinApi
|
|
58
|
+
* </pre>
|
|
59
|
+
*
|
|
60
|
+
* <code>optional string source = 3;</code>
|
|
61
|
+
* @return The source.
|
|
62
|
+
*/
|
|
63
|
+
java.lang.String getSource();
|
|
64
|
+
/**
|
|
65
|
+
* <pre>
|
|
66
|
+
* e.g.: Wmi.Registry.WinApi
|
|
67
|
+
* </pre>
|
|
68
|
+
*
|
|
69
|
+
* <code>optional string source = 3;</code>
|
|
70
|
+
* @return The bytes for source.
|
|
71
|
+
*/
|
|
72
|
+
com.google.protobuf.ByteString
|
|
73
|
+
getSourceBytes();
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* <code>optional .google.protobuf.Timestamp scan_time = 4;</code>
|
|
77
|
+
* @return Whether the scanTime field is set.
|
|
78
|
+
*/
|
|
79
|
+
boolean hasScanTime();
|
|
80
|
+
/**
|
|
81
|
+
* <code>optional .google.protobuf.Timestamp scan_time = 4;</code>
|
|
82
|
+
* @return The scanTime.
|
|
83
|
+
*/
|
|
84
|
+
com.google.protobuf.Timestamp getScanTime();
|
|
85
|
+
/**
|
|
86
|
+
* <code>optional .google.protobuf.Timestamp scan_time = 4;</code>
|
|
87
|
+
*/
|
|
88
|
+
com.google.protobuf.TimestampOrBuilder getScanTimeOrBuilder();
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* <code>optional int64 duration = 5;</code>
|
|
92
|
+
* @return Whether the duration field is set.
|
|
93
|
+
*/
|
|
94
|
+
boolean hasDuration();
|
|
95
|
+
/**
|
|
96
|
+
* <code>optional int64 duration = 5;</code>
|
|
97
|
+
* @return The duration.
|
|
98
|
+
*/
|
|
99
|
+
long getDuration();
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* <code>repeated string errors = 6;</code>
|
|
103
|
+
* @return A list containing the errors.
|
|
104
|
+
*/
|
|
105
|
+
java.util.List<java.lang.String>
|
|
106
|
+
getErrorsList();
|
|
107
|
+
/**
|
|
108
|
+
* <code>repeated string errors = 6;</code>
|
|
109
|
+
* @return The count of errors.
|
|
110
|
+
*/
|
|
111
|
+
int getErrorsCount();
|
|
112
|
+
/**
|
|
113
|
+
* <code>repeated string errors = 6;</code>
|
|
114
|
+
* @param index The index of the element to return.
|
|
115
|
+
* @return The errors at the given index.
|
|
116
|
+
*/
|
|
117
|
+
java.lang.String getErrors(int index);
|
|
118
|
+
/**
|
|
119
|
+
* <code>repeated string errors = 6;</code>
|
|
120
|
+
* @param index The index of the value to return.
|
|
121
|
+
* @return The bytes of the errors at the given index.
|
|
122
|
+
*/
|
|
123
|
+
com.google.protobuf.ByteString
|
|
124
|
+
getErrorsBytes(int index);
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* <code>optional bool success = 7;</code>
|
|
128
|
+
* @return Whether the success field is set.
|
|
129
|
+
*/
|
|
130
|
+
boolean hasSuccess();
|
|
131
|
+
/**
|
|
132
|
+
* <code>optional bool success = 7;</code>
|
|
133
|
+
* @return The success.
|
|
134
|
+
*/
|
|
135
|
+
boolean getSuccess();
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* <pre>
|
|
139
|
+
*algorithm + value
|
|
140
|
+
* </pre>
|
|
141
|
+
*
|
|
142
|
+
* <code>optional string hash = 8;</code>
|
|
143
|
+
* @return Whether the hash field is set.
|
|
144
|
+
*/
|
|
145
|
+
boolean hasHash();
|
|
146
|
+
/**
|
|
147
|
+
* <pre>
|
|
148
|
+
*algorithm + value
|
|
149
|
+
* </pre>
|
|
150
|
+
*
|
|
151
|
+
* <code>optional string hash = 8;</code>
|
|
152
|
+
* @return The hash.
|
|
153
|
+
*/
|
|
154
|
+
java.lang.String getHash();
|
|
155
|
+
/**
|
|
156
|
+
* <pre>
|
|
157
|
+
*algorithm + value
|
|
158
|
+
* </pre>
|
|
159
|
+
*
|
|
160
|
+
* <code>optional string hash = 8;</code>
|
|
161
|
+
* @return The bytes for hash.
|
|
162
|
+
*/
|
|
163
|
+
com.google.protobuf.ByteString
|
|
164
|
+
getHashBytes();
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* <pre>
|
|
168
|
+
*IANA Id
|
|
169
|
+
* </pre>
|
|
170
|
+
*
|
|
171
|
+
* <code>optional string timezone = 9;</code>
|
|
172
|
+
* @return Whether the timezone field is set.
|
|
173
|
+
*/
|
|
174
|
+
boolean hasTimezone();
|
|
175
|
+
/**
|
|
176
|
+
* <pre>
|
|
177
|
+
*IANA Id
|
|
178
|
+
* </pre>
|
|
179
|
+
*
|
|
180
|
+
* <code>optional string timezone = 9;</code>
|
|
181
|
+
* @return The timezone.
|
|
182
|
+
*/
|
|
183
|
+
java.lang.String getTimezone();
|
|
184
|
+
/**
|
|
185
|
+
* <pre>
|
|
186
|
+
*IANA Id
|
|
187
|
+
* </pre>
|
|
188
|
+
*
|
|
189
|
+
* <code>optional string timezone = 9;</code>
|
|
190
|
+
* @return The bytes for timezone.
|
|
191
|
+
*/
|
|
192
|
+
com.google.protobuf.ByteString
|
|
193
|
+
getTimezoneBytes();
|
|
194
|
+
}
|
package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
CHANGED
|
@@ -66,6 +66,7 @@ com/lansweeper/dp/outbound/v1/CatalogSoftware$1.class
|
|
|
66
66
|
com/lansweeper/dp/outbound/v1/MacMonitorInfo$Builder.class
|
|
67
67
|
com/lansweeper/dp/outbound/v1/ServerGroup.class
|
|
68
68
|
com/lansweeper/dp/outbound/v1/ComputerLinuxBasicInfoOrBuilder.class
|
|
69
|
+
com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class
|
|
69
70
|
com/lansweeper/dp/outbound/v1/SqlServerService.class
|
|
70
71
|
com/lansweeper/dp/outbound/v1/ComputerMacBluetooth$1.class
|
|
71
72
|
com/lansweeper/dp/outbound/v1/Relation.class
|
|
@@ -171,6 +172,7 @@ com/lansweeper/dp/outbound/v1/ReconciliationInfo$MasterType.class
|
|
|
171
172
|
com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$1.class
|
|
172
173
|
com/lansweeper/dp/outbound/v1/ComputerWindowsSatOrBuilder.class
|
|
173
174
|
com/lansweeper/dp/outbound/v1/ComputerLinuxPhysicalVolume$1.class
|
|
175
|
+
com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.class
|
|
174
176
|
com/lansweeper/dp/outbound/v1/OtScanInfo.class
|
|
175
177
|
com/lansweeper/dp/outbound/v1/SourceInfo$Builder.class
|
|
176
178
|
com/lansweeper/dp/outbound/v1/OtModule$1.class
|
|
@@ -507,6 +509,7 @@ com/lansweeper/dp/outbound/v1/DatastoreClusterStorageDrs$1.class
|
|
|
507
509
|
com/lansweeper/dp/outbound/v1/OperatingSystemService$1.class
|
|
508
510
|
com/lansweeper/dp/outbound/v1/VmwareDisk.class
|
|
509
511
|
com/lansweeper/dp/outbound/v1/WindowsOperatingSystemInfo$1.class
|
|
512
|
+
com/lansweeper/dp/outbound/v1/ScanSection$1.class
|
|
510
513
|
com/lansweeper/dp/outbound/v1/InternetExplorerOrBuilder.class
|
|
511
514
|
com/lansweeper/dp/outbound/v1/ComputerMacAccessibility$Builder.class
|
|
512
515
|
com/lansweeper/dp/outbound/v1/NetworkProtocols$Builder.class
|
|
@@ -643,6 +646,7 @@ com/lansweeper/dp/outbound/v1/WarrantyInfo.class
|
|
|
643
646
|
com/lansweeper/dp/outbound/v1/NetworkVolume.class
|
|
644
647
|
com/lansweeper/dp/outbound/v1/UserAccount$Builder.class
|
|
645
648
|
com/lansweeper/dp/outbound/v1/KeyboardOrBuilder.class
|
|
649
|
+
com/lansweeper/dp/outbound/v1/ScanSection.class
|
|
646
650
|
com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.class
|
|
647
651
|
com/lansweeper/dp/outbound/v1/Office365Contact$1.class
|
|
648
652
|
com/lansweeper/dp/outbound/v1/SoftwareChangeEvent$EventType$1.class
|
|
@@ -763,6 +767,7 @@ com/lansweeper/dp/outbound/v1/SqlServerDatabase.class
|
|
|
763
767
|
com/lansweeper/dp/outbound/v1/MonitorInventoryOrBuilder.class
|
|
764
768
|
com/lansweeper/dp/outbound/v1/CitrixGuestExtraInfo$Builder.class
|
|
765
769
|
com/lansweeper/dp/outbound/v1/WindowsSystemDriver$Builder.class
|
|
770
|
+
com/lansweeper/dp/outbound/v1/LegacyFields$1.class
|
|
766
771
|
com/lansweeper/dp/outbound/v1/ComputerWindowsSat.class
|
|
767
772
|
com/lansweeper/dp/outbound/v1/ComputerConnectedUsbController$2.class
|
|
768
773
|
com/lansweeper/dp/outbound/v1/SetIpLocationConfigResponse.class
|
|
@@ -858,6 +863,7 @@ com/lansweeper/dp/outbound/v1/ComputerConnectedUsbControllerOrBuilder.class
|
|
|
858
863
|
com/lansweeper/dp/outbound/v1/WindowsMonitorInfoOrBuilder.class
|
|
859
864
|
com/lansweeper/dp/outbound/v1/SpecHardwareInfo.class
|
|
860
865
|
com/lansweeper/dp/outbound/v1/RawSoftware.class
|
|
866
|
+
com/lansweeper/dp/outbound/v1/ScanSection$Builder.class
|
|
861
867
|
com/lansweeper/dp/outbound/v1/NetIpAddress$1.class
|
|
862
868
|
com/lansweeper/dp/outbound/v1/ComputerMacPreferencePaneOrBuilder.class
|
|
863
869
|
com/lansweeper/dp/outbound/v1/CatalogOs.class
|
|
@@ -901,6 +907,7 @@ com/lansweeper/dp/outbound/v1/SqlServerService$ServiceStartupType.class
|
|
|
901
907
|
com/lansweeper/dp/outbound/v1/SnmpInfo$1.class
|
|
902
908
|
com/lansweeper/dp/outbound/v1/VmwareDatacenter$ClustersDefaultEntryHolder.class
|
|
903
909
|
com/lansweeper/dp/outbound/v1/LockedFields$Builder.class
|
|
910
|
+
com/lansweeper/dp/outbound/v1/LegacyFields.class
|
|
904
911
|
com/lansweeper/dp/outbound/v1/SqlServerService$1.class
|
|
905
912
|
com/lansweeper/dp/outbound/v1/WindowsSqlServerChangeEvent$EventType.class
|
|
906
913
|
com/lansweeper/dp/outbound/v1/MacMonitorInfo$1.class
|
|
@@ -1068,6 +1075,7 @@ com/lansweeper/dp/outbound/v1/ScsiController$Builder.class
|
|
|
1068
1075
|
com/lansweeper/dp/outbound/v1/GetIpLocationConfigResponse.class
|
|
1069
1076
|
com/lansweeper/dp/outbound/v1/KernelExtensionError$1.class
|
|
1070
1077
|
com/lansweeper/dp/outbound/v1/SccmServerOrBuilder.class
|
|
1078
|
+
com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class
|
|
1071
1079
|
com/lansweeper/dp/outbound/v1/SetIpLocationConfigRequest$Builder.class
|
|
1072
1080
|
com/lansweeper/dp/outbound/v1/ComputerMacCamera$Builder.class
|
|
1073
1081
|
com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.class
|
package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/DatastoreClusterDrsVmOverrideOrBuilder.java
|
|
8
8
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SharedPermissionOrBuilder.java
|
|
9
9
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerMacDiagnosticsOrBuilder.java
|
|
10
|
+
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java
|
|
10
11
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiBios.java
|
|
11
12
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerLinuxVolumeGroupOrBuilder.java
|
|
12
13
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ListEntityResponse.java
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java
|
|
24
25
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerMacAccessibilityOrBuilder.java
|
|
25
26
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PcmciaController.java
|
|
27
|
+
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.java
|
|
26
28
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/WindowsPrinterDriverOrBuilder.java
|
|
27
29
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixHostExtraInfo.java
|
|
28
30
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareDatacenter.java
|
|
@@ -350,6 +352,7 @@
|
|
|
350
352
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java
|
|
351
353
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/WindowsPageFileCombinedData.java
|
|
352
354
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuestExtraInfoOrBuilder.java
|
|
355
|
+
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSection.java
|
|
353
356
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFields.java
|
|
354
357
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/WindowsPortableBatteryOrBuilder.java
|
|
355
358
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UserOrBuilder.java
|
|
@@ -484,6 +487,7 @@
|
|
|
484
487
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerMacOsFrameworkOrBuilder.java
|
|
485
488
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HttpServerInfo.java
|
|
486
489
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ServerGroupOrBuilder.java
|
|
490
|
+
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java
|
|
487
491
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerBusOrBuilder.java
|
|
488
492
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365Organization.java
|
|
489
493
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerMacEthernetOrBuilder.java
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "4ac31440dee43a7e3990eb684c413f253eaa42e9"
|
|
13
13
|
}
|
package/pom.xml
CHANGED
package/proto/outbound.proto
CHANGED
|
@@ -252,6 +252,7 @@ message Asset {
|
|
|
252
252
|
google.protobuf.Timestamp first_seen = 3;
|
|
253
253
|
google.protobuf.Timestamp last_updated = 4;
|
|
254
254
|
google.protobuf.Timestamp last_enriched = 5;
|
|
255
|
+
optional LegacyFields legacy_fields = 307; // legacy fields for CLASSIC reconciliation
|
|
255
256
|
|
|
256
257
|
optional string last_synced_source_agent = 39; // last synced source agent name and version
|
|
257
258
|
optional string last_synced_source_name = 49; // last synced source name
|
|
@@ -283,6 +284,7 @@ message Asset {
|
|
|
283
284
|
*/
|
|
284
285
|
optional string unique_key = 23;
|
|
285
286
|
|
|
287
|
+
repeated ScanSection scan_section = 306; // sections of the scan, e.g. Windows:BasicInfo, Linux:BasicInfo, etc.
|
|
286
288
|
repeated ScanError scan_error = 33;
|
|
287
289
|
|
|
288
290
|
optional IpInfo internet_ip = 32; // Internet IP and related geo-location info, when available
|
|
@@ -336,6 +338,19 @@ message Asset {
|
|
|
336
338
|
optional LockedFields manual_asset_locked_fields = 97; // fields locked by the user in the manual asset UI
|
|
337
339
|
}
|
|
338
340
|
|
|
341
|
+
/**
|
|
342
|
+
* Contains the legacy fields of an asset.
|
|
343
|
+
* These are the fields that are present in an asset from CLASSIC.
|
|
344
|
+
*/
|
|
345
|
+
message LegacyFields {
|
|
346
|
+
optional google.protobuf.Timestamp last_tried = 1;
|
|
347
|
+
optional google.protobuf.Timestamp last_active_scan = 2;
|
|
348
|
+
optional google.protobuf.Timestamp last_ip_scan = 3;
|
|
349
|
+
optional google.protobuf.Timestamp last_saved = 4;
|
|
350
|
+
optional google.protobuf.Timestamp last_sccm_scan = 5;
|
|
351
|
+
|
|
352
|
+
}
|
|
353
|
+
|
|
339
354
|
/**
|
|
340
355
|
* Contains locked fields from the manual asset UI interface
|
|
341
356
|
*/
|
|
@@ -886,6 +901,20 @@ message ScanError {
|
|
|
886
901
|
optional int64 duration = 5;
|
|
887
902
|
}
|
|
888
903
|
|
|
904
|
+
/**
|
|
905
|
+
* Scan section.
|
|
906
|
+
*/
|
|
907
|
+
message ScanSection {
|
|
908
|
+
int32 key = 1;
|
|
909
|
+
optional string name = 2; // e.g.: Windows:BasicInfo
|
|
910
|
+
optional string source = 3; // e.g.: Wmi.Registry.WinApi
|
|
911
|
+
optional google.protobuf.Timestamp scan_time = 4;
|
|
912
|
+
optional int64 duration = 5;
|
|
913
|
+
repeated string errors = 6;
|
|
914
|
+
optional bool success = 7;
|
|
915
|
+
optional string hash = 8; //algorithm + value
|
|
916
|
+
optional string timezone = 9; //IANA Id
|
|
917
|
+
}
|
|
889
918
|
/**
|
|
890
919
|
* Scan credentials.
|
|
891
920
|
*/
|
package/service/pom.xml
CHANGED
package/service/target/{outbound-service-0.8.2-sources.jar → outbound-service-0.8.4-sources.jar}
RENAMED
|
index 86f008a..f3517dd 100644
|
|
|
Binary file
|
|
index f630e11..232a373 100644
|
|
|
Binary file
|