@lansweeper/data-platform-outbound-grpc 0.1.86 → 0.1.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +149 -0
- package/gen-proto/outbound_pb.js +1234 -1
- package/generated-go/outbound.pb.go +6368 -5959
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +43 -2
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.88",
|
|
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": "9d7c5b323f24b5759561a440abcb17945941ae48"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -175,6 +175,8 @@ message Asset {
|
|
|
175
175
|
repeated Tag tag = 14;
|
|
176
176
|
repeated Relation relation = 20; // e.g. relations to and from OT parent module to sub-modules
|
|
177
177
|
|
|
178
|
+
optional CorrelationFields correlation_fields = 78; // correlation fields needed and used by reconciliation engine
|
|
179
|
+
|
|
178
180
|
CoreFields core = 6;
|
|
179
181
|
|
|
180
182
|
optional HardwareInfo hw = 7;
|
|
@@ -265,8 +267,11 @@ message Computer {
|
|
|
265
267
|
repeated ComputerWindowsNetworkClient windows_network_client = 210;
|
|
266
268
|
repeated NetworkVolume network_volume = 211;
|
|
267
269
|
repeated ComputerWindowsCertificate windows_cert = 212;
|
|
268
|
-
repeated ComputerWindowsSerial windows_serial = 213;
|
|
269
|
-
|
|
270
|
+
repeated ComputerWindowsSerial windows_serial = 213;
|
|
271
|
+
repeated ComputerWindowsEnvironment win_env = 214;
|
|
272
|
+
repeated ComputerWindowsCodec windows_codecs_com = 215;
|
|
273
|
+
repeated ComputerWindowsCodec windows_codecs_dcom = 216;
|
|
274
|
+
repeated ComputerWindowsCodec windows_codecs_component = 217;
|
|
270
275
|
|
|
271
276
|
// USERS AND ACCOUNT
|
|
272
277
|
optional LastUser last_user = 301; // i.e. computer current user
|
|
@@ -276,6 +281,7 @@ message Computer {
|
|
|
276
281
|
}
|
|
277
282
|
|
|
278
283
|
|
|
284
|
+
|
|
279
285
|
/**
|
|
280
286
|
* A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.
|
|
281
287
|
* It is used to associate metadata or additional information with an entity or data element.
|
|
@@ -311,6 +317,20 @@ message Relation {
|
|
|
311
317
|
repeated Tag tag = 6;
|
|
312
318
|
}
|
|
313
319
|
|
|
320
|
+
/**
|
|
321
|
+
* Correlation fields used by reconciliation/correlation engine.
|
|
322
|
+
*/
|
|
323
|
+
message CorrelationFields {
|
|
324
|
+
// version or timestamp here...
|
|
325
|
+
repeated CorrField field = 1;
|
|
326
|
+
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
message CorrField {
|
|
330
|
+
string key = 1;
|
|
331
|
+
repeated string value = 2;
|
|
332
|
+
}
|
|
333
|
+
|
|
314
334
|
/**
|
|
315
335
|
* Cloud entity coming from CDK scanner.
|
|
316
336
|
* This could be extended later on to become more than a carrier of opaque info.
|
|
@@ -1793,6 +1813,26 @@ message ComputerWindowsSerial {
|
|
|
1793
1813
|
optional string product_serial = 3;
|
|
1794
1814
|
}
|
|
1795
1815
|
|
|
1816
|
+
/**
|
|
1817
|
+
* Computer Windows only: environment variables.
|
|
1818
|
+
*/
|
|
1819
|
+
message ComputerWindowsEnvironment {
|
|
1820
|
+
optional string caption = 1;
|
|
1821
|
+
optional string name = 2;
|
|
1822
|
+
optional bool system_variable = 3;
|
|
1823
|
+
optional string user_name = 4;
|
|
1824
|
+
optional string variable_value = 5;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
/**
|
|
1828
|
+
* Computer Windows only: from WindowsComApplication, WindowsDcomApplication, WindowsComponentCategory.
|
|
1829
|
+
*/
|
|
1830
|
+
message ComputerWindowsCodec {
|
|
1831
|
+
optional string app_id = 1;
|
|
1832
|
+
optional string caption = 2;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
|
|
1796
1836
|
|
|
1797
1837
|
/**
|
|
1798
1838
|
* Computer, Windows only Certificate.
|
|
@@ -2057,6 +2097,7 @@ message PortableBattery {
|
|
|
2057
2097
|
|
|
2058
2098
|
|
|
2059
2099
|
|
|
2100
|
+
|
|
2060
2101
|
/**
|
|
2061
2102
|
* A Mapped value is a numeric field that can optionally have a text looked up value.
|
|
2062
2103
|
* Typical in WMI fields.
|