@lansweeper/data-platform-outbound-grpc 0.1.19 → 0.1.20
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 +285 -0
- package/gen-proto/outbound_pb.js +2297 -2
- package/generated-go/outbound.pb.go +1881 -1244
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +56 -0
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.20",
|
|
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": "e172271270bcd8e79998368fd344b6c35be464f5"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -130,6 +130,8 @@ message Asset {
|
|
|
130
130
|
|
|
131
131
|
repeated OperatingSystemPatch os_patch = 13;
|
|
132
132
|
|
|
133
|
+
repeated Processor processor = 15;
|
|
134
|
+
|
|
133
135
|
// Reconciliation future
|
|
134
136
|
//string entry_state = 2; // GOLDEN | ALIAS
|
|
135
137
|
//string master_type = 3; // NULL | ENGINE | USER
|
|
@@ -333,12 +335,66 @@ message NetIpAddress {
|
|
|
333
335
|
string subnet = 2;
|
|
334
336
|
}
|
|
335
337
|
|
|
338
|
+
/** Processor **/
|
|
339
|
+
message Processor {
|
|
340
|
+
string name = 1 ;
|
|
341
|
+
optional string address_sizes = 2 ; // Linux-only
|
|
342
|
+
optional int32 address_width = 3 ; // Windows-only
|
|
343
|
+
optional MappedValue architecture = 4 ; // Consolidate on-prem fields into single numeric list with translations
|
|
344
|
+
optional int32 availability = 5 ; // Windows-only
|
|
345
|
+
optional double bogo_mips = 6 ; // Standardize to numeric
|
|
346
|
+
optional string byte_order = 7 ; // Linux-only
|
|
347
|
+
optional string caption = 8 ; // Windows-only
|
|
348
|
+
optional int32 current_clock_speed = 9 ; // Standardize values to numeric (MHz)
|
|
349
|
+
optional int32 data_width = 10 ; // Windows-only
|
|
350
|
+
optional string device_id = 11 ; // Windows-only
|
|
351
|
+
optional int32 external_clock_mhz = 12 ; // Windows-only
|
|
352
|
+
optional MappedValue family = 13 ; // Consolidate on-prem fields into single numeric list with translations
|
|
353
|
+
optional string hypervisor_vendor = 14 ; // Linux-only
|
|
354
|
+
optional int32 l1d_cache_size_kb = 15 ; // Linux-only, standardize to numeric (kilobytes)
|
|
355
|
+
optional int32 l1i_cache_size_kb = 16 ; // Linux-only, standardize to numeric (kilobytes)
|
|
356
|
+
optional int32 l2_cache_size_kb = 17 ; // Standardize values to int (kilobytes)
|
|
357
|
+
optional int32 l2_cache_speed_mhz = 18 ; // Windows-only
|
|
358
|
+
optional int32 l3_cache_size_kb = 19 ; // Linux-only, standardize to numeric (kilobytes)
|
|
359
|
+
optional int32 level = 20 ; // Windows-only, unclear meaning
|
|
360
|
+
optional int32 logical_cores_count = 21 ;
|
|
361
|
+
optional string manufacturer = 22 ;
|
|
362
|
+
optional int32 max_clock_speed_mhz = 23 ; // Standardize Linux values to int (MHz)
|
|
363
|
+
optional int32 min_clock_speed_mhz = 24 ; // Linux-only, standardize to numeric (MHz)
|
|
364
|
+
optional int32 model_number = 25 ; // Linux-only, standardize to numeric
|
|
365
|
+
optional string op_modes = 26 ; // Linux-only
|
|
366
|
+
optional int32 physical_cores_count = 27 ;
|
|
367
|
+
optional string processor_id = 28 ; // Windows-only, probably not used much by customers due to its complexity
|
|
368
|
+
optional MappedValue processor_type = 29 ; // Windows-only
|
|
369
|
+
optional int32 revision = 30 ; // Windows-only
|
|
370
|
+
optional string socket_designation = 31 ; // Windows-only
|
|
371
|
+
optional int32 sockets = 32 ; // Linux-only
|
|
372
|
+
optional MappedValue status = 33 ; // Windows-only
|
|
373
|
+
optional int32 stepping = 34 ; // Consolidate on-prem fields into single numeric list
|
|
374
|
+
optional int32 threads_per_physical_core_count = 35 ; // Linux-only
|
|
375
|
+
optional string unique_id = 36 ; // Windows-only
|
|
376
|
+
optional MappedValue upgrade_method = 37 ; // Windows-only
|
|
377
|
+
optional string version = 38 ; // Windows-only
|
|
378
|
+
optional string virtualization = 39 ; // Linux-only
|
|
379
|
+
optional MappedValue voltage_capabilities = 40 ; // Windows-only
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* A Mapped value is a numeric field that can optionally have a text looked up value.
|
|
384
|
+
* Typical in WMI fields.
|
|
385
|
+
*/
|
|
386
|
+
message MappedValue {
|
|
387
|
+
int64 value = 1;
|
|
388
|
+
optional string name = 2;
|
|
389
|
+
}
|
|
390
|
+
|
|
336
391
|
/* Monitor Inventory with list of connected monitors */
|
|
337
392
|
message MonitorInventory {
|
|
338
393
|
google.protobuf.Timestamp timestamp = 1;
|
|
339
394
|
repeated Monitor monitor = 2;
|
|
340
395
|
}
|
|
341
396
|
|
|
397
|
+
|
|
342
398
|
/* Monitor definition: normalized and with link to raw */
|
|
343
399
|
message Monitor {
|
|
344
400
|
// catalog id of: CatalogMonitor
|