@lansweeper/data-platform-outbound-grpc 0.1.82 → 0.1.84

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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.81",
2
+ "version": "0.1.83",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.82",
3
+ "version": "0.1.84",
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": "194b9054ff27a0c60b23fd455b943a1aa3888f6d"
12
+ "gitHead": "9123b31e076dd1fc55e464ed91c761af980fd09d"
13
13
  }
@@ -193,6 +193,7 @@ message Computer {
193
193
  repeated ComputerConnectedModem modem = 24;
194
194
  repeated ComputerConnectedPrinter printer = 25;
195
195
  repeated ComputerConnectedTapeDrive tape_drive = 26;
196
+ repeated ComputerWindowsFloppy windows_floppy = 33;
196
197
  repeated ComputerWindowsDesktop windows_desktop = 27;
197
198
  repeated ComputerWindowsDesktopMonitor windows_desktop_monitor = 32;
198
199
  repeated ComputerWindowsDisplay windows_display = 28;
@@ -200,6 +201,7 @@ message Computer {
200
201
  repeated ComputerWindowsIdeController windows_ide_controller = 30;
201
202
  repeated ComputerWindowsDiskPartition windows_disk_partition = 31;
202
203
 
204
+
203
205
  // OS
204
206
  optional Bios bios = 101;
205
207
  repeated OperatingSystemPatch os_patch = 102;
@@ -207,6 +209,7 @@ message Computer {
207
209
  optional OperatingSystemRecovery os_recovery = 104;
208
210
  repeated OperatingSystemService os_service = 105;
209
211
  optional ComputerSystemProduct computer_system_product = 106;
212
+ repeated ComputerWindowsPageFile page_file = 107;
210
213
 
211
214
  // SW
212
215
  optional SoftwareInventory software_inventory = 201;
@@ -220,6 +223,8 @@ message Computer {
220
223
  optional WindowsSqlServer windows_sql_server = 209; // specific to SQL server on Windows
221
224
  repeated ComputerWindowsNetworkClient windows_network_client = 210;
222
225
  repeated NetworkVolume network_volume = 211;
226
+ repeated ComputerWindowsCertificate windows_cert = 212;
227
+ repeated ComputerWindowsSerial windows_serial = 213;
223
228
 
224
229
 
225
230
  // USERS AND ACCOUNT
@@ -1738,6 +1743,121 @@ message ComputerConnectedTapeDrive {
1738
1743
  optional int32 padding = 15;
1739
1744
  }
1740
1745
 
1746
+ /**
1747
+ * Computer, Windows only Serial info. Mapped from
1748
+ */
1749
+ message ComputerWindowsSerial {
1750
+ optional string product_name = 1;
1751
+ optional string product_id = 2;
1752
+ optional string product_serial = 3;
1753
+ }
1754
+
1755
+
1756
+ /**
1757
+ * Computer, Windows only Certificate.
1758
+ */
1759
+ message ComputerWindowsCertificate {
1760
+
1761
+ enum KeyUsageType {
1762
+ DIGITAL_SIGNATURE = 0;
1763
+ NON_REPUDIATION = 1;
1764
+ KEY_ENCIPHERMENT = 2;
1765
+ DATA_ENCIPHERMENT = 3;
1766
+ KEY_AGREEMENT = 4;
1767
+ KEY_CERT_SIGN = 5;
1768
+ CRL_SIGN = 6;
1769
+ ENCIPHER_ONLY = 7;
1770
+ DECIPHER_ONLY = 8;
1771
+ }
1772
+
1773
+ repeated WindowsCertificateEnhancedKeyUsage enhanced_key_usage = 1;
1774
+ repeated KeyUsageType key_usage = 2;
1775
+ string template = 3;
1776
+ string dns_name_list = 4;
1777
+ optional string signature_algorithm = 5;
1778
+ int32 version = 6;
1779
+ bool has_private_key = 7;
1780
+ bool is_archived = 8;
1781
+ google.protobuf.Timestamp expiration_date = 9;
1782
+ google.protobuf.Timestamp start_date = 10;
1783
+ string issuer_name = 11;
1784
+ string issuer = 12;
1785
+ string subject_alternative_name = 13;
1786
+ string subject_name = 14;
1787
+ string subject = 15;
1788
+ string serial = 16;
1789
+ string thumbprint = 17;
1790
+ string friendly_name = 18;
1791
+ repeated WindowsCertificateLocation location = 19;
1792
+ }
1793
+
1794
+ message WindowsCertificateEnhancedKeyUsage {
1795
+ optional string oid_name = 1;
1796
+ optional string oid_value = 2;
1797
+ }
1798
+
1799
+ message WindowsCertificateLocation {
1800
+ string store = 1;
1801
+ string folder = 2;
1802
+ }
1803
+
1804
+
1805
+
1806
+ /**
1807
+ * Computer Windows only: page files.
1808
+ */
1809
+ message ComputerWindowsPageFile {
1810
+ oneof page_file {
1811
+ WindowsSinglePageFile single = 1;
1812
+ WindowsPageFileCombinedData combined = 2;
1813
+ }
1814
+ }
1815
+
1816
+ message WindowsSinglePageFile {
1817
+ optional bool archive = 1;
1818
+ optional string caption = 2;
1819
+ optional google.protobuf.Timestamp creation_date = 3;
1820
+ optional uint64 file_size = 4;
1821
+ optional bool hidden = 5;
1822
+ optional uint32 initial_size = 6;
1823
+ optional google.protobuf.Timestamp install_date = 7;
1824
+ optional google.protobuf.Timestamp last_accessed = 8;
1825
+ optional google.protobuf.Timestamp last_modified = 9;
1826
+ optional uint32 maximum_size = 10;
1827
+ optional string name = 11;
1828
+ optional string path = 12;
1829
+ optional bool readable = 13;
1830
+ optional bool system = 14;
1831
+ optional bool writeable = 15;
1832
+ }
1833
+
1834
+ message WindowsPageFileCombinedData {
1835
+ repeated WindowsPageFileUsage page_file_usages = 1;
1836
+ repeated WindowsPageFileSetting page_file_settings = 2;
1837
+ }
1838
+
1839
+ message WindowsPageFileSetting {
1840
+ optional string caption = 1;
1841
+ optional string description = 2;
1842
+ optional uint32 initial_size = 3;
1843
+ optional uint32 maximum_size = 4;
1844
+ optional string name = 5;
1845
+ optional string setting_id = 6;
1846
+ }
1847
+
1848
+ message WindowsPageFileUsage {
1849
+ optional uint32 allocated_base_size = 1;
1850
+ optional string caption = 2;
1851
+ optional uint32 current_usage = 3;
1852
+ optional string description = 4;
1853
+ optional google.protobuf.Timestamp install_date = 5;
1854
+ optional string name = 6;
1855
+ optional uint32 peak_usage = 7;
1856
+ optional string status = 8;
1857
+ optional bool temp_page_file = 9;
1858
+ }
1859
+
1860
+
1741
1861
  /**
1742
1862
  * Computer, Windows only.
1743
1863
  */
@@ -1850,6 +1970,30 @@ message ComputerWindowsDiskPartition {
1850
1970
  optional string type = 11;
1851
1971
  }
1852
1972
 
1973
+ /**
1974
+ * Computer Windows only: from WindowsFloppy. Mapped in LEC adapter to DiskDrive.
1975
+ */
1976
+ message ComputerWindowsFloppy {
1977
+ optional uint32 bytes_per_sector = 2;
1978
+ optional string description = 3;
1979
+ optional string interface_type = 4;
1980
+ optional string manufacturer = 5;
1981
+ optional string model = 6;
1982
+ optional string name = 7;
1983
+ optional uint32 partitions = 8;
1984
+ optional string pnp_device_id = 9;
1985
+ optional uint32 sectors_per_track = 10;
1986
+ optional int64 size = 11;
1987
+ optional int64 total_cylinders = 12;
1988
+ optional uint32 total_heads = 13;
1989
+ optional int64 total_sectors = 14;
1990
+ optional int64 total_tracks = 15;
1991
+ optional uint32 tracks_per_cylinder = 16;
1992
+ optional string device_id = 17;
1993
+ optional string status = 18;
1994
+ optional string firmware_revision = 19;
1995
+ optional string serial_number = 20;
1996
+ }
1853
1997
 
1854
1998
  /**
1855
1999
  * PortableBattery, only Windows atm.