@lansweeper/data-platform-outbound-grpc 0.1.50 → 0.1.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +154 -0
- package/gen-proto/outbound_pb.js +1238 -1
- package/generated-go/outbound.pb.go +1496 -1162
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +36 -0
|
@@ -401,6 +401,10 @@ export class Asset extends jspb.Message {
|
|
|
401
401
|
getHardDriveList(): Array<HardDrive>;
|
|
402
402
|
setHardDriveList(value: Array<HardDrive>): Asset;
|
|
403
403
|
addHardDrive(value?: HardDrive, index?: number): HardDrive;
|
|
404
|
+
clearDriveVolumeList(): void;
|
|
405
|
+
getDriveVolumeList(): Array<DriveVolume>;
|
|
406
|
+
setDriveVolumeList(value: Array<DriveVolume>): Asset;
|
|
407
|
+
addDriveVolume(value?: DriveVolume, index?: number): DriveVolume;
|
|
404
408
|
clearGraphicsCardList(): void;
|
|
405
409
|
getGraphicsCardList(): Array<GraphicsCard>;
|
|
406
410
|
setGraphicsCardList(value: Array<GraphicsCard>): Asset;
|
|
@@ -483,6 +487,7 @@ export namespace Asset {
|
|
|
483
487
|
motherboard?: Motherboard.AsObject,
|
|
484
488
|
opticalDriveList: Array<OpticalDrive.AsObject>,
|
|
485
489
|
hardDriveList: Array<HardDrive.AsObject>,
|
|
490
|
+
driveVolumeList: Array<DriveVolume.AsObject>,
|
|
486
491
|
graphicsCardList: Array<GraphicsCard.AsObject>,
|
|
487
492
|
soundCardList: Array<SoundCard.AsObject>,
|
|
488
493
|
keyboardList: Array<Keyboard.AsObject>,
|
|
@@ -2172,6 +2177,155 @@ export namespace HardDrive {
|
|
|
2172
2177
|
}
|
|
2173
2178
|
}
|
|
2174
2179
|
|
|
2180
|
+
export class DriveVolume extends jspb.Message {
|
|
2181
|
+
|
|
2182
|
+
hasDeviceId(): boolean;
|
|
2183
|
+
clearDeviceId(): void;
|
|
2184
|
+
getDeviceId(): string | undefined;
|
|
2185
|
+
setDeviceId(value: string): DriveVolume;
|
|
2186
|
+
|
|
2187
|
+
hasPath(): boolean;
|
|
2188
|
+
clearPath(): void;
|
|
2189
|
+
getPath(): string | undefined;
|
|
2190
|
+
setPath(value: string): DriveVolume;
|
|
2191
|
+
|
|
2192
|
+
hasLabel(): boolean;
|
|
2193
|
+
clearLabel(): void;
|
|
2194
|
+
getLabel(): string | undefined;
|
|
2195
|
+
setLabel(value: string): DriveVolume;
|
|
2196
|
+
|
|
2197
|
+
hasName(): boolean;
|
|
2198
|
+
clearName(): void;
|
|
2199
|
+
getName(): string | undefined;
|
|
2200
|
+
setName(value: string): DriveVolume;
|
|
2201
|
+
|
|
2202
|
+
hasCapacity(): boolean;
|
|
2203
|
+
clearCapacity(): void;
|
|
2204
|
+
getCapacity(): number | undefined;
|
|
2205
|
+
setCapacity(value: number): DriveVolume;
|
|
2206
|
+
|
|
2207
|
+
hasBlockSize(): boolean;
|
|
2208
|
+
clearBlockSize(): void;
|
|
2209
|
+
getBlockSize(): number | undefined;
|
|
2210
|
+
setBlockSize(value: number): DriveVolume;
|
|
2211
|
+
|
|
2212
|
+
hasFreeSpace(): boolean;
|
|
2213
|
+
clearFreeSpace(): void;
|
|
2214
|
+
getFreeSpace(): number | undefined;
|
|
2215
|
+
setFreeSpace(value: number): DriveVolume;
|
|
2216
|
+
|
|
2217
|
+
hasDriveType(): boolean;
|
|
2218
|
+
clearDriveType(): void;
|
|
2219
|
+
getDriveType(): MappedValue | undefined;
|
|
2220
|
+
setDriveType(value?: MappedValue): DriveVolume;
|
|
2221
|
+
|
|
2222
|
+
hasProtectionStatus(): boolean;
|
|
2223
|
+
clearProtectionStatus(): void;
|
|
2224
|
+
getProtectionStatus(): MappedValue | undefined;
|
|
2225
|
+
setProtectionStatus(value?: MappedValue): DriveVolume;
|
|
2226
|
+
|
|
2227
|
+
hasErrorDescription(): boolean;
|
|
2228
|
+
clearErrorDescription(): void;
|
|
2229
|
+
getErrorDescription(): string | undefined;
|
|
2230
|
+
setErrorDescription(value: string): DriveVolume;
|
|
2231
|
+
|
|
2232
|
+
hasErrorMethodology(): boolean;
|
|
2233
|
+
clearErrorMethodology(): void;
|
|
2234
|
+
getErrorMethodology(): string | undefined;
|
|
2235
|
+
setErrorMethodology(value: string): DriveVolume;
|
|
2236
|
+
|
|
2237
|
+
hasFileSystem(): boolean;
|
|
2238
|
+
clearFileSystem(): void;
|
|
2239
|
+
getFileSystem(): string | undefined;
|
|
2240
|
+
setFileSystem(value: string): DriveVolume;
|
|
2241
|
+
|
|
2242
|
+
hasAutoMount(): boolean;
|
|
2243
|
+
clearAutoMount(): void;
|
|
2244
|
+
getAutoMount(): boolean | undefined;
|
|
2245
|
+
setAutoMount(value: boolean): DriveVolume;
|
|
2246
|
+
|
|
2247
|
+
hasCompressed(): boolean;
|
|
2248
|
+
clearCompressed(): void;
|
|
2249
|
+
getCompressed(): boolean | undefined;
|
|
2250
|
+
setCompressed(value: boolean): DriveVolume;
|
|
2251
|
+
|
|
2252
|
+
hasDirtyBitSet(): boolean;
|
|
2253
|
+
clearDirtyBitSet(): void;
|
|
2254
|
+
getDirtyBitSet(): boolean | undefined;
|
|
2255
|
+
setDirtyBitSet(value: boolean): DriveVolume;
|
|
2256
|
+
|
|
2257
|
+
hasErrorCleared(): boolean;
|
|
2258
|
+
clearErrorCleared(): void;
|
|
2259
|
+
getErrorCleared(): boolean | undefined;
|
|
2260
|
+
setErrorCleared(value: boolean): DriveVolume;
|
|
2261
|
+
|
|
2262
|
+
hasIndexingEnabled(): boolean;
|
|
2263
|
+
clearIndexingEnabled(): void;
|
|
2264
|
+
getIndexingEnabled(): boolean | undefined;
|
|
2265
|
+
setIndexingEnabled(value: boolean): DriveVolume;
|
|
2266
|
+
|
|
2267
|
+
hasPageFilePresent(): boolean;
|
|
2268
|
+
clearPageFilePresent(): void;
|
|
2269
|
+
getPageFilePresent(): boolean | undefined;
|
|
2270
|
+
setPageFilePresent(value: boolean): DriveVolume;
|
|
2271
|
+
|
|
2272
|
+
hasSupportsDiskQuotas(): boolean;
|
|
2273
|
+
clearSupportsDiskQuotas(): void;
|
|
2274
|
+
getSupportsDiskQuotas(): boolean | undefined;
|
|
2275
|
+
setSupportsDiskQuotas(value: boolean): DriveVolume;
|
|
2276
|
+
|
|
2277
|
+
hasSupportsFileBasedCompression(): boolean;
|
|
2278
|
+
clearSupportsFileBasedCompression(): void;
|
|
2279
|
+
getSupportsFileBasedCompression(): boolean | undefined;
|
|
2280
|
+
setSupportsFileBasedCompression(value: boolean): DriveVolume;
|
|
2281
|
+
|
|
2282
|
+
hasMounted(): boolean;
|
|
2283
|
+
clearMounted(): void;
|
|
2284
|
+
getMounted(): string | undefined;
|
|
2285
|
+
setMounted(value: string): DriveVolume;
|
|
2286
|
+
|
|
2287
|
+
hasMountPoint(): boolean;
|
|
2288
|
+
clearMountPoint(): void;
|
|
2289
|
+
getMountPoint(): string | undefined;
|
|
2290
|
+
setMountPoint(value: string): DriveVolume;
|
|
2291
|
+
|
|
2292
|
+
serializeBinary(): Uint8Array;
|
|
2293
|
+
toObject(includeInstance?: boolean): DriveVolume.AsObject;
|
|
2294
|
+
static toObject(includeInstance: boolean, msg: DriveVolume): DriveVolume.AsObject;
|
|
2295
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2296
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2297
|
+
static serializeBinaryToWriter(message: DriveVolume, writer: jspb.BinaryWriter): void;
|
|
2298
|
+
static deserializeBinary(bytes: Uint8Array): DriveVolume;
|
|
2299
|
+
static deserializeBinaryFromReader(message: DriveVolume, reader: jspb.BinaryReader): DriveVolume;
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
export namespace DriveVolume {
|
|
2303
|
+
export type AsObject = {
|
|
2304
|
+
deviceId?: string,
|
|
2305
|
+
path?: string,
|
|
2306
|
+
label?: string,
|
|
2307
|
+
name?: string,
|
|
2308
|
+
capacity?: number,
|
|
2309
|
+
blockSize?: number,
|
|
2310
|
+
freeSpace?: number,
|
|
2311
|
+
driveType?: MappedValue.AsObject,
|
|
2312
|
+
protectionStatus?: MappedValue.AsObject,
|
|
2313
|
+
errorDescription?: string,
|
|
2314
|
+
errorMethodology?: string,
|
|
2315
|
+
fileSystem?: string,
|
|
2316
|
+
autoMount?: boolean,
|
|
2317
|
+
compressed?: boolean,
|
|
2318
|
+
dirtyBitSet?: boolean,
|
|
2319
|
+
errorCleared?: boolean,
|
|
2320
|
+
indexingEnabled?: boolean,
|
|
2321
|
+
pageFilePresent?: boolean,
|
|
2322
|
+
supportsDiskQuotas?: boolean,
|
|
2323
|
+
supportsFileBasedCompression?: boolean,
|
|
2324
|
+
mounted?: string,
|
|
2325
|
+
mountPoint?: string,
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2175
2329
|
export class Keyboard extends jspb.Message {
|
|
2176
2330
|
|
|
2177
2331
|
hasConfigManagerErrorCode(): boolean;
|