@lansweeper/data-platform-outbound-grpc 0.1.13 → 0.1.14
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 +159 -0
- package/gen-proto/outbound_pb.js +1436 -121
- package/generated-go/outbound.pb.go +1331 -928
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +41 -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.14",
|
|
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": "4c08af3356425d9bb5e914fd4383307b34d3dd6c"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -110,6 +110,8 @@ message Asset {
|
|
|
110
110
|
|
|
111
111
|
optional MonitorInventory monitor_inventory = 10;
|
|
112
112
|
|
|
113
|
+
optional NetworkInterfaces network_interfaces = 11;
|
|
114
|
+
|
|
113
115
|
// Reconciliation future
|
|
114
116
|
//string entry_state = 2; // GOLDEN | ALIAS
|
|
115
117
|
//string master_type = 3; // NULL | ENGINE | USER
|
|
@@ -119,6 +121,8 @@ message Asset {
|
|
|
119
121
|
|
|
120
122
|
}
|
|
121
123
|
|
|
124
|
+
|
|
125
|
+
|
|
122
126
|
/**
|
|
123
127
|
* Asset Type enables customers to manage the settings for a
|
|
124
128
|
* category of information in a centralized, reusable way.
|
|
@@ -216,6 +220,42 @@ message WindowsRawOperatingSystemInfo {
|
|
|
216
220
|
optional string os_code = 10; // "OsCode": "10.0.19045" - with S if server
|
|
217
221
|
}
|
|
218
222
|
|
|
223
|
+
/* Network Interface cards */
|
|
224
|
+
message NetworkInterfaces {
|
|
225
|
+
google.protobuf.Timestamp timestamp = 1;
|
|
226
|
+
repeated NetworkInterface interface = 2;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
message NetworkInterface {
|
|
230
|
+
string name = 1;
|
|
231
|
+
string type = 2;
|
|
232
|
+
string sub_type = 3;
|
|
233
|
+
|
|
234
|
+
optional string id = 4;
|
|
235
|
+
|
|
236
|
+
optional string mac = 5;
|
|
237
|
+
|
|
238
|
+
optional bool dhcp_enabled = 6;
|
|
239
|
+
optional string dhcp_server_ip = 7;
|
|
240
|
+
|
|
241
|
+
repeated NetIpAddress ip = 8;
|
|
242
|
+
|
|
243
|
+
optional string gateway_ip = 9;
|
|
244
|
+
optional string gateway_mac = 10;
|
|
245
|
+
|
|
246
|
+
repeated string dns_server = 11;
|
|
247
|
+
optional string dns_host_name = 12;
|
|
248
|
+
optional string dns_domain_suffix_search_order = 13;
|
|
249
|
+
|
|
250
|
+
optional string service_name = 14;
|
|
251
|
+
optional string database_path = 15;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/* Network IP address with IP and subnet */
|
|
255
|
+
message NetIpAddress {
|
|
256
|
+
string ip = 1;
|
|
257
|
+
string subnet = 2;
|
|
258
|
+
}
|
|
219
259
|
|
|
220
260
|
/* Monitor Inventory with list of connected monitors */
|
|
221
261
|
message MonitorInventory {
|
|
@@ -336,6 +376,7 @@ message CatalogBrand {
|
|
|
336
376
|
optional string instagram_account = 22;
|
|
337
377
|
optional string youtube_account = 23;
|
|
338
378
|
optional string pinterest_account = 24;
|
|
379
|
+
optional string tiktok_account = 31;
|
|
339
380
|
|
|
340
381
|
optional bool class_hardware = 25;
|
|
341
382
|
optional bool class_software = 26;
|