@lansweeper/data-platform-outbound-grpc 0.1.122 → 0.1.123
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 +245 -16
- package/gen-proto/outbound_pb.js +1927 -70
- package/generated-go/outbound.pb.go +8066 -7564
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +45 -5
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.123",
|
|
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": "598f32c13899e7b0d460a5db09c74d16cf65b1c8"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -280,6 +280,7 @@ message Computer {
|
|
|
280
280
|
optional ComputerMacEthernet mac_ethernet = 42;
|
|
281
281
|
optional ComputerMacNVMExpress mac_nvm_express = 43;
|
|
282
282
|
repeated ComputerMacSPIDevice mac_spi_device = 44;
|
|
283
|
+
repeated ComputerMacSATAController mac_sata_controller = 45;
|
|
283
284
|
|
|
284
285
|
|
|
285
286
|
// OS
|
|
@@ -1579,15 +1580,54 @@ message NVMExpress {
|
|
|
1579
1580
|
optional uint64 size_in_bytes = 10;
|
|
1580
1581
|
optional string smart_status = 11;
|
|
1581
1582
|
optional bool trim_support = 12;
|
|
1582
|
-
repeated
|
|
1583
|
+
repeated MacDiskVolume volumes = 13;
|
|
1583
1584
|
}
|
|
1584
1585
|
|
|
1585
|
-
|
|
1586
|
+
// SATA Controller, macOS specific for now
|
|
1587
|
+
message ComputerMacSATAController {
|
|
1588
|
+
optional string name = 1;
|
|
1589
|
+
optional string negotiated_link_speed = 2;
|
|
1590
|
+
optional string physical_interconnect = 3;
|
|
1591
|
+
optional string port_description = 4;
|
|
1592
|
+
optional string port_speed = 5;
|
|
1593
|
+
optional string product = 6;
|
|
1594
|
+
optional string vendor = 7;
|
|
1595
|
+
repeated MacSATADevice devices = 8;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
message MacSATADevice {
|
|
1599
|
+
optional string name = 1;
|
|
1600
|
+
optional string bsd_name = 2;
|
|
1601
|
+
optional bool detachable_drive = 3;
|
|
1602
|
+
optional string device_model = 4;
|
|
1603
|
+
optional string device_revision = 5;
|
|
1604
|
+
optional string device_serial_number = 6;
|
|
1605
|
+
optional string partition_map_type = 7;
|
|
1606
|
+
optional bool removable_media = 8;
|
|
1607
|
+
optional string size = 9;
|
|
1608
|
+
optional uint64 size_in_bytes = 10;
|
|
1609
|
+
optional string smart_status = 11;
|
|
1610
|
+
optional string medium_type = 12;
|
|
1611
|
+
optional bool native_command_queuing = 13;
|
|
1612
|
+
optional string queue_depth = 14;
|
|
1613
|
+
optional bool trim_support = 15;
|
|
1614
|
+
optional string async_notification = 16;
|
|
1615
|
+
optional string power_off = 17;
|
|
1616
|
+
repeated MacDiskVolume volumes = 18;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
message MacDiskVolume {
|
|
1586
1620
|
optional string name = 1;
|
|
1587
1621
|
optional string bsd_name = 2;
|
|
1588
|
-
optional string
|
|
1589
|
-
optional string
|
|
1590
|
-
optional uint64
|
|
1622
|
+
optional string file_system = 3;
|
|
1623
|
+
optional string free_space = 4;
|
|
1624
|
+
optional uint64 free_space_in_bytes = 5;
|
|
1625
|
+
optional string io_content = 6;
|
|
1626
|
+
optional string mount_point = 7;
|
|
1627
|
+
optional string size = 8;
|
|
1628
|
+
optional uint64 size_in_bytes = 9;
|
|
1629
|
+
optional string volume_uuid = 10;
|
|
1630
|
+
optional bool writable = 11;
|
|
1591
1631
|
}
|
|
1592
1632
|
|
|
1593
1633
|
// SPI Device, macOS only, to be mapped from MacSPI inbound model
|