@lansweeper/data-platform-outbound-grpc 0.1.24 → 0.1.26
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 +232 -5
- package/gen-proto/outbound_pb.js +1850 -23
- package/generated-go/outbound.pb.go +1405 -864
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +47 -1
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.26",
|
|
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": "af59b38ce32aab5163da8007f963612f14c31385"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -120,7 +120,8 @@ message Asset {
|
|
|
120
120
|
repeated OperatingSystemPatch os_patch = 13;
|
|
121
121
|
|
|
122
122
|
repeated Processor processor = 15;
|
|
123
|
-
|
|
123
|
+
optional Chassis chassis = 18;
|
|
124
|
+
optional Memory memory = 19;
|
|
124
125
|
|
|
125
126
|
optional OtModule ot_module = 16; // OT specific module info when asset type is 'OT'
|
|
126
127
|
|
|
@@ -457,6 +458,51 @@ message Chassis
|
|
|
457
458
|
optional MappedValue chassis_bootup_state = 8;
|
|
458
459
|
}
|
|
459
460
|
|
|
461
|
+
/**
|
|
462
|
+
* Memory with summary fields and repeated entries.
|
|
463
|
+
**/
|
|
464
|
+
message Memory {
|
|
465
|
+
int64 installed_size = 1;
|
|
466
|
+
repeated PhysicalMemory physical_memory = 2;
|
|
467
|
+
repeated MemoryArray memory_array = 3;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
/** MemoryEntry **/
|
|
471
|
+
message PhysicalMemory
|
|
472
|
+
{
|
|
473
|
+
optional string bank_locator= 1; // Linux
|
|
474
|
+
optional int32 configured_clock_speed = 2; // Windows
|
|
475
|
+
optional int32 configured_voltage= 3; // Windows
|
|
476
|
+
optional int32 data_width= 4; // Windows, Linux
|
|
477
|
+
optional string device_locator= 5; // Windows, Linux
|
|
478
|
+
optional MappedValue form_factor= 6; // Windows, Linux
|
|
479
|
+
optional int32 interleave_data_depth= 7; // Windows
|
|
480
|
+
optional MappedValue interleave_position= 8; // Windows
|
|
481
|
+
optional string manufacturer= 9; // Windows, Linux
|
|
482
|
+
optional string name= 10; // Mac
|
|
483
|
+
optional string part_number= 11; // Windows
|
|
484
|
+
optional int32 position_in_row= 12; // Windows
|
|
485
|
+
optional string serial_number= 13; // Windows, Linux
|
|
486
|
+
optional string set= 14; // Linux
|
|
487
|
+
optional string sku= 15; // Windows
|
|
488
|
+
optional int32 speed= 16; // Windows, Linux, Mac
|
|
489
|
+
optional string state= 17; // Mac
|
|
490
|
+
optional int32 total_width= 18; // Windows, Linux
|
|
491
|
+
optional MappedValue type= 19; // Windows, Linux, Mac
|
|
492
|
+
optional MappedValue type_detail= 20; // Windows, Linux
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
/** MemoryArray, only Windows **/
|
|
497
|
+
message MemoryArray {
|
|
498
|
+
optional int32 max_capacity= 1; // Windows
|
|
499
|
+
optional MappedValue location= 2; // Windows
|
|
500
|
+
optional int32 memory_devices= 3; // Windows
|
|
501
|
+
optional MappedValue memory_error_correction= 4; // Windows
|
|
502
|
+
optional string tag= 5; // Windows
|
|
503
|
+
optional MappedValue use= 6; // Windows
|
|
504
|
+
}
|
|
505
|
+
|
|
460
506
|
/**
|
|
461
507
|
* A Mapped value is a numeric field that can optionally have a text looked up value.
|
|
462
508
|
* Typical in WMI fields.
|