@lansweeper/data-platform-outbound-grpc 0.3.36 → 0.3.37
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_grpc_pb.d.ts +17 -0
- package/gen-proto/outbound_grpc_pb.js +12 -0
- package/generated-go/outbound.pb.go +31 -21
- package/generated-go/outbound_grpc.pb.go +49 -9
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +164 -161
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +164 -161
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +5 -2
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.35-sources.jar → outbound-model-0.3.36-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.35.jar → outbound-model-0.3.36.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +164 -161
- package/service/pom.xml +1 -1
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$1.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$2.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$3.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceBaseDescriptorSupplier.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceBlockingStub.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceFileDescriptorSupplier.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceFutureStub.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceImplBase.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceMethodDescriptorSupplier.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceStub.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$MethodHandlers.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/ReactorDataCoreBackofficeServiceGrpc$DataCoreBackofficeServiceImplBase.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/ReactorDataCoreBackofficeServiceGrpc$MethodHandlers.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/ReactorDataCoreBackofficeServiceGrpc$ReactorDataCoreBackofficeServiceStub.class +0 -0
- package/service/target/classes/com/lansweeper/dp/outbound/v1/ReactorDataCoreBackofficeServiceGrpc.class +0 -0
- package/service/target/generated-sources/protobuf/grpc-java/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc.java +86 -0
- package/service/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ReactorDataCoreBackofficeServiceGrpc.java +40 -0
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/outbound-service-0.3.36-sources.jar +0 -0
- package/service/target/outbound-service-0.3.36.jar +0 -0
- package/service/target/outbound-service-0.3.35-sources.jar +0 -0
- package/service/target/outbound-service-0.3.35.jar +0 -0
package/proto/outbound.proto
CHANGED
|
@@ -73,6 +73,9 @@ service DataCoreBackofficeService {
|
|
|
73
73
|
rpc GetSite(SiteKey) returns (Site);
|
|
74
74
|
rpc UpdateSite(Site) returns (Site);
|
|
75
75
|
rpc DeleteSite(SiteKey) returns (Site);
|
|
76
|
+
|
|
77
|
+
// Deconcile an entity from the aliases (reverse reconciliation)
|
|
78
|
+
rpc EntityDeconcile(DeconcileRequest) returns (DeconcileResponse) {}
|
|
76
79
|
}
|
|
77
80
|
|
|
78
81
|
message Site {
|
|
@@ -532,23 +535,23 @@ message Relation {
|
|
|
532
535
|
*/
|
|
533
536
|
message CorrelationFields {
|
|
534
537
|
// version or timestamp here...
|
|
535
|
-
|
|
538
|
+
repeated CorrField field = 1;
|
|
536
539
|
|
|
537
540
|
}
|
|
538
541
|
|
|
539
542
|
message CorrField {
|
|
540
|
-
|
|
541
|
-
|
|
543
|
+
string key = 1;
|
|
544
|
+
repeated string value = 2;
|
|
542
545
|
}
|
|
543
546
|
|
|
544
547
|
/**
|
|
545
548
|
* ReconciliationInfo fields used by reconciliation/correlation engine.
|
|
546
549
|
*/
|
|
547
550
|
message ReconciliationInfo {
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
551
|
+
enum EntryState {
|
|
552
|
+
GOLDEN = 0;
|
|
553
|
+
ALIAS = 1;
|
|
554
|
+
}
|
|
552
555
|
|
|
553
556
|
enum MasterType {
|
|
554
557
|
ENGINE = 0;
|
|
@@ -559,7 +562,7 @@ message ReconciliationInfo {
|
|
|
559
562
|
EntryState state = 2;
|
|
560
563
|
optional MasterType master_type = 3; // NULL | ENGINE | USER
|
|
561
564
|
|
|
562
|
-
reserved 4,5,6,7,8;
|
|
565
|
+
reserved 4, 5, 6, 7, 8;
|
|
563
566
|
|
|
564
567
|
optional CorrelationInfo master_asset = 9; // null if GOLDEN / Filled with ID of master if overridden
|
|
565
568
|
optional CorrelationInfo reference_asset = 10; // Filled by ENGINE with the Master ID chosen, if any: To preserve history of engine decisions vs user decisions.
|
|
@@ -734,7 +737,7 @@ message IntuneDevice {
|
|
|
734
737
|
string management_agent = 33;
|
|
735
738
|
string os_version = 34;
|
|
736
739
|
string eas_device_id = 35;
|
|
737
|
-
optional google.protobuf.Timestamp eas_activation_date= 36;
|
|
740
|
+
optional google.protobuf.Timestamp eas_activation_date = 36;
|
|
738
741
|
bool is_azure_ad_registered = 37;
|
|
739
742
|
string device_enrollment_type = 38;
|
|
740
743
|
string activation_lock_bypass_code = 39;
|
|
@@ -879,10 +882,10 @@ message CoreFields {
|
|
|
879
882
|
}
|
|
880
883
|
|
|
881
884
|
message LastUser {
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
885
|
+
string user_name = 1;
|
|
886
|
+
optional string user_type = 2;
|
|
887
|
+
optional string upn = 3;
|
|
888
|
+
optional string sid = 4;
|
|
886
889
|
}
|
|
887
890
|
|
|
888
891
|
message UserLogon {
|
|
@@ -963,27 +966,27 @@ message UserInGroup {
|
|
|
963
966
|
*/
|
|
964
967
|
message InternetExplorer {
|
|
965
968
|
// from WindowsActiveX
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
969
|
+
message ActiveX {
|
|
970
|
+
optional string control = 1;
|
|
971
|
+
optional string code_base = 2;
|
|
972
|
+
optional string info = 3;
|
|
973
|
+
optional string osd = 4;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
// InternetExplorerExtensionInfo
|
|
977
|
+
message Extension {
|
|
978
|
+
optional string control = 1;
|
|
979
|
+
optional string button_text = 2;
|
|
980
|
+
optional string cls_id = 3;
|
|
981
|
+
optional string default_visible = 4;
|
|
982
|
+
optional string exec = 5;
|
|
983
|
+
optional string hot_icon = 6;
|
|
984
|
+
optional string icon = 7;
|
|
985
|
+
optional string menu_text = 8;
|
|
986
|
+
optional string tooltip = 9;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
// from InternetExplorerBrowserObjectInfo
|
|
987
990
|
message BrowserObject {
|
|
988
991
|
string control = 1;
|
|
989
992
|
}
|
|
@@ -1010,23 +1013,23 @@ message WindowsSqlServer {
|
|
|
1010
1013
|
MIXED = 2;
|
|
1011
1014
|
}
|
|
1012
1015
|
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1016
|
+
bool is_clustered = 1;
|
|
1017
|
+
SqlAuthenticationMode sql_authentication_mode = 2;
|
|
1018
|
+
repeated SqlServerDatabase databases = 3;
|
|
1019
|
+
repeated SqlServerService services = 4;
|
|
1020
|
+
string service_name = 5;
|
|
1021
|
+
string display_version = 6;
|
|
1022
|
+
string version = 7;
|
|
1023
|
+
optional int32 sp_level = 8;
|
|
1024
|
+
optional string sku_name = 9;
|
|
1025
|
+
optional MappedValue language = 10;
|
|
1026
|
+
optional bool is_wow64 = 11;
|
|
1027
|
+
optional string install_path = 12;
|
|
1028
|
+
optional string file_version = 13;
|
|
1029
|
+
optional string data_path = 14;
|
|
1030
|
+
optional SqlServerCluster cluster = 15;
|
|
1031
|
+
string instance_id = 16;
|
|
1032
|
+
optional string instance_name = 17;
|
|
1030
1033
|
}
|
|
1031
1034
|
|
|
1032
1035
|
|
|
@@ -1075,7 +1078,7 @@ message SqlServerClusterNode {
|
|
|
1075
1078
|
/**
|
|
1076
1079
|
* Log entry for windows sql server change log, tracking install, uninstall and update.
|
|
1077
1080
|
*/
|
|
1078
|
-
|
|
1081
|
+
message WindowsSqlServerChangeEvent {
|
|
1079
1082
|
enum EventType {
|
|
1080
1083
|
INSTALL = 0;
|
|
1081
1084
|
UNINSTALL = 1;
|
|
@@ -1391,7 +1394,7 @@ message NetworkInterface {
|
|
|
1391
1394
|
message NetIpAddress {
|
|
1392
1395
|
string ip = 1;
|
|
1393
1396
|
string subnet = 2;
|
|
1394
|
-
enum IpType {
|
|
1397
|
+
enum IpType {IPV4 = 0; IPV6 = 1;}
|
|
1395
1398
|
optional IpType type = 3;
|
|
1396
1399
|
}
|
|
1397
1400
|
|
|
@@ -1399,10 +1402,10 @@ message NetIpAddress {
|
|
|
1399
1402
|
* Network protocols, summary and detailed info.
|
|
1400
1403
|
*/
|
|
1401
1404
|
message NetworkProtocols {
|
|
1402
|
-
|
|
1405
|
+
repeated string protocol = 1; // summary list of protocols and data points available
|
|
1403
1406
|
|
|
1404
|
-
|
|
1405
|
-
|
|
1407
|
+
// later here we can have all fingerprints merged
|
|
1408
|
+
optional SnmpInfo snmp = 2;
|
|
1406
1409
|
}
|
|
1407
1410
|
|
|
1408
1411
|
message SnmpInfo {
|
|
@@ -1521,13 +1524,13 @@ message Processor {
|
|
|
1521
1524
|
/** Chassis **/
|
|
1522
1525
|
message Chassis
|
|
1523
1526
|
{
|
|
1524
|
-
MappedValue
|
|
1527
|
+
MappedValue type = 1;
|
|
1525
1528
|
optional bool lock_present = 2;
|
|
1526
|
-
optional string
|
|
1529
|
+
optional string manufacturer = 3;
|
|
1527
1530
|
optional MappedValue security_status = 4;
|
|
1528
|
-
optional string
|
|
1529
|
-
optional string
|
|
1530
|
-
optional string
|
|
1531
|
+
optional string serial_number = 5;
|
|
1532
|
+
optional string asset_tag = 6;
|
|
1533
|
+
optional string version = 7;
|
|
1531
1534
|
optional MappedValue bootup_state = 8;
|
|
1532
1535
|
}
|
|
1533
1536
|
|
|
@@ -1590,7 +1593,7 @@ message NetworkVolume {
|
|
|
1590
1593
|
oneof driver {
|
|
1591
1594
|
WindowsMappedDrive win_mapped_drive = 1;
|
|
1592
1595
|
MacNetworkVolume mac_volume = 2;
|
|
1593
|
-
|
|
1596
|
+
}
|
|
1594
1597
|
|
|
1595
1598
|
optional string name = 100;
|
|
1596
1599
|
}
|
|
@@ -1704,7 +1707,7 @@ message BootConfig {
|
|
|
1704
1707
|
*/
|
|
1705
1708
|
message SharedResource {
|
|
1706
1709
|
optional string caption = 1;
|
|
1707
|
-
optional string name
|
|
1710
|
+
optional string name = 2;
|
|
1708
1711
|
optional string path = 3;
|
|
1709
1712
|
optional MappedValue type = 4;
|
|
1710
1713
|
repeated SharedPermission shared_permission = 5;
|
|
@@ -1713,9 +1716,9 @@ message SharedResource {
|
|
|
1713
1716
|
/**
|
|
1714
1717
|
* SharedPermission: windows SharePermissionInfo.
|
|
1715
1718
|
*/
|
|
1716
|
-
|
|
1719
|
+
message SharedPermission {
|
|
1717
1720
|
optional string name = 1;
|
|
1718
|
-
optional string trustee
|
|
1721
|
+
optional string trustee = 2;
|
|
1719
1722
|
optional bool read_access = 3;
|
|
1720
1723
|
optional bool write_access = 4;
|
|
1721
1724
|
optional bool full_access = 5;
|
|
@@ -1754,7 +1757,7 @@ message OperatingSystemService {
|
|
|
1754
1757
|
*/
|
|
1755
1758
|
message OperatingSystemRecovery {
|
|
1756
1759
|
oneof os {
|
|
1757
|
-
|
|
1760
|
+
WindowsOsRecovery win = 1;
|
|
1758
1761
|
}
|
|
1759
1762
|
}
|
|
1760
1763
|
|
|
@@ -1807,7 +1810,7 @@ message WindowsSystemDriver {
|
|
|
1807
1810
|
optional int32 exit_code = 5;
|
|
1808
1811
|
optional string path_name = 6;
|
|
1809
1812
|
optional int32 service_specific_exit_code = 7;
|
|
1810
|
-
optional string service_type= 8;
|
|
1813
|
+
optional string service_type = 8;
|
|
1811
1814
|
optional bool started = 9;
|
|
1812
1815
|
optional string start_mode = 10;
|
|
1813
1816
|
optional string start_name = 11;
|
|
@@ -2118,34 +2121,34 @@ message SoundCard {
|
|
|
2118
2121
|
* Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)
|
|
2119
2122
|
**/
|
|
2120
2123
|
message GraphicsCard {
|
|
2121
|
-
optional
|
|
2122
|
-
optional
|
|
2123
|
-
optional
|
|
2124
|
-
optional
|
|
2125
|
-
optional
|
|
2126
|
-
optional
|
|
2127
|
-
optional
|
|
2128
|
-
optional
|
|
2129
|
-
optional
|
|
2130
|
-
optional
|
|
2131
|
-
optional
|
|
2132
|
-
optional
|
|
2133
|
-
optional
|
|
2134
|
-
optional
|
|
2135
|
-
optional
|
|
2136
|
-
optional
|
|
2137
|
-
optional
|
|
2138
|
-
optional
|
|
2139
|
-
optional
|
|
2140
|
-
optional
|
|
2141
|
-
optional
|
|
2142
|
-
optional
|
|
2143
|
-
optional
|
|
2144
|
-
optional
|
|
2145
|
-
optional
|
|
2146
|
-
optional
|
|
2147
|
-
optional
|
|
2148
|
-
optional
|
|
2124
|
+
optional string name = 1; // Windows, Linux, MacOS
|
|
2125
|
+
optional int32 color_planes_count = 2; // Windows
|
|
2126
|
+
optional int32 current_bits_per_pixel = 3; // Windows
|
|
2127
|
+
optional int32 current_horizontal_resolution = 4; // Windows
|
|
2128
|
+
optional int64 current_number_of_colors = 5; // Windows
|
|
2129
|
+
optional int32 current_refresh_rate = 6; // Windows
|
|
2130
|
+
optional MappedValue current_scan_mode = 7; // Windows
|
|
2131
|
+
optional int32 current_vertical_resolution = 8; // Windows
|
|
2132
|
+
optional string device_id = 9; // Windows, Linux, MacOS
|
|
2133
|
+
optional int32 device_specific_pens = 10; // Windows
|
|
2134
|
+
optional string driver_version = 11; // Windows
|
|
2135
|
+
optional string inf_filename = 12; // Windows
|
|
2136
|
+
optional string inf_section = 13; // Windows
|
|
2137
|
+
optional string installed_display_drivers = 14; // Windows
|
|
2138
|
+
optional bool is_monochrome = 15; // Windows
|
|
2139
|
+
optional string manufacturer = 16; // Windows, Linux, MacOS
|
|
2140
|
+
optional int32 max_refresh_rate = 17; // Windows
|
|
2141
|
+
optional int64 memory = 18; // Windows, MacOS
|
|
2142
|
+
optional MappedValue memory_type = 19; // Windows
|
|
2143
|
+
optional int32 min_refresh_rate = 20; // Windows
|
|
2144
|
+
optional string pci_type = 21; // Linux
|
|
2145
|
+
optional string pnp_device_id = 22; // Windows
|
|
2146
|
+
optional MappedValue state = 23; // Windows
|
|
2147
|
+
optional string subsystem_manufacturer = 24; // Linux, MacOS
|
|
2148
|
+
optional string subsystem_name = 25; // Linux
|
|
2149
|
+
optional MappedValue video_architecture = 26; // Windows
|
|
2150
|
+
optional string video_mode = 27; // Windows
|
|
2151
|
+
optional string video_processor = 28; // Windows
|
|
2149
2152
|
}
|
|
2150
2153
|
|
|
2151
2154
|
/**
|
|
@@ -2301,27 +2304,27 @@ message MacComputerBattery {
|
|
|
2301
2304
|
* Optical disc drive for computers.
|
|
2302
2305
|
**/
|
|
2303
2306
|
message OpticalDrive {
|
|
2304
|
-
optional
|
|
2305
|
-
optional
|
|
2306
|
-
optional
|
|
2307
|
-
repeated
|
|
2308
|
-
optional
|
|
2309
|
-
optional
|
|
2310
|
-
optional
|
|
2311
|
-
optional
|
|
2312
|
-
optional
|
|
2313
|
-
optional
|
|
2314
|
-
optional
|
|
2315
|
-
optional
|
|
2316
|
-
optional
|
|
2317
|
-
optional
|
|
2318
|
-
optional
|
|
2319
|
-
optional
|
|
2320
|
-
optional
|
|
2321
|
-
optional
|
|
2322
|
-
optional
|
|
2323
|
-
optional
|
|
2324
|
-
optional
|
|
2307
|
+
optional string name = 1; // Windows: "HL-DT-ST DVD+-RW GHB0N", Linux: "VMware SATA CD00", Mac: "NECVMWar VMware SATA CD01" Windows, Linux, Mac
|
|
2308
|
+
optional string status = 2; // "OK","Error","Degraded" Windows
|
|
2309
|
+
optional string bus = 3; // "2:0:0:0" Linux
|
|
2310
|
+
repeated MappedValue capabilities = 4; // "Supports writing, Random Access, Supports Removable Media" Windows
|
|
2311
|
+
optional string cache_size = 5; // "32 KB", "2048 KB" Mac
|
|
2312
|
+
optional string burn_support = 6; // "DRDeviceSupportLevelUnsupported","Yes (Apple Shipping Drive)","Yes (Generic Drive Support)" Mac
|
|
2313
|
+
optional string cd_write = 7; // "-R, -RW" Mac
|
|
2314
|
+
optional string dvd_write = 8; // "-R, -RAM, -RW" Mac
|
|
2315
|
+
optional string read_dvd = 9; // "yes" Mac
|
|
2316
|
+
optional string drive_path = 10; // Windows: "H:" Linux: "/dev/sr0 (/dev/sg0)" Windows, Linux
|
|
2317
|
+
optional string firmware_version = 11; // "RQ00","1.00" Mac
|
|
2318
|
+
optional string connection = 12; // "ATAPI","USB" Mac
|
|
2319
|
+
optional string is_underrun_protection_enabled = 13; // "yes" Mac
|
|
2320
|
+
optional string manufacturer = 14; // Windows:"(Standard CD-ROM drives)",Linux:"NECVMWar" Windows, Linux
|
|
2321
|
+
optional string mount_point = 15; // Linux
|
|
2322
|
+
optional string write_strategies = 16; // "CD-TAO, CD-SAO, CD-Raw, DVD-DAO" Mac
|
|
2323
|
+
optional int32 scsi_bus = 17; // 7 Windows
|
|
2324
|
+
optional int32 scsi_logical_unit = 18; // 0 Windows
|
|
2325
|
+
optional int32 scsi_port = 19; // 0 Windows
|
|
2326
|
+
optional int32 scsi_target_id = 20; // 0 Windows
|
|
2327
|
+
optional string media_burn_information = 21; // Mac
|
|
2325
2328
|
}
|
|
2326
2329
|
|
|
2327
2330
|
/**
|
|
@@ -2329,15 +2332,15 @@ message OpticalDrive {
|
|
|
2329
2332
|
**/
|
|
2330
2333
|
message Motherboard {
|
|
2331
2334
|
string name = 1; // Windows, Linux
|
|
2332
|
-
repeated string
|
|
2333
|
-
optional bool
|
|
2334
|
-
optional bool
|
|
2335
|
-
optional string
|
|
2336
|
-
optional string
|
|
2337
|
-
optional string
|
|
2338
|
-
optional string
|
|
2339
|
-
optional string
|
|
2340
|
-
optional string
|
|
2335
|
+
repeated string config_options = 2; // Windows
|
|
2336
|
+
optional bool is_hosting_board = 3; // Windows
|
|
2337
|
+
optional bool is_powered_on = 4; // Windows
|
|
2338
|
+
optional string location = 5; // Linux
|
|
2339
|
+
optional string manufacturer = 6; // Windows, Linux
|
|
2340
|
+
optional string serial_number = 7; // Windows, Linux
|
|
2341
|
+
optional string tag = 8; // Windows
|
|
2342
|
+
optional string type = 9; // Linux
|
|
2343
|
+
optional string version = 10; // Windows, Linux
|
|
2341
2344
|
|
|
2342
2345
|
repeated MotherboardDevice device = 12;
|
|
2343
2346
|
}
|
|
@@ -2346,9 +2349,9 @@ message Motherboard {
|
|
|
2346
2349
|
* Motherboard device, available only on Windows atm.
|
|
2347
2350
|
**/
|
|
2348
2351
|
message MotherboardDevice {
|
|
2349
|
-
optional string
|
|
2350
|
-
optional bool
|
|
2351
|
-
optional string
|
|
2352
|
+
optional string description = 1;
|
|
2353
|
+
optional bool enabled = 2;
|
|
2354
|
+
optional string tag = 3;
|
|
2352
2355
|
optional MappedValue type = 4;
|
|
2353
2356
|
}
|
|
2354
2357
|
|
|
@@ -2356,48 +2359,48 @@ message MotherboardDevice {
|
|
|
2356
2359
|
* Memory with summary fields and repeated entries.
|
|
2357
2360
|
**/
|
|
2358
2361
|
message Memory {
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2362
|
+
int64 installed_size = 1;
|
|
2363
|
+
repeated PhysicalMemory physical_memory = 2;
|
|
2364
|
+
repeated MemoryArray memory_array = 3;
|
|
2365
|
+
optional string global_ecc_state = 4; // macOS only
|
|
2366
|
+
optional bool is_memory_upgradable = 5; // macOS only
|
|
2364
2367
|
}
|
|
2365
2368
|
|
|
2366
2369
|
/** MemoryEntry **/
|
|
2367
2370
|
message PhysicalMemory
|
|
2368
2371
|
{
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2372
|
+
optional int64 size = 21; // memory capacity/size
|
|
2373
|
+
optional string bank_locator = 1; // Linux
|
|
2374
|
+
optional int32 configured_clock_speed = 2; // Windows
|
|
2375
|
+
optional int32 configured_voltage = 3; // Windows
|
|
2376
|
+
optional int32 data_width = 4; // Windows, Linux
|
|
2377
|
+
optional string device_locator = 5; // Windows, Linux
|
|
2378
|
+
optional MappedValue form_factor = 6; // Windows, Linux
|
|
2379
|
+
optional int32 interleave_data_depth = 7; // Windows
|
|
2380
|
+
optional MappedValue interleave_position = 8; // Windows
|
|
2381
|
+
optional string manufacturer = 9; // Windows, Mac, Linux
|
|
2382
|
+
optional string name = 10; // Mac
|
|
2383
|
+
optional string part_number = 11; // Windows, Mac
|
|
2384
|
+
optional int32 position_in_row = 12; // Windows
|
|
2385
|
+
optional string serial_number = 13; // Windows, Mac, Linux
|
|
2386
|
+
optional string set = 14; // Linux
|
|
2387
|
+
optional string sku = 15; // Windows
|
|
2388
|
+
optional int32 speed = 16; // Windows, Linux, Mac
|
|
2389
|
+
optional string state = 17; // Mac
|
|
2390
|
+
optional int32 total_width = 18; // Windows, Linux
|
|
2391
|
+
optional MappedValue type = 19; // Windows, Linux, Mac
|
|
2392
|
+
optional MappedValue type_detail = 20; // Windows, Linux
|
|
2390
2393
|
}
|
|
2391
2394
|
|
|
2392
2395
|
|
|
2393
2396
|
/** MemoryArray, only Windows **/
|
|
2394
2397
|
message MemoryArray {
|
|
2395
|
-
optional int32
|
|
2396
|
-
optional MappedValue
|
|
2397
|
-
optional int32
|
|
2398
|
-
optional MappedValue
|
|
2399
|
-
optional string
|
|
2400
|
-
optional MappedValue
|
|
2398
|
+
optional int32 max_capacity = 1; // Windows
|
|
2399
|
+
optional MappedValue location = 2; // Windows
|
|
2400
|
+
optional int32 memory_devices = 3; // Windows
|
|
2401
|
+
optional MappedValue memory_error_correction = 4; // Windows
|
|
2402
|
+
optional string tag = 5; // Windows
|
|
2403
|
+
optional MappedValue use = 6; // Windows
|
|
2401
2404
|
}
|
|
2402
2405
|
|
|
2403
2406
|
/**
|
|
@@ -2979,7 +2982,7 @@ message WindowsPageFileUsage {
|
|
|
2979
2982
|
optional uint32 allocated_base_size = 1;
|
|
2980
2983
|
optional string caption = 2;
|
|
2981
2984
|
optional uint32 current_usage = 3;
|
|
2982
|
-
optional string description
|
|
2985
|
+
optional string description = 4;
|
|
2983
2986
|
optional google.protobuf.Timestamp install_date = 5;
|
|
2984
2987
|
optional string name = 6;
|
|
2985
2988
|
optional uint32 peak_usage = 7;
|
package/service/pom.xml
CHANGED
package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$1.class
CHANGED
|
Binary file
|
package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$2.class
CHANGED
|
Binary file
|
package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc$3.class
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/service/target/classes/com/lansweeper/dp/outbound/v1/DataCoreBackofficeServiceGrpc.class
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|