@lansweeper/discovery-sensor-proto 2.22.1 → 2.23.0
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/gen-proto/discovery_sections_api_pb.d.ts +54 -9
- package/gen-proto/discovery_sections_api_pb.js +403 -34
- package/gen-proto/discovery_sections_mac_pb.d.ts +132 -0
- package/gen-proto/discovery_sections_mac_pb.js +1067 -0
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_api.proto +9 -3
- package/proto/discovery_sections_mac.proto +26 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/discovery-sensor-proto",
|
|
3
3
|
"description": "Discovery Sensor proto",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.23.0",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/google-protobuf": "^3.15.5"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "36da4e19a25b6c2940ac4076431bc6fc50db54bc"
|
|
20
20
|
}
|
|
@@ -693,6 +693,12 @@ message Esxi {
|
|
|
693
693
|
google.protobuf.StringValue bios_version = 36;
|
|
694
694
|
optional google.protobuf.Timestamp bios_date = 37;
|
|
695
695
|
google.protobuf.StringValue serial = 38;
|
|
696
|
+
google.protobuf.BoolValue ht_active = 39;
|
|
697
|
+
google.protobuf.BoolValue ht_available = 40;
|
|
698
|
+
google.protobuf.Int32Value num_cpu = 41;
|
|
699
|
+
google.protobuf.Int32Value num_cores_per_socket = 42;
|
|
700
|
+
google.protobuf.StringValue mac_address = 43;
|
|
701
|
+
google.protobuf.StringValue full_host_name = 44;
|
|
696
702
|
}
|
|
697
703
|
|
|
698
704
|
/* VCenter API scanning root object */
|
|
@@ -825,9 +831,9 @@ message VirtualMachine {
|
|
|
825
831
|
google.protobuf.StringValue is_running = 20;
|
|
826
832
|
repeated Snapshot snapshots = 21;
|
|
827
833
|
google.protobuf.StringValue tools_version = 22;
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
834
|
+
google.protobuf.StringValue tools_status = 23;
|
|
835
|
+
google.protobuf.StringValue tools_version_status = 24;
|
|
836
|
+
google.protobuf.StringValue tools_running_status = 25;
|
|
831
837
|
google.protobuf.StringValue mac_address = 26;
|
|
832
838
|
bool is_vm_ware_guest = 27;
|
|
833
839
|
repeated AssetMacAddress asset_mac_addresses = 28;
|
|
@@ -312,4 +312,29 @@ message Monitor {
|
|
|
312
312
|
google.protobuf.StringValue quartz_extreme = 19;
|
|
313
313
|
google.protobuf.StringValue device_type = 20;
|
|
314
314
|
google.protobuf.StringValue built_in = 21;
|
|
315
|
-
}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
/* Section element for firewire info on Mac */
|
|
318
|
+
message MacFirewire {
|
|
319
|
+
repeated Firewire entries = 1;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
message Firewire {
|
|
323
|
+
google.protobuf.StringValue name = 1;
|
|
324
|
+
google.protobuf.StringValue max_device_speed = 2;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/* Section element for modem info on Mac */
|
|
328
|
+
message MacModem {
|
|
329
|
+
repeated Modem entries = 1;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
message Modem {
|
|
333
|
+
google.protobuf.StringValue name = 1;
|
|
334
|
+
google.protobuf.StringValue country_info = 2;
|
|
335
|
+
google.protobuf.StringValue driver_info = 3;
|
|
336
|
+
google.protobuf.StringValue hw_version = 4;
|
|
337
|
+
google.protobuf.StringValue interface_type = 5;
|
|
338
|
+
google.protobuf.StringValue model = 6;
|
|
339
|
+
google.protobuf.StringValue modulation = 7;
|
|
340
|
+
}
|