@lansweeper/discovery-sensor-proto 2.13.8 → 2.13.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.
@@ -0,0 +1,2204 @@
1
+ // package: com.lansweeper.discovery.sensor.unix.v1
2
+ // file: discovery_sections_unix.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
+ import * as google_protobuf_wrappers_pb from "google-protobuf/google/protobuf/wrappers_pb";
10
+
11
+ export class UnixDistributionInfo extends jspb.Message {
12
+
13
+ hasName(): boolean;
14
+ clearName(): void;
15
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
16
+ setName(value?: google_protobuf_wrappers_pb.StringValue): UnixDistributionInfo;
17
+
18
+ hasFamily(): boolean;
19
+ clearFamily(): void;
20
+ getFamily(): UnixDistributionFamily | undefined;
21
+ setFamily(value: UnixDistributionFamily): UnixDistributionInfo;
22
+
23
+ hasVersion(): boolean;
24
+ clearVersion(): void;
25
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
26
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): UnixDistributionInfo;
27
+
28
+ hasDistribution(): boolean;
29
+ clearDistribution(): void;
30
+ getDistribution(): UnixDistribution | undefined;
31
+ setDistribution(value: UnixDistribution): UnixDistributionInfo;
32
+
33
+ serializeBinary(): Uint8Array;
34
+ toObject(includeInstance?: boolean): UnixDistributionInfo.AsObject;
35
+ static toObject(includeInstance: boolean, msg: UnixDistributionInfo): UnixDistributionInfo.AsObject;
36
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
37
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
38
+ static serializeBinaryToWriter(message: UnixDistributionInfo, writer: jspb.BinaryWriter): void;
39
+ static deserializeBinary(bytes: Uint8Array): UnixDistributionInfo;
40
+ static deserializeBinaryFromReader(message: UnixDistributionInfo, reader: jspb.BinaryReader): UnixDistributionInfo;
41
+ }
42
+
43
+ export namespace UnixDistributionInfo {
44
+ export type AsObject = {
45
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
46
+ family?: UnixDistributionFamily,
47
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
48
+ distribution?: UnixDistribution,
49
+ }
50
+ }
51
+
52
+ export class Baseboard extends jspb.Message {
53
+
54
+ hasProductName(): boolean;
55
+ clearProductName(): void;
56
+ getProductName(): google_protobuf_wrappers_pb.StringValue | undefined;
57
+ setProductName(value?: google_protobuf_wrappers_pb.StringValue): Baseboard;
58
+
59
+ hasManufacturer(): boolean;
60
+ clearManufacturer(): void;
61
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
62
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): Baseboard;
63
+
64
+ hasVersion(): boolean;
65
+ clearVersion(): void;
66
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
67
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): Baseboard;
68
+
69
+ hasSerialNumber(): boolean;
70
+ clearSerialNumber(): void;
71
+ getSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
72
+ setSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): Baseboard;
73
+
74
+ hasLocationInChassis(): boolean;
75
+ clearLocationInChassis(): void;
76
+ getLocationInChassis(): google_protobuf_wrappers_pb.StringValue | undefined;
77
+ setLocationInChassis(value?: google_protobuf_wrappers_pb.StringValue): Baseboard;
78
+
79
+ hasType(): boolean;
80
+ clearType(): void;
81
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
82
+ setType(value?: google_protobuf_wrappers_pb.StringValue): Baseboard;
83
+
84
+ serializeBinary(): Uint8Array;
85
+ toObject(includeInstance?: boolean): Baseboard.AsObject;
86
+ static toObject(includeInstance: boolean, msg: Baseboard): Baseboard.AsObject;
87
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
88
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
89
+ static serializeBinaryToWriter(message: Baseboard, writer: jspb.BinaryWriter): void;
90
+ static deserializeBinary(bytes: Uint8Array): Baseboard;
91
+ static deserializeBinaryFromReader(message: Baseboard, reader: jspb.BinaryReader): Baseboard;
92
+ }
93
+
94
+ export namespace Baseboard {
95
+ export type AsObject = {
96
+ productName?: google_protobuf_wrappers_pb.StringValue.AsObject,
97
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
98
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
99
+ serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
100
+ locationInChassis?: google_protobuf_wrappers_pb.StringValue.AsObject,
101
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
102
+ }
103
+ }
104
+
105
+ export class BasicInfo extends jspb.Message {
106
+ getIsDmidecodeAvailable(): boolean;
107
+ setIsDmidecodeAvailable(value: boolean): BasicInfo;
108
+ getIsSudoAvailable(): boolean;
109
+ setIsSudoAvailable(value: boolean): BasicInfo;
110
+
111
+ hasDmiDecodePath(): boolean;
112
+ clearDmiDecodePath(): void;
113
+ getDmiDecodePath(): google_protobuf_wrappers_pb.StringValue | undefined;
114
+ setDmiDecodePath(value?: google_protobuf_wrappers_pb.StringValue): BasicInfo;
115
+ getIsHalAvailable(): boolean;
116
+ setIsHalAvailable(value: boolean): BasicInfo;
117
+
118
+ serializeBinary(): Uint8Array;
119
+ toObject(includeInstance?: boolean): BasicInfo.AsObject;
120
+ static toObject(includeInstance: boolean, msg: BasicInfo): BasicInfo.AsObject;
121
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
122
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
123
+ static serializeBinaryToWriter(message: BasicInfo, writer: jspb.BinaryWriter): void;
124
+ static deserializeBinary(bytes: Uint8Array): BasicInfo;
125
+ static deserializeBinaryFromReader(message: BasicInfo, reader: jspb.BinaryReader): BasicInfo;
126
+ }
127
+
128
+ export namespace BasicInfo {
129
+ export type AsObject = {
130
+ isDmidecodeAvailable: boolean,
131
+ isSudoAvailable: boolean,
132
+ dmiDecodePath?: google_protobuf_wrappers_pb.StringValue.AsObject,
133
+ isHalAvailable: boolean,
134
+ }
135
+ }
136
+
137
+ export class Bios extends jspb.Message {
138
+
139
+ hasVersion(): boolean;
140
+ clearVersion(): void;
141
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
142
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): Bios;
143
+
144
+ hasReleaseDate(): boolean;
145
+ clearReleaseDate(): void;
146
+ getReleaseDate(): google_protobuf_wrappers_pb.StringValue | undefined;
147
+ setReleaseDate(value?: google_protobuf_wrappers_pb.StringValue): Bios;
148
+
149
+ hasAddress(): boolean;
150
+ clearAddress(): void;
151
+ getAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
152
+ setAddress(value?: google_protobuf_wrappers_pb.StringValue): Bios;
153
+
154
+ hasVendor(): boolean;
155
+ clearVendor(): void;
156
+ getVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
157
+ setVendor(value?: google_protobuf_wrappers_pb.StringValue): Bios;
158
+
159
+ hasRuntimeSize(): boolean;
160
+ clearRuntimeSize(): void;
161
+ getRuntimeSize(): google_protobuf_wrappers_pb.StringValue | undefined;
162
+ setRuntimeSize(value?: google_protobuf_wrappers_pb.StringValue): Bios;
163
+
164
+ hasRomSize(): boolean;
165
+ clearRomSize(): void;
166
+ getRomSize(): google_protobuf_wrappers_pb.StringValue | undefined;
167
+ setRomSize(value?: google_protobuf_wrappers_pb.StringValue): Bios;
168
+
169
+ hasReleaseDateUtc(): boolean;
170
+ clearReleaseDateUtc(): void;
171
+ getReleaseDateUtc(): google_protobuf_timestamp_pb.Timestamp | undefined;
172
+ setReleaseDateUtc(value?: google_protobuf_timestamp_pb.Timestamp): Bios;
173
+
174
+ serializeBinary(): Uint8Array;
175
+ toObject(includeInstance?: boolean): Bios.AsObject;
176
+ static toObject(includeInstance: boolean, msg: Bios): Bios.AsObject;
177
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
178
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
179
+ static serializeBinaryToWriter(message: Bios, writer: jspb.BinaryWriter): void;
180
+ static deserializeBinary(bytes: Uint8Array): Bios;
181
+ static deserializeBinaryFromReader(message: Bios, reader: jspb.BinaryReader): Bios;
182
+ }
183
+
184
+ export namespace Bios {
185
+ export type AsObject = {
186
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
187
+ releaseDate?: google_protobuf_wrappers_pb.StringValue.AsObject,
188
+ address?: google_protobuf_wrappers_pb.StringValue.AsObject,
189
+ vendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
190
+ runtimeSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
191
+ romSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
192
+ releaseDateUtc?: google_protobuf_timestamp_pb.Timestamp.AsObject,
193
+ }
194
+ }
195
+
196
+ export class ComputerSystem extends jspb.Message {
197
+ getUptime(): number;
198
+ setUptime(value: number): ComputerSystem;
199
+
200
+ hasAssetName(): boolean;
201
+ clearAssetName(): void;
202
+ getAssetName(): google_protobuf_wrappers_pb.StringValue | undefined;
203
+ setAssetName(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
204
+
205
+ hasSshServer(): boolean;
206
+ clearSshServer(): void;
207
+ getSshServer(): google_protobuf_wrappers_pb.StringValue | undefined;
208
+ setSshServer(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
209
+
210
+ hasDnsName(): boolean;
211
+ clearDnsName(): void;
212
+ getDnsName(): google_protobuf_wrappers_pb.StringValue | undefined;
213
+ setDnsName(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
214
+
215
+ hasManufacturer(): boolean;
216
+ clearManufacturer(): void;
217
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
218
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
219
+
220
+ hasModel(): boolean;
221
+ clearModel(): void;
222
+ getModel(): google_protobuf_wrappers_pb.StringValue | undefined;
223
+ setModel(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
224
+
225
+ hasVersion(): boolean;
226
+ clearVersion(): void;
227
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
228
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
229
+
230
+ hasSerial(): boolean;
231
+ clearSerial(): void;
232
+ getSerial(): google_protobuf_wrappers_pb.StringValue | undefined;
233
+ setSerial(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
234
+
235
+ hasUuid(): boolean;
236
+ clearUuid(): void;
237
+ getUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
238
+ setUuid(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
239
+
240
+ hasWakeupTime(): boolean;
241
+ clearWakeupTime(): void;
242
+ getWakeupTime(): google_protobuf_wrappers_pb.StringValue | undefined;
243
+ setWakeupTime(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
244
+
245
+ hasBootStatus(): boolean;
246
+ clearBootStatus(): void;
247
+ getBootStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
248
+ setBootStatus(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
249
+
250
+ hasNetworkNodeHostname(): boolean;
251
+ clearNetworkNodeHostname(): void;
252
+ getNetworkNodeHostname(): google_protobuf_wrappers_pb.StringValue | undefined;
253
+ setNetworkNodeHostname(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
254
+
255
+ hasMachineHardwarename(): boolean;
256
+ clearMachineHardwarename(): void;
257
+ getMachineHardwarename(): google_protobuf_wrappers_pb.StringValue | undefined;
258
+ setMachineHardwarename(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
259
+
260
+ hasProcessorType(): boolean;
261
+ clearProcessorType(): void;
262
+ getProcessorType(): google_protobuf_wrappers_pb.StringValue | undefined;
263
+ setProcessorType(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
264
+
265
+ hasHardwarePlatform(): boolean;
266
+ clearHardwarePlatform(): void;
267
+ getHardwarePlatform(): google_protobuf_wrappers_pb.StringValue | undefined;
268
+ setHardwarePlatform(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
269
+
270
+ hasSystemSku(): boolean;
271
+ clearSystemSku(): void;
272
+ getSystemSku(): google_protobuf_wrappers_pb.StringValue | undefined;
273
+ setSystemSku(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
274
+
275
+ hasTotalMemory(): boolean;
276
+ clearTotalMemory(): void;
277
+ getTotalMemory(): google_protobuf_wrappers_pb.StringValue | undefined;
278
+ setTotalMemory(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
279
+
280
+ hasFirmware(): boolean;
281
+ clearFirmware(): void;
282
+ getFirmware(): google_protobuf_wrappers_pb.StringValue | undefined;
283
+ setFirmware(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
284
+
285
+ serializeBinary(): Uint8Array;
286
+ toObject(includeInstance?: boolean): ComputerSystem.AsObject;
287
+ static toObject(includeInstance: boolean, msg: ComputerSystem): ComputerSystem.AsObject;
288
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
289
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
290
+ static serializeBinaryToWriter(message: ComputerSystem, writer: jspb.BinaryWriter): void;
291
+ static deserializeBinary(bytes: Uint8Array): ComputerSystem;
292
+ static deserializeBinaryFromReader(message: ComputerSystem, reader: jspb.BinaryReader): ComputerSystem;
293
+ }
294
+
295
+ export namespace ComputerSystem {
296
+ export type AsObject = {
297
+ uptime: number,
298
+ assetName?: google_protobuf_wrappers_pb.StringValue.AsObject,
299
+ sshServer?: google_protobuf_wrappers_pb.StringValue.AsObject,
300
+ dnsName?: google_protobuf_wrappers_pb.StringValue.AsObject,
301
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
302
+ model?: google_protobuf_wrappers_pb.StringValue.AsObject,
303
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
304
+ serial?: google_protobuf_wrappers_pb.StringValue.AsObject,
305
+ uuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
306
+ wakeupTime?: google_protobuf_wrappers_pb.StringValue.AsObject,
307
+ bootStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
308
+ networkNodeHostname?: google_protobuf_wrappers_pb.StringValue.AsObject,
309
+ machineHardwarename?: google_protobuf_wrappers_pb.StringValue.AsObject,
310
+ processorType?: google_protobuf_wrappers_pb.StringValue.AsObject,
311
+ hardwarePlatform?: google_protobuf_wrappers_pb.StringValue.AsObject,
312
+ systemSku?: google_protobuf_wrappers_pb.StringValue.AsObject,
313
+ totalMemory?: google_protobuf_wrappers_pb.StringValue.AsObject,
314
+ firmware?: google_protobuf_wrappers_pb.StringValue.AsObject,
315
+ }
316
+ }
317
+
318
+ export class FileInfos extends jspb.Message {
319
+ clearEntriesList(): void;
320
+ getEntriesList(): Array<FileInfoEntry>;
321
+ setEntriesList(value: Array<FileInfoEntry>): FileInfos;
322
+ addEntries(value?: FileInfoEntry, index?: number): FileInfoEntry;
323
+
324
+ serializeBinary(): Uint8Array;
325
+ toObject(includeInstance?: boolean): FileInfos.AsObject;
326
+ static toObject(includeInstance: boolean, msg: FileInfos): FileInfos.AsObject;
327
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
328
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
329
+ static serializeBinaryToWriter(message: FileInfos, writer: jspb.BinaryWriter): void;
330
+ static deserializeBinary(bytes: Uint8Array): FileInfos;
331
+ static deserializeBinaryFromReader(message: FileInfos, reader: jspb.BinaryReader): FileInfos;
332
+ }
333
+
334
+ export namespace FileInfos {
335
+ export type AsObject = {
336
+ entriesList: Array<FileInfoEntry.AsObject>,
337
+ }
338
+ }
339
+
340
+ export class FileInfoEntry extends jspb.Message {
341
+
342
+ hasOwner(): boolean;
343
+ clearOwner(): void;
344
+ getOwner(): google_protobuf_wrappers_pb.StringValue | undefined;
345
+ setOwner(value?: google_protobuf_wrappers_pb.StringValue): FileInfoEntry;
346
+
347
+ hasFilePath(): boolean;
348
+ clearFilePath(): void;
349
+ getFilePath(): google_protobuf_wrappers_pb.StringValue | undefined;
350
+ setFilePath(value?: google_protobuf_wrappers_pb.StringValue): FileInfoEntry;
351
+
352
+ hasFound(): boolean;
353
+ clearFound(): void;
354
+ getFound(): google_protobuf_wrappers_pb.BoolValue | undefined;
355
+ setFound(value?: google_protobuf_wrappers_pb.BoolValue): FileInfoEntry;
356
+
357
+ hasType(): boolean;
358
+ clearType(): void;
359
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
360
+ setType(value?: google_protobuf_wrappers_pb.StringValue): FileInfoEntry;
361
+
362
+ hasLastModified(): boolean;
363
+ clearLastModified(): void;
364
+ getLastModified(): google_protobuf_timestamp_pb.Timestamp | undefined;
365
+ setLastModified(value?: google_protobuf_timestamp_pb.Timestamp): FileInfoEntry;
366
+
367
+ hasLastAccessed(): boolean;
368
+ clearLastAccessed(): void;
369
+ getLastAccessed(): google_protobuf_timestamp_pb.Timestamp | undefined;
370
+ setLastAccessed(value?: google_protobuf_timestamp_pb.Timestamp): FileInfoEntry;
371
+
372
+ hasSize(): boolean;
373
+ clearSize(): void;
374
+ getSize(): google_protobuf_wrappers_pb.Int32Value | undefined;
375
+ setSize(value?: google_protobuf_wrappers_pb.Int32Value): FileInfoEntry;
376
+
377
+ serializeBinary(): Uint8Array;
378
+ toObject(includeInstance?: boolean): FileInfoEntry.AsObject;
379
+ static toObject(includeInstance: boolean, msg: FileInfoEntry): FileInfoEntry.AsObject;
380
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
381
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
382
+ static serializeBinaryToWriter(message: FileInfoEntry, writer: jspb.BinaryWriter): void;
383
+ static deserializeBinary(bytes: Uint8Array): FileInfoEntry;
384
+ static deserializeBinaryFromReader(message: FileInfoEntry, reader: jspb.BinaryReader): FileInfoEntry;
385
+ }
386
+
387
+ export namespace FileInfoEntry {
388
+ export type AsObject = {
389
+ owner?: google_protobuf_wrappers_pb.StringValue.AsObject,
390
+ filePath?: google_protobuf_wrappers_pb.StringValue.AsObject,
391
+ found?: google_protobuf_wrappers_pb.BoolValue.AsObject,
392
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
393
+ lastModified?: google_protobuf_timestamp_pb.Timestamp.AsObject,
394
+ lastAccessed?: google_protobuf_timestamp_pb.Timestamp.AsObject,
395
+ size?: google_protobuf_wrappers_pb.Int32Value.AsObject,
396
+ }
397
+ }
398
+
399
+ export class Groups extends jspb.Message {
400
+ clearEntriesList(): void;
401
+ getEntriesList(): Array<GroupEntry>;
402
+ setEntriesList(value: Array<GroupEntry>): Groups;
403
+ addEntries(value?: GroupEntry, index?: number): GroupEntry;
404
+
405
+ serializeBinary(): Uint8Array;
406
+ toObject(includeInstance?: boolean): Groups.AsObject;
407
+ static toObject(includeInstance: boolean, msg: Groups): Groups.AsObject;
408
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
409
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
410
+ static serializeBinaryToWriter(message: Groups, writer: jspb.BinaryWriter): void;
411
+ static deserializeBinary(bytes: Uint8Array): Groups;
412
+ static deserializeBinaryFromReader(message: Groups, reader: jspb.BinaryReader): Groups;
413
+ }
414
+
415
+ export namespace Groups {
416
+ export type AsObject = {
417
+ entriesList: Array<GroupEntry.AsObject>,
418
+ }
419
+ }
420
+
421
+ export class GroupEntry extends jspb.Message {
422
+ getGroupId(): number;
423
+ setGroupId(value: number): GroupEntry;
424
+
425
+ hasName(): boolean;
426
+ clearName(): void;
427
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
428
+ setName(value?: google_protobuf_wrappers_pb.StringValue): GroupEntry;
429
+
430
+ hasType(): boolean;
431
+ clearType(): void;
432
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
433
+ setType(value?: google_protobuf_wrappers_pb.StringValue): GroupEntry;
434
+ clearUserNamesList(): void;
435
+ getUserNamesList(): Array<string>;
436
+ setUserNamesList(value: Array<string>): GroupEntry;
437
+ addUserNames(value: string, index?: number): string;
438
+
439
+ serializeBinary(): Uint8Array;
440
+ toObject(includeInstance?: boolean): GroupEntry.AsObject;
441
+ static toObject(includeInstance: boolean, msg: GroupEntry): GroupEntry.AsObject;
442
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
443
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
444
+ static serializeBinaryToWriter(message: GroupEntry, writer: jspb.BinaryWriter): void;
445
+ static deserializeBinary(bytes: Uint8Array): GroupEntry;
446
+ static deserializeBinaryFromReader(message: GroupEntry, reader: jspb.BinaryReader): GroupEntry;
447
+ }
448
+
449
+ export namespace GroupEntry {
450
+ export type AsObject = {
451
+ groupId: number,
452
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
453
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
454
+ userNamesList: Array<string>,
455
+ }
456
+ }
457
+
458
+ export class HardDisks extends jspb.Message {
459
+ clearEntriesList(): void;
460
+ getEntriesList(): Array<HardDiskEntry>;
461
+ setEntriesList(value: Array<HardDiskEntry>): HardDisks;
462
+ addEntries(value?: HardDiskEntry, index?: number): HardDiskEntry;
463
+
464
+ serializeBinary(): Uint8Array;
465
+ toObject(includeInstance?: boolean): HardDisks.AsObject;
466
+ static toObject(includeInstance: boolean, msg: HardDisks): HardDisks.AsObject;
467
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
468
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
469
+ static serializeBinaryToWriter(message: HardDisks, writer: jspb.BinaryWriter): void;
470
+ static deserializeBinary(bytes: Uint8Array): HardDisks;
471
+ static deserializeBinaryFromReader(message: HardDisks, reader: jspb.BinaryReader): HardDisks;
472
+ }
473
+
474
+ export namespace HardDisks {
475
+ export type AsObject = {
476
+ entriesList: Array<HardDiskEntry.AsObject>,
477
+ }
478
+ }
479
+
480
+ export class HardDiskEntry extends jspb.Message {
481
+
482
+ hasFilesystem(): boolean;
483
+ clearFilesystem(): void;
484
+ getFilesystem(): google_protobuf_wrappers_pb.StringValue | undefined;
485
+ setFilesystem(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
486
+
487
+ hasType(): boolean;
488
+ clearType(): void;
489
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
490
+ setType(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
491
+
492
+ hasSize(): boolean;
493
+ clearSize(): void;
494
+ getSize(): google_protobuf_wrappers_pb.StringValue | undefined;
495
+ setSize(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
496
+
497
+ hasUsed(): boolean;
498
+ clearUsed(): void;
499
+ getUsed(): google_protobuf_wrappers_pb.StringValue | undefined;
500
+ setUsed(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
501
+
502
+ hasAvailable(): boolean;
503
+ clearAvailable(): void;
504
+ getAvailable(): google_protobuf_wrappers_pb.StringValue | undefined;
505
+ setAvailable(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
506
+
507
+ hasPercentage(): boolean;
508
+ clearPercentage(): void;
509
+ getPercentage(): google_protobuf_wrappers_pb.StringValue | undefined;
510
+ setPercentage(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
511
+
512
+ hasMountedOn(): boolean;
513
+ clearMountedOn(): void;
514
+ getMountedOn(): google_protobuf_wrappers_pb.StringValue | undefined;
515
+ setMountedOn(value?: google_protobuf_wrappers_pb.StringValue): HardDiskEntry;
516
+
517
+ serializeBinary(): Uint8Array;
518
+ toObject(includeInstance?: boolean): HardDiskEntry.AsObject;
519
+ static toObject(includeInstance: boolean, msg: HardDiskEntry): HardDiskEntry.AsObject;
520
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
521
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
522
+ static serializeBinaryToWriter(message: HardDiskEntry, writer: jspb.BinaryWriter): void;
523
+ static deserializeBinary(bytes: Uint8Array): HardDiskEntry;
524
+ static deserializeBinaryFromReader(message: HardDiskEntry, reader: jspb.BinaryReader): HardDiskEntry;
525
+ }
526
+
527
+ export namespace HardDiskEntry {
528
+ export type AsObject = {
529
+ filesystem?: google_protobuf_wrappers_pb.StringValue.AsObject,
530
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
531
+ size?: google_protobuf_wrappers_pb.StringValue.AsObject,
532
+ used?: google_protobuf_wrappers_pb.StringValue.AsObject,
533
+ available?: google_protobuf_wrappers_pb.StringValue.AsObject,
534
+ percentage?: google_protobuf_wrappers_pb.StringValue.AsObject,
535
+ mountedOn?: google_protobuf_wrappers_pb.StringValue.AsObject,
536
+ }
537
+ }
538
+
539
+ export class MemoryController extends jspb.Message {
540
+
541
+ hasSupportedInterleave(): boolean;
542
+ clearSupportedInterleave(): void;
543
+ getSupportedInterleave(): google_protobuf_wrappers_pb.StringValue | undefined;
544
+ setSupportedInterleave(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
545
+
546
+ hasCurrentInterleave(): boolean;
547
+ clearCurrentInterleave(): void;
548
+ getCurrentInterleave(): google_protobuf_wrappers_pb.StringValue | undefined;
549
+ setCurrentInterleave(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
550
+
551
+ hasMaxMemoryModuleSize(): boolean;
552
+ clearMaxMemoryModuleSize(): void;
553
+ getMaxMemoryModuleSize(): google_protobuf_wrappers_pb.StringValue | undefined;
554
+ setMaxMemoryModuleSize(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
555
+
556
+ hasMaxTotalMemorySize(): boolean;
557
+ clearMaxTotalMemorySize(): void;
558
+ getMaxTotalMemorySize(): google_protobuf_wrappers_pb.StringValue | undefined;
559
+ setMaxTotalMemorySize(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
560
+
561
+ hasSupportedSpeeds(): boolean;
562
+ clearSupportedSpeeds(): void;
563
+ getSupportedSpeeds(): google_protobuf_wrappers_pb.StringValue | undefined;
564
+ setSupportedSpeeds(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
565
+
566
+ hasSupportedMemTypes(): boolean;
567
+ clearSupportedMemTypes(): void;
568
+ getSupportedMemTypes(): google_protobuf_wrappers_pb.StringValue | undefined;
569
+ setSupportedMemTypes(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
570
+
571
+ hasMemoryModuleVoltage(): boolean;
572
+ clearMemoryModuleVoltage(): void;
573
+ getMemoryModuleVoltage(): google_protobuf_wrappers_pb.StringValue | undefined;
574
+ setMemoryModuleVoltage(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
575
+
576
+ hasNumberOfSlots(): boolean;
577
+ clearNumberOfSlots(): void;
578
+ getNumberOfSlots(): google_protobuf_wrappers_pb.StringValue | undefined;
579
+ setNumberOfSlots(value?: google_protobuf_wrappers_pb.StringValue): MemoryController;
580
+
581
+ serializeBinary(): Uint8Array;
582
+ toObject(includeInstance?: boolean): MemoryController.AsObject;
583
+ static toObject(includeInstance: boolean, msg: MemoryController): MemoryController.AsObject;
584
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
585
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
586
+ static serializeBinaryToWriter(message: MemoryController, writer: jspb.BinaryWriter): void;
587
+ static deserializeBinary(bytes: Uint8Array): MemoryController;
588
+ static deserializeBinaryFromReader(message: MemoryController, reader: jspb.BinaryReader): MemoryController;
589
+ }
590
+
591
+ export namespace MemoryController {
592
+ export type AsObject = {
593
+ supportedInterleave?: google_protobuf_wrappers_pb.StringValue.AsObject,
594
+ currentInterleave?: google_protobuf_wrappers_pb.StringValue.AsObject,
595
+ maxMemoryModuleSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
596
+ maxTotalMemorySize?: google_protobuf_wrappers_pb.StringValue.AsObject,
597
+ supportedSpeeds?: google_protobuf_wrappers_pb.StringValue.AsObject,
598
+ supportedMemTypes?: google_protobuf_wrappers_pb.StringValue.AsObject,
599
+ memoryModuleVoltage?: google_protobuf_wrappers_pb.StringValue.AsObject,
600
+ numberOfSlots?: google_protobuf_wrappers_pb.StringValue.AsObject,
601
+ }
602
+ }
603
+
604
+ export class MemoryDevices extends jspb.Message {
605
+ clearEntriesList(): void;
606
+ getEntriesList(): Array<MemoryDeviceEntry>;
607
+ setEntriesList(value: Array<MemoryDeviceEntry>): MemoryDevices;
608
+ addEntries(value?: MemoryDeviceEntry, index?: number): MemoryDeviceEntry;
609
+
610
+ serializeBinary(): Uint8Array;
611
+ toObject(includeInstance?: boolean): MemoryDevices.AsObject;
612
+ static toObject(includeInstance: boolean, msg: MemoryDevices): MemoryDevices.AsObject;
613
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
614
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
615
+ static serializeBinaryToWriter(message: MemoryDevices, writer: jspb.BinaryWriter): void;
616
+ static deserializeBinary(bytes: Uint8Array): MemoryDevices;
617
+ static deserializeBinaryFromReader(message: MemoryDevices, reader: jspb.BinaryReader): MemoryDevices;
618
+ }
619
+
620
+ export namespace MemoryDevices {
621
+ export type AsObject = {
622
+ entriesList: Array<MemoryDeviceEntry.AsObject>,
623
+ }
624
+ }
625
+
626
+ export class MemoryDeviceEntry extends jspb.Message {
627
+
628
+ hasTotalWidth(): boolean;
629
+ clearTotalWidth(): void;
630
+ getTotalWidth(): google_protobuf_wrappers_pb.StringValue | undefined;
631
+ setTotalWidth(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
632
+
633
+ hasDataWidth(): boolean;
634
+ clearDataWidth(): void;
635
+ getDataWidth(): google_protobuf_wrappers_pb.StringValue | undefined;
636
+ setDataWidth(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
637
+
638
+ hasSize(): boolean;
639
+ clearSize(): void;
640
+ getSize(): google_protobuf_wrappers_pb.StringValue | undefined;
641
+ setSize(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
642
+
643
+ hasFormFactor(): boolean;
644
+ clearFormFactor(): void;
645
+ getFormFactor(): google_protobuf_wrappers_pb.StringValue | undefined;
646
+ setFormFactor(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
647
+
648
+ hasSet(): boolean;
649
+ clearSet(): void;
650
+ getSet(): google_protobuf_wrappers_pb.StringValue | undefined;
651
+ setSet(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
652
+
653
+ hasLocator(): boolean;
654
+ clearLocator(): void;
655
+ getLocator(): google_protobuf_wrappers_pb.StringValue | undefined;
656
+ setLocator(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
657
+
658
+ hasBankLocator(): boolean;
659
+ clearBankLocator(): void;
660
+ getBankLocator(): google_protobuf_wrappers_pb.StringValue | undefined;
661
+ setBankLocator(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
662
+
663
+ hasType(): boolean;
664
+ clearType(): void;
665
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
666
+ setType(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
667
+
668
+ hasTypeDetail(): boolean;
669
+ clearTypeDetail(): void;
670
+ getTypeDetail(): google_protobuf_wrappers_pb.StringValue | undefined;
671
+ setTypeDetail(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
672
+
673
+ hasSpeed(): boolean;
674
+ clearSpeed(): void;
675
+ getSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
676
+ setSpeed(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
677
+
678
+ hasManufacturer(): boolean;
679
+ clearManufacturer(): void;
680
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
681
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
682
+
683
+ hasSerialNumber(): boolean;
684
+ clearSerialNumber(): void;
685
+ getSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
686
+ setSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): MemoryDeviceEntry;
687
+
688
+ serializeBinary(): Uint8Array;
689
+ toObject(includeInstance?: boolean): MemoryDeviceEntry.AsObject;
690
+ static toObject(includeInstance: boolean, msg: MemoryDeviceEntry): MemoryDeviceEntry.AsObject;
691
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
692
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
693
+ static serializeBinaryToWriter(message: MemoryDeviceEntry, writer: jspb.BinaryWriter): void;
694
+ static deserializeBinary(bytes: Uint8Array): MemoryDeviceEntry;
695
+ static deserializeBinaryFromReader(message: MemoryDeviceEntry, reader: jspb.BinaryReader): MemoryDeviceEntry;
696
+ }
697
+
698
+ export namespace MemoryDeviceEntry {
699
+ export type AsObject = {
700
+ totalWidth?: google_protobuf_wrappers_pb.StringValue.AsObject,
701
+ dataWidth?: google_protobuf_wrappers_pb.StringValue.AsObject,
702
+ size?: google_protobuf_wrappers_pb.StringValue.AsObject,
703
+ formFactor?: google_protobuf_wrappers_pb.StringValue.AsObject,
704
+ set?: google_protobuf_wrappers_pb.StringValue.AsObject,
705
+ locator?: google_protobuf_wrappers_pb.StringValue.AsObject,
706
+ bankLocator?: google_protobuf_wrappers_pb.StringValue.AsObject,
707
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
708
+ typeDetail?: google_protobuf_wrappers_pb.StringValue.AsObject,
709
+ speed?: google_protobuf_wrappers_pb.StringValue.AsObject,
710
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
711
+ serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
712
+ }
713
+ }
714
+
715
+ export class MemoryModules extends jspb.Message {
716
+ clearEntriesList(): void;
717
+ getEntriesList(): Array<MemoryModuleEntry>;
718
+ setEntriesList(value: Array<MemoryModuleEntry>): MemoryModules;
719
+ addEntries(value?: MemoryModuleEntry, index?: number): MemoryModuleEntry;
720
+
721
+ serializeBinary(): Uint8Array;
722
+ toObject(includeInstance?: boolean): MemoryModules.AsObject;
723
+ static toObject(includeInstance: boolean, msg: MemoryModules): MemoryModules.AsObject;
724
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
725
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
726
+ static serializeBinaryToWriter(message: MemoryModules, writer: jspb.BinaryWriter): void;
727
+ static deserializeBinary(bytes: Uint8Array): MemoryModules;
728
+ static deserializeBinaryFromReader(message: MemoryModules, reader: jspb.BinaryReader): MemoryModules;
729
+ }
730
+
731
+ export namespace MemoryModules {
732
+ export type AsObject = {
733
+ entriesList: Array<MemoryModuleEntry.AsObject>,
734
+ }
735
+ }
736
+
737
+ export class MemoryModuleEntry extends jspb.Message {
738
+
739
+ hasSocket(): boolean;
740
+ clearSocket(): void;
741
+ getSocket(): google_protobuf_wrappers_pb.StringValue | undefined;
742
+ setSocket(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
743
+
744
+ hasBankConnections(): boolean;
745
+ clearBankConnections(): void;
746
+ getBankConnections(): google_protobuf_wrappers_pb.StringValue | undefined;
747
+ setBankConnections(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
748
+
749
+ hasCurrentSpeed(): boolean;
750
+ clearCurrentSpeed(): void;
751
+ getCurrentSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
752
+ setCurrentSpeed(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
753
+
754
+ hasType(): boolean;
755
+ clearType(): void;
756
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
757
+ setType(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
758
+
759
+ hasInstalledSize(): boolean;
760
+ clearInstalledSize(): void;
761
+ getInstalledSize(): google_protobuf_wrappers_pb.StringValue | undefined;
762
+ setInstalledSize(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
763
+
764
+ hasEnabledSize(): boolean;
765
+ clearEnabledSize(): void;
766
+ getEnabledSize(): google_protobuf_wrappers_pb.StringValue | undefined;
767
+ setEnabledSize(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
768
+
769
+ hasErrorStatus(): boolean;
770
+ clearErrorStatus(): void;
771
+ getErrorStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
772
+ setErrorStatus(value?: google_protobuf_wrappers_pb.StringValue): MemoryModuleEntry;
773
+
774
+ serializeBinary(): Uint8Array;
775
+ toObject(includeInstance?: boolean): MemoryModuleEntry.AsObject;
776
+ static toObject(includeInstance: boolean, msg: MemoryModuleEntry): MemoryModuleEntry.AsObject;
777
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
778
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
779
+ static serializeBinaryToWriter(message: MemoryModuleEntry, writer: jspb.BinaryWriter): void;
780
+ static deserializeBinary(bytes: Uint8Array): MemoryModuleEntry;
781
+ static deserializeBinaryFromReader(message: MemoryModuleEntry, reader: jspb.BinaryReader): MemoryModuleEntry;
782
+ }
783
+
784
+ export namespace MemoryModuleEntry {
785
+ export type AsObject = {
786
+ socket?: google_protobuf_wrappers_pb.StringValue.AsObject,
787
+ bankConnections?: google_protobuf_wrappers_pb.StringValue.AsObject,
788
+ currentSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
789
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
790
+ installedSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
791
+ enabledSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
792
+ errorStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
793
+ }
794
+ }
795
+
796
+ export class Network extends jspb.Message {
797
+ clearNetworkAdaptersList(): void;
798
+ getNetworkAdaptersList(): Array<NetworkAdapterEntry>;
799
+ setNetworkAdaptersList(value: Array<NetworkAdapterEntry>): Network;
800
+ addNetworkAdapters(value?: NetworkAdapterEntry, index?: number): NetworkAdapterEntry;
801
+ clearMacAddressesList(): void;
802
+ getMacAddressesList(): Array<string>;
803
+ setMacAddressesList(value: Array<string>): Network;
804
+ addMacAddresses(value: string, index?: number): string;
805
+
806
+ serializeBinary(): Uint8Array;
807
+ toObject(includeInstance?: boolean): Network.AsObject;
808
+ static toObject(includeInstance: boolean, msg: Network): Network.AsObject;
809
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
810
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
811
+ static serializeBinaryToWriter(message: Network, writer: jspb.BinaryWriter): void;
812
+ static deserializeBinary(bytes: Uint8Array): Network;
813
+ static deserializeBinaryFromReader(message: Network, reader: jspb.BinaryReader): Network;
814
+ }
815
+
816
+ export namespace Network {
817
+ export type AsObject = {
818
+ networkAdaptersList: Array<NetworkAdapterEntry.AsObject>,
819
+ macAddressesList: Array<string>,
820
+ }
821
+ }
822
+
823
+ export class NetworkAdapterEntry extends jspb.Message {
824
+
825
+ hasName(): boolean;
826
+ clearName(): void;
827
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
828
+ setName(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
829
+
830
+ hasLinkEncap(): boolean;
831
+ clearLinkEncap(): void;
832
+ getLinkEncap(): google_protobuf_wrappers_pb.StringValue | undefined;
833
+ setLinkEncap(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
834
+
835
+ hasMac(): boolean;
836
+ clearMac(): void;
837
+ getMac(): google_protobuf_wrappers_pb.StringValue | undefined;
838
+ setMac(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
839
+
840
+ hasIp4(): boolean;
841
+ clearIp4(): void;
842
+ getIp4(): google_protobuf_wrappers_pb.StringValue | undefined;
843
+ setIp4(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
844
+
845
+ hasBroadcast(): boolean;
846
+ clearBroadcast(): void;
847
+ getBroadcast(): google_protobuf_wrappers_pb.StringValue | undefined;
848
+ setBroadcast(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
849
+
850
+ hasMask(): boolean;
851
+ clearMask(): void;
852
+ getMask(): google_protobuf_wrappers_pb.StringValue | undefined;
853
+ setMask(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
854
+
855
+ hasIp6(): boolean;
856
+ clearIp6(): void;
857
+ getIp6(): google_protobuf_wrappers_pb.StringValue | undefined;
858
+ setIp6(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
859
+
860
+ hasScope(): boolean;
861
+ clearScope(): void;
862
+ getScope(): google_protobuf_wrappers_pb.StringValue | undefined;
863
+ setScope(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
864
+
865
+ hasGateway(): boolean;
866
+ clearGateway(): void;
867
+ getGateway(): google_protobuf_wrappers_pb.StringValue | undefined;
868
+ setGateway(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
869
+
870
+ hasState(): boolean;
871
+ clearState(): void;
872
+ getState(): google_protobuf_wrappers_pb.StringValue | undefined;
873
+ setState(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
874
+
875
+ hasQDisc(): boolean;
876
+ clearQDisc(): void;
877
+ getQDisc(): google_protobuf_wrappers_pb.StringValue | undefined;
878
+ setQDisc(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
879
+
880
+ hasMaster(): boolean;
881
+ clearMaster(): void;
882
+ getMaster(): google_protobuf_wrappers_pb.StringValue | undefined;
883
+ setMaster(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
884
+
885
+ hasMtu(): boolean;
886
+ clearMtu(): void;
887
+ getMtu(): google_protobuf_wrappers_pb.Int32Value | undefined;
888
+ setMtu(value?: google_protobuf_wrappers_pb.Int32Value): NetworkAdapterEntry;
889
+
890
+ hasGroup(): boolean;
891
+ clearGroup(): void;
892
+ getGroup(): google_protobuf_wrappers_pb.StringValue | undefined;
893
+ setGroup(value?: google_protobuf_wrappers_pb.StringValue): NetworkAdapterEntry;
894
+
895
+ serializeBinary(): Uint8Array;
896
+ toObject(includeInstance?: boolean): NetworkAdapterEntry.AsObject;
897
+ static toObject(includeInstance: boolean, msg: NetworkAdapterEntry): NetworkAdapterEntry.AsObject;
898
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
899
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
900
+ static serializeBinaryToWriter(message: NetworkAdapterEntry, writer: jspb.BinaryWriter): void;
901
+ static deserializeBinary(bytes: Uint8Array): NetworkAdapterEntry;
902
+ static deserializeBinaryFromReader(message: NetworkAdapterEntry, reader: jspb.BinaryReader): NetworkAdapterEntry;
903
+ }
904
+
905
+ export namespace NetworkAdapterEntry {
906
+ export type AsObject = {
907
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
908
+ linkEncap?: google_protobuf_wrappers_pb.StringValue.AsObject,
909
+ mac?: google_protobuf_wrappers_pb.StringValue.AsObject,
910
+ ip4?: google_protobuf_wrappers_pb.StringValue.AsObject,
911
+ broadcast?: google_protobuf_wrappers_pb.StringValue.AsObject,
912
+ mask?: google_protobuf_wrappers_pb.StringValue.AsObject,
913
+ ip6?: google_protobuf_wrappers_pb.StringValue.AsObject,
914
+ scope?: google_protobuf_wrappers_pb.StringValue.AsObject,
915
+ gateway?: google_protobuf_wrappers_pb.StringValue.AsObject,
916
+ state?: google_protobuf_wrappers_pb.StringValue.AsObject,
917
+ qDisc?: google_protobuf_wrappers_pb.StringValue.AsObject,
918
+ master?: google_protobuf_wrappers_pb.StringValue.AsObject,
919
+ mtu?: google_protobuf_wrappers_pb.Int32Value.AsObject,
920
+ group?: google_protobuf_wrappers_pb.StringValue.AsObject,
921
+ }
922
+ }
923
+
924
+ export class OpticalDrives extends jspb.Message {
925
+ clearEntriesList(): void;
926
+ getEntriesList(): Array<OpticalDriveEntry>;
927
+ setEntriesList(value: Array<OpticalDriveEntry>): OpticalDrives;
928
+ addEntries(value?: OpticalDriveEntry, index?: number): OpticalDriveEntry;
929
+
930
+ serializeBinary(): Uint8Array;
931
+ toObject(includeInstance?: boolean): OpticalDrives.AsObject;
932
+ static toObject(includeInstance: boolean, msg: OpticalDrives): OpticalDrives.AsObject;
933
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
934
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
935
+ static serializeBinaryToWriter(message: OpticalDrives, writer: jspb.BinaryWriter): void;
936
+ static deserializeBinary(bytes: Uint8Array): OpticalDrives;
937
+ static deserializeBinaryFromReader(message: OpticalDrives, reader: jspb.BinaryReader): OpticalDrives;
938
+ }
939
+
940
+ export namespace OpticalDrives {
941
+ export type AsObject = {
942
+ entriesList: Array<OpticalDriveEntry.AsObject>,
943
+ }
944
+ }
945
+
946
+ export class OpticalDriveEntry extends jspb.Message {
947
+
948
+ hasVendor(): boolean;
949
+ clearVendor(): void;
950
+ getVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
951
+ setVendor(value?: google_protobuf_wrappers_pb.StringValue): OpticalDriveEntry;
952
+
953
+ hasPath(): boolean;
954
+ clearPath(): void;
955
+ getPath(): google_protobuf_wrappers_pb.StringValue | undefined;
956
+ setPath(value?: google_protobuf_wrappers_pb.StringValue): OpticalDriveEntry;
957
+
958
+ hasProduct(): boolean;
959
+ clearProduct(): void;
960
+ getProduct(): google_protobuf_wrappers_pb.StringValue | undefined;
961
+ setProduct(value?: google_protobuf_wrappers_pb.StringValue): OpticalDriveEntry;
962
+
963
+ hasBus(): boolean;
964
+ clearBus(): void;
965
+ getBus(): google_protobuf_wrappers_pb.StringValue | undefined;
966
+ setBus(value?: google_protobuf_wrappers_pb.StringValue): OpticalDriveEntry;
967
+
968
+ hasMount(): boolean;
969
+ clearMount(): void;
970
+ getMount(): google_protobuf_wrappers_pb.StringValue | undefined;
971
+ setMount(value?: google_protobuf_wrappers_pb.StringValue): OpticalDriveEntry;
972
+
973
+ serializeBinary(): Uint8Array;
974
+ toObject(includeInstance?: boolean): OpticalDriveEntry.AsObject;
975
+ static toObject(includeInstance: boolean, msg: OpticalDriveEntry): OpticalDriveEntry.AsObject;
976
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
977
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
978
+ static serializeBinaryToWriter(message: OpticalDriveEntry, writer: jspb.BinaryWriter): void;
979
+ static deserializeBinary(bytes: Uint8Array): OpticalDriveEntry;
980
+ static deserializeBinaryFromReader(message: OpticalDriveEntry, reader: jspb.BinaryReader): OpticalDriveEntry;
981
+ }
982
+
983
+ export namespace OpticalDriveEntry {
984
+ export type AsObject = {
985
+ vendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
986
+ path?: google_protobuf_wrappers_pb.StringValue.AsObject,
987
+ product?: google_protobuf_wrappers_pb.StringValue.AsObject,
988
+ bus?: google_protobuf_wrappers_pb.StringValue.AsObject,
989
+ mount?: google_protobuf_wrappers_pb.StringValue.AsObject,
990
+ }
991
+ }
992
+
993
+ export class OperatingSystem extends jspb.Message {
994
+
995
+ hasKernelName(): boolean;
996
+ clearKernelName(): void;
997
+ getKernelName(): google_protobuf_wrappers_pb.StringValue | undefined;
998
+ setKernelName(value?: google_protobuf_wrappers_pb.StringValue): OperatingSystem;
999
+
1000
+ hasKernelRelease(): boolean;
1001
+ clearKernelRelease(): void;
1002
+ getKernelRelease(): google_protobuf_wrappers_pb.StringValue | undefined;
1003
+ setKernelRelease(value?: google_protobuf_wrappers_pb.StringValue): OperatingSystem;
1004
+
1005
+ hasKernelVersion(): boolean;
1006
+ clearKernelVersion(): void;
1007
+ getKernelVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
1008
+ setKernelVersion(value?: google_protobuf_wrappers_pb.StringValue): OperatingSystem;
1009
+
1010
+ hasDistribution(): boolean;
1011
+ clearDistribution(): void;
1012
+ getDistribution(): google_protobuf_wrappers_pb.StringValue | undefined;
1013
+ setDistribution(value?: google_protobuf_wrappers_pb.StringValue): OperatingSystem;
1014
+
1015
+ hasOsRelease(): boolean;
1016
+ clearOsRelease(): void;
1017
+ getOsRelease(): google_protobuf_wrappers_pb.StringValue | undefined;
1018
+ setOsRelease(value?: google_protobuf_wrappers_pb.StringValue): OperatingSystem;
1019
+
1020
+ serializeBinary(): Uint8Array;
1021
+ toObject(includeInstance?: boolean): OperatingSystem.AsObject;
1022
+ static toObject(includeInstance: boolean, msg: OperatingSystem): OperatingSystem.AsObject;
1023
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1024
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1025
+ static serializeBinaryToWriter(message: OperatingSystem, writer: jspb.BinaryWriter): void;
1026
+ static deserializeBinary(bytes: Uint8Array): OperatingSystem;
1027
+ static deserializeBinaryFromReader(message: OperatingSystem, reader: jspb.BinaryReader): OperatingSystem;
1028
+ }
1029
+
1030
+ export namespace OperatingSystem {
1031
+ export type AsObject = {
1032
+ kernelName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1033
+ kernelRelease?: google_protobuf_wrappers_pb.StringValue.AsObject,
1034
+ kernelVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
1035
+ distribution?: google_protobuf_wrappers_pb.StringValue.AsObject,
1036
+ osRelease?: google_protobuf_wrappers_pb.StringValue.AsObject,
1037
+ }
1038
+ }
1039
+
1040
+ export class PciCards extends jspb.Message {
1041
+ clearEntriesList(): void;
1042
+ getEntriesList(): Array<PciCardEntry>;
1043
+ setEntriesList(value: Array<PciCardEntry>): PciCards;
1044
+ addEntries(value?: PciCardEntry, index?: number): PciCardEntry;
1045
+
1046
+ serializeBinary(): Uint8Array;
1047
+ toObject(includeInstance?: boolean): PciCards.AsObject;
1048
+ static toObject(includeInstance: boolean, msg: PciCards): PciCards.AsObject;
1049
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1050
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1051
+ static serializeBinaryToWriter(message: PciCards, writer: jspb.BinaryWriter): void;
1052
+ static deserializeBinary(bytes: Uint8Array): PciCards;
1053
+ static deserializeBinaryFromReader(message: PciCards, reader: jspb.BinaryReader): PciCards;
1054
+ }
1055
+
1056
+ export namespace PciCards {
1057
+ export type AsObject = {
1058
+ entriesList: Array<PciCardEntry.AsObject>,
1059
+ }
1060
+ }
1061
+
1062
+ export class GraphicsCards extends jspb.Message {
1063
+ clearEntriesList(): void;
1064
+ getEntriesList(): Array<PciCardEntry>;
1065
+ setEntriesList(value: Array<PciCardEntry>): GraphicsCards;
1066
+ addEntries(value?: PciCardEntry, index?: number): PciCardEntry;
1067
+
1068
+ serializeBinary(): Uint8Array;
1069
+ toObject(includeInstance?: boolean): GraphicsCards.AsObject;
1070
+ static toObject(includeInstance: boolean, msg: GraphicsCards): GraphicsCards.AsObject;
1071
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1072
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1073
+ static serializeBinaryToWriter(message: GraphicsCards, writer: jspb.BinaryWriter): void;
1074
+ static deserializeBinary(bytes: Uint8Array): GraphicsCards;
1075
+ static deserializeBinaryFromReader(message: GraphicsCards, reader: jspb.BinaryReader): GraphicsCards;
1076
+ }
1077
+
1078
+ export namespace GraphicsCards {
1079
+ export type AsObject = {
1080
+ entriesList: Array<PciCardEntry.AsObject>,
1081
+ }
1082
+ }
1083
+
1084
+ export class SoundCards extends jspb.Message {
1085
+ clearEntriesList(): void;
1086
+ getEntriesList(): Array<PciCardEntry>;
1087
+ setEntriesList(value: Array<PciCardEntry>): SoundCards;
1088
+ addEntries(value?: PciCardEntry, index?: number): PciCardEntry;
1089
+
1090
+ serializeBinary(): Uint8Array;
1091
+ toObject(includeInstance?: boolean): SoundCards.AsObject;
1092
+ static toObject(includeInstance: boolean, msg: SoundCards): SoundCards.AsObject;
1093
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1094
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1095
+ static serializeBinaryToWriter(message: SoundCards, writer: jspb.BinaryWriter): void;
1096
+ static deserializeBinary(bytes: Uint8Array): SoundCards;
1097
+ static deserializeBinaryFromReader(message: SoundCards, reader: jspb.BinaryReader): SoundCards;
1098
+ }
1099
+
1100
+ export namespace SoundCards {
1101
+ export type AsObject = {
1102
+ entriesList: Array<PciCardEntry.AsObject>,
1103
+ }
1104
+ }
1105
+
1106
+ export class PciCardEntry extends jspb.Message {
1107
+
1108
+ hasDeviceId(): boolean;
1109
+ clearDeviceId(): void;
1110
+ getDeviceId(): google_protobuf_wrappers_pb.StringValue | undefined;
1111
+ setDeviceId(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1112
+
1113
+ hasType(): boolean;
1114
+ clearType(): void;
1115
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
1116
+ setType(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1117
+
1118
+ hasName(): boolean;
1119
+ clearName(): void;
1120
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
1121
+ setName(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1122
+
1123
+ hasManufacturer(): boolean;
1124
+ clearManufacturer(): void;
1125
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
1126
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1127
+
1128
+ hasSubsystemName(): boolean;
1129
+ clearSubsystemName(): void;
1130
+ getSubsystemName(): google_protobuf_wrappers_pb.StringValue | undefined;
1131
+ setSubsystemName(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1132
+
1133
+ hasSubsystemManufacturer(): boolean;
1134
+ clearSubsystemManufacturer(): void;
1135
+ getSubsystemManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
1136
+ setSubsystemManufacturer(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1137
+
1138
+ hasParent(): boolean;
1139
+ clearParent(): void;
1140
+ getParent(): google_protobuf_wrappers_pb.StringValue | undefined;
1141
+ setParent(value?: google_protobuf_wrappers_pb.StringValue): PciCardEntry;
1142
+
1143
+ serializeBinary(): Uint8Array;
1144
+ toObject(includeInstance?: boolean): PciCardEntry.AsObject;
1145
+ static toObject(includeInstance: boolean, msg: PciCardEntry): PciCardEntry.AsObject;
1146
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1147
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1148
+ static serializeBinaryToWriter(message: PciCardEntry, writer: jspb.BinaryWriter): void;
1149
+ static deserializeBinary(bytes: Uint8Array): PciCardEntry;
1150
+ static deserializeBinaryFromReader(message: PciCardEntry, reader: jspb.BinaryReader): PciCardEntry;
1151
+ }
1152
+
1153
+ export namespace PciCardEntry {
1154
+ export type AsObject = {
1155
+ deviceId?: google_protobuf_wrappers_pb.StringValue.AsObject,
1156
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
1157
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
1158
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
1159
+ subsystemName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1160
+ subsystemManufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
1161
+ parent?: google_protobuf_wrappers_pb.StringValue.AsObject,
1162
+ }
1163
+ }
1164
+
1165
+ export class PhysicalHardDisks extends jspb.Message {
1166
+ clearEntriesList(): void;
1167
+ getEntriesList(): Array<PhysicalHardDiskEntry>;
1168
+ setEntriesList(value: Array<PhysicalHardDiskEntry>): PhysicalHardDisks;
1169
+ addEntries(value?: PhysicalHardDiskEntry, index?: number): PhysicalHardDiskEntry;
1170
+
1171
+ serializeBinary(): Uint8Array;
1172
+ toObject(includeInstance?: boolean): PhysicalHardDisks.AsObject;
1173
+ static toObject(includeInstance: boolean, msg: PhysicalHardDisks): PhysicalHardDisks.AsObject;
1174
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1175
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1176
+ static serializeBinaryToWriter(message: PhysicalHardDisks, writer: jspb.BinaryWriter): void;
1177
+ static deserializeBinary(bytes: Uint8Array): PhysicalHardDisks;
1178
+ static deserializeBinaryFromReader(message: PhysicalHardDisks, reader: jspb.BinaryReader): PhysicalHardDisks;
1179
+ }
1180
+
1181
+ export namespace PhysicalHardDisks {
1182
+ export type AsObject = {
1183
+ entriesList: Array<PhysicalHardDiskEntry.AsObject>,
1184
+ }
1185
+ }
1186
+
1187
+ export class PhysicalHardDiskEntry extends jspb.Message {
1188
+
1189
+ hasName(): boolean;
1190
+ clearName(): void;
1191
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
1192
+ setName(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1193
+
1194
+ hasSize(): boolean;
1195
+ clearSize(): void;
1196
+ getSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
1197
+ setSize(value?: google_protobuf_wrappers_pb.Int64Value): PhysicalHardDiskEntry;
1198
+
1199
+ hasState(): boolean;
1200
+ clearState(): void;
1201
+ getState(): google_protobuf_wrappers_pb.StringValue | undefined;
1202
+ setState(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1203
+
1204
+ hasHctl(): boolean;
1205
+ clearHctl(): void;
1206
+ getHctl(): google_protobuf_wrappers_pb.StringValue | undefined;
1207
+ setHctl(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1208
+
1209
+ hasMajMin(): boolean;
1210
+ clearMajMin(): void;
1211
+ getMajMin(): google_protobuf_wrappers_pb.StringValue | undefined;
1212
+ setMajMin(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1213
+
1214
+ hasHotplug(): boolean;
1215
+ clearHotplug(): void;
1216
+ getHotplug(): google_protobuf_wrappers_pb.BoolValue | undefined;
1217
+ setHotplug(value?: google_protobuf_wrappers_pb.BoolValue): PhysicalHardDiskEntry;
1218
+
1219
+ hasModel(): boolean;
1220
+ clearModel(): void;
1221
+ getModel(): google_protobuf_wrappers_pb.StringValue | undefined;
1222
+ setModel(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1223
+
1224
+ hasSerial(): boolean;
1225
+ clearSerial(): void;
1226
+ getSerial(): google_protobuf_wrappers_pb.StringValue | undefined;
1227
+ setSerial(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1228
+
1229
+ hasVendor(): boolean;
1230
+ clearVendor(): void;
1231
+ getVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
1232
+ setVendor(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1233
+
1234
+ hasRev(): boolean;
1235
+ clearRev(): void;
1236
+ getRev(): google_protobuf_wrappers_pb.StringValue | undefined;
1237
+ setRev(value?: google_protobuf_wrappers_pb.StringValue): PhysicalHardDiskEntry;
1238
+
1239
+ serializeBinary(): Uint8Array;
1240
+ toObject(includeInstance?: boolean): PhysicalHardDiskEntry.AsObject;
1241
+ static toObject(includeInstance: boolean, msg: PhysicalHardDiskEntry): PhysicalHardDiskEntry.AsObject;
1242
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1243
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1244
+ static serializeBinaryToWriter(message: PhysicalHardDiskEntry, writer: jspb.BinaryWriter): void;
1245
+ static deserializeBinary(bytes: Uint8Array): PhysicalHardDiskEntry;
1246
+ static deserializeBinaryFromReader(message: PhysicalHardDiskEntry, reader: jspb.BinaryReader): PhysicalHardDiskEntry;
1247
+ }
1248
+
1249
+ export namespace PhysicalHardDiskEntry {
1250
+ export type AsObject = {
1251
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
1252
+ size?: google_protobuf_wrappers_pb.Int64Value.AsObject,
1253
+ state?: google_protobuf_wrappers_pb.StringValue.AsObject,
1254
+ hctl?: google_protobuf_wrappers_pb.StringValue.AsObject,
1255
+ majMin?: google_protobuf_wrappers_pb.StringValue.AsObject,
1256
+ hotplug?: google_protobuf_wrappers_pb.BoolValue.AsObject,
1257
+ model?: google_protobuf_wrappers_pb.StringValue.AsObject,
1258
+ serial?: google_protobuf_wrappers_pb.StringValue.AsObject,
1259
+ vendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
1260
+ rev?: google_protobuf_wrappers_pb.StringValue.AsObject,
1261
+ }
1262
+ }
1263
+
1264
+ export class PhysicalProcessors extends jspb.Message {
1265
+ clearEntriesList(): void;
1266
+ getEntriesList(): Array<PhysicalProcessorEntry>;
1267
+ setEntriesList(value: Array<PhysicalProcessorEntry>): PhysicalProcessors;
1268
+ addEntries(value?: PhysicalProcessorEntry, index?: number): PhysicalProcessorEntry;
1269
+
1270
+ serializeBinary(): Uint8Array;
1271
+ toObject(includeInstance?: boolean): PhysicalProcessors.AsObject;
1272
+ static toObject(includeInstance: boolean, msg: PhysicalProcessors): PhysicalProcessors.AsObject;
1273
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1274
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1275
+ static serializeBinaryToWriter(message: PhysicalProcessors, writer: jspb.BinaryWriter): void;
1276
+ static deserializeBinary(bytes: Uint8Array): PhysicalProcessors;
1277
+ static deserializeBinaryFromReader(message: PhysicalProcessors, reader: jspb.BinaryReader): PhysicalProcessors;
1278
+ }
1279
+
1280
+ export namespace PhysicalProcessors {
1281
+ export type AsObject = {
1282
+ entriesList: Array<PhysicalProcessorEntry.AsObject>,
1283
+ }
1284
+ }
1285
+
1286
+ export class PhysicalProcessorEntry extends jspb.Message {
1287
+
1288
+ hasModelName(): boolean;
1289
+ clearModelName(): void;
1290
+ getModelName(): google_protobuf_wrappers_pb.StringValue | undefined;
1291
+ setModelName(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1292
+
1293
+ hasModelType(): boolean;
1294
+ clearModelType(): void;
1295
+ getModelType(): google_protobuf_wrappers_pb.StringValue | undefined;
1296
+ setModelType(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1297
+
1298
+ hasStepping(): boolean;
1299
+ clearStepping(): void;
1300
+ getStepping(): google_protobuf_wrappers_pb.Int32Value | undefined;
1301
+ setStepping(value?: google_protobuf_wrappers_pb.Int32Value): PhysicalProcessorEntry;
1302
+
1303
+ hasManufacturer(): boolean;
1304
+ clearManufacturer(): void;
1305
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
1306
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1307
+
1308
+ hasFamily(): boolean;
1309
+ clearFamily(): void;
1310
+ getFamily(): google_protobuf_wrappers_pb.StringValue | undefined;
1311
+ setFamily(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1312
+
1313
+ hasArchitecture(): boolean;
1314
+ clearArchitecture(): void;
1315
+ getArchitecture(): google_protobuf_wrappers_pb.StringValue | undefined;
1316
+ setArchitecture(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1317
+
1318
+ hasOpmodes(): boolean;
1319
+ clearOpmodes(): void;
1320
+ getOpmodes(): google_protobuf_wrappers_pb.StringValue | undefined;
1321
+ setOpmodes(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1322
+
1323
+ hasNumberOfPhysicalCores(): boolean;
1324
+ clearNumberOfPhysicalCores(): void;
1325
+ getNumberOfPhysicalCores(): google_protobuf_wrappers_pb.Int32Value | undefined;
1326
+ setNumberOfPhysicalCores(value?: google_protobuf_wrappers_pb.Int32Value): PhysicalProcessorEntry;
1327
+
1328
+ hasThreadsPerPhysicalCore(): boolean;
1329
+ clearThreadsPerPhysicalCore(): void;
1330
+ getThreadsPerPhysicalCore(): google_protobuf_wrappers_pb.Int32Value | undefined;
1331
+ setThreadsPerPhysicalCore(value?: google_protobuf_wrappers_pb.Int32Value): PhysicalProcessorEntry;
1332
+
1333
+ hasNumberOfLogicalCores(): boolean;
1334
+ clearNumberOfLogicalCores(): void;
1335
+ getNumberOfLogicalCores(): google_protobuf_wrappers_pb.Int32Value | undefined;
1336
+ setNumberOfLogicalCores(value?: google_protobuf_wrappers_pb.Int32Value): PhysicalProcessorEntry;
1337
+
1338
+ hasSockets(): boolean;
1339
+ clearSockets(): void;
1340
+ getSockets(): google_protobuf_wrappers_pb.Int32Value | undefined;
1341
+ setSockets(value?: google_protobuf_wrappers_pb.Int32Value): PhysicalProcessorEntry;
1342
+
1343
+ hasCurrentClockSpeed(): boolean;
1344
+ clearCurrentClockSpeed(): void;
1345
+ getCurrentClockSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
1346
+ setCurrentClockSpeed(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1347
+
1348
+ hasMinimumClockSpeed(): boolean;
1349
+ clearMinimumClockSpeed(): void;
1350
+ getMinimumClockSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
1351
+ setMinimumClockSpeed(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1352
+
1353
+ hasMaximumClockSpeed(): boolean;
1354
+ clearMaximumClockSpeed(): void;
1355
+ getMaximumClockSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
1356
+ setMaximumClockSpeed(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1357
+
1358
+ hasBogoMips(): boolean;
1359
+ clearBogoMips(): void;
1360
+ getBogoMips(): google_protobuf_wrappers_pb.StringValue | undefined;
1361
+ setBogoMips(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1362
+
1363
+ hasL1dCacheSize(): boolean;
1364
+ clearL1dCacheSize(): void;
1365
+ getL1dCacheSize(): google_protobuf_wrappers_pb.StringValue | undefined;
1366
+ setL1dCacheSize(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1367
+
1368
+ hasL1iCacheSize(): boolean;
1369
+ clearL1iCacheSize(): void;
1370
+ getL1iCacheSize(): google_protobuf_wrappers_pb.StringValue | undefined;
1371
+ setL1iCacheSize(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1372
+
1373
+ hasL2CacheSize(): boolean;
1374
+ clearL2CacheSize(): void;
1375
+ getL2CacheSize(): google_protobuf_wrappers_pb.StringValue | undefined;
1376
+ setL2CacheSize(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1377
+
1378
+ hasL3CacheSize(): boolean;
1379
+ clearL3CacheSize(): void;
1380
+ getL3CacheSize(): google_protobuf_wrappers_pb.StringValue | undefined;
1381
+ setL3CacheSize(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1382
+
1383
+ hasByteOrder(): boolean;
1384
+ clearByteOrder(): void;
1385
+ getByteOrder(): google_protobuf_wrappers_pb.StringValue | undefined;
1386
+ setByteOrder(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1387
+
1388
+ hasAddressSizes(): boolean;
1389
+ clearAddressSizes(): void;
1390
+ getAddressSizes(): google_protobuf_wrappers_pb.StringValue | undefined;
1391
+ setAddressSizes(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1392
+
1393
+ hasVirtualization(): boolean;
1394
+ clearVirtualization(): void;
1395
+ getVirtualization(): google_protobuf_wrappers_pb.StringValue | undefined;
1396
+ setVirtualization(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1397
+
1398
+ hasHypervisorVendor(): boolean;
1399
+ clearHypervisorVendor(): void;
1400
+ getHypervisorVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
1401
+ setHypervisorVendor(value?: google_protobuf_wrappers_pb.StringValue): PhysicalProcessorEntry;
1402
+
1403
+ serializeBinary(): Uint8Array;
1404
+ toObject(includeInstance?: boolean): PhysicalProcessorEntry.AsObject;
1405
+ static toObject(includeInstance: boolean, msg: PhysicalProcessorEntry): PhysicalProcessorEntry.AsObject;
1406
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1407
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1408
+ static serializeBinaryToWriter(message: PhysicalProcessorEntry, writer: jspb.BinaryWriter): void;
1409
+ static deserializeBinary(bytes: Uint8Array): PhysicalProcessorEntry;
1410
+ static deserializeBinaryFromReader(message: PhysicalProcessorEntry, reader: jspb.BinaryReader): PhysicalProcessorEntry;
1411
+ }
1412
+
1413
+ export namespace PhysicalProcessorEntry {
1414
+ export type AsObject = {
1415
+ modelName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1416
+ modelType?: google_protobuf_wrappers_pb.StringValue.AsObject,
1417
+ stepping?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1418
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
1419
+ family?: google_protobuf_wrappers_pb.StringValue.AsObject,
1420
+ architecture?: google_protobuf_wrappers_pb.StringValue.AsObject,
1421
+ opmodes?: google_protobuf_wrappers_pb.StringValue.AsObject,
1422
+ numberOfPhysicalCores?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1423
+ threadsPerPhysicalCore?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1424
+ numberOfLogicalCores?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1425
+ sockets?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1426
+ currentClockSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
1427
+ minimumClockSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
1428
+ maximumClockSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
1429
+ bogoMips?: google_protobuf_wrappers_pb.StringValue.AsObject,
1430
+ l1dCacheSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
1431
+ l1iCacheSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
1432
+ l2CacheSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
1433
+ l3CacheSize?: google_protobuf_wrappers_pb.StringValue.AsObject,
1434
+ byteOrder?: google_protobuf_wrappers_pb.StringValue.AsObject,
1435
+ addressSizes?: google_protobuf_wrappers_pb.StringValue.AsObject,
1436
+ virtualization?: google_protobuf_wrappers_pb.StringValue.AsObject,
1437
+ hypervisorVendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
1438
+ }
1439
+ }
1440
+
1441
+ export class Processors extends jspb.Message {
1442
+ clearEntriesList(): void;
1443
+ getEntriesList(): Array<ProcessorEntry>;
1444
+ setEntriesList(value: Array<ProcessorEntry>): Processors;
1445
+ addEntries(value?: ProcessorEntry, index?: number): ProcessorEntry;
1446
+
1447
+ serializeBinary(): Uint8Array;
1448
+ toObject(includeInstance?: boolean): Processors.AsObject;
1449
+ static toObject(includeInstance: boolean, msg: Processors): Processors.AsObject;
1450
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1451
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1452
+ static serializeBinaryToWriter(message: Processors, writer: jspb.BinaryWriter): void;
1453
+ static deserializeBinary(bytes: Uint8Array): Processors;
1454
+ static deserializeBinaryFromReader(message: Processors, reader: jspb.BinaryReader): Processors;
1455
+ }
1456
+
1457
+ export namespace Processors {
1458
+ export type AsObject = {
1459
+ entriesList: Array<ProcessorEntry.AsObject>,
1460
+ }
1461
+ }
1462
+
1463
+ export class ProcessorEntry extends jspb.Message {
1464
+
1465
+ hasSocket(): boolean;
1466
+ clearSocket(): void;
1467
+ getSocket(): google_protobuf_wrappers_pb.StringValue | undefined;
1468
+ setSocket(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1469
+
1470
+ hasType(): boolean;
1471
+ clearType(): void;
1472
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
1473
+ setType(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1474
+
1475
+ hasFamily(): boolean;
1476
+ clearFamily(): void;
1477
+ getFamily(): google_protobuf_wrappers_pb.StringValue | undefined;
1478
+ setFamily(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1479
+
1480
+ hasManufacturer(): boolean;
1481
+ clearManufacturer(): void;
1482
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
1483
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1484
+
1485
+ hasId(): boolean;
1486
+ clearId(): void;
1487
+ getId(): google_protobuf_wrappers_pb.StringValue | undefined;
1488
+ setId(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1489
+
1490
+ hasVersion(): boolean;
1491
+ clearVersion(): void;
1492
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
1493
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1494
+
1495
+ hasVoltage(): boolean;
1496
+ clearVoltage(): void;
1497
+ getVoltage(): google_protobuf_wrappers_pb.StringValue | undefined;
1498
+ setVoltage(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1499
+
1500
+ hasExternalClock(): boolean;
1501
+ clearExternalClock(): void;
1502
+ getExternalClock(): google_protobuf_wrappers_pb.StringValue | undefined;
1503
+ setExternalClock(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1504
+
1505
+ hasMaxSpeed(): boolean;
1506
+ clearMaxSpeed(): void;
1507
+ getMaxSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
1508
+ setMaxSpeed(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1509
+
1510
+ hasCurrentSpeed(): boolean;
1511
+ clearCurrentSpeed(): void;
1512
+ getCurrentSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
1513
+ setCurrentSpeed(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1514
+
1515
+ hasStatus(): boolean;
1516
+ clearStatus(): void;
1517
+ getStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
1518
+ setStatus(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1519
+
1520
+ hasSerialNumber(): boolean;
1521
+ clearSerialNumber(): void;
1522
+ getSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
1523
+ setSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): ProcessorEntry;
1524
+
1525
+ serializeBinary(): Uint8Array;
1526
+ toObject(includeInstance?: boolean): ProcessorEntry.AsObject;
1527
+ static toObject(includeInstance: boolean, msg: ProcessorEntry): ProcessorEntry.AsObject;
1528
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1529
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1530
+ static serializeBinaryToWriter(message: ProcessorEntry, writer: jspb.BinaryWriter): void;
1531
+ static deserializeBinary(bytes: Uint8Array): ProcessorEntry;
1532
+ static deserializeBinaryFromReader(message: ProcessorEntry, reader: jspb.BinaryReader): ProcessorEntry;
1533
+ }
1534
+
1535
+ export namespace ProcessorEntry {
1536
+ export type AsObject = {
1537
+ socket?: google_protobuf_wrappers_pb.StringValue.AsObject,
1538
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
1539
+ family?: google_protobuf_wrappers_pb.StringValue.AsObject,
1540
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
1541
+ id?: google_protobuf_wrappers_pb.StringValue.AsObject,
1542
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
1543
+ voltage?: google_protobuf_wrappers_pb.StringValue.AsObject,
1544
+ externalClock?: google_protobuf_wrappers_pb.StringValue.AsObject,
1545
+ maxSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
1546
+ currentSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
1547
+ status?: google_protobuf_wrappers_pb.StringValue.AsObject,
1548
+ serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
1549
+ }
1550
+ }
1551
+
1552
+ export class Software extends jspb.Message {
1553
+ clearEntriesList(): void;
1554
+ getEntriesList(): Array<SoftwareEntry>;
1555
+ setEntriesList(value: Array<SoftwareEntry>): Software;
1556
+ addEntries(value?: SoftwareEntry, index?: number): SoftwareEntry;
1557
+
1558
+ serializeBinary(): Uint8Array;
1559
+ toObject(includeInstance?: boolean): Software.AsObject;
1560
+ static toObject(includeInstance: boolean, msg: Software): Software.AsObject;
1561
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1562
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1563
+ static serializeBinaryToWriter(message: Software, writer: jspb.BinaryWriter): void;
1564
+ static deserializeBinary(bytes: Uint8Array): Software;
1565
+ static deserializeBinaryFromReader(message: Software, reader: jspb.BinaryReader): Software;
1566
+ }
1567
+
1568
+ export namespace Software {
1569
+ export type AsObject = {
1570
+ entriesList: Array<SoftwareEntry.AsObject>,
1571
+ }
1572
+ }
1573
+
1574
+ export class SoftwareEntry extends jspb.Message {
1575
+
1576
+ hasName(): boolean;
1577
+ clearName(): void;
1578
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
1579
+ setName(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1580
+
1581
+ hasVersion(): boolean;
1582
+ clearVersion(): void;
1583
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
1584
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1585
+
1586
+ hasDescription(): boolean;
1587
+ clearDescription(): void;
1588
+ getDescription(): google_protobuf_wrappers_pb.StringValue | undefined;
1589
+ setDescription(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1590
+
1591
+ hasRelease(): boolean;
1592
+ clearRelease(): void;
1593
+ getRelease(): google_protobuf_wrappers_pb.StringValue | undefined;
1594
+ setRelease(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1595
+
1596
+ hasArchitecture(): boolean;
1597
+ clearArchitecture(): void;
1598
+ getArchitecture(): google_protobuf_wrappers_pb.StringValue | undefined;
1599
+ setArchitecture(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1600
+
1601
+ hasDesired(): boolean;
1602
+ clearDesired(): void;
1603
+ getDesired(): google_protobuf_wrappers_pb.StringValue | undefined;
1604
+ setDesired(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1605
+
1606
+ hasStatus(): boolean;
1607
+ clearStatus(): void;
1608
+ getStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
1609
+ setStatus(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1610
+
1611
+ hasError(): boolean;
1612
+ clearError(): void;
1613
+ getError(): google_protobuf_wrappers_pb.StringValue | undefined;
1614
+ setError(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1615
+
1616
+ hasInstallDate(): boolean;
1617
+ clearInstallDate(): void;
1618
+ getInstallDate(): google_protobuf_wrappers_pb.StringValue | undefined;
1619
+ setInstallDate(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1620
+
1621
+ hasType(): boolean;
1622
+ clearType(): void;
1623
+ getType(): SoftwareType | undefined;
1624
+ setType(value: SoftwareType): SoftwareEntry;
1625
+
1626
+ hasInstallDateUtc(): boolean;
1627
+ clearInstallDateUtc(): void;
1628
+ getInstallDateUtc(): google_protobuf_timestamp_pb.Timestamp | undefined;
1629
+ setInstallDateUtc(value?: google_protobuf_timestamp_pb.Timestamp): SoftwareEntry;
1630
+
1631
+ hasSize(): boolean;
1632
+ clearSize(): void;
1633
+ getSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
1634
+ setSize(value?: google_protobuf_wrappers_pb.Int64Value): SoftwareEntry;
1635
+
1636
+ hasPath(): boolean;
1637
+ clearPath(): void;
1638
+ getPath(): google_protobuf_wrappers_pb.StringValue | undefined;
1639
+ setPath(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1640
+
1641
+ hasSoftwarePublisher(): boolean;
1642
+ clearSoftwarePublisher(): void;
1643
+ getSoftwarePublisher(): google_protobuf_wrappers_pb.StringValue | undefined;
1644
+ setSoftwarePublisher(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1645
+
1646
+ hasApproved(): boolean;
1647
+ clearApproved(): void;
1648
+ getApproved(): google_protobuf_wrappers_pb.Int32Value | undefined;
1649
+ setApproved(value?: google_protobuf_wrappers_pb.Int32Value): SoftwareEntry;
1650
+
1651
+ hasApplicationId(): boolean;
1652
+ clearApplicationId(): void;
1653
+ getApplicationId(): google_protobuf_wrappers_pb.StringValue | undefined;
1654
+ setApplicationId(value?: google_protobuf_wrappers_pb.StringValue): SoftwareEntry;
1655
+
1656
+ serializeBinary(): Uint8Array;
1657
+ toObject(includeInstance?: boolean): SoftwareEntry.AsObject;
1658
+ static toObject(includeInstance: boolean, msg: SoftwareEntry): SoftwareEntry.AsObject;
1659
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1660
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1661
+ static serializeBinaryToWriter(message: SoftwareEntry, writer: jspb.BinaryWriter): void;
1662
+ static deserializeBinary(bytes: Uint8Array): SoftwareEntry;
1663
+ static deserializeBinaryFromReader(message: SoftwareEntry, reader: jspb.BinaryReader): SoftwareEntry;
1664
+ }
1665
+
1666
+ export namespace SoftwareEntry {
1667
+ export type AsObject = {
1668
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
1669
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
1670
+ description?: google_protobuf_wrappers_pb.StringValue.AsObject,
1671
+ release?: google_protobuf_wrappers_pb.StringValue.AsObject,
1672
+ architecture?: google_protobuf_wrappers_pb.StringValue.AsObject,
1673
+ desired?: google_protobuf_wrappers_pb.StringValue.AsObject,
1674
+ status?: google_protobuf_wrappers_pb.StringValue.AsObject,
1675
+ error?: google_protobuf_wrappers_pb.StringValue.AsObject,
1676
+ installDate?: google_protobuf_wrappers_pb.StringValue.AsObject,
1677
+ type?: SoftwareType,
1678
+ installDateUtc?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1679
+ size?: google_protobuf_wrappers_pb.Int64Value.AsObject,
1680
+ path?: google_protobuf_wrappers_pb.StringValue.AsObject,
1681
+ softwarePublisher?: google_protobuf_wrappers_pb.StringValue.AsObject,
1682
+ approved?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1683
+ applicationId?: google_protobuf_wrappers_pb.StringValue.AsObject,
1684
+ }
1685
+ }
1686
+
1687
+ export class SystemEnclosure extends jspb.Message {
1688
+
1689
+ hasChassisTypes(): boolean;
1690
+ clearChassisTypes(): void;
1691
+ getChassisTypes(): google_protobuf_wrappers_pb.Int32Value | undefined;
1692
+ setChassisTypes(value?: google_protobuf_wrappers_pb.Int32Value): SystemEnclosure;
1693
+
1694
+ hasLockPresent(): boolean;
1695
+ clearLockPresent(): void;
1696
+ getLockPresent(): google_protobuf_wrappers_pb.BoolValue | undefined;
1697
+ setLockPresent(value?: google_protobuf_wrappers_pb.BoolValue): SystemEnclosure;
1698
+
1699
+ hasManufacturer(): boolean;
1700
+ clearManufacturer(): void;
1701
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
1702
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): SystemEnclosure;
1703
+
1704
+ hasSecurityStatus(): boolean;
1705
+ clearSecurityStatus(): void;
1706
+ getSecurityStatus(): google_protobuf_wrappers_pb.Int32Value | undefined;
1707
+ setSecurityStatus(value?: google_protobuf_wrappers_pb.Int32Value): SystemEnclosure;
1708
+
1709
+ hasSerial(): boolean;
1710
+ clearSerial(): void;
1711
+ getSerial(): google_protobuf_wrappers_pb.StringValue | undefined;
1712
+ setSerial(value?: google_protobuf_wrappers_pb.StringValue): SystemEnclosure;
1713
+
1714
+ hasSmBiosAssetTag(): boolean;
1715
+ clearSmBiosAssetTag(): void;
1716
+ getSmBiosAssetTag(): google_protobuf_wrappers_pb.StringValue | undefined;
1717
+ setSmBiosAssetTag(value?: google_protobuf_wrappers_pb.StringValue): SystemEnclosure;
1718
+
1719
+ hasVersion(): boolean;
1720
+ clearVersion(): void;
1721
+ getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
1722
+ setVersion(value?: google_protobuf_wrappers_pb.StringValue): SystemEnclosure;
1723
+
1724
+ serializeBinary(): Uint8Array;
1725
+ toObject(includeInstance?: boolean): SystemEnclosure.AsObject;
1726
+ static toObject(includeInstance: boolean, msg: SystemEnclosure): SystemEnclosure.AsObject;
1727
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1728
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1729
+ static serializeBinaryToWriter(message: SystemEnclosure, writer: jspb.BinaryWriter): void;
1730
+ static deserializeBinary(bytes: Uint8Array): SystemEnclosure;
1731
+ static deserializeBinaryFromReader(message: SystemEnclosure, reader: jspb.BinaryReader): SystemEnclosure;
1732
+ }
1733
+
1734
+ export namespace SystemEnclosure {
1735
+ export type AsObject = {
1736
+ chassisTypes?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1737
+ lockPresent?: google_protobuf_wrappers_pb.BoolValue.AsObject,
1738
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
1739
+ securityStatus?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1740
+ serial?: google_protobuf_wrappers_pb.StringValue.AsObject,
1741
+ smBiosAssetTag?: google_protobuf_wrappers_pb.StringValue.AsObject,
1742
+ version?: google_protobuf_wrappers_pb.StringValue.AsObject,
1743
+ }
1744
+ }
1745
+
1746
+ export class UserLogons extends jspb.Message {
1747
+ clearEntriesList(): void;
1748
+ getEntriesList(): Array<UserLogonEntry>;
1749
+ setEntriesList(value: Array<UserLogonEntry>): UserLogons;
1750
+ addEntries(value?: UserLogonEntry, index?: number): UserLogonEntry;
1751
+
1752
+ serializeBinary(): Uint8Array;
1753
+ toObject(includeInstance?: boolean): UserLogons.AsObject;
1754
+ static toObject(includeInstance: boolean, msg: UserLogons): UserLogons.AsObject;
1755
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1756
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1757
+ static serializeBinaryToWriter(message: UserLogons, writer: jspb.BinaryWriter): void;
1758
+ static deserializeBinary(bytes: Uint8Array): UserLogons;
1759
+ static deserializeBinaryFromReader(message: UserLogons, reader: jspb.BinaryReader): UserLogons;
1760
+ }
1761
+
1762
+ export namespace UserLogons {
1763
+ export type AsObject = {
1764
+ entriesList: Array<UserLogonEntry.AsObject>,
1765
+ }
1766
+ }
1767
+
1768
+ export class UserLogonEntry extends jspb.Message {
1769
+
1770
+ hasUserName(): boolean;
1771
+ clearUserName(): void;
1772
+ getUserName(): google_protobuf_wrappers_pb.StringValue | undefined;
1773
+ setUserName(value?: google_protobuf_wrappers_pb.StringValue): UserLogonEntry;
1774
+
1775
+ hasPort(): boolean;
1776
+ clearPort(): void;
1777
+ getPort(): google_protobuf_wrappers_pb.StringValue | undefined;
1778
+ setPort(value?: google_protobuf_wrappers_pb.StringValue): UserLogonEntry;
1779
+
1780
+ hasIpAddress(): boolean;
1781
+ clearIpAddress(): void;
1782
+ getIpAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
1783
+ setIpAddress(value?: google_protobuf_wrappers_pb.StringValue): UserLogonEntry;
1784
+
1785
+ hasLogonTime(): boolean;
1786
+ clearLogonTime(): void;
1787
+ getLogonTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
1788
+ setLogonTime(value?: google_protobuf_timestamp_pb.Timestamp): UserLogonEntry;
1789
+
1790
+ serializeBinary(): Uint8Array;
1791
+ toObject(includeInstance?: boolean): UserLogonEntry.AsObject;
1792
+ static toObject(includeInstance: boolean, msg: UserLogonEntry): UserLogonEntry.AsObject;
1793
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1794
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1795
+ static serializeBinaryToWriter(message: UserLogonEntry, writer: jspb.BinaryWriter): void;
1796
+ static deserializeBinary(bytes: Uint8Array): UserLogonEntry;
1797
+ static deserializeBinaryFromReader(message: UserLogonEntry, reader: jspb.BinaryReader): UserLogonEntry;
1798
+ }
1799
+
1800
+ export namespace UserLogonEntry {
1801
+ export type AsObject = {
1802
+ userName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1803
+ port?: google_protobuf_wrappers_pb.StringValue.AsObject,
1804
+ ipAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
1805
+ logonTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1806
+ }
1807
+ }
1808
+
1809
+ export class Users extends jspb.Message {
1810
+ clearEntriesList(): void;
1811
+ getEntriesList(): Array<UserEntry>;
1812
+ setEntriesList(value: Array<UserEntry>): Users;
1813
+ addEntries(value?: UserEntry, index?: number): UserEntry;
1814
+
1815
+ serializeBinary(): Uint8Array;
1816
+ toObject(includeInstance?: boolean): Users.AsObject;
1817
+ static toObject(includeInstance: boolean, msg: Users): Users.AsObject;
1818
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1819
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1820
+ static serializeBinaryToWriter(message: Users, writer: jspb.BinaryWriter): void;
1821
+ static deserializeBinary(bytes: Uint8Array): Users;
1822
+ static deserializeBinaryFromReader(message: Users, reader: jspb.BinaryReader): Users;
1823
+ }
1824
+
1825
+ export namespace Users {
1826
+ export type AsObject = {
1827
+ entriesList: Array<UserEntry.AsObject>,
1828
+ }
1829
+ }
1830
+
1831
+ export class UserEntry extends jspb.Message {
1832
+
1833
+ hasUserName(): boolean;
1834
+ clearUserName(): void;
1835
+ getUserName(): google_protobuf_wrappers_pb.StringValue | undefined;
1836
+ setUserName(value?: google_protobuf_wrappers_pb.StringValue): UserEntry;
1837
+
1838
+ hasComment(): boolean;
1839
+ clearComment(): void;
1840
+ getComment(): google_protobuf_wrappers_pb.StringValue | undefined;
1841
+ setComment(value?: google_protobuf_wrappers_pb.StringValue): UserEntry;
1842
+
1843
+ hasUserid(): boolean;
1844
+ clearUserid(): void;
1845
+ getUserid(): google_protobuf_wrappers_pb.Int32Value | undefined;
1846
+ setUserid(value?: google_protobuf_wrappers_pb.Int32Value): UserEntry;
1847
+
1848
+ hasGroupid(): boolean;
1849
+ clearGroupid(): void;
1850
+ getGroupid(): google_protobuf_wrappers_pb.Int32Value | undefined;
1851
+ setGroupid(value?: google_protobuf_wrappers_pb.Int32Value): UserEntry;
1852
+
1853
+ hasType(): boolean;
1854
+ clearType(): void;
1855
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
1856
+ setType(value?: google_protobuf_wrappers_pb.StringValue): UserEntry;
1857
+
1858
+ hasHomeDirectory(): boolean;
1859
+ clearHomeDirectory(): void;
1860
+ getHomeDirectory(): google_protobuf_wrappers_pb.StringValue | undefined;
1861
+ setHomeDirectory(value?: google_protobuf_wrappers_pb.StringValue): UserEntry;
1862
+
1863
+ hasLoginShell(): boolean;
1864
+ clearLoginShell(): void;
1865
+ getLoginShell(): google_protobuf_wrappers_pb.StringValue | undefined;
1866
+ setLoginShell(value?: google_protobuf_wrappers_pb.StringValue): UserEntry;
1867
+
1868
+ serializeBinary(): Uint8Array;
1869
+ toObject(includeInstance?: boolean): UserEntry.AsObject;
1870
+ static toObject(includeInstance: boolean, msg: UserEntry): UserEntry.AsObject;
1871
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1872
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1873
+ static serializeBinaryToWriter(message: UserEntry, writer: jspb.BinaryWriter): void;
1874
+ static deserializeBinary(bytes: Uint8Array): UserEntry;
1875
+ static deserializeBinaryFromReader(message: UserEntry, reader: jspb.BinaryReader): UserEntry;
1876
+ }
1877
+
1878
+ export namespace UserEntry {
1879
+ export type AsObject = {
1880
+ userName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1881
+ comment?: google_protobuf_wrappers_pb.StringValue.AsObject,
1882
+ userid?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1883
+ groupid?: google_protobuf_wrappers_pb.Int32Value.AsObject,
1884
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
1885
+ homeDirectory?: google_protobuf_wrappers_pb.StringValue.AsObject,
1886
+ loginShell?: google_protobuf_wrappers_pb.StringValue.AsObject,
1887
+ }
1888
+ }
1889
+
1890
+ export class Volumes extends jspb.Message {
1891
+ clearEntriesList(): void;
1892
+ getEntriesList(): Array<VolumeEntry>;
1893
+ setEntriesList(value: Array<VolumeEntry>): Volumes;
1894
+ addEntries(value?: VolumeEntry, index?: number): VolumeEntry;
1895
+
1896
+ serializeBinary(): Uint8Array;
1897
+ toObject(includeInstance?: boolean): Volumes.AsObject;
1898
+ static toObject(includeInstance: boolean, msg: Volumes): Volumes.AsObject;
1899
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1900
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1901
+ static serializeBinaryToWriter(message: Volumes, writer: jspb.BinaryWriter): void;
1902
+ static deserializeBinary(bytes: Uint8Array): Volumes;
1903
+ static deserializeBinaryFromReader(message: Volumes, reader: jspb.BinaryReader): Volumes;
1904
+ }
1905
+
1906
+ export namespace Volumes {
1907
+ export type AsObject = {
1908
+ entriesList: Array<VolumeEntry.AsObject>,
1909
+ }
1910
+ }
1911
+
1912
+ export class VolumeEntry extends jspb.Message {
1913
+
1914
+ hasType(): boolean;
1915
+ clearType(): void;
1916
+ getType(): google_protobuf_wrappers_pb.StringValue | undefined;
1917
+ setType(value?: google_protobuf_wrappers_pb.StringValue): VolumeEntry;
1918
+
1919
+ hasSize(): boolean;
1920
+ clearSize(): void;
1921
+ getSize(): google_protobuf_wrappers_pb.DoubleValue | undefined;
1922
+ setSize(value?: google_protobuf_wrappers_pb.DoubleValue): VolumeEntry;
1923
+
1924
+ hasMounted(): boolean;
1925
+ clearMounted(): void;
1926
+ getMounted(): google_protobuf_wrappers_pb.StringValue | undefined;
1927
+ setMounted(value?: google_protobuf_wrappers_pb.StringValue): VolumeEntry;
1928
+
1929
+ hasPath(): boolean;
1930
+ clearPath(): void;
1931
+ getPath(): google_protobuf_wrappers_pb.StringValue | undefined;
1932
+ setPath(value?: google_protobuf_wrappers_pb.StringValue): VolumeEntry;
1933
+
1934
+ hasMountPoint(): boolean;
1935
+ clearMountPoint(): void;
1936
+ getMountPoint(): google_protobuf_wrappers_pb.StringValue | undefined;
1937
+ setMountPoint(value?: google_protobuf_wrappers_pb.StringValue): VolumeEntry;
1938
+
1939
+ hasLabel(): boolean;
1940
+ clearLabel(): void;
1941
+ getLabel(): google_protobuf_wrappers_pb.StringValue | undefined;
1942
+ setLabel(value?: google_protobuf_wrappers_pb.StringValue): VolumeEntry;
1943
+
1944
+ serializeBinary(): Uint8Array;
1945
+ toObject(includeInstance?: boolean): VolumeEntry.AsObject;
1946
+ static toObject(includeInstance: boolean, msg: VolumeEntry): VolumeEntry.AsObject;
1947
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1948
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1949
+ static serializeBinaryToWriter(message: VolumeEntry, writer: jspb.BinaryWriter): void;
1950
+ static deserializeBinary(bytes: Uint8Array): VolumeEntry;
1951
+ static deserializeBinaryFromReader(message: VolumeEntry, reader: jspb.BinaryReader): VolumeEntry;
1952
+ }
1953
+
1954
+ export namespace VolumeEntry {
1955
+ export type AsObject = {
1956
+ type?: google_protobuf_wrappers_pb.StringValue.AsObject,
1957
+ size?: google_protobuf_wrappers_pb.DoubleValue.AsObject,
1958
+ mounted?: google_protobuf_wrappers_pb.StringValue.AsObject,
1959
+ path?: google_protobuf_wrappers_pb.StringValue.AsObject,
1960
+ mountPoint?: google_protobuf_wrappers_pb.StringValue.AsObject,
1961
+ label?: google_protobuf_wrappers_pb.StringValue.AsObject,
1962
+ }
1963
+ }
1964
+
1965
+ export class VolumeGroups extends jspb.Message {
1966
+ clearEntriesList(): void;
1967
+ getEntriesList(): Array<VolumeGroupEntry>;
1968
+ setEntriesList(value: Array<VolumeGroupEntry>): VolumeGroups;
1969
+ addEntries(value?: VolumeGroupEntry, index?: number): VolumeGroupEntry;
1970
+
1971
+ serializeBinary(): Uint8Array;
1972
+ toObject(includeInstance?: boolean): VolumeGroups.AsObject;
1973
+ static toObject(includeInstance: boolean, msg: VolumeGroups): VolumeGroups.AsObject;
1974
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1975
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1976
+ static serializeBinaryToWriter(message: VolumeGroups, writer: jspb.BinaryWriter): void;
1977
+ static deserializeBinary(bytes: Uint8Array): VolumeGroups;
1978
+ static deserializeBinaryFromReader(message: VolumeGroups, reader: jspb.BinaryReader): VolumeGroups;
1979
+ }
1980
+
1981
+ export namespace VolumeGroups {
1982
+ export type AsObject = {
1983
+ entriesList: Array<VolumeGroupEntry.AsObject>,
1984
+ }
1985
+ }
1986
+
1987
+ export class VolumeGroupEntry extends jspb.Message {
1988
+
1989
+ hasName(): boolean;
1990
+ clearName(): void;
1991
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
1992
+ setName(value?: google_protobuf_wrappers_pb.StringValue): VolumeGroupEntry;
1993
+
1994
+ hasUuid(): boolean;
1995
+ clearUuid(): void;
1996
+ getUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
1997
+ setUuid(value?: google_protobuf_wrappers_pb.StringValue): VolumeGroupEntry;
1998
+
1999
+ hasSize(): boolean;
2000
+ clearSize(): void;
2001
+ getSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
2002
+ setSize(value?: google_protobuf_wrappers_pb.Int64Value): VolumeGroupEntry;
2003
+
2004
+ hasFree(): boolean;
2005
+ clearFree(): void;
2006
+ getFree(): google_protobuf_wrappers_pb.Int64Value | undefined;
2007
+ setFree(value?: google_protobuf_wrappers_pb.Int64Value): VolumeGroupEntry;
2008
+
2009
+ hasAccess(): boolean;
2010
+ clearAccess(): void;
2011
+ getAccess(): google_protobuf_wrappers_pb.StringValue | undefined;
2012
+ setAccess(value?: google_protobuf_wrappers_pb.StringValue): VolumeGroupEntry;
2013
+
2014
+ hasStatus(): boolean;
2015
+ clearStatus(): void;
2016
+ getStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
2017
+ setStatus(value?: google_protobuf_wrappers_pb.StringValue): VolumeGroupEntry;
2018
+
2019
+ hasFormat(): boolean;
2020
+ clearFormat(): void;
2021
+ getFormat(): google_protobuf_wrappers_pb.StringValue | undefined;
2022
+ setFormat(value?: google_protobuf_wrappers_pb.StringValue): VolumeGroupEntry;
2023
+ clearLogicalVolumesList(): void;
2024
+ getLogicalVolumesList(): Array<LogicalVolumeEntry>;
2025
+ setLogicalVolumesList(value: Array<LogicalVolumeEntry>): VolumeGroupEntry;
2026
+ addLogicalVolumes(value?: LogicalVolumeEntry, index?: number): LogicalVolumeEntry;
2027
+ clearPhysicalVolumesList(): void;
2028
+ getPhysicalVolumesList(): Array<PhysicalVolumeEntry>;
2029
+ setPhysicalVolumesList(value: Array<PhysicalVolumeEntry>): VolumeGroupEntry;
2030
+ addPhysicalVolumes(value?: PhysicalVolumeEntry, index?: number): PhysicalVolumeEntry;
2031
+
2032
+ serializeBinary(): Uint8Array;
2033
+ toObject(includeInstance?: boolean): VolumeGroupEntry.AsObject;
2034
+ static toObject(includeInstance: boolean, msg: VolumeGroupEntry): VolumeGroupEntry.AsObject;
2035
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2036
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2037
+ static serializeBinaryToWriter(message: VolumeGroupEntry, writer: jspb.BinaryWriter): void;
2038
+ static deserializeBinary(bytes: Uint8Array): VolumeGroupEntry;
2039
+ static deserializeBinaryFromReader(message: VolumeGroupEntry, reader: jspb.BinaryReader): VolumeGroupEntry;
2040
+ }
2041
+
2042
+ export namespace VolumeGroupEntry {
2043
+ export type AsObject = {
2044
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
2045
+ uuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
2046
+ size?: google_protobuf_wrappers_pb.Int64Value.AsObject,
2047
+ free?: google_protobuf_wrappers_pb.Int64Value.AsObject,
2048
+ access?: google_protobuf_wrappers_pb.StringValue.AsObject,
2049
+ status?: google_protobuf_wrappers_pb.StringValue.AsObject,
2050
+ format?: google_protobuf_wrappers_pb.StringValue.AsObject,
2051
+ logicalVolumesList: Array<LogicalVolumeEntry.AsObject>,
2052
+ physicalVolumesList: Array<PhysicalVolumeEntry.AsObject>,
2053
+ }
2054
+ }
2055
+
2056
+ export class LogicalVolumeEntry extends jspb.Message {
2057
+
2058
+ hasVolumeGroupName(): boolean;
2059
+ clearVolumeGroupName(): void;
2060
+ getVolumeGroupName(): google_protobuf_wrappers_pb.StringValue | undefined;
2061
+ setVolumeGroupName(value?: google_protobuf_wrappers_pb.StringValue): LogicalVolumeEntry;
2062
+
2063
+ hasName(): boolean;
2064
+ clearName(): void;
2065
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
2066
+ setName(value?: google_protobuf_wrappers_pb.StringValue): LogicalVolumeEntry;
2067
+
2068
+ hasUuid(): boolean;
2069
+ clearUuid(): void;
2070
+ getUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
2071
+ setUuid(value?: google_protobuf_wrappers_pb.StringValue): LogicalVolumeEntry;
2072
+
2073
+ hasDeviceMapperPath(): boolean;
2074
+ clearDeviceMapperPath(): void;
2075
+ getDeviceMapperPath(): google_protobuf_wrappers_pb.StringValue | undefined;
2076
+ setDeviceMapperPath(value?: google_protobuf_wrappers_pb.StringValue): LogicalVolumeEntry;
2077
+
2078
+ hasSize(): boolean;
2079
+ clearSize(): void;
2080
+ getSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
2081
+ setSize(value?: google_protobuf_wrappers_pb.Int64Value): LogicalVolumeEntry;
2082
+
2083
+ hasBlockDevice(): boolean;
2084
+ clearBlockDevice(): void;
2085
+ getBlockDevice(): google_protobuf_wrappers_pb.StringValue | undefined;
2086
+ setBlockDevice(value?: google_protobuf_wrappers_pb.StringValue): LogicalVolumeEntry;
2087
+
2088
+ hasCreationTime(): boolean;
2089
+ clearCreationTime(): void;
2090
+ getCreationTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
2091
+ setCreationTime(value?: google_protobuf_timestamp_pb.Timestamp): LogicalVolumeEntry;
2092
+
2093
+ serializeBinary(): Uint8Array;
2094
+ toObject(includeInstance?: boolean): LogicalVolumeEntry.AsObject;
2095
+ static toObject(includeInstance: boolean, msg: LogicalVolumeEntry): LogicalVolumeEntry.AsObject;
2096
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2097
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2098
+ static serializeBinaryToWriter(message: LogicalVolumeEntry, writer: jspb.BinaryWriter): void;
2099
+ static deserializeBinary(bytes: Uint8Array): LogicalVolumeEntry;
2100
+ static deserializeBinaryFromReader(message: LogicalVolumeEntry, reader: jspb.BinaryReader): LogicalVolumeEntry;
2101
+ }
2102
+
2103
+ export namespace LogicalVolumeEntry {
2104
+ export type AsObject = {
2105
+ volumeGroupName?: google_protobuf_wrappers_pb.StringValue.AsObject,
2106
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
2107
+ uuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
2108
+ deviceMapperPath?: google_protobuf_wrappers_pb.StringValue.AsObject,
2109
+ size?: google_protobuf_wrappers_pb.Int64Value.AsObject,
2110
+ blockDevice?: google_protobuf_wrappers_pb.StringValue.AsObject,
2111
+ creationTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
2112
+ }
2113
+ }
2114
+
2115
+ export class PhysicalVolumeEntry extends jspb.Message {
2116
+
2117
+ hasVolumeGroupName(): boolean;
2118
+ clearVolumeGroupName(): void;
2119
+ getVolumeGroupName(): google_protobuf_wrappers_pb.StringValue | undefined;
2120
+ setVolumeGroupName(value?: google_protobuf_wrappers_pb.StringValue): PhysicalVolumeEntry;
2121
+
2122
+ hasName(): boolean;
2123
+ clearName(): void;
2124
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
2125
+ setName(value?: google_protobuf_wrappers_pb.StringValue): PhysicalVolumeEntry;
2126
+
2127
+ hasUuid(): boolean;
2128
+ clearUuid(): void;
2129
+ getUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
2130
+ setUuid(value?: google_protobuf_wrappers_pb.StringValue): PhysicalVolumeEntry;
2131
+
2132
+ hasSize(): boolean;
2133
+ clearSize(): void;
2134
+ getSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
2135
+ setSize(value?: google_protobuf_wrappers_pb.Int64Value): PhysicalVolumeEntry;
2136
+
2137
+ hasFree(): boolean;
2138
+ clearFree(): void;
2139
+ getFree(): google_protobuf_wrappers_pb.Int64Value | undefined;
2140
+ setFree(value?: google_protobuf_wrappers_pb.Int64Value): PhysicalVolumeEntry;
2141
+
2142
+ hasUsed(): boolean;
2143
+ clearUsed(): void;
2144
+ getUsed(): google_protobuf_wrappers_pb.Int64Value | undefined;
2145
+ setUsed(value?: google_protobuf_wrappers_pb.Int64Value): PhysicalVolumeEntry;
2146
+
2147
+ hasInUse(): boolean;
2148
+ clearInUse(): void;
2149
+ getInUse(): google_protobuf_wrappers_pb.StringValue | undefined;
2150
+ setInUse(value?: google_protobuf_wrappers_pb.StringValue): PhysicalVolumeEntry;
2151
+
2152
+ serializeBinary(): Uint8Array;
2153
+ toObject(includeInstance?: boolean): PhysicalVolumeEntry.AsObject;
2154
+ static toObject(includeInstance: boolean, msg: PhysicalVolumeEntry): PhysicalVolumeEntry.AsObject;
2155
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2156
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2157
+ static serializeBinaryToWriter(message: PhysicalVolumeEntry, writer: jspb.BinaryWriter): void;
2158
+ static deserializeBinary(bytes: Uint8Array): PhysicalVolumeEntry;
2159
+ static deserializeBinaryFromReader(message: PhysicalVolumeEntry, reader: jspb.BinaryReader): PhysicalVolumeEntry;
2160
+ }
2161
+
2162
+ export namespace PhysicalVolumeEntry {
2163
+ export type AsObject = {
2164
+ volumeGroupName?: google_protobuf_wrappers_pb.StringValue.AsObject,
2165
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
2166
+ uuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
2167
+ size?: google_protobuf_wrappers_pb.Int64Value.AsObject,
2168
+ free?: google_protobuf_wrappers_pb.Int64Value.AsObject,
2169
+ used?: google_protobuf_wrappers_pb.Int64Value.AsObject,
2170
+ inUse?: google_protobuf_wrappers_pb.StringValue.AsObject,
2171
+ }
2172
+ }
2173
+
2174
+ export enum UnixDistributionFamily {
2175
+ UNKNOWN_FAMILY = 0,
2176
+ DEBIAN_FAMILY = 1,
2177
+ REDHAT_FAMILY = 2,
2178
+ SOLARIS_FAMILY = 3,
2179
+ }
2180
+
2181
+ export enum UnixDistribution {
2182
+ UNKNOWN_DISTRIBUTION = 0,
2183
+ DEBIAN = 1,
2184
+ UBUNTU = 2,
2185
+ MINT = 3,
2186
+ KALI = 4,
2187
+ REDHAT = 5,
2188
+ CENTOS = 6,
2189
+ ORACLE = 7,
2190
+ FEDORA = 8,
2191
+ SOLARIS = 9,
2192
+ AIX = 10,
2193
+ BSD = 11,
2194
+ OPEN_SUSE_LEAP = 12,
2195
+ SUSE_LINUX_ENTERPRISE = 13,
2196
+ }
2197
+
2198
+ export enum SoftwareType {
2199
+ UNKNOWN_SOFTWARE_TYPE = 0,
2200
+ PACKAGE = 1,
2201
+ FLATPAK = 2,
2202
+ SNAP = 3,
2203
+ UNBUNDLED = 4,
2204
+ }