@lansweeper/data-platform-outbound-grpc 0.1.108 → 0.1.110
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 +386 -9
- package/gen-proto/outbound_pb.js +3033 -26
- package/generated-go/outbound.pb.go +7655 -6823
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +75 -3
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.110",
|
|
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": "735b9d3087aea8a220a3599ce8c270441dd2dac5"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -189,6 +189,7 @@ message Asset {
|
|
|
189
189
|
optional PortScan port_scan = 77;
|
|
190
190
|
|
|
191
191
|
repeated WarrantyInfo warranty_info = 81;
|
|
192
|
+
optional SNMPInfo snmp_info= 82;
|
|
192
193
|
|
|
193
194
|
// list of deprecated fields, now moved to computer message
|
|
194
195
|
reserved 9, 26, 13, 37, 15, 18, 19, 21, 24, 25, 27, 30, 28, 29, 31;
|
|
@@ -974,6 +975,17 @@ message NetworkInterface {
|
|
|
974
975
|
|
|
975
976
|
optional string service_name = 14;
|
|
976
977
|
optional string database_path = 15;
|
|
978
|
+
|
|
979
|
+
optional string description = 16;
|
|
980
|
+
optional string alias = 17;
|
|
981
|
+
optional string mtu = 18;
|
|
982
|
+
optional string speed = 19;
|
|
983
|
+
optional string high_speed = 20;
|
|
984
|
+
optional string admin_status = 21;
|
|
985
|
+
optional string oper_status = 22;
|
|
986
|
+
|
|
987
|
+
repeated string connected_devices = 23;
|
|
988
|
+
repeated string vlans = 24;
|
|
977
989
|
}
|
|
978
990
|
|
|
979
991
|
/* Network IP address with IP and subnet */
|
|
@@ -2494,8 +2506,8 @@ message ComputerMacWifiController {
|
|
|
2494
2506
|
message WiFiInterface {
|
|
2495
2507
|
optional string name = 1;
|
|
2496
2508
|
optional string airdrop_channel = 2;
|
|
2497
|
-
optional
|
|
2498
|
-
optional
|
|
2509
|
+
optional bool airdrop_supported = 3;
|
|
2510
|
+
optional bool auto_unlock_supported = 4;
|
|
2499
2511
|
optional string card_type = 5;
|
|
2500
2512
|
optional string country_code = 6;
|
|
2501
2513
|
optional string firmware_version = 7;
|
|
@@ -2504,7 +2516,7 @@ message WiFiInterface {
|
|
|
2504
2516
|
optional string status_information = 10;
|
|
2505
2517
|
repeated string supported_channels = 11;
|
|
2506
2518
|
optional string supported_phy_modes = 12;
|
|
2507
|
-
optional
|
|
2519
|
+
optional bool wake_on_wireless_supported = 13;
|
|
2508
2520
|
optional WiFiNetwork current_network = 14;
|
|
2509
2521
|
repeated WiFiNetwork other_local_networks = 15;
|
|
2510
2522
|
}
|
|
@@ -2872,6 +2884,66 @@ message CatalogMonitor {
|
|
|
2872
2884
|
|
|
2873
2885
|
}
|
|
2874
2886
|
|
|
2887
|
+
// ---------------------------------------------------------------------------------------------------------------------
|
|
2888
|
+
/**
|
|
2889
|
+
* SNMP info
|
|
2890
|
+
*/
|
|
2891
|
+
message SNMPInfo {
|
|
2892
|
+
optional string object_id = 1;
|
|
2893
|
+
optional string name = 2;
|
|
2894
|
+
optional string description = 3;
|
|
2895
|
+
optional string contact = 4;
|
|
2896
|
+
optional string location = 5;
|
|
2897
|
+
|
|
2898
|
+
optional bool is_windows = 6;
|
|
2899
|
+
optional string domain = 7;
|
|
2900
|
+
|
|
2901
|
+
optional int32 vendor_code = 8; //HardwareInfo includes device manufacturer model serial_no
|
|
2902
|
+
optional bool ip_forwarding = 9;
|
|
2903
|
+
optional string dns_name = 10;
|
|
2904
|
+
optional string cisco_name = 11;
|
|
2905
|
+
optional string connected_to_drac = 12;
|
|
2906
|
+
optional string mac_address = 13;
|
|
2907
|
+
|
|
2908
|
+
optional SnmpPrinterInfo printer_info = 14;
|
|
2909
|
+
optional SnmpUpsInfo ups_info = 15;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
message SnmpPrinterInfo {
|
|
2913
|
+
optional string printer_name = 1;
|
|
2914
|
+
optional string printed_pages = 2;
|
|
2915
|
+
optional string printed_color_pages = 3;
|
|
2916
|
+
optional string printed_mono_pages = 4;
|
|
2917
|
+
optional string printer_status = 5;
|
|
2918
|
+
optional string serial_number = 6;
|
|
2919
|
+
repeated SnmpPrinterTonerInfo toners = 7;
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
message SnmpPrinterTonerInfo {
|
|
2923
|
+
optional string name = 1;
|
|
2924
|
+
optional string color = 2;
|
|
2925
|
+
optional int32 color_number = 3;
|
|
2926
|
+
optional int32 maximum_toner_level = 4;
|
|
2927
|
+
optional int32 number = 5;
|
|
2928
|
+
optional int32 remaining_toner_level = 6;
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
message SnmpUpsInfo {
|
|
2932
|
+
optional string manufacturer = 1;
|
|
2933
|
+
optional string model = 2;
|
|
2934
|
+
optional string ups_software_version = 3;
|
|
2935
|
+
optional string agent_software_version = 4;
|
|
2936
|
+
optional string name = 5;
|
|
2937
|
+
optional string attached_devices = 6;
|
|
2938
|
+
optional string battery_status = 7;
|
|
2939
|
+
optional string seconds_on_battery = 8;
|
|
2940
|
+
optional string estimated_minutes_remaining = 9;
|
|
2941
|
+
optional string estimated_charge_remaining = 10;
|
|
2942
|
+
optional string battery_voltage = 11;
|
|
2943
|
+
optional string battery_current = 12;
|
|
2944
|
+
optional string battery_temperature = 13;
|
|
2945
|
+
optional string alarms_present = 14;
|
|
2946
|
+
}
|
|
2875
2947
|
|
|
2876
2948
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
2877
2949
|
|