@lansweeper/data-platform-outbound-grpc 0.1.81 → 0.1.83

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.80",
2
+ "version": "0.1.82",
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.81",
3
+ "version": "0.1.83",
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": "4dcd8ee2f369885984ff82bb05307fa9a05fb415"
12
+ "gitHead": "029758b8b75e105ca84ce628e6760ea355f957d9"
13
13
  }
@@ -194,6 +194,7 @@ message Computer {
194
194
  repeated ComputerConnectedPrinter printer = 25;
195
195
  repeated ComputerConnectedTapeDrive tape_drive = 26;
196
196
  repeated ComputerWindowsDesktop windows_desktop = 27;
197
+ repeated ComputerWindowsDesktopMonitor windows_desktop_monitor = 32;
197
198
  repeated ComputerWindowsDisplay windows_display = 28;
198
199
  repeated ComputerWindowsDisplayController windows_display_controller = 29;
199
200
  repeated ComputerWindowsIdeController windows_ide_controller = 30;
@@ -206,6 +207,7 @@ message Computer {
206
207
  optional OperatingSystemRecovery os_recovery = 104;
207
208
  repeated OperatingSystemService os_service = 105;
208
209
  optional ComputerSystemProduct computer_system_product = 106;
210
+ repeated ComputerWindowsPageFile page_file = 107;
209
211
 
210
212
  // SW
211
213
  optional SoftwareInventory software_inventory = 201;
@@ -219,6 +221,8 @@ message Computer {
219
221
  optional WindowsSqlServer windows_sql_server = 209; // specific to SQL server on Windows
220
222
  repeated ComputerWindowsNetworkClient windows_network_client = 210;
221
223
  repeated NetworkVolume network_volume = 211;
224
+ repeated ComputerWindowsCertificate windows_cert = 212;
225
+
222
226
 
223
227
 
224
228
  // USERS AND ACCOUNT
@@ -1737,6 +1741,111 @@ message ComputerConnectedTapeDrive {
1737
1741
  optional int32 padding = 15;
1738
1742
  }
1739
1743
 
1744
+ /**
1745
+ * Computer, Windows only Certificate.
1746
+ */
1747
+ message ComputerWindowsCertificate {
1748
+
1749
+ enum KeyUsageType {
1750
+ DIGITAL_SIGNATURE = 0;
1751
+ NON_REPUDIATION = 1;
1752
+ KEY_ENCIPHERMENT = 2;
1753
+ DATA_ENCIPHERMENT = 3;
1754
+ KEY_AGREEMENT = 4;
1755
+ KEY_CERT_SIGN = 5;
1756
+ CRL_SIGN = 6;
1757
+ ENCIPHER_ONLY = 7;
1758
+ DECIPHER_ONLY = 8;
1759
+ }
1760
+
1761
+ repeated WindowsCertificateEnhancedKeyUsage enhanced_key_usage = 1;
1762
+ repeated KeyUsageType key_usage = 2;
1763
+ string template = 3;
1764
+ string dns_name_list = 4;
1765
+ optional string signature_algorithm = 5;
1766
+ int32 version = 6;
1767
+ bool has_private_key = 7;
1768
+ bool is_archived = 8;
1769
+ google.protobuf.Timestamp expiration_date = 9;
1770
+ google.protobuf.Timestamp start_date = 10;
1771
+ string issuer_name = 11;
1772
+ string issuer = 12;
1773
+ string subject_alternative_name = 13;
1774
+ string subject_name = 14;
1775
+ string subject = 15;
1776
+ string serial = 16;
1777
+ string thumbprint = 17;
1778
+ string friendly_name = 18;
1779
+ repeated WindowsCertificateLocation location = 19;
1780
+ }
1781
+
1782
+ message WindowsCertificateEnhancedKeyUsage {
1783
+ optional string oid_name = 1;
1784
+ optional string oid_value = 2;
1785
+ }
1786
+
1787
+ message WindowsCertificateLocation {
1788
+ string store = 1;
1789
+ string folder = 2;
1790
+ }
1791
+
1792
+
1793
+
1794
+ /**
1795
+ * Computer Windows only: page files.
1796
+ */
1797
+ message ComputerWindowsPageFile {
1798
+ oneof page_file {
1799
+ WindowsSinglePageFile single = 1;
1800
+ WindowsPageFileCombinedData combined = 2;
1801
+ }
1802
+ }
1803
+
1804
+ message WindowsSinglePageFile {
1805
+ optional bool archive = 1;
1806
+ optional string caption = 2;
1807
+ optional google.protobuf.Timestamp creation_date = 3;
1808
+ optional uint64 file_size = 4;
1809
+ optional bool hidden = 5;
1810
+ optional uint32 initial_size = 6;
1811
+ optional google.protobuf.Timestamp install_date = 7;
1812
+ optional google.protobuf.Timestamp last_accessed = 8;
1813
+ optional google.protobuf.Timestamp last_modified = 9;
1814
+ optional uint32 maximum_size = 10;
1815
+ optional string name = 11;
1816
+ optional string path = 12;
1817
+ optional bool readable = 13;
1818
+ optional bool system = 14;
1819
+ optional bool writeable = 15;
1820
+ }
1821
+
1822
+ message WindowsPageFileCombinedData {
1823
+ repeated WindowsPageFileUsage page_file_usages = 1;
1824
+ repeated WindowsPageFileSetting page_file_settings = 2;
1825
+ }
1826
+
1827
+ message WindowsPageFileSetting {
1828
+ optional string caption = 1;
1829
+ optional string description = 2;
1830
+ optional uint32 initial_size = 3;
1831
+ optional uint32 maximum_size = 4;
1832
+ optional string name = 5;
1833
+ optional string setting_id = 6;
1834
+ }
1835
+
1836
+ message WindowsPageFileUsage {
1837
+ optional uint32 allocated_base_size = 1;
1838
+ optional string caption = 2;
1839
+ optional uint32 current_usage = 3;
1840
+ optional string description = 4;
1841
+ optional google.protobuf.Timestamp install_date = 5;
1842
+ optional string name = 6;
1843
+ optional uint32 peak_usage = 7;
1844
+ optional string status = 8;
1845
+ optional bool temp_page_file = 9;
1846
+ }
1847
+
1848
+
1740
1849
  /**
1741
1850
  * Computer, Windows only.
1742
1851
  */
@@ -1777,6 +1886,21 @@ message ComputerWindowsDisplay {
1777
1886
  optional int32 specification_version = 10;
1778
1887
  }
1779
1888
 
1889
+ /**
1890
+ * Computer, Windows only.
1891
+ */
1892
+ message ComputerWindowsDesktopMonitor {
1893
+ optional MappedValue availability = 1;
1894
+ optional string caption = 2;
1895
+ optional string device_id = 3;
1896
+ optional string monitor_manufacturer = 4;
1897
+ optional uint32 pixels_per_x_logical_inch = 5;
1898
+ optional uint32 pixels_per_y_logical_inch = 6;
1899
+ optional string pnp_device_id = 7;
1900
+ optional uint32 screen_height = 8;
1901
+ optional uint32 screen_width = 9;
1902
+ }
1903
+
1780
1904
 
1781
1905
  /**
1782
1906
  * Computer, Windows only: from WindowsDisplayControllerConfig.