@lansweeper/data-platform-outbound-grpc 0.1.34 → 0.1.35
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 +147 -0
- package/gen-proto/outbound_pb.js +1196 -1
- package/generated-go/outbound.pb.go +2332 -2017
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +28 -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.35",
|
|
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": "50480034813d35a1befe90e6a606e2dd878a9c66"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -128,6 +128,7 @@ message Asset {
|
|
|
128
128
|
optional Chassis chassis = 18;
|
|
129
129
|
optional Memory memory = 19;
|
|
130
130
|
optional Motherboard motherboard = 21;
|
|
131
|
+
repeated OpticalDrive optical_drive = 24;
|
|
131
132
|
|
|
132
133
|
optional OtModule ot_module = 16; // OT specific module info when asset type is 'OT'
|
|
133
134
|
|
|
@@ -549,6 +550,33 @@ message Chassis
|
|
|
549
550
|
optional MappedValue bootup_state = 8;
|
|
550
551
|
}
|
|
551
552
|
|
|
553
|
+
/**
|
|
554
|
+
* Optical disc drive for computers.
|
|
555
|
+
**/
|
|
556
|
+
message OpticalDrive {
|
|
557
|
+
optional string name = 1; // Windows: "HL-DT-ST DVD+-RW GHB0N", Linux: "VMware SATA CD00", Mac: "NECVMWar VMware SATA CD01" Windows, Linux, Mac
|
|
558
|
+
optional string status = 2; // "OK","Error","Degraded" Windows
|
|
559
|
+
optional string bus = 3; // "2:0:0:0" Linux
|
|
560
|
+
repeated MappedValue capabilities = 4; // "Supports writing, Random Access, Supports Removable Media" Windows
|
|
561
|
+
optional string cache_size = 5; // "32 KB", "2048 KB" Mac
|
|
562
|
+
optional string burn_support = 6; // "DRDeviceSupportLevelUnsupported","Yes (Apple Shipping Drive)","Yes (Generic Drive Support)" Mac
|
|
563
|
+
optional string cd_write = 7; // "-R, -RW" Mac
|
|
564
|
+
optional string dvd_write = 8; // "-R, -RAM, -RW" Mac
|
|
565
|
+
optional string read_dvd = 9; // "yes" Mac
|
|
566
|
+
optional string drive_path = 10; // Windows: "H:" Linux: "/dev/sr0 (/dev/sg0)" Windows, Linux
|
|
567
|
+
optional string firmware_version = 11; // "RQ00","1.00" Mac
|
|
568
|
+
optional string connection = 12; // "ATAPI","USB" Mac
|
|
569
|
+
optional string is_underrun_protection_enabled = 13; // "yes" Mac
|
|
570
|
+
optional string manufacturer = 14; // Windows:"(Standard CD-ROM drives)",Linux:"NECVMWar" Windows, Linux
|
|
571
|
+
optional string mount_point = 15; // Linux
|
|
572
|
+
optional string write_strategies = 16; // "CD-TAO, CD-SAO, CD-Raw, DVD-DAO" Mac
|
|
573
|
+
optional int32 scsi_bus = 17; // 7 Windows
|
|
574
|
+
optional int32 scsi_logical_unit = 18; // 0 Windows
|
|
575
|
+
optional int32 scsi_port = 19; // 0 Windows
|
|
576
|
+
optional int32 scsi_target_id = 20; // 0 Windows
|
|
577
|
+
optional string media_burn_information = 21; // Mac
|
|
578
|
+
}
|
|
579
|
+
|
|
552
580
|
/**
|
|
553
581
|
* Motherboard for computers.
|
|
554
582
|
**/
|