@lansweeper/data-platform-outbound-grpc 0.0.2
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/.ignorecompat +0 -0
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -0
- package/gen-proto/index.d.ts +2 -0
- package/gen-proto/index.js +3 -0
- package/gen-proto/outbound_grpc_pb.d.ts +57 -0
- package/gen-proto/outbound_grpc_pb.js +89 -0
- package/gen-proto/outbound_pb.d.ts +1576 -0
- package/gen-proto/outbound_pb.js +12459 -0
- package/package.json +13 -0
- package/proto/outbound.proto +372 -0
|
@@ -0,0 +1,1576 @@
|
|
|
1
|
+
// package: com.lansweeper.dp.outboundapi.v1
|
|
2
|
+
// file: outbound.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
8
|
+
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
9
|
+
|
|
10
|
+
export class GetEntityRequest extends jspb.Message {
|
|
11
|
+
|
|
12
|
+
hasEntityPath(): boolean;
|
|
13
|
+
clearEntityPath(): void;
|
|
14
|
+
getEntityPath(): EntityPath | undefined;
|
|
15
|
+
setEntityPath(value?: EntityPath): GetEntityRequest;
|
|
16
|
+
|
|
17
|
+
serializeBinary(): Uint8Array;
|
|
18
|
+
toObject(includeInstance?: boolean): GetEntityRequest.AsObject;
|
|
19
|
+
static toObject(includeInstance: boolean, msg: GetEntityRequest): GetEntityRequest.AsObject;
|
|
20
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
21
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
22
|
+
static serializeBinaryToWriter(message: GetEntityRequest, writer: jspb.BinaryWriter): void;
|
|
23
|
+
static deserializeBinary(bytes: Uint8Array): GetEntityRequest;
|
|
24
|
+
static deserializeBinaryFromReader(message: GetEntityRequest, reader: jspb.BinaryReader): GetEntityRequest;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export namespace GetEntityRequest {
|
|
28
|
+
export type AsObject = {
|
|
29
|
+
entityPath?: EntityPath.AsObject,
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export class GetEntityResponse extends jspb.Message {
|
|
34
|
+
|
|
35
|
+
hasEntity(): boolean;
|
|
36
|
+
clearEntity(): void;
|
|
37
|
+
getEntity(): Entity | undefined;
|
|
38
|
+
setEntity(value?: Entity): GetEntityResponse;
|
|
39
|
+
clearRelatedList(): void;
|
|
40
|
+
getRelatedList(): Array<Entity>;
|
|
41
|
+
setRelatedList(value: Array<Entity>): GetEntityResponse;
|
|
42
|
+
addRelated(value?: Entity, index?: number): Entity;
|
|
43
|
+
|
|
44
|
+
serializeBinary(): Uint8Array;
|
|
45
|
+
toObject(includeInstance?: boolean): GetEntityResponse.AsObject;
|
|
46
|
+
static toObject(includeInstance: boolean, msg: GetEntityResponse): GetEntityResponse.AsObject;
|
|
47
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
48
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
49
|
+
static serializeBinaryToWriter(message: GetEntityResponse, writer: jspb.BinaryWriter): void;
|
|
50
|
+
static deserializeBinary(bytes: Uint8Array): GetEntityResponse;
|
|
51
|
+
static deserializeBinaryFromReader(message: GetEntityResponse, reader: jspb.BinaryReader): GetEntityResponse;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export namespace GetEntityResponse {
|
|
55
|
+
export type AsObject = {
|
|
56
|
+
entity?: Entity.AsObject,
|
|
57
|
+
relatedList: Array<Entity.AsObject>,
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export class ListEntityRequest extends jspb.Message {
|
|
62
|
+
|
|
63
|
+
hasFilter(): boolean;
|
|
64
|
+
clearFilter(): void;
|
|
65
|
+
getFilter(): EntityPath | undefined;
|
|
66
|
+
setFilter(value?: EntityPath): ListEntityRequest;
|
|
67
|
+
|
|
68
|
+
serializeBinary(): Uint8Array;
|
|
69
|
+
toObject(includeInstance?: boolean): ListEntityRequest.AsObject;
|
|
70
|
+
static toObject(includeInstance: boolean, msg: ListEntityRequest): ListEntityRequest.AsObject;
|
|
71
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
72
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
73
|
+
static serializeBinaryToWriter(message: ListEntityRequest, writer: jspb.BinaryWriter): void;
|
|
74
|
+
static deserializeBinary(bytes: Uint8Array): ListEntityRequest;
|
|
75
|
+
static deserializeBinaryFromReader(message: ListEntityRequest, reader: jspb.BinaryReader): ListEntityRequest;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export namespace ListEntityRequest {
|
|
79
|
+
export type AsObject = {
|
|
80
|
+
filter?: EntityPath.AsObject,
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export class ListEntityResponse extends jspb.Message {
|
|
85
|
+
|
|
86
|
+
hasEntity(): boolean;
|
|
87
|
+
clearEntity(): void;
|
|
88
|
+
getEntity(): Entity | undefined;
|
|
89
|
+
setEntity(value?: Entity): ListEntityResponse;
|
|
90
|
+
clearRelatedList(): void;
|
|
91
|
+
getRelatedList(): Array<Entity>;
|
|
92
|
+
setRelatedList(value: Array<Entity>): ListEntityResponse;
|
|
93
|
+
addRelated(value?: Entity, index?: number): Entity;
|
|
94
|
+
|
|
95
|
+
serializeBinary(): Uint8Array;
|
|
96
|
+
toObject(includeInstance?: boolean): ListEntityResponse.AsObject;
|
|
97
|
+
static toObject(includeInstance: boolean, msg: ListEntityResponse): ListEntityResponse.AsObject;
|
|
98
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
99
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
100
|
+
static serializeBinaryToWriter(message: ListEntityResponse, writer: jspb.BinaryWriter): void;
|
|
101
|
+
static deserializeBinary(bytes: Uint8Array): ListEntityResponse;
|
|
102
|
+
static deserializeBinaryFromReader(message: ListEntityResponse, reader: jspb.BinaryReader): ListEntityResponse;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export namespace ListEntityResponse {
|
|
106
|
+
export type AsObject = {
|
|
107
|
+
entity?: Entity.AsObject,
|
|
108
|
+
relatedList: Array<Entity.AsObject>,
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export class EntityPath extends jspb.Message {
|
|
113
|
+
getSiteId(): string;
|
|
114
|
+
setSiteId(value: string): EntityPath;
|
|
115
|
+
|
|
116
|
+
hasSourceId(): boolean;
|
|
117
|
+
clearSourceId(): void;
|
|
118
|
+
getSourceId(): string | undefined;
|
|
119
|
+
setSourceId(value: string): EntityPath;
|
|
120
|
+
|
|
121
|
+
hasSourceType(): boolean;
|
|
122
|
+
clearSourceType(): void;
|
|
123
|
+
getSourceType(): string | undefined;
|
|
124
|
+
setSourceType(value: string): EntityPath;
|
|
125
|
+
|
|
126
|
+
hasEntityType(): boolean;
|
|
127
|
+
clearEntityType(): void;
|
|
128
|
+
getEntityType(): string | undefined;
|
|
129
|
+
setEntityType(value: string): EntityPath;
|
|
130
|
+
|
|
131
|
+
hasEntityId(): boolean;
|
|
132
|
+
clearEntityId(): void;
|
|
133
|
+
getEntityId(): string | undefined;
|
|
134
|
+
setEntityId(value: string): EntityPath;
|
|
135
|
+
|
|
136
|
+
serializeBinary(): Uint8Array;
|
|
137
|
+
toObject(includeInstance?: boolean): EntityPath.AsObject;
|
|
138
|
+
static toObject(includeInstance: boolean, msg: EntityPath): EntityPath.AsObject;
|
|
139
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
140
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
141
|
+
static serializeBinaryToWriter(message: EntityPath, writer: jspb.BinaryWriter): void;
|
|
142
|
+
static deserializeBinary(bytes: Uint8Array): EntityPath;
|
|
143
|
+
static deserializeBinaryFromReader(message: EntityPath, reader: jspb.BinaryReader): EntityPath;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export namespace EntityPath {
|
|
147
|
+
export type AsObject = {
|
|
148
|
+
siteId: string,
|
|
149
|
+
sourceId?: string,
|
|
150
|
+
sourceType?: string,
|
|
151
|
+
entityType?: string,
|
|
152
|
+
entityId?: string,
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export class Entity extends jspb.Message {
|
|
157
|
+
|
|
158
|
+
hasAsset(): boolean;
|
|
159
|
+
clearAsset(): void;
|
|
160
|
+
getAsset(): Asset | undefined;
|
|
161
|
+
setAsset(value?: Asset): Entity;
|
|
162
|
+
|
|
163
|
+
getEntityCase(): Entity.EntityCase;
|
|
164
|
+
|
|
165
|
+
serializeBinary(): Uint8Array;
|
|
166
|
+
toObject(includeInstance?: boolean): Entity.AsObject;
|
|
167
|
+
static toObject(includeInstance: boolean, msg: Entity): Entity.AsObject;
|
|
168
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
169
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
170
|
+
static serializeBinaryToWriter(message: Entity, writer: jspb.BinaryWriter): void;
|
|
171
|
+
static deserializeBinary(bytes: Uint8Array): Entity;
|
|
172
|
+
static deserializeBinaryFromReader(message: Entity, reader: jspb.BinaryReader): Entity;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export namespace Entity {
|
|
176
|
+
export type AsObject = {
|
|
177
|
+
asset?: Asset.AsObject,
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
export enum EntityCase {
|
|
181
|
+
ENTITY_NOT_SET = 0,
|
|
182
|
+
ASSET = 1,
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export class Asset extends jspb.Message {
|
|
188
|
+
|
|
189
|
+
hasId(): boolean;
|
|
190
|
+
clearId(): void;
|
|
191
|
+
getId(): EntityPath | undefined;
|
|
192
|
+
setId(value?: EntityPath): Asset;
|
|
193
|
+
|
|
194
|
+
hasLastSynced(): boolean;
|
|
195
|
+
clearLastSynced(): void;
|
|
196
|
+
getLastSynced(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
197
|
+
setLastSynced(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
198
|
+
|
|
199
|
+
hasFirstSeen(): boolean;
|
|
200
|
+
clearFirstSeen(): void;
|
|
201
|
+
getFirstSeen(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
202
|
+
setFirstSeen(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
203
|
+
|
|
204
|
+
hasLastUpdated(): boolean;
|
|
205
|
+
clearLastUpdated(): void;
|
|
206
|
+
getLastUpdated(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
207
|
+
setLastUpdated(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
208
|
+
|
|
209
|
+
hasLastEnriched(): boolean;
|
|
210
|
+
clearLastEnriched(): void;
|
|
211
|
+
getLastEnriched(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
212
|
+
setLastEnriched(value?: google_protobuf_timestamp_pb.Timestamp): Asset;
|
|
213
|
+
|
|
214
|
+
hasCore(): boolean;
|
|
215
|
+
clearCore(): void;
|
|
216
|
+
getCore(): CoreFields | undefined;
|
|
217
|
+
setCore(value?: CoreFields): Asset;
|
|
218
|
+
|
|
219
|
+
hasHw(): boolean;
|
|
220
|
+
clearHw(): void;
|
|
221
|
+
getHw(): HardwareInfo | undefined;
|
|
222
|
+
setHw(value?: HardwareInfo): Asset;
|
|
223
|
+
|
|
224
|
+
hasOs(): boolean;
|
|
225
|
+
clearOs(): void;
|
|
226
|
+
getOs(): OperatingSystemInfo | undefined;
|
|
227
|
+
setOs(value?: OperatingSystemInfo): Asset;
|
|
228
|
+
|
|
229
|
+
hasSoftwareInventory(): boolean;
|
|
230
|
+
clearSoftwareInventory(): void;
|
|
231
|
+
getSoftwareInventory(): SoftwareInventory | undefined;
|
|
232
|
+
setSoftwareInventory(value?: SoftwareInventory): Asset;
|
|
233
|
+
|
|
234
|
+
serializeBinary(): Uint8Array;
|
|
235
|
+
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
236
|
+
static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
|
|
237
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
238
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
239
|
+
static serializeBinaryToWriter(message: Asset, writer: jspb.BinaryWriter): void;
|
|
240
|
+
static deserializeBinary(bytes: Uint8Array): Asset;
|
|
241
|
+
static deserializeBinaryFromReader(message: Asset, reader: jspb.BinaryReader): Asset;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export namespace Asset {
|
|
245
|
+
export type AsObject = {
|
|
246
|
+
id?: EntityPath.AsObject,
|
|
247
|
+
lastSynced?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
248
|
+
firstSeen?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
249
|
+
lastUpdated?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
250
|
+
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
251
|
+
core?: CoreFields.AsObject,
|
|
252
|
+
hw?: HardwareInfo.AsObject,
|
|
253
|
+
os?: OperatingSystemInfo.AsObject,
|
|
254
|
+
softwareInventory?: SoftwareInventory.AsObject,
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export class AssetType extends jspb.Message {
|
|
259
|
+
getLsName(): string;
|
|
260
|
+
setLsName(value: string): AssetType;
|
|
261
|
+
|
|
262
|
+
hasFingType(): boolean;
|
|
263
|
+
clearFingType(): void;
|
|
264
|
+
getFingType(): string | undefined;
|
|
265
|
+
setFingType(value: string): AssetType;
|
|
266
|
+
|
|
267
|
+
serializeBinary(): Uint8Array;
|
|
268
|
+
toObject(includeInstance?: boolean): AssetType.AsObject;
|
|
269
|
+
static toObject(includeInstance: boolean, msg: AssetType): AssetType.AsObject;
|
|
270
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
271
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
272
|
+
static serializeBinaryToWriter(message: AssetType, writer: jspb.BinaryWriter): void;
|
|
273
|
+
static deserializeBinary(bytes: Uint8Array): AssetType;
|
|
274
|
+
static deserializeBinaryFromReader(message: AssetType, reader: jspb.BinaryReader): AssetType;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export namespace AssetType {
|
|
278
|
+
export type AsObject = {
|
|
279
|
+
lsName: string,
|
|
280
|
+
fingType?: string,
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export class CoreFields extends jspb.Message {
|
|
285
|
+
|
|
286
|
+
hasType(): boolean;
|
|
287
|
+
clearType(): void;
|
|
288
|
+
getType(): AssetType | undefined;
|
|
289
|
+
setType(value?: AssetType): CoreFields;
|
|
290
|
+
getName(): string;
|
|
291
|
+
setName(value: string): CoreFields;
|
|
292
|
+
|
|
293
|
+
hasDomain(): boolean;
|
|
294
|
+
clearDomain(): void;
|
|
295
|
+
getDomain(): string | undefined;
|
|
296
|
+
setDomain(value: string): CoreFields;
|
|
297
|
+
|
|
298
|
+
hasIpAddress(): boolean;
|
|
299
|
+
clearIpAddress(): void;
|
|
300
|
+
getIpAddress(): string | undefined;
|
|
301
|
+
setIpAddress(value: string): CoreFields;
|
|
302
|
+
|
|
303
|
+
hasSerial(): boolean;
|
|
304
|
+
clearSerial(): void;
|
|
305
|
+
getSerial(): string | undefined;
|
|
306
|
+
setSerial(value: string): CoreFields;
|
|
307
|
+
|
|
308
|
+
hasMac(): boolean;
|
|
309
|
+
clearMac(): void;
|
|
310
|
+
getMac(): string | undefined;
|
|
311
|
+
setMac(value: string): CoreFields;
|
|
312
|
+
|
|
313
|
+
hasMacVendor(): boolean;
|
|
314
|
+
clearMacVendor(): void;
|
|
315
|
+
getMacVendor(): string | undefined;
|
|
316
|
+
setMacVendor(value: string): CoreFields;
|
|
317
|
+
|
|
318
|
+
hasSensorId(): boolean;
|
|
319
|
+
clearSensorId(): void;
|
|
320
|
+
getSensorId(): string | undefined;
|
|
321
|
+
setSensorId(value: string): CoreFields;
|
|
322
|
+
|
|
323
|
+
serializeBinary(): Uint8Array;
|
|
324
|
+
toObject(includeInstance?: boolean): CoreFields.AsObject;
|
|
325
|
+
static toObject(includeInstance: boolean, msg: CoreFields): CoreFields.AsObject;
|
|
326
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
327
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
328
|
+
static serializeBinaryToWriter(message: CoreFields, writer: jspb.BinaryWriter): void;
|
|
329
|
+
static deserializeBinary(bytes: Uint8Array): CoreFields;
|
|
330
|
+
static deserializeBinaryFromReader(message: CoreFields, reader: jspb.BinaryReader): CoreFields;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export namespace CoreFields {
|
|
334
|
+
export type AsObject = {
|
|
335
|
+
type?: AssetType.AsObject,
|
|
336
|
+
name: string,
|
|
337
|
+
domain?: string,
|
|
338
|
+
ipAddress?: string,
|
|
339
|
+
serial?: string,
|
|
340
|
+
mac?: string,
|
|
341
|
+
macVendor?: string,
|
|
342
|
+
sensorId?: string,
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export class HardwareInfo extends jspb.Message {
|
|
347
|
+
|
|
348
|
+
hasTypeId(): boolean;
|
|
349
|
+
clearTypeId(): void;
|
|
350
|
+
getTypeId(): number | undefined;
|
|
351
|
+
setTypeId(value: number): HardwareInfo;
|
|
352
|
+
|
|
353
|
+
hasMakeId(): boolean;
|
|
354
|
+
clearMakeId(): void;
|
|
355
|
+
getMakeId(): number | undefined;
|
|
356
|
+
setMakeId(value: number): HardwareInfo;
|
|
357
|
+
|
|
358
|
+
hasModelId(): boolean;
|
|
359
|
+
clearModelId(): void;
|
|
360
|
+
getModelId(): number | undefined;
|
|
361
|
+
setModelId(value: number): HardwareInfo;
|
|
362
|
+
|
|
363
|
+
hasFamilyId(): boolean;
|
|
364
|
+
clearFamilyId(): void;
|
|
365
|
+
getFamilyId(): number | undefined;
|
|
366
|
+
setFamilyId(value: number): HardwareInfo;
|
|
367
|
+
|
|
368
|
+
hasIsFamily(): boolean;
|
|
369
|
+
clearIsFamily(): void;
|
|
370
|
+
getIsFamily(): boolean | undefined;
|
|
371
|
+
setIsFamily(value: boolean): HardwareInfo;
|
|
372
|
+
|
|
373
|
+
hasSerial(): boolean;
|
|
374
|
+
clearSerial(): void;
|
|
375
|
+
getSerial(): string | undefined;
|
|
376
|
+
setSerial(value: string): HardwareInfo;
|
|
377
|
+
|
|
378
|
+
hasTypeName(): boolean;
|
|
379
|
+
clearTypeName(): void;
|
|
380
|
+
getTypeName(): string | undefined;
|
|
381
|
+
setTypeName(value: string): HardwareInfo;
|
|
382
|
+
|
|
383
|
+
hasMakeName(): boolean;
|
|
384
|
+
clearMakeName(): void;
|
|
385
|
+
getMakeName(): string | undefined;
|
|
386
|
+
setMakeName(value: string): HardwareInfo;
|
|
387
|
+
|
|
388
|
+
hasModelName(): boolean;
|
|
389
|
+
clearModelName(): void;
|
|
390
|
+
getModelName(): string | undefined;
|
|
391
|
+
setModelName(value: string): HardwareInfo;
|
|
392
|
+
|
|
393
|
+
hasFamilyName(): boolean;
|
|
394
|
+
clearFamilyName(): void;
|
|
395
|
+
getFamilyName(): string | undefined;
|
|
396
|
+
setFamilyName(value: string): HardwareInfo;
|
|
397
|
+
|
|
398
|
+
hasCpe(): boolean;
|
|
399
|
+
clearCpe(): void;
|
|
400
|
+
getCpe(): string | undefined;
|
|
401
|
+
setCpe(value: string): HardwareInfo;
|
|
402
|
+
|
|
403
|
+
hasRank(): boolean;
|
|
404
|
+
clearRank(): void;
|
|
405
|
+
getRank(): number | undefined;
|
|
406
|
+
setRank(value: number): HardwareInfo;
|
|
407
|
+
|
|
408
|
+
hasCatalogBrand(): boolean;
|
|
409
|
+
clearCatalogBrand(): void;
|
|
410
|
+
getCatalogBrand(): CatalogBrand | undefined;
|
|
411
|
+
setCatalogBrand(value?: CatalogBrand): HardwareInfo;
|
|
412
|
+
|
|
413
|
+
hasCatalogModel(): boolean;
|
|
414
|
+
clearCatalogModel(): void;
|
|
415
|
+
getCatalogModel(): CatalogModel | undefined;
|
|
416
|
+
setCatalogModel(value?: CatalogModel): HardwareInfo;
|
|
417
|
+
|
|
418
|
+
hasRaw(): boolean;
|
|
419
|
+
clearRaw(): void;
|
|
420
|
+
getRaw(): RawHardwareInfo | undefined;
|
|
421
|
+
setRaw(value?: RawHardwareInfo): HardwareInfo;
|
|
422
|
+
|
|
423
|
+
serializeBinary(): Uint8Array;
|
|
424
|
+
toObject(includeInstance?: boolean): HardwareInfo.AsObject;
|
|
425
|
+
static toObject(includeInstance: boolean, msg: HardwareInfo): HardwareInfo.AsObject;
|
|
426
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
427
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
428
|
+
static serializeBinaryToWriter(message: HardwareInfo, writer: jspb.BinaryWriter): void;
|
|
429
|
+
static deserializeBinary(bytes: Uint8Array): HardwareInfo;
|
|
430
|
+
static deserializeBinaryFromReader(message: HardwareInfo, reader: jspb.BinaryReader): HardwareInfo;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
export namespace HardwareInfo {
|
|
434
|
+
export type AsObject = {
|
|
435
|
+
typeId?: number,
|
|
436
|
+
makeId?: number,
|
|
437
|
+
modelId?: number,
|
|
438
|
+
familyId?: number,
|
|
439
|
+
isFamily?: boolean,
|
|
440
|
+
serial?: string,
|
|
441
|
+
typeName?: string,
|
|
442
|
+
makeName?: string,
|
|
443
|
+
modelName?: string,
|
|
444
|
+
familyName?: string,
|
|
445
|
+
cpe?: string,
|
|
446
|
+
rank?: number,
|
|
447
|
+
catalogBrand?: CatalogBrand.AsObject,
|
|
448
|
+
catalogModel?: CatalogModel.AsObject,
|
|
449
|
+
raw?: RawHardwareInfo.AsObject,
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export class RawHardwareInfo extends jspb.Message {
|
|
454
|
+
|
|
455
|
+
hasArchitecture(): boolean;
|
|
456
|
+
clearArchitecture(): void;
|
|
457
|
+
getArchitecture(): string | undefined;
|
|
458
|
+
setArchitecture(value: string): RawHardwareInfo;
|
|
459
|
+
|
|
460
|
+
hasModel(): boolean;
|
|
461
|
+
clearModel(): void;
|
|
462
|
+
getModel(): string | undefined;
|
|
463
|
+
setModel(value: string): RawHardwareInfo;
|
|
464
|
+
|
|
465
|
+
hasManufacturer(): boolean;
|
|
466
|
+
clearManufacturer(): void;
|
|
467
|
+
getManufacturer(): string | undefined;
|
|
468
|
+
setManufacturer(value: string): RawHardwareInfo;
|
|
469
|
+
|
|
470
|
+
hasSerialNumber(): boolean;
|
|
471
|
+
clearSerialNumber(): void;
|
|
472
|
+
getSerialNumber(): string | undefined;
|
|
473
|
+
setSerialNumber(value: string): RawHardwareInfo;
|
|
474
|
+
|
|
475
|
+
serializeBinary(): Uint8Array;
|
|
476
|
+
toObject(includeInstance?: boolean): RawHardwareInfo.AsObject;
|
|
477
|
+
static toObject(includeInstance: boolean, msg: RawHardwareInfo): RawHardwareInfo.AsObject;
|
|
478
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
479
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
480
|
+
static serializeBinaryToWriter(message: RawHardwareInfo, writer: jspb.BinaryWriter): void;
|
|
481
|
+
static deserializeBinary(bytes: Uint8Array): RawHardwareInfo;
|
|
482
|
+
static deserializeBinaryFromReader(message: RawHardwareInfo, reader: jspb.BinaryReader): RawHardwareInfo;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
export namespace RawHardwareInfo {
|
|
486
|
+
export type AsObject = {
|
|
487
|
+
architecture?: string,
|
|
488
|
+
model?: string,
|
|
489
|
+
manufacturer?: string,
|
|
490
|
+
serialNumber?: string,
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
export class OperatingSystemInfo extends jspb.Message {
|
|
495
|
+
|
|
496
|
+
hasId(): boolean;
|
|
497
|
+
clearId(): void;
|
|
498
|
+
getId(): number | undefined;
|
|
499
|
+
setId(value: number): OperatingSystemInfo;
|
|
500
|
+
|
|
501
|
+
hasName(): boolean;
|
|
502
|
+
clearName(): void;
|
|
503
|
+
getName(): string | undefined;
|
|
504
|
+
setName(value: string): OperatingSystemInfo;
|
|
505
|
+
|
|
506
|
+
hasVersion(): boolean;
|
|
507
|
+
clearVersion(): void;
|
|
508
|
+
getVersion(): string | undefined;
|
|
509
|
+
setVersion(value: string): OperatingSystemInfo;
|
|
510
|
+
|
|
511
|
+
hasBuild(): boolean;
|
|
512
|
+
clearBuild(): void;
|
|
513
|
+
getBuild(): string | undefined;
|
|
514
|
+
setBuild(value: string): OperatingSystemInfo;
|
|
515
|
+
|
|
516
|
+
hasFwVersion(): boolean;
|
|
517
|
+
clearFwVersion(): void;
|
|
518
|
+
getFwVersion(): string | undefined;
|
|
519
|
+
setFwVersion(value: string): OperatingSystemInfo;
|
|
520
|
+
|
|
521
|
+
hasCpe(): boolean;
|
|
522
|
+
clearCpe(): void;
|
|
523
|
+
getCpe(): string | undefined;
|
|
524
|
+
setCpe(value: string): OperatingSystemInfo;
|
|
525
|
+
|
|
526
|
+
hasFwCpe(): boolean;
|
|
527
|
+
clearFwCpe(): void;
|
|
528
|
+
getFwCpe(): string | undefined;
|
|
529
|
+
setFwCpe(value: string): OperatingSystemInfo;
|
|
530
|
+
|
|
531
|
+
hasRank(): boolean;
|
|
532
|
+
clearRank(): void;
|
|
533
|
+
getRank(): number | undefined;
|
|
534
|
+
setRank(value: number): OperatingSystemInfo;
|
|
535
|
+
|
|
536
|
+
hasCatalogBrand(): boolean;
|
|
537
|
+
clearCatalogBrand(): void;
|
|
538
|
+
getCatalogBrand(): CatalogBrand | undefined;
|
|
539
|
+
setCatalogBrand(value?: CatalogBrand): OperatingSystemInfo;
|
|
540
|
+
|
|
541
|
+
hasCatalogOs(): boolean;
|
|
542
|
+
clearCatalogOs(): void;
|
|
543
|
+
getCatalogOs(): CatalogOs | undefined;
|
|
544
|
+
setCatalogOs(value?: CatalogOs): OperatingSystemInfo;
|
|
545
|
+
|
|
546
|
+
hasWindows(): boolean;
|
|
547
|
+
clearWindows(): void;
|
|
548
|
+
getWindows(): WindowsRawOperatingSystemInfo | undefined;
|
|
549
|
+
setWindows(value?: WindowsRawOperatingSystemInfo): OperatingSystemInfo;
|
|
550
|
+
|
|
551
|
+
getRawCase(): OperatingSystemInfo.RawCase;
|
|
552
|
+
|
|
553
|
+
serializeBinary(): Uint8Array;
|
|
554
|
+
toObject(includeInstance?: boolean): OperatingSystemInfo.AsObject;
|
|
555
|
+
static toObject(includeInstance: boolean, msg: OperatingSystemInfo): OperatingSystemInfo.AsObject;
|
|
556
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
557
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
558
|
+
static serializeBinaryToWriter(message: OperatingSystemInfo, writer: jspb.BinaryWriter): void;
|
|
559
|
+
static deserializeBinary(bytes: Uint8Array): OperatingSystemInfo;
|
|
560
|
+
static deserializeBinaryFromReader(message: OperatingSystemInfo, reader: jspb.BinaryReader): OperatingSystemInfo;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
export namespace OperatingSystemInfo {
|
|
564
|
+
export type AsObject = {
|
|
565
|
+
id?: number,
|
|
566
|
+
name?: string,
|
|
567
|
+
version?: string,
|
|
568
|
+
build?: string,
|
|
569
|
+
fwVersion?: string,
|
|
570
|
+
cpe?: string,
|
|
571
|
+
fwCpe?: string,
|
|
572
|
+
rank?: number,
|
|
573
|
+
catalogBrand?: CatalogBrand.AsObject,
|
|
574
|
+
catalogOs?: CatalogOs.AsObject,
|
|
575
|
+
windows?: WindowsRawOperatingSystemInfo.AsObject,
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
export enum RawCase {
|
|
579
|
+
RAW_NOT_SET = 0,
|
|
580
|
+
WINDOWS = 32,
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
export class WindowsRawOperatingSystemInfo extends jspb.Message {
|
|
586
|
+
|
|
587
|
+
hasVersion(): boolean;
|
|
588
|
+
clearVersion(): void;
|
|
589
|
+
getVersion(): string | undefined;
|
|
590
|
+
setVersion(value: string): WindowsRawOperatingSystemInfo;
|
|
591
|
+
|
|
592
|
+
hasServicePack(): boolean;
|
|
593
|
+
clearServicePack(): void;
|
|
594
|
+
getServicePack(): number | undefined;
|
|
595
|
+
setServicePack(value: number): WindowsRawOperatingSystemInfo;
|
|
596
|
+
|
|
597
|
+
hasBuild(): boolean;
|
|
598
|
+
clearBuild(): void;
|
|
599
|
+
getBuild(): string | undefined;
|
|
600
|
+
setBuild(value: string): WindowsRawOperatingSystemInfo;
|
|
601
|
+
|
|
602
|
+
hasVersionName(): boolean;
|
|
603
|
+
clearVersionName(): void;
|
|
604
|
+
getVersionName(): string | undefined;
|
|
605
|
+
setVersionName(value: string): WindowsRawOperatingSystemInfo;
|
|
606
|
+
|
|
607
|
+
hasBuildNumber(): boolean;
|
|
608
|
+
clearBuildNumber(): void;
|
|
609
|
+
getBuildNumber(): string | undefined;
|
|
610
|
+
setBuildNumber(value: string): WindowsRawOperatingSystemInfo;
|
|
611
|
+
|
|
612
|
+
hasProductType(): boolean;
|
|
613
|
+
clearProductType(): void;
|
|
614
|
+
getProductType(): number | undefined;
|
|
615
|
+
setProductType(value: number): WindowsRawOperatingSystemInfo;
|
|
616
|
+
|
|
617
|
+
hasIsDomainController(): boolean;
|
|
618
|
+
clearIsDomainController(): void;
|
|
619
|
+
getIsDomainController(): boolean | undefined;
|
|
620
|
+
setIsDomainController(value: boolean): WindowsRawOperatingSystemInfo;
|
|
621
|
+
|
|
622
|
+
hasPartOfDomain(): boolean;
|
|
623
|
+
clearPartOfDomain(): void;
|
|
624
|
+
getPartOfDomain(): boolean | undefined;
|
|
625
|
+
setPartOfDomain(value: boolean): WindowsRawOperatingSystemInfo;
|
|
626
|
+
|
|
627
|
+
hasIsAzureAdJoined(): boolean;
|
|
628
|
+
clearIsAzureAdJoined(): void;
|
|
629
|
+
getIsAzureAdJoined(): boolean | undefined;
|
|
630
|
+
setIsAzureAdJoined(value: boolean): WindowsRawOperatingSystemInfo;
|
|
631
|
+
|
|
632
|
+
hasOsCode(): boolean;
|
|
633
|
+
clearOsCode(): void;
|
|
634
|
+
getOsCode(): string | undefined;
|
|
635
|
+
setOsCode(value: string): WindowsRawOperatingSystemInfo;
|
|
636
|
+
|
|
637
|
+
serializeBinary(): Uint8Array;
|
|
638
|
+
toObject(includeInstance?: boolean): WindowsRawOperatingSystemInfo.AsObject;
|
|
639
|
+
static toObject(includeInstance: boolean, msg: WindowsRawOperatingSystemInfo): WindowsRawOperatingSystemInfo.AsObject;
|
|
640
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
641
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
642
|
+
static serializeBinaryToWriter(message: WindowsRawOperatingSystemInfo, writer: jspb.BinaryWriter): void;
|
|
643
|
+
static deserializeBinary(bytes: Uint8Array): WindowsRawOperatingSystemInfo;
|
|
644
|
+
static deserializeBinaryFromReader(message: WindowsRawOperatingSystemInfo, reader: jspb.BinaryReader): WindowsRawOperatingSystemInfo;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
export namespace WindowsRawOperatingSystemInfo {
|
|
648
|
+
export type AsObject = {
|
|
649
|
+
version?: string,
|
|
650
|
+
servicePack?: number,
|
|
651
|
+
build?: string,
|
|
652
|
+
versionName?: string,
|
|
653
|
+
buildNumber?: string,
|
|
654
|
+
productType?: number,
|
|
655
|
+
isDomainController?: boolean,
|
|
656
|
+
partOfDomain?: boolean,
|
|
657
|
+
isAzureAdJoined?: boolean,
|
|
658
|
+
osCode?: string,
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
export class SoftwareInventory extends jspb.Message {
|
|
663
|
+
|
|
664
|
+
hasTimestamp(): boolean;
|
|
665
|
+
clearTimestamp(): void;
|
|
666
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
667
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): SoftwareInventory;
|
|
668
|
+
clearSoftwareList(): void;
|
|
669
|
+
getSoftwareList(): Array<Software>;
|
|
670
|
+
setSoftwareList(value: Array<Software>): SoftwareInventory;
|
|
671
|
+
addSoftware(value?: Software, index?: number): Software;
|
|
672
|
+
|
|
673
|
+
serializeBinary(): Uint8Array;
|
|
674
|
+
toObject(includeInstance?: boolean): SoftwareInventory.AsObject;
|
|
675
|
+
static toObject(includeInstance: boolean, msg: SoftwareInventory): SoftwareInventory.AsObject;
|
|
676
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
677
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
678
|
+
static serializeBinaryToWriter(message: SoftwareInventory, writer: jspb.BinaryWriter): void;
|
|
679
|
+
static deserializeBinary(bytes: Uint8Array): SoftwareInventory;
|
|
680
|
+
static deserializeBinaryFromReader(message: SoftwareInventory, reader: jspb.BinaryReader): SoftwareInventory;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
export namespace SoftwareInventory {
|
|
684
|
+
export type AsObject = {
|
|
685
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
686
|
+
softwareList: Array<Software.AsObject>,
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
export class Software extends jspb.Message {
|
|
691
|
+
|
|
692
|
+
hasRank(): boolean;
|
|
693
|
+
clearRank(): void;
|
|
694
|
+
getRank(): number | undefined;
|
|
695
|
+
setRank(value: number): Software;
|
|
696
|
+
|
|
697
|
+
hasTypeId(): boolean;
|
|
698
|
+
clearTypeId(): void;
|
|
699
|
+
getTypeId(): number | undefined;
|
|
700
|
+
setTypeId(value: number): Software;
|
|
701
|
+
|
|
702
|
+
hasCatId(): boolean;
|
|
703
|
+
clearCatId(): void;
|
|
704
|
+
getCatId(): number | undefined;
|
|
705
|
+
setCatId(value: number): Software;
|
|
706
|
+
|
|
707
|
+
hasMakeId(): boolean;
|
|
708
|
+
clearMakeId(): void;
|
|
709
|
+
getMakeId(): number | undefined;
|
|
710
|
+
setMakeId(value: number): Software;
|
|
711
|
+
|
|
712
|
+
hasSwId(): boolean;
|
|
713
|
+
clearSwId(): void;
|
|
714
|
+
getSwId(): number | undefined;
|
|
715
|
+
setSwId(value: number): Software;
|
|
716
|
+
|
|
717
|
+
hasParentId(): boolean;
|
|
718
|
+
clearParentId(): void;
|
|
719
|
+
getParentId(): number | undefined;
|
|
720
|
+
setParentId(value: number): Software;
|
|
721
|
+
|
|
722
|
+
hasTypeName(): boolean;
|
|
723
|
+
clearTypeName(): void;
|
|
724
|
+
getTypeName(): string | undefined;
|
|
725
|
+
setTypeName(value: string): Software;
|
|
726
|
+
|
|
727
|
+
hasCatName(): boolean;
|
|
728
|
+
clearCatName(): void;
|
|
729
|
+
getCatName(): string | undefined;
|
|
730
|
+
setCatName(value: string): Software;
|
|
731
|
+
|
|
732
|
+
hasMakeName(): boolean;
|
|
733
|
+
clearMakeName(): void;
|
|
734
|
+
getMakeName(): string | undefined;
|
|
735
|
+
setMakeName(value: string): Software;
|
|
736
|
+
|
|
737
|
+
hasName(): boolean;
|
|
738
|
+
clearName(): void;
|
|
739
|
+
getName(): string | undefined;
|
|
740
|
+
setName(value: string): Software;
|
|
741
|
+
|
|
742
|
+
hasVersion(): boolean;
|
|
743
|
+
clearVersion(): void;
|
|
744
|
+
getVersion(): string | undefined;
|
|
745
|
+
setVersion(value: string): Software;
|
|
746
|
+
|
|
747
|
+
hasMarketVer(): boolean;
|
|
748
|
+
clearMarketVer(): void;
|
|
749
|
+
getMarketVer(): string | undefined;
|
|
750
|
+
setMarketVer(value: string): Software;
|
|
751
|
+
|
|
752
|
+
hasEdition(): boolean;
|
|
753
|
+
clearEdition(): void;
|
|
754
|
+
getEdition(): string | undefined;
|
|
755
|
+
setEdition(value: string): Software;
|
|
756
|
+
|
|
757
|
+
hasBuild(): boolean;
|
|
758
|
+
clearBuild(): void;
|
|
759
|
+
getBuild(): string | undefined;
|
|
760
|
+
setBuild(value: string): Software;
|
|
761
|
+
|
|
762
|
+
hasCpe(): boolean;
|
|
763
|
+
clearCpe(): void;
|
|
764
|
+
getCpe(): string | undefined;
|
|
765
|
+
setCpe(value: string): Software;
|
|
766
|
+
|
|
767
|
+
hasCatalogSoftware(): boolean;
|
|
768
|
+
clearCatalogSoftware(): void;
|
|
769
|
+
getCatalogSoftware(): CatalogSoftware | undefined;
|
|
770
|
+
setCatalogSoftware(value?: CatalogSoftware): Software;
|
|
771
|
+
|
|
772
|
+
hasRaw(): boolean;
|
|
773
|
+
clearRaw(): void;
|
|
774
|
+
getRaw(): RawSoftware | undefined;
|
|
775
|
+
setRaw(value?: RawSoftware): Software;
|
|
776
|
+
|
|
777
|
+
serializeBinary(): Uint8Array;
|
|
778
|
+
toObject(includeInstance?: boolean): Software.AsObject;
|
|
779
|
+
static toObject(includeInstance: boolean, msg: Software): Software.AsObject;
|
|
780
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
781
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
782
|
+
static serializeBinaryToWriter(message: Software, writer: jspb.BinaryWriter): void;
|
|
783
|
+
static deserializeBinary(bytes: Uint8Array): Software;
|
|
784
|
+
static deserializeBinaryFromReader(message: Software, reader: jspb.BinaryReader): Software;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
export namespace Software {
|
|
788
|
+
export type AsObject = {
|
|
789
|
+
rank?: number,
|
|
790
|
+
typeId?: number,
|
|
791
|
+
catId?: number,
|
|
792
|
+
makeId?: number,
|
|
793
|
+
swId?: number,
|
|
794
|
+
parentId?: number,
|
|
795
|
+
typeName?: string,
|
|
796
|
+
catName?: string,
|
|
797
|
+
makeName?: string,
|
|
798
|
+
name?: string,
|
|
799
|
+
version?: string,
|
|
800
|
+
marketVer?: string,
|
|
801
|
+
edition?: string,
|
|
802
|
+
build?: string,
|
|
803
|
+
cpe?: string,
|
|
804
|
+
catalogSoftware?: CatalogSoftware.AsObject,
|
|
805
|
+
raw?: RawSoftware.AsObject,
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
export class RawSoftware extends jspb.Message {
|
|
810
|
+
getName(): string;
|
|
811
|
+
setName(value: string): RawSoftware;
|
|
812
|
+
|
|
813
|
+
hasVendor(): boolean;
|
|
814
|
+
clearVendor(): void;
|
|
815
|
+
getVendor(): string | undefined;
|
|
816
|
+
setVendor(value: string): RawSoftware;
|
|
817
|
+
|
|
818
|
+
hasVersion(): boolean;
|
|
819
|
+
clearVersion(): void;
|
|
820
|
+
getVersion(): string | undefined;
|
|
821
|
+
setVersion(value: string): RawSoftware;
|
|
822
|
+
|
|
823
|
+
hasInfo(): boolean;
|
|
824
|
+
clearInfo(): void;
|
|
825
|
+
getInfo(): string | undefined;
|
|
826
|
+
setInfo(value: string): RawSoftware;
|
|
827
|
+
|
|
828
|
+
hasExePath(): boolean;
|
|
829
|
+
clearExePath(): void;
|
|
830
|
+
getExePath(): string | undefined;
|
|
831
|
+
setExePath(value: string): RawSoftware;
|
|
832
|
+
|
|
833
|
+
hasArch(): boolean;
|
|
834
|
+
clearArch(): void;
|
|
835
|
+
getArch(): string | undefined;
|
|
836
|
+
setArch(value: string): RawSoftware;
|
|
837
|
+
|
|
838
|
+
hasInstallDate(): boolean;
|
|
839
|
+
clearInstallDate(): void;
|
|
840
|
+
getInstallDate(): number | undefined;
|
|
841
|
+
setInstallDate(value: number): RawSoftware;
|
|
842
|
+
|
|
843
|
+
hasSourceType(): boolean;
|
|
844
|
+
clearSourceType(): void;
|
|
845
|
+
getSourceType(): string | undefined;
|
|
846
|
+
setSourceType(value: string): RawSoftware;
|
|
847
|
+
|
|
848
|
+
hasSwId(): boolean;
|
|
849
|
+
clearSwId(): void;
|
|
850
|
+
getSwId(): string | undefined;
|
|
851
|
+
setSwId(value: string): RawSoftware;
|
|
852
|
+
|
|
853
|
+
serializeBinary(): Uint8Array;
|
|
854
|
+
toObject(includeInstance?: boolean): RawSoftware.AsObject;
|
|
855
|
+
static toObject(includeInstance: boolean, msg: RawSoftware): RawSoftware.AsObject;
|
|
856
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
857
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
858
|
+
static serializeBinaryToWriter(message: RawSoftware, writer: jspb.BinaryWriter): void;
|
|
859
|
+
static deserializeBinary(bytes: Uint8Array): RawSoftware;
|
|
860
|
+
static deserializeBinaryFromReader(message: RawSoftware, reader: jspb.BinaryReader): RawSoftware;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
export namespace RawSoftware {
|
|
864
|
+
export type AsObject = {
|
|
865
|
+
name: string,
|
|
866
|
+
vendor?: string,
|
|
867
|
+
version?: string,
|
|
868
|
+
info?: string,
|
|
869
|
+
exePath?: string,
|
|
870
|
+
arch?: string,
|
|
871
|
+
installDate?: number,
|
|
872
|
+
sourceType?: string,
|
|
873
|
+
swId?: string,
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
export class CatalogBrand extends jspb.Message {
|
|
878
|
+
getId(): number;
|
|
879
|
+
setId(value: number): CatalogBrand;
|
|
880
|
+
getMakeKey(): string;
|
|
881
|
+
setMakeKey(value: string): CatalogBrand;
|
|
882
|
+
getMakeName(): string;
|
|
883
|
+
setMakeName(value: string): CatalogBrand;
|
|
884
|
+
|
|
885
|
+
hasOverrideId(): boolean;
|
|
886
|
+
clearOverrideId(): void;
|
|
887
|
+
getOverrideId(): number | undefined;
|
|
888
|
+
setOverrideId(value: number): CatalogBrand;
|
|
889
|
+
|
|
890
|
+
hasParentId(): boolean;
|
|
891
|
+
clearParentId(): void;
|
|
892
|
+
getParentId(): number | undefined;
|
|
893
|
+
setParentId(value: number): CatalogBrand;
|
|
894
|
+
|
|
895
|
+
hasLastUpdateTime(): boolean;
|
|
896
|
+
clearLastUpdateTime(): void;
|
|
897
|
+
getLastUpdateTime(): number | undefined;
|
|
898
|
+
setLastUpdateTime(value: number): CatalogBrand;
|
|
899
|
+
|
|
900
|
+
hasCountryCode(): boolean;
|
|
901
|
+
clearCountryCode(): void;
|
|
902
|
+
getCountryCode(): string | undefined;
|
|
903
|
+
setCountryCode(value: string): CatalogBrand;
|
|
904
|
+
|
|
905
|
+
hasLogoImageUrl(): boolean;
|
|
906
|
+
clearLogoImageUrl(): void;
|
|
907
|
+
getLogoImageUrl(): string | undefined;
|
|
908
|
+
setLogoImageUrl(value: string): CatalogBrand;
|
|
909
|
+
|
|
910
|
+
hasBannerImageUrl(): boolean;
|
|
911
|
+
clearBannerImageUrl(): void;
|
|
912
|
+
getBannerImageUrl(): string | undefined;
|
|
913
|
+
setBannerImageUrl(value: string): CatalogBrand;
|
|
914
|
+
|
|
915
|
+
hasWikipediaId(): boolean;
|
|
916
|
+
clearWikipediaId(): void;
|
|
917
|
+
getWikipediaId(): string | undefined;
|
|
918
|
+
setWikipediaId(value: string): CatalogBrand;
|
|
919
|
+
|
|
920
|
+
hasWikipediaLangCode(): boolean;
|
|
921
|
+
clearWikipediaLangCode(): void;
|
|
922
|
+
getWikipediaLangCode(): string | undefined;
|
|
923
|
+
setWikipediaLangCode(value: string): CatalogBrand;
|
|
924
|
+
|
|
925
|
+
hasWebsiteUrl(): boolean;
|
|
926
|
+
clearWebsiteUrl(): void;
|
|
927
|
+
getWebsiteUrl(): string | undefined;
|
|
928
|
+
setWebsiteUrl(value: string): CatalogBrand;
|
|
929
|
+
|
|
930
|
+
hasSupportUrl(): boolean;
|
|
931
|
+
clearSupportUrl(): void;
|
|
932
|
+
getSupportUrl(): string | undefined;
|
|
933
|
+
setSupportUrl(value: string): CatalogBrand;
|
|
934
|
+
|
|
935
|
+
hasSupportPhone(): boolean;
|
|
936
|
+
clearSupportPhone(): void;
|
|
937
|
+
getSupportPhone(): string | undefined;
|
|
938
|
+
setSupportPhone(value: string): CatalogBrand;
|
|
939
|
+
|
|
940
|
+
hasFacebookAccount(): boolean;
|
|
941
|
+
clearFacebookAccount(): void;
|
|
942
|
+
getFacebookAccount(): string | undefined;
|
|
943
|
+
setFacebookAccount(value: string): CatalogBrand;
|
|
944
|
+
|
|
945
|
+
hasTwitterAccount(): boolean;
|
|
946
|
+
clearTwitterAccount(): void;
|
|
947
|
+
getTwitterAccount(): string | undefined;
|
|
948
|
+
setTwitterAccount(value: string): CatalogBrand;
|
|
949
|
+
|
|
950
|
+
hasWarrantyUrl(): boolean;
|
|
951
|
+
clearWarrantyUrl(): void;
|
|
952
|
+
getWarrantyUrl(): string | undefined;
|
|
953
|
+
setWarrantyUrl(value: string): CatalogBrand;
|
|
954
|
+
|
|
955
|
+
hasWarrantyDirectUrl(): boolean;
|
|
956
|
+
clearWarrantyDirectUrl(): void;
|
|
957
|
+
getWarrantyDirectUrl(): string | undefined;
|
|
958
|
+
setWarrantyDirectUrl(value: string): CatalogBrand;
|
|
959
|
+
|
|
960
|
+
hasCommunityUrl(): boolean;
|
|
961
|
+
clearCommunityUrl(): void;
|
|
962
|
+
getCommunityUrl(): string | undefined;
|
|
963
|
+
setCommunityUrl(value: string): CatalogBrand;
|
|
964
|
+
|
|
965
|
+
hasLinkedinAccount(): boolean;
|
|
966
|
+
clearLinkedinAccount(): void;
|
|
967
|
+
getLinkedinAccount(): string | undefined;
|
|
968
|
+
setLinkedinAccount(value: string): CatalogBrand;
|
|
969
|
+
|
|
970
|
+
hasInstagramAccount(): boolean;
|
|
971
|
+
clearInstagramAccount(): void;
|
|
972
|
+
getInstagramAccount(): string | undefined;
|
|
973
|
+
setInstagramAccount(value: string): CatalogBrand;
|
|
974
|
+
|
|
975
|
+
hasYoutubeAccount(): boolean;
|
|
976
|
+
clearYoutubeAccount(): void;
|
|
977
|
+
getYoutubeAccount(): string | undefined;
|
|
978
|
+
setYoutubeAccount(value: string): CatalogBrand;
|
|
979
|
+
|
|
980
|
+
hasPinterestAccount(): boolean;
|
|
981
|
+
clearPinterestAccount(): void;
|
|
982
|
+
getPinterestAccount(): string | undefined;
|
|
983
|
+
setPinterestAccount(value: string): CatalogBrand;
|
|
984
|
+
|
|
985
|
+
hasClassHardware(): boolean;
|
|
986
|
+
clearClassHardware(): void;
|
|
987
|
+
getClassHardware(): boolean | undefined;
|
|
988
|
+
setClassHardware(value: boolean): CatalogBrand;
|
|
989
|
+
|
|
990
|
+
hasClassSoftware(): boolean;
|
|
991
|
+
clearClassSoftware(): void;
|
|
992
|
+
getClassSoftware(): boolean | undefined;
|
|
993
|
+
setClassSoftware(value: boolean): CatalogBrand;
|
|
994
|
+
|
|
995
|
+
hasClassConsumer(): boolean;
|
|
996
|
+
clearClassConsumer(): void;
|
|
997
|
+
getClassConsumer(): boolean | undefined;
|
|
998
|
+
setClassConsumer(value: boolean): CatalogBrand;
|
|
999
|
+
|
|
1000
|
+
hasClassEnterprise(): boolean;
|
|
1001
|
+
clearClassEnterprise(): void;
|
|
1002
|
+
getClassEnterprise(): boolean | undefined;
|
|
1003
|
+
setClassEnterprise(value: boolean): CatalogBrand;
|
|
1004
|
+
|
|
1005
|
+
hasClassIndustrial(): boolean;
|
|
1006
|
+
clearClassIndustrial(): void;
|
|
1007
|
+
getClassIndustrial(): boolean | undefined;
|
|
1008
|
+
setClassIndustrial(value: boolean): CatalogBrand;
|
|
1009
|
+
|
|
1010
|
+
hasClassIndividual(): boolean;
|
|
1011
|
+
clearClassIndividual(): void;
|
|
1012
|
+
getClassIndividual(): boolean | undefined;
|
|
1013
|
+
setClassIndividual(value: boolean): CatalogBrand;
|
|
1014
|
+
|
|
1015
|
+
hasMatchScore(): boolean;
|
|
1016
|
+
clearMatchScore(): void;
|
|
1017
|
+
getMatchScore(): number | undefined;
|
|
1018
|
+
setMatchScore(value: number): CatalogBrand;
|
|
1019
|
+
|
|
1020
|
+
serializeBinary(): Uint8Array;
|
|
1021
|
+
toObject(includeInstance?: boolean): CatalogBrand.AsObject;
|
|
1022
|
+
static toObject(includeInstance: boolean, msg: CatalogBrand): CatalogBrand.AsObject;
|
|
1023
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1024
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1025
|
+
static serializeBinaryToWriter(message: CatalogBrand, writer: jspb.BinaryWriter): void;
|
|
1026
|
+
static deserializeBinary(bytes: Uint8Array): CatalogBrand;
|
|
1027
|
+
static deserializeBinaryFromReader(message: CatalogBrand, reader: jspb.BinaryReader): CatalogBrand;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
export namespace CatalogBrand {
|
|
1031
|
+
export type AsObject = {
|
|
1032
|
+
id: number,
|
|
1033
|
+
makeKey: string,
|
|
1034
|
+
makeName: string,
|
|
1035
|
+
overrideId?: number,
|
|
1036
|
+
parentId?: number,
|
|
1037
|
+
lastUpdateTime?: number,
|
|
1038
|
+
countryCode?: string,
|
|
1039
|
+
logoImageUrl?: string,
|
|
1040
|
+
bannerImageUrl?: string,
|
|
1041
|
+
wikipediaId?: string,
|
|
1042
|
+
wikipediaLangCode?: string,
|
|
1043
|
+
websiteUrl?: string,
|
|
1044
|
+
supportUrl?: string,
|
|
1045
|
+
supportPhone?: string,
|
|
1046
|
+
facebookAccount?: string,
|
|
1047
|
+
twitterAccount?: string,
|
|
1048
|
+
warrantyUrl?: string,
|
|
1049
|
+
warrantyDirectUrl?: string,
|
|
1050
|
+
communityUrl?: string,
|
|
1051
|
+
linkedinAccount?: string,
|
|
1052
|
+
instagramAccount?: string,
|
|
1053
|
+
youtubeAccount?: string,
|
|
1054
|
+
pinterestAccount?: string,
|
|
1055
|
+
classHardware?: boolean,
|
|
1056
|
+
classSoftware?: boolean,
|
|
1057
|
+
classConsumer?: boolean,
|
|
1058
|
+
classEnterprise?: boolean,
|
|
1059
|
+
classIndustrial?: boolean,
|
|
1060
|
+
classIndividual?: boolean,
|
|
1061
|
+
matchScore?: number,
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
export class CatalogModel extends jspb.Message {
|
|
1066
|
+
getId(): number;
|
|
1067
|
+
setId(value: number): CatalogModel;
|
|
1068
|
+
getKey(): string;
|
|
1069
|
+
setKey(value: string): CatalogModel;
|
|
1070
|
+
getMakeId(): number;
|
|
1071
|
+
setMakeId(value: number): CatalogModel;
|
|
1072
|
+
getDeviceModel(): string;
|
|
1073
|
+
setDeviceModel(value: string): CatalogModel;
|
|
1074
|
+
|
|
1075
|
+
hasDeviceType(): boolean;
|
|
1076
|
+
clearDeviceType(): void;
|
|
1077
|
+
getDeviceType(): string | undefined;
|
|
1078
|
+
setDeviceType(value: string): CatalogModel;
|
|
1079
|
+
|
|
1080
|
+
hasDeviceModelCode(): boolean;
|
|
1081
|
+
clearDeviceModelCode(): void;
|
|
1082
|
+
getDeviceModelCode(): string | undefined;
|
|
1083
|
+
setDeviceModelCode(value: string): CatalogModel;
|
|
1084
|
+
|
|
1085
|
+
hasOverrideId(): boolean;
|
|
1086
|
+
clearOverrideId(): void;
|
|
1087
|
+
getOverrideId(): number | undefined;
|
|
1088
|
+
setOverrideId(value: number): CatalogModel;
|
|
1089
|
+
|
|
1090
|
+
hasOsDefaultId(): boolean;
|
|
1091
|
+
clearOsDefaultId(): void;
|
|
1092
|
+
getOsDefaultId(): number | undefined;
|
|
1093
|
+
setOsDefaultId(value: number): CatalogModel;
|
|
1094
|
+
|
|
1095
|
+
hasOsLatestId(): boolean;
|
|
1096
|
+
clearOsLatestId(): void;
|
|
1097
|
+
getOsLatestId(): number | undefined;
|
|
1098
|
+
setOsLatestId(value: number): CatalogModel;
|
|
1099
|
+
|
|
1100
|
+
hasFamilyId(): boolean;
|
|
1101
|
+
clearFamilyId(): void;
|
|
1102
|
+
getFamilyId(): number | undefined;
|
|
1103
|
+
setFamilyId(value: number): CatalogModel;
|
|
1104
|
+
|
|
1105
|
+
hasIsFamily(): boolean;
|
|
1106
|
+
clearIsFamily(): void;
|
|
1107
|
+
getIsFamily(): boolean | undefined;
|
|
1108
|
+
setIsFamily(value: boolean): CatalogModel;
|
|
1109
|
+
|
|
1110
|
+
hasManualUrl(): boolean;
|
|
1111
|
+
clearManualUrl(): void;
|
|
1112
|
+
getManualUrl(): string | undefined;
|
|
1113
|
+
setManualUrl(value: string): CatalogModel;
|
|
1114
|
+
|
|
1115
|
+
hasFaqUrl(): boolean;
|
|
1116
|
+
clearFaqUrl(): void;
|
|
1117
|
+
getFaqUrl(): string | undefined;
|
|
1118
|
+
setFaqUrl(value: string): CatalogModel;
|
|
1119
|
+
|
|
1120
|
+
hasReleaseDate(): boolean;
|
|
1121
|
+
clearReleaseDate(): void;
|
|
1122
|
+
getReleaseDate(): number | undefined;
|
|
1123
|
+
setReleaseDate(value: number): CatalogModel;
|
|
1124
|
+
|
|
1125
|
+
hasDiscDate(): boolean;
|
|
1126
|
+
clearDiscDate(): void;
|
|
1127
|
+
getDiscDate(): number | undefined;
|
|
1128
|
+
setDiscDate(value: number): CatalogModel;
|
|
1129
|
+
|
|
1130
|
+
hasEosDate(): boolean;
|
|
1131
|
+
clearEosDate(): void;
|
|
1132
|
+
getEosDate(): number | undefined;
|
|
1133
|
+
setEosDate(value: number): CatalogModel;
|
|
1134
|
+
|
|
1135
|
+
hasLifecyleConfidence(): boolean;
|
|
1136
|
+
clearLifecyleConfidence(): void;
|
|
1137
|
+
getLifecyleConfidence(): string | undefined;
|
|
1138
|
+
setLifecyleConfidence(value: string): CatalogModel;
|
|
1139
|
+
|
|
1140
|
+
hasPriceClass(): boolean;
|
|
1141
|
+
clearPriceClass(): void;
|
|
1142
|
+
getPriceClass(): string | undefined;
|
|
1143
|
+
setPriceClass(value: string): CatalogModel;
|
|
1144
|
+
|
|
1145
|
+
hasProductClass(): boolean;
|
|
1146
|
+
clearProductClass(): void;
|
|
1147
|
+
getProductClass(): string | undefined;
|
|
1148
|
+
setProductClass(value: string): CatalogModel;
|
|
1149
|
+
|
|
1150
|
+
hasShIftttHandle(): boolean;
|
|
1151
|
+
clearShIftttHandle(): void;
|
|
1152
|
+
getShIftttHandle(): string | undefined;
|
|
1153
|
+
setShIftttHandle(value: string): CatalogModel;
|
|
1154
|
+
clearShGoogleAssLangsList(): void;
|
|
1155
|
+
getShGoogleAssLangsList(): Array<string>;
|
|
1156
|
+
setShGoogleAssLangsList(value: Array<string>): CatalogModel;
|
|
1157
|
+
addShGoogleAssLangs(value: string, index?: number): string;
|
|
1158
|
+
clearShAlexaLangsList(): void;
|
|
1159
|
+
getShAlexaLangsList(): Array<string>;
|
|
1160
|
+
setShAlexaLangsList(value: Array<string>): CatalogModel;
|
|
1161
|
+
addShAlexaLangs(value: string, index?: number): string;
|
|
1162
|
+
|
|
1163
|
+
hasShHassHandle(): boolean;
|
|
1164
|
+
clearShHassHandle(): void;
|
|
1165
|
+
getShHassHandle(): string | undefined;
|
|
1166
|
+
setShHassHandle(value: string): CatalogModel;
|
|
1167
|
+
|
|
1168
|
+
hasShAppleHomeKit(): boolean;
|
|
1169
|
+
clearShAppleHomeKit(): void;
|
|
1170
|
+
getShAppleHomeKit(): boolean | undefined;
|
|
1171
|
+
setShAppleHomeKit(value: boolean): CatalogModel;
|
|
1172
|
+
|
|
1173
|
+
hasShOpenHabHandle(): boolean;
|
|
1174
|
+
clearShOpenHabHandle(): void;
|
|
1175
|
+
getShOpenHabHandle(): string | undefined;
|
|
1176
|
+
setShOpenHabHandle(value: string): CatalogModel;
|
|
1177
|
+
|
|
1178
|
+
hasNistCpe(): boolean;
|
|
1179
|
+
clearNistCpe(): void;
|
|
1180
|
+
getNistCpe(): string | undefined;
|
|
1181
|
+
setNistCpe(value: string): CatalogModel;
|
|
1182
|
+
|
|
1183
|
+
hasSpreadInType(): boolean;
|
|
1184
|
+
clearSpreadInType(): void;
|
|
1185
|
+
getSpreadInType(): number | undefined;
|
|
1186
|
+
setSpreadInType(value: number): CatalogModel;
|
|
1187
|
+
|
|
1188
|
+
hasLastUpdateTime(): boolean;
|
|
1189
|
+
clearLastUpdateTime(): void;
|
|
1190
|
+
getLastUpdateTime(): number | undefined;
|
|
1191
|
+
setLastUpdateTime(value: number): CatalogModel;
|
|
1192
|
+
|
|
1193
|
+
hasMatchScore(): boolean;
|
|
1194
|
+
clearMatchScore(): void;
|
|
1195
|
+
getMatchScore(): number | undefined;
|
|
1196
|
+
setMatchScore(value: number): CatalogModel;
|
|
1197
|
+
|
|
1198
|
+
serializeBinary(): Uint8Array;
|
|
1199
|
+
toObject(includeInstance?: boolean): CatalogModel.AsObject;
|
|
1200
|
+
static toObject(includeInstance: boolean, msg: CatalogModel): CatalogModel.AsObject;
|
|
1201
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1202
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1203
|
+
static serializeBinaryToWriter(message: CatalogModel, writer: jspb.BinaryWriter): void;
|
|
1204
|
+
static deserializeBinary(bytes: Uint8Array): CatalogModel;
|
|
1205
|
+
static deserializeBinaryFromReader(message: CatalogModel, reader: jspb.BinaryReader): CatalogModel;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
export namespace CatalogModel {
|
|
1209
|
+
export type AsObject = {
|
|
1210
|
+
id: number,
|
|
1211
|
+
key: string,
|
|
1212
|
+
makeId: number,
|
|
1213
|
+
deviceModel: string,
|
|
1214
|
+
deviceType?: string,
|
|
1215
|
+
deviceModelCode?: string,
|
|
1216
|
+
overrideId?: number,
|
|
1217
|
+
osDefaultId?: number,
|
|
1218
|
+
osLatestId?: number,
|
|
1219
|
+
familyId?: number,
|
|
1220
|
+
isFamily?: boolean,
|
|
1221
|
+
manualUrl?: string,
|
|
1222
|
+
faqUrl?: string,
|
|
1223
|
+
releaseDate?: number,
|
|
1224
|
+
discDate?: number,
|
|
1225
|
+
eosDate?: number,
|
|
1226
|
+
lifecyleConfidence?: string,
|
|
1227
|
+
priceClass?: string,
|
|
1228
|
+
productClass?: string,
|
|
1229
|
+
shIftttHandle?: string,
|
|
1230
|
+
shGoogleAssLangsList: Array<string>,
|
|
1231
|
+
shAlexaLangsList: Array<string>,
|
|
1232
|
+
shHassHandle?: string,
|
|
1233
|
+
shAppleHomeKit?: boolean,
|
|
1234
|
+
shOpenHabHandle?: string,
|
|
1235
|
+
nistCpe?: string,
|
|
1236
|
+
spreadInType?: number,
|
|
1237
|
+
lastUpdateTime?: number,
|
|
1238
|
+
matchScore?: number,
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
export class CatalogOs extends jspb.Message {
|
|
1243
|
+
getId(): number;
|
|
1244
|
+
setId(value: number): CatalogOs;
|
|
1245
|
+
getOsKey(): string;
|
|
1246
|
+
setOsKey(value: string): CatalogOs;
|
|
1247
|
+
getOsName(): string;
|
|
1248
|
+
setOsName(value: string): CatalogOs;
|
|
1249
|
+
|
|
1250
|
+
hasOsVersion(): boolean;
|
|
1251
|
+
clearOsVersion(): void;
|
|
1252
|
+
getOsVersion(): string | undefined;
|
|
1253
|
+
setOsVersion(value: string): CatalogOs;
|
|
1254
|
+
|
|
1255
|
+
hasOsBuild(): boolean;
|
|
1256
|
+
clearOsBuild(): void;
|
|
1257
|
+
getOsBuild(): string | undefined;
|
|
1258
|
+
setOsBuild(value: string): CatalogOs;
|
|
1259
|
+
|
|
1260
|
+
hasOsVersionName(): boolean;
|
|
1261
|
+
clearOsVersionName(): void;
|
|
1262
|
+
getOsVersionName(): string | undefined;
|
|
1263
|
+
setOsVersionName(value: string): CatalogOs;
|
|
1264
|
+
|
|
1265
|
+
hasOverrideId(): boolean;
|
|
1266
|
+
clearOverrideId(): void;
|
|
1267
|
+
getOverrideId(): number | undefined;
|
|
1268
|
+
setOverrideId(value: number): CatalogOs;
|
|
1269
|
+
|
|
1270
|
+
hasMakeId(): boolean;
|
|
1271
|
+
clearMakeId(): void;
|
|
1272
|
+
getMakeId(): number | undefined;
|
|
1273
|
+
setMakeId(value: number): CatalogOs;
|
|
1274
|
+
|
|
1275
|
+
hasParentId(): boolean;
|
|
1276
|
+
clearParentId(): void;
|
|
1277
|
+
getParentId(): number | undefined;
|
|
1278
|
+
setParentId(value: number): CatalogOs;
|
|
1279
|
+
|
|
1280
|
+
hasReleaseDate(): boolean;
|
|
1281
|
+
clearReleaseDate(): void;
|
|
1282
|
+
getReleaseDate(): number | undefined;
|
|
1283
|
+
setReleaseDate(value: number): CatalogOs;
|
|
1284
|
+
|
|
1285
|
+
hasEolDate(): boolean;
|
|
1286
|
+
clearEolDate(): void;
|
|
1287
|
+
getEolDate(): number | undefined;
|
|
1288
|
+
setEolDate(value: number): CatalogOs;
|
|
1289
|
+
|
|
1290
|
+
hasEosDate(): boolean;
|
|
1291
|
+
clearEosDate(): void;
|
|
1292
|
+
getEosDate(): number | undefined;
|
|
1293
|
+
setEosDate(value: number): CatalogOs;
|
|
1294
|
+
|
|
1295
|
+
hasEosxDate(): boolean;
|
|
1296
|
+
clearEosxDate(): void;
|
|
1297
|
+
getEosxDate(): number | undefined;
|
|
1298
|
+
setEosxDate(value: number): CatalogOs;
|
|
1299
|
+
|
|
1300
|
+
hasLifecyleConfidence(): boolean;
|
|
1301
|
+
clearLifecyleConfidence(): void;
|
|
1302
|
+
getLifecyleConfidence(): string | undefined;
|
|
1303
|
+
setLifecyleConfidence(value: string): CatalogOs;
|
|
1304
|
+
|
|
1305
|
+
hasLogoImageUrl(): boolean;
|
|
1306
|
+
clearLogoImageUrl(): void;
|
|
1307
|
+
getLogoImageUrl(): string | undefined;
|
|
1308
|
+
setLogoImageUrl(value: string): CatalogOs;
|
|
1309
|
+
|
|
1310
|
+
hasBannerImageUrl(): boolean;
|
|
1311
|
+
clearBannerImageUrl(): void;
|
|
1312
|
+
getBannerImageUrl(): string | undefined;
|
|
1313
|
+
setBannerImageUrl(value: string): CatalogOs;
|
|
1314
|
+
|
|
1315
|
+
hasWikipediaId(): boolean;
|
|
1316
|
+
clearWikipediaId(): void;
|
|
1317
|
+
getWikipediaId(): string | undefined;
|
|
1318
|
+
setWikipediaId(value: string): CatalogOs;
|
|
1319
|
+
|
|
1320
|
+
hasWikipediaLangCode(): boolean;
|
|
1321
|
+
clearWikipediaLangCode(): void;
|
|
1322
|
+
getWikipediaLangCode(): string | undefined;
|
|
1323
|
+
setWikipediaLangCode(value: string): CatalogOs;
|
|
1324
|
+
|
|
1325
|
+
hasWebsiteUrl(): boolean;
|
|
1326
|
+
clearWebsiteUrl(): void;
|
|
1327
|
+
getWebsiteUrl(): string | undefined;
|
|
1328
|
+
setWebsiteUrl(value: string): CatalogOs;
|
|
1329
|
+
|
|
1330
|
+
hasSupportUrl(): boolean;
|
|
1331
|
+
clearSupportUrl(): void;
|
|
1332
|
+
getSupportUrl(): string | undefined;
|
|
1333
|
+
setSupportUrl(value: string): CatalogOs;
|
|
1334
|
+
|
|
1335
|
+
hasSupportPhone(): boolean;
|
|
1336
|
+
clearSupportPhone(): void;
|
|
1337
|
+
getSupportPhone(): string | undefined;
|
|
1338
|
+
setSupportPhone(value: string): CatalogOs;
|
|
1339
|
+
|
|
1340
|
+
hasFacebookAccount(): boolean;
|
|
1341
|
+
clearFacebookAccount(): void;
|
|
1342
|
+
getFacebookAccount(): string | undefined;
|
|
1343
|
+
setFacebookAccount(value: string): CatalogOs;
|
|
1344
|
+
|
|
1345
|
+
hasTwitterAccount(): boolean;
|
|
1346
|
+
clearTwitterAccount(): void;
|
|
1347
|
+
getTwitterAccount(): string | undefined;
|
|
1348
|
+
setTwitterAccount(value: string): CatalogOs;
|
|
1349
|
+
|
|
1350
|
+
hasNistCpe(): boolean;
|
|
1351
|
+
clearNistCpe(): void;
|
|
1352
|
+
getNistCpe(): string | undefined;
|
|
1353
|
+
setNistCpe(value: string): CatalogOs;
|
|
1354
|
+
|
|
1355
|
+
hasLastUpdateTime(): boolean;
|
|
1356
|
+
clearLastUpdateTime(): void;
|
|
1357
|
+
getLastUpdateTime(): number | undefined;
|
|
1358
|
+
setLastUpdateTime(value: number): CatalogOs;
|
|
1359
|
+
|
|
1360
|
+
hasMatchScore(): boolean;
|
|
1361
|
+
clearMatchScore(): void;
|
|
1362
|
+
getMatchScore(): number | undefined;
|
|
1363
|
+
setMatchScore(value: number): CatalogOs;
|
|
1364
|
+
|
|
1365
|
+
serializeBinary(): Uint8Array;
|
|
1366
|
+
toObject(includeInstance?: boolean): CatalogOs.AsObject;
|
|
1367
|
+
static toObject(includeInstance: boolean, msg: CatalogOs): CatalogOs.AsObject;
|
|
1368
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1369
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1370
|
+
static serializeBinaryToWriter(message: CatalogOs, writer: jspb.BinaryWriter): void;
|
|
1371
|
+
static deserializeBinary(bytes: Uint8Array): CatalogOs;
|
|
1372
|
+
static deserializeBinaryFromReader(message: CatalogOs, reader: jspb.BinaryReader): CatalogOs;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
export namespace CatalogOs {
|
|
1376
|
+
export type AsObject = {
|
|
1377
|
+
id: number,
|
|
1378
|
+
osKey: string,
|
|
1379
|
+
osName: string,
|
|
1380
|
+
osVersion?: string,
|
|
1381
|
+
osBuild?: string,
|
|
1382
|
+
osVersionName?: string,
|
|
1383
|
+
overrideId?: number,
|
|
1384
|
+
makeId?: number,
|
|
1385
|
+
parentId?: number,
|
|
1386
|
+
releaseDate?: number,
|
|
1387
|
+
eolDate?: number,
|
|
1388
|
+
eosDate?: number,
|
|
1389
|
+
eosxDate?: number,
|
|
1390
|
+
lifecyleConfidence?: string,
|
|
1391
|
+
logoImageUrl?: string,
|
|
1392
|
+
bannerImageUrl?: string,
|
|
1393
|
+
wikipediaId?: string,
|
|
1394
|
+
wikipediaLangCode?: string,
|
|
1395
|
+
websiteUrl?: string,
|
|
1396
|
+
supportUrl?: string,
|
|
1397
|
+
supportPhone?: string,
|
|
1398
|
+
facebookAccount?: string,
|
|
1399
|
+
twitterAccount?: string,
|
|
1400
|
+
nistCpe?: string,
|
|
1401
|
+
lastUpdateTime?: number,
|
|
1402
|
+
matchScore?: number,
|
|
1403
|
+
}
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
export class CatalogSoftware extends jspb.Message {
|
|
1407
|
+
getId(): number;
|
|
1408
|
+
setId(value: number): CatalogSoftware;
|
|
1409
|
+
getSwKey(): string;
|
|
1410
|
+
setSwKey(value: string): CatalogSoftware;
|
|
1411
|
+
getSwName(): string;
|
|
1412
|
+
setSwName(value: string): CatalogSoftware;
|
|
1413
|
+
|
|
1414
|
+
hasSwVersion(): boolean;
|
|
1415
|
+
clearSwVersion(): void;
|
|
1416
|
+
getSwVersion(): string | undefined;
|
|
1417
|
+
setSwVersion(value: string): CatalogSoftware;
|
|
1418
|
+
|
|
1419
|
+
hasSwMarketVer(): boolean;
|
|
1420
|
+
clearSwMarketVer(): void;
|
|
1421
|
+
getSwMarketVer(): string | undefined;
|
|
1422
|
+
setSwMarketVer(value: string): CatalogSoftware;
|
|
1423
|
+
|
|
1424
|
+
hasSwEdition(): boolean;
|
|
1425
|
+
clearSwEdition(): void;
|
|
1426
|
+
getSwEdition(): string | undefined;
|
|
1427
|
+
setSwEdition(value: string): CatalogSoftware;
|
|
1428
|
+
|
|
1429
|
+
hasSwLang(): boolean;
|
|
1430
|
+
clearSwLang(): void;
|
|
1431
|
+
getSwLang(): string | undefined;
|
|
1432
|
+
setSwLang(value: string): CatalogSoftware;
|
|
1433
|
+
|
|
1434
|
+
hasSwBuild(): boolean;
|
|
1435
|
+
clearSwBuild(): void;
|
|
1436
|
+
getSwBuild(): string | undefined;
|
|
1437
|
+
setSwBuild(value: string): CatalogSoftware;
|
|
1438
|
+
|
|
1439
|
+
hasOverrideId(): boolean;
|
|
1440
|
+
clearOverrideId(): void;
|
|
1441
|
+
getOverrideId(): number | undefined;
|
|
1442
|
+
setOverrideId(value: number): CatalogSoftware;
|
|
1443
|
+
|
|
1444
|
+
hasMakeId(): boolean;
|
|
1445
|
+
clearMakeId(): void;
|
|
1446
|
+
getMakeId(): number | undefined;
|
|
1447
|
+
setMakeId(value: number): CatalogSoftware;
|
|
1448
|
+
|
|
1449
|
+
hasParentId(): boolean;
|
|
1450
|
+
clearParentId(): void;
|
|
1451
|
+
getParentId(): number | undefined;
|
|
1452
|
+
setParentId(value: number): CatalogSoftware;
|
|
1453
|
+
|
|
1454
|
+
hasSwType(): boolean;
|
|
1455
|
+
clearSwType(): void;
|
|
1456
|
+
getSwType(): string | undefined;
|
|
1457
|
+
setSwType(value: string): CatalogSoftware;
|
|
1458
|
+
|
|
1459
|
+
hasSwCategory(): boolean;
|
|
1460
|
+
clearSwCategory(): void;
|
|
1461
|
+
getSwCategory(): string | undefined;
|
|
1462
|
+
setSwCategory(value: string): CatalogSoftware;
|
|
1463
|
+
|
|
1464
|
+
hasNistCpeTemplate(): boolean;
|
|
1465
|
+
clearNistCpeTemplate(): void;
|
|
1466
|
+
getNistCpeTemplate(): string | undefined;
|
|
1467
|
+
setNistCpeTemplate(value: string): CatalogSoftware;
|
|
1468
|
+
|
|
1469
|
+
hasReleaseDate(): boolean;
|
|
1470
|
+
clearReleaseDate(): void;
|
|
1471
|
+
getReleaseDate(): number | undefined;
|
|
1472
|
+
setReleaseDate(value: number): CatalogSoftware;
|
|
1473
|
+
|
|
1474
|
+
hasEolDate(): boolean;
|
|
1475
|
+
clearEolDate(): void;
|
|
1476
|
+
getEolDate(): number | undefined;
|
|
1477
|
+
setEolDate(value: number): CatalogSoftware;
|
|
1478
|
+
|
|
1479
|
+
hasEosDate(): boolean;
|
|
1480
|
+
clearEosDate(): void;
|
|
1481
|
+
getEosDate(): number | undefined;
|
|
1482
|
+
setEosDate(value: number): CatalogSoftware;
|
|
1483
|
+
|
|
1484
|
+
hasEosxDate(): boolean;
|
|
1485
|
+
clearEosxDate(): void;
|
|
1486
|
+
getEosxDate(): number | undefined;
|
|
1487
|
+
setEosxDate(value: number): CatalogSoftware;
|
|
1488
|
+
|
|
1489
|
+
hasLifecyleConfidence(): boolean;
|
|
1490
|
+
clearLifecyleConfidence(): void;
|
|
1491
|
+
getLifecyleConfidence(): string | undefined;
|
|
1492
|
+
setLifecyleConfidence(value: string): CatalogSoftware;
|
|
1493
|
+
|
|
1494
|
+
hasLastUpdateTime(): boolean;
|
|
1495
|
+
clearLastUpdateTime(): void;
|
|
1496
|
+
getLastUpdateTime(): number | undefined;
|
|
1497
|
+
setLastUpdateTime(value: number): CatalogSoftware;
|
|
1498
|
+
|
|
1499
|
+
hasFlagLatest(): boolean;
|
|
1500
|
+
clearFlagLatest(): void;
|
|
1501
|
+
getFlagLatest(): boolean | undefined;
|
|
1502
|
+
setFlagLatest(value: boolean): CatalogSoftware;
|
|
1503
|
+
|
|
1504
|
+
hasFlagWidespread(): boolean;
|
|
1505
|
+
clearFlagWidespread(): void;
|
|
1506
|
+
getFlagWidespread(): boolean | undefined;
|
|
1507
|
+
setFlagWidespread(value: boolean): CatalogSoftware;
|
|
1508
|
+
|
|
1509
|
+
hasFlagDeprecated(): boolean;
|
|
1510
|
+
clearFlagDeprecated(): void;
|
|
1511
|
+
getFlagDeprecated(): boolean | undefined;
|
|
1512
|
+
setFlagDeprecated(value: boolean): CatalogSoftware;
|
|
1513
|
+
|
|
1514
|
+
hasMatchScore(): boolean;
|
|
1515
|
+
clearMatchScore(): void;
|
|
1516
|
+
getMatchScore(): number | undefined;
|
|
1517
|
+
setMatchScore(value: number): CatalogSoftware;
|
|
1518
|
+
|
|
1519
|
+
serializeBinary(): Uint8Array;
|
|
1520
|
+
toObject(includeInstance?: boolean): CatalogSoftware.AsObject;
|
|
1521
|
+
static toObject(includeInstance: boolean, msg: CatalogSoftware): CatalogSoftware.AsObject;
|
|
1522
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1523
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1524
|
+
static serializeBinaryToWriter(message: CatalogSoftware, writer: jspb.BinaryWriter): void;
|
|
1525
|
+
static deserializeBinary(bytes: Uint8Array): CatalogSoftware;
|
|
1526
|
+
static deserializeBinaryFromReader(message: CatalogSoftware, reader: jspb.BinaryReader): CatalogSoftware;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
export namespace CatalogSoftware {
|
|
1530
|
+
export type AsObject = {
|
|
1531
|
+
id: number,
|
|
1532
|
+
swKey: string,
|
|
1533
|
+
swName: string,
|
|
1534
|
+
swVersion?: string,
|
|
1535
|
+
swMarketVer?: string,
|
|
1536
|
+
swEdition?: string,
|
|
1537
|
+
swLang?: string,
|
|
1538
|
+
swBuild?: string,
|
|
1539
|
+
overrideId?: number,
|
|
1540
|
+
makeId?: number,
|
|
1541
|
+
parentId?: number,
|
|
1542
|
+
swType?: string,
|
|
1543
|
+
swCategory?: string,
|
|
1544
|
+
nistCpeTemplate?: string,
|
|
1545
|
+
releaseDate?: number,
|
|
1546
|
+
eolDate?: number,
|
|
1547
|
+
eosDate?: number,
|
|
1548
|
+
eosxDate?: number,
|
|
1549
|
+
lifecyleConfidence?: string,
|
|
1550
|
+
lastUpdateTime?: number,
|
|
1551
|
+
flagLatest?: boolean,
|
|
1552
|
+
flagWidespread?: boolean,
|
|
1553
|
+
flagDeprecated?: boolean,
|
|
1554
|
+
matchScore?: number,
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
export class CatalogMonitor extends jspb.Message {
|
|
1559
|
+
getId(): number;
|
|
1560
|
+
setId(value: number): CatalogMonitor;
|
|
1561
|
+
|
|
1562
|
+
serializeBinary(): Uint8Array;
|
|
1563
|
+
toObject(includeInstance?: boolean): CatalogMonitor.AsObject;
|
|
1564
|
+
static toObject(includeInstance: boolean, msg: CatalogMonitor): CatalogMonitor.AsObject;
|
|
1565
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1566
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1567
|
+
static serializeBinaryToWriter(message: CatalogMonitor, writer: jspb.BinaryWriter): void;
|
|
1568
|
+
static deserializeBinary(bytes: Uint8Array): CatalogMonitor;
|
|
1569
|
+
static deserializeBinaryFromReader(message: CatalogMonitor, reader: jspb.BinaryReader): CatalogMonitor;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
export namespace CatalogMonitor {
|
|
1573
|
+
export type AsObject = {
|
|
1574
|
+
id: number,
|
|
1575
|
+
}
|
|
1576
|
+
}
|