@lansweeper/data-platform-outbound-grpc 0.1.3 → 0.1.4
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 +9 -0
- package/gen-proto/outbound_pb.js +90 -12
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +7 -2
- package/src/main/java/com/lansweeper/dp/outbound/v1/Asset.java +2132 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +144 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/AssetType.java +801 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/AssetTypeOrBuilder.java +58 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogBrand.java +4433 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogBrandOrBuilder.java +446 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogModel.java +4089 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogModelOrBuilder.java +422 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogMonitor.java +484 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogMonitorOrBuilder.java +15 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogOs.java +3858 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogOsOrBuilder.java +384 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogSoftware.java +3315 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CatalogSoftwareOrBuilder.java +332 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CoreFields.java +1731 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.java +138 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/Entity.java +762 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/EntityOrBuilder.java +41 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/EntityPath.java +1283 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/EntityPathOrBuilder.java +113 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/GetEntityRequest.java +655 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/GetEntityRequestOrBuilder.java +36 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/GetEntityResponse.java +1193 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/GetEntityResponseOrBuilder.java +71 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/HardwareInfo.java +2702 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/HardwareInfoOrBuilder.java +237 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/ListEntityRequest.java +655 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/ListEntityRequestOrBuilder.java +36 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/ListEntityResponse.java +958 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/ListEntityResponseOrBuilder.java +48 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/OperatingSystemInfo.java +2332 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/OperatingSystemInfoOrBuilder.java +191 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/Outbound.java +284 -43252
- package/src/main/java/com/lansweeper/dp/outbound/v1/RawHardwareInfo.java +1073 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/RawHardwareInfoOrBuilder.java +77 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/RawSoftware.java +1894 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/RawSoftwareOrBuilder.java +187 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/Software.java +2797 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/SoftwareInventory.java +958 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/SoftwareInventoryOrBuilder.java +48 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/SoftwareOrBuilder.java +258 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/WindowsRawOperatingSystemInfo.java +1846 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/WindowsRawOperatingSystemInfoOrBuilder.java +205 -0
|
@@ -0,0 +1,48 @@
|
|
|
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 SoftwareInventoryOrBuilder extends
|
|
7
|
+
// @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.SoftwareInventory)
|
|
8
|
+
com.google.protobuf.MessageOrBuilder {
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* <code>.google.protobuf.Timestamp timestamp = 1;</code>
|
|
12
|
+
* @return Whether the timestamp field is set.
|
|
13
|
+
*/
|
|
14
|
+
boolean hasTimestamp();
|
|
15
|
+
/**
|
|
16
|
+
* <code>.google.protobuf.Timestamp timestamp = 1;</code>
|
|
17
|
+
* @return The timestamp.
|
|
18
|
+
*/
|
|
19
|
+
com.google.protobuf.Timestamp getTimestamp();
|
|
20
|
+
/**
|
|
21
|
+
* <code>.google.protobuf.Timestamp timestamp = 1;</code>
|
|
22
|
+
*/
|
|
23
|
+
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.Software software = 2;</code>
|
|
27
|
+
*/
|
|
28
|
+
java.util.List<com.lansweeper.dp.outbound.v1.Software>
|
|
29
|
+
getSoftwareList();
|
|
30
|
+
/**
|
|
31
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.Software software = 2;</code>
|
|
32
|
+
*/
|
|
33
|
+
com.lansweeper.dp.outbound.v1.Software getSoftware(int index);
|
|
34
|
+
/**
|
|
35
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.Software software = 2;</code>
|
|
36
|
+
*/
|
|
37
|
+
int getSoftwareCount();
|
|
38
|
+
/**
|
|
39
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.Software software = 2;</code>
|
|
40
|
+
*/
|
|
41
|
+
java.util.List<? extends com.lansweeper.dp.outbound.v1.SoftwareOrBuilder>
|
|
42
|
+
getSoftwareOrBuilderList();
|
|
43
|
+
/**
|
|
44
|
+
* <code>repeated .com.lansweeper.dp.outbound.v1.Software software = 2;</code>
|
|
45
|
+
*/
|
|
46
|
+
com.lansweeper.dp.outbound.v1.SoftwareOrBuilder getSoftwareOrBuilder(
|
|
47
|
+
int index);
|
|
48
|
+
}
|
|
@@ -0,0 +1,258 @@
|
|
|
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 SoftwareOrBuilder extends
|
|
7
|
+
// @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.Software)
|
|
8
|
+
com.google.protobuf.MessageOrBuilder {
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* <code>int32 rank = 1;</code>
|
|
12
|
+
* @return Whether the rank field is set.
|
|
13
|
+
*/
|
|
14
|
+
boolean hasRank();
|
|
15
|
+
/**
|
|
16
|
+
* <code>int32 rank = 1;</code>
|
|
17
|
+
* @return The rank.
|
|
18
|
+
*/
|
|
19
|
+
int getRank();
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* <code>int64 type_id = 2;</code>
|
|
23
|
+
* @return Whether the typeId field is set.
|
|
24
|
+
*/
|
|
25
|
+
boolean hasTypeId();
|
|
26
|
+
/**
|
|
27
|
+
* <code>int64 type_id = 2;</code>
|
|
28
|
+
* @return The typeId.
|
|
29
|
+
*/
|
|
30
|
+
long getTypeId();
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* <code>int64 cat_id = 3;</code>
|
|
34
|
+
* @return Whether the catId field is set.
|
|
35
|
+
*/
|
|
36
|
+
boolean hasCatId();
|
|
37
|
+
/**
|
|
38
|
+
* <code>int64 cat_id = 3;</code>
|
|
39
|
+
* @return The catId.
|
|
40
|
+
*/
|
|
41
|
+
long getCatId();
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* <code>int64 make_id = 4;</code>
|
|
45
|
+
* @return Whether the makeId field is set.
|
|
46
|
+
*/
|
|
47
|
+
boolean hasMakeId();
|
|
48
|
+
/**
|
|
49
|
+
* <code>int64 make_id = 4;</code>
|
|
50
|
+
* @return The makeId.
|
|
51
|
+
*/
|
|
52
|
+
long getMakeId();
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* <code>int64 sw_id = 5;</code>
|
|
56
|
+
* @return Whether the swId field is set.
|
|
57
|
+
*/
|
|
58
|
+
boolean hasSwId();
|
|
59
|
+
/**
|
|
60
|
+
* <code>int64 sw_id = 5;</code>
|
|
61
|
+
* @return The swId.
|
|
62
|
+
*/
|
|
63
|
+
long getSwId();
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* <code>int64 parent_id = 6;</code>
|
|
67
|
+
* @return Whether the parentId field is set.
|
|
68
|
+
*/
|
|
69
|
+
boolean hasParentId();
|
|
70
|
+
/**
|
|
71
|
+
* <code>int64 parent_id = 6;</code>
|
|
72
|
+
* @return The parentId.
|
|
73
|
+
*/
|
|
74
|
+
long getParentId();
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* <code>string type_name = 7;</code>
|
|
78
|
+
* @return Whether the typeName field is set.
|
|
79
|
+
*/
|
|
80
|
+
boolean hasTypeName();
|
|
81
|
+
/**
|
|
82
|
+
* <code>string type_name = 7;</code>
|
|
83
|
+
* @return The typeName.
|
|
84
|
+
*/
|
|
85
|
+
java.lang.String getTypeName();
|
|
86
|
+
/**
|
|
87
|
+
* <code>string type_name = 7;</code>
|
|
88
|
+
* @return The bytes for typeName.
|
|
89
|
+
*/
|
|
90
|
+
com.google.protobuf.ByteString
|
|
91
|
+
getTypeNameBytes();
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* <code>string cat_name = 8;</code>
|
|
95
|
+
* @return Whether the catName field is set.
|
|
96
|
+
*/
|
|
97
|
+
boolean hasCatName();
|
|
98
|
+
/**
|
|
99
|
+
* <code>string cat_name = 8;</code>
|
|
100
|
+
* @return The catName.
|
|
101
|
+
*/
|
|
102
|
+
java.lang.String getCatName();
|
|
103
|
+
/**
|
|
104
|
+
* <code>string cat_name = 8;</code>
|
|
105
|
+
* @return The bytes for catName.
|
|
106
|
+
*/
|
|
107
|
+
com.google.protobuf.ByteString
|
|
108
|
+
getCatNameBytes();
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* <code>string make_name = 9;</code>
|
|
112
|
+
* @return Whether the makeName field is set.
|
|
113
|
+
*/
|
|
114
|
+
boolean hasMakeName();
|
|
115
|
+
/**
|
|
116
|
+
* <code>string make_name = 9;</code>
|
|
117
|
+
* @return The makeName.
|
|
118
|
+
*/
|
|
119
|
+
java.lang.String getMakeName();
|
|
120
|
+
/**
|
|
121
|
+
* <code>string make_name = 9;</code>
|
|
122
|
+
* @return The bytes for makeName.
|
|
123
|
+
*/
|
|
124
|
+
com.google.protobuf.ByteString
|
|
125
|
+
getMakeNameBytes();
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* <code>string name = 10;</code>
|
|
129
|
+
* @return Whether the name field is set.
|
|
130
|
+
*/
|
|
131
|
+
boolean hasName();
|
|
132
|
+
/**
|
|
133
|
+
* <code>string name = 10;</code>
|
|
134
|
+
* @return The name.
|
|
135
|
+
*/
|
|
136
|
+
java.lang.String getName();
|
|
137
|
+
/**
|
|
138
|
+
* <code>string name = 10;</code>
|
|
139
|
+
* @return The bytes for name.
|
|
140
|
+
*/
|
|
141
|
+
com.google.protobuf.ByteString
|
|
142
|
+
getNameBytes();
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* <code>string version = 11;</code>
|
|
146
|
+
* @return Whether the version field is set.
|
|
147
|
+
*/
|
|
148
|
+
boolean hasVersion();
|
|
149
|
+
/**
|
|
150
|
+
* <code>string version = 11;</code>
|
|
151
|
+
* @return The version.
|
|
152
|
+
*/
|
|
153
|
+
java.lang.String getVersion();
|
|
154
|
+
/**
|
|
155
|
+
* <code>string version = 11;</code>
|
|
156
|
+
* @return The bytes for version.
|
|
157
|
+
*/
|
|
158
|
+
com.google.protobuf.ByteString
|
|
159
|
+
getVersionBytes();
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* <code>string market_ver = 12;</code>
|
|
163
|
+
* @return Whether the marketVer field is set.
|
|
164
|
+
*/
|
|
165
|
+
boolean hasMarketVer();
|
|
166
|
+
/**
|
|
167
|
+
* <code>string market_ver = 12;</code>
|
|
168
|
+
* @return The marketVer.
|
|
169
|
+
*/
|
|
170
|
+
java.lang.String getMarketVer();
|
|
171
|
+
/**
|
|
172
|
+
* <code>string market_ver = 12;</code>
|
|
173
|
+
* @return The bytes for marketVer.
|
|
174
|
+
*/
|
|
175
|
+
com.google.protobuf.ByteString
|
|
176
|
+
getMarketVerBytes();
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* <code>string edition = 13;</code>
|
|
180
|
+
* @return Whether the edition field is set.
|
|
181
|
+
*/
|
|
182
|
+
boolean hasEdition();
|
|
183
|
+
/**
|
|
184
|
+
* <code>string edition = 13;</code>
|
|
185
|
+
* @return The edition.
|
|
186
|
+
*/
|
|
187
|
+
java.lang.String getEdition();
|
|
188
|
+
/**
|
|
189
|
+
* <code>string edition = 13;</code>
|
|
190
|
+
* @return The bytes for edition.
|
|
191
|
+
*/
|
|
192
|
+
com.google.protobuf.ByteString
|
|
193
|
+
getEditionBytes();
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* <code>string build = 14;</code>
|
|
197
|
+
* @return Whether the build field is set.
|
|
198
|
+
*/
|
|
199
|
+
boolean hasBuild();
|
|
200
|
+
/**
|
|
201
|
+
* <code>string build = 14;</code>
|
|
202
|
+
* @return The build.
|
|
203
|
+
*/
|
|
204
|
+
java.lang.String getBuild();
|
|
205
|
+
/**
|
|
206
|
+
* <code>string build = 14;</code>
|
|
207
|
+
* @return The bytes for build.
|
|
208
|
+
*/
|
|
209
|
+
com.google.protobuf.ByteString
|
|
210
|
+
getBuildBytes();
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* <code>string cpe = 15;</code>
|
|
214
|
+
* @return Whether the cpe field is set.
|
|
215
|
+
*/
|
|
216
|
+
boolean hasCpe();
|
|
217
|
+
/**
|
|
218
|
+
* <code>string cpe = 15;</code>
|
|
219
|
+
* @return The cpe.
|
|
220
|
+
*/
|
|
221
|
+
java.lang.String getCpe();
|
|
222
|
+
/**
|
|
223
|
+
* <code>string cpe = 15;</code>
|
|
224
|
+
* @return The bytes for cpe.
|
|
225
|
+
*/
|
|
226
|
+
com.google.protobuf.ByteString
|
|
227
|
+
getCpeBytes();
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogSoftware catalog_software = 16;</code>
|
|
231
|
+
* @return Whether the catalogSoftware field is set.
|
|
232
|
+
*/
|
|
233
|
+
boolean hasCatalogSoftware();
|
|
234
|
+
/**
|
|
235
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogSoftware catalog_software = 16;</code>
|
|
236
|
+
* @return The catalogSoftware.
|
|
237
|
+
*/
|
|
238
|
+
com.lansweeper.dp.outbound.v1.CatalogSoftware getCatalogSoftware();
|
|
239
|
+
/**
|
|
240
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogSoftware catalog_software = 16;</code>
|
|
241
|
+
*/
|
|
242
|
+
com.lansweeper.dp.outbound.v1.CatalogSoftwareOrBuilder getCatalogSoftwareOrBuilder();
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* <code>.com.lansweeper.dp.outbound.v1.RawSoftware raw = 17;</code>
|
|
246
|
+
* @return Whether the raw field is set.
|
|
247
|
+
*/
|
|
248
|
+
boolean hasRaw();
|
|
249
|
+
/**
|
|
250
|
+
* <code>.com.lansweeper.dp.outbound.v1.RawSoftware raw = 17;</code>
|
|
251
|
+
* @return The raw.
|
|
252
|
+
*/
|
|
253
|
+
com.lansweeper.dp.outbound.v1.RawSoftware getRaw();
|
|
254
|
+
/**
|
|
255
|
+
* <code>.com.lansweeper.dp.outbound.v1.RawSoftware raw = 17;</code>
|
|
256
|
+
*/
|
|
257
|
+
com.lansweeper.dp.outbound.v1.RawSoftwareOrBuilder getRawOrBuilder();
|
|
258
|
+
}
|