@lansweeper/data-platform-outbound-grpc 0.1.8 → 0.1.9
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 +445 -21
- package/gen-proto/outbound_pb.js +6658 -3287
- package/generated-go/outbound.pb.go +1683 -751
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +107 -20
- package/src/main/java/com/lansweeper/dp/outbound/v1/Asset.java +193 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +15 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogMonitor.java +5210 -241
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogMonitorOrBuilder.java +576 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogSoftware.java +400 -700
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogSoftwareOrBuilder.java +57 -86
- package/src/main/java/com/lansweeper/dp/outbound/v1/Monitor.java +1590 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/MonitorInventory.java +966 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/MonitorInventoryOrBuilder.java +48 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/MonitorOrBuilder.java +100 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/Outbound.java +332 -222
- package/src/main/java/com/lansweeper/dp/outbound/v1/Software.java +424 -38
- package/src/main/java/com/lansweeper/dp/outbound/v1/SoftwareOrBuilder.java +30 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/WindowsRawMonitorInfo.java +1728 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/WindowsRawMonitorInfoOrBuilder.java +138 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
+
// source: packages/data.platform/outbound/grpc/proto/outbound.proto
|
|
3
|
+
|
|
4
|
+
package com.lansweeper.dp.outbound.v1;
|
|
5
|
+
|
|
6
|
+
public interface WindowsRawMonitorInfoOrBuilder extends
|
|
7
|
+
// @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo)
|
|
8
|
+
com.google.protobuf.MessageOrBuilder {
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* <code>string model = 1;</code>
|
|
12
|
+
* @return The model.
|
|
13
|
+
*/
|
|
14
|
+
java.lang.String getModel();
|
|
15
|
+
/**
|
|
16
|
+
* <code>string model = 1;</code>
|
|
17
|
+
* @return The bytes for model.
|
|
18
|
+
*/
|
|
19
|
+
com.google.protobuf.ByteString
|
|
20
|
+
getModelBytes();
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* <code>string pnp_device_id = 2;</code>
|
|
24
|
+
* @return Whether the pnpDeviceId field is set.
|
|
25
|
+
*/
|
|
26
|
+
boolean hasPnpDeviceId();
|
|
27
|
+
/**
|
|
28
|
+
* <code>string pnp_device_id = 2;</code>
|
|
29
|
+
* @return The pnpDeviceId.
|
|
30
|
+
*/
|
|
31
|
+
java.lang.String getPnpDeviceId();
|
|
32
|
+
/**
|
|
33
|
+
* <code>string pnp_device_id = 2;</code>
|
|
34
|
+
* @return The bytes for pnpDeviceId.
|
|
35
|
+
*/
|
|
36
|
+
com.google.protobuf.ByteString
|
|
37
|
+
getPnpDeviceIdBytes();
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* <code>string serial_number = 3;</code>
|
|
41
|
+
* @return Whether the serialNumber field is set.
|
|
42
|
+
*/
|
|
43
|
+
boolean hasSerialNumber();
|
|
44
|
+
/**
|
|
45
|
+
* <code>string serial_number = 3;</code>
|
|
46
|
+
* @return The serialNumber.
|
|
47
|
+
*/
|
|
48
|
+
java.lang.String getSerialNumber();
|
|
49
|
+
/**
|
|
50
|
+
* <code>string serial_number = 3;</code>
|
|
51
|
+
* @return The bytes for serialNumber.
|
|
52
|
+
*/
|
|
53
|
+
com.google.protobuf.ByteString
|
|
54
|
+
getSerialNumberBytes();
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* <code>string serial_hex = 4;</code>
|
|
58
|
+
* @return Whether the serialHex field is set.
|
|
59
|
+
*/
|
|
60
|
+
boolean hasSerialHex();
|
|
61
|
+
/**
|
|
62
|
+
* <code>string serial_hex = 4;</code>
|
|
63
|
+
* @return The serialHex.
|
|
64
|
+
*/
|
|
65
|
+
java.lang.String getSerialHex();
|
|
66
|
+
/**
|
|
67
|
+
* <code>string serial_hex = 4;</code>
|
|
68
|
+
* @return The bytes for serialHex.
|
|
69
|
+
*/
|
|
70
|
+
com.google.protobuf.ByteString
|
|
71
|
+
getSerialHexBytes();
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* <code>string vesa_manufacturer = 5;</code>
|
|
75
|
+
* @return Whether the vesaManufacturer field is set.
|
|
76
|
+
*/
|
|
77
|
+
boolean hasVesaManufacturer();
|
|
78
|
+
/**
|
|
79
|
+
* <code>string vesa_manufacturer = 5;</code>
|
|
80
|
+
* @return The vesaManufacturer.
|
|
81
|
+
*/
|
|
82
|
+
java.lang.String getVesaManufacturer();
|
|
83
|
+
/**
|
|
84
|
+
* <code>string vesa_manufacturer = 5;</code>
|
|
85
|
+
* @return The bytes for vesaManufacturer.
|
|
86
|
+
*/
|
|
87
|
+
com.google.protobuf.ByteString
|
|
88
|
+
getVesaManufacturerBytes();
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* <code>string key_manufacturer = 6;</code>
|
|
92
|
+
* @return Whether the keyManufacturer field is set.
|
|
93
|
+
*/
|
|
94
|
+
boolean hasKeyManufacturer();
|
|
95
|
+
/**
|
|
96
|
+
* <code>string key_manufacturer = 6;</code>
|
|
97
|
+
* @return The keyManufacturer.
|
|
98
|
+
*/
|
|
99
|
+
java.lang.String getKeyManufacturer();
|
|
100
|
+
/**
|
|
101
|
+
* <code>string key_manufacturer = 6;</code>
|
|
102
|
+
* @return The bytes for keyManufacturer.
|
|
103
|
+
*/
|
|
104
|
+
com.google.protobuf.ByteString
|
|
105
|
+
getKeyManufacturerBytes();
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* <code>.google.protobuf.Timestamp manufacturer_date = 7;</code>
|
|
109
|
+
* @return Whether the manufacturerDate field is set.
|
|
110
|
+
*/
|
|
111
|
+
boolean hasManufacturerDate();
|
|
112
|
+
/**
|
|
113
|
+
* <code>.google.protobuf.Timestamp manufacturer_date = 7;</code>
|
|
114
|
+
* @return The manufacturerDate.
|
|
115
|
+
*/
|
|
116
|
+
com.google.protobuf.Timestamp getManufacturerDate();
|
|
117
|
+
/**
|
|
118
|
+
* <code>.google.protobuf.Timestamp manufacturer_date = 7;</code>
|
|
119
|
+
*/
|
|
120
|
+
com.google.protobuf.TimestampOrBuilder getManufacturerDateOrBuilder();
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* <code>string device_id = 8;</code>
|
|
124
|
+
* @return Whether the deviceId field is set.
|
|
125
|
+
*/
|
|
126
|
+
boolean hasDeviceId();
|
|
127
|
+
/**
|
|
128
|
+
* <code>string device_id = 8;</code>
|
|
129
|
+
* @return The deviceId.
|
|
130
|
+
*/
|
|
131
|
+
java.lang.String getDeviceId();
|
|
132
|
+
/**
|
|
133
|
+
* <code>string device_id = 8;</code>
|
|
134
|
+
* @return The bytes for deviceId.
|
|
135
|
+
*/
|
|
136
|
+
com.google.protobuf.ByteString
|
|
137
|
+
getDeviceIdBytes();
|
|
138
|
+
}
|