@lansweeper/data-platform-outbound-grpc 0.1.82 → 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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +460 -0
- package/gen-proto/outbound_pb.js +3656 -1
- package/generated-go/outbound.pb.go +7991 -6749
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +108 -0
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.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": "
|
|
12
|
+
"gitHead": "029758b8b75e105ca84ce628e6760ea355f957d9"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -207,6 +207,7 @@ message Computer {
|
|
|
207
207
|
optional OperatingSystemRecovery os_recovery = 104;
|
|
208
208
|
repeated OperatingSystemService os_service = 105;
|
|
209
209
|
optional ComputerSystemProduct computer_system_product = 106;
|
|
210
|
+
repeated ComputerWindowsPageFile page_file = 107;
|
|
210
211
|
|
|
211
212
|
// SW
|
|
212
213
|
optional SoftwareInventory software_inventory = 201;
|
|
@@ -220,6 +221,8 @@ message Computer {
|
|
|
220
221
|
optional WindowsSqlServer windows_sql_server = 209; // specific to SQL server on Windows
|
|
221
222
|
repeated ComputerWindowsNetworkClient windows_network_client = 210;
|
|
222
223
|
repeated NetworkVolume network_volume = 211;
|
|
224
|
+
repeated ComputerWindowsCertificate windows_cert = 212;
|
|
225
|
+
|
|
223
226
|
|
|
224
227
|
|
|
225
228
|
// USERS AND ACCOUNT
|
|
@@ -1738,6 +1741,111 @@ message ComputerConnectedTapeDrive {
|
|
|
1738
1741
|
optional int32 padding = 15;
|
|
1739
1742
|
}
|
|
1740
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
|
+
|
|
1741
1849
|
/**
|
|
1742
1850
|
* Computer, Windows only.
|
|
1743
1851
|
*/
|