@lansweeper/data-platform-outbound-grpc 0.1.50 → 0.1.52
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +294 -0
- package/gen-proto/outbound_pb.js +2296 -1
- package/generated-go/outbound.pb.go +3631 -2935
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +69 -0
|
@@ -319,6 +319,11 @@ export class Asset extends jspb.Message {
|
|
|
319
319
|
getScanErrorList(): Array<ScanError>;
|
|
320
320
|
setScanErrorList(value: Array<ScanError>): Asset;
|
|
321
321
|
addScanError(value?: ScanError, index?: number): ScanError;
|
|
322
|
+
|
|
323
|
+
hasLastSyncedSource(): boolean;
|
|
324
|
+
clearLastSyncedSource(): void;
|
|
325
|
+
getLastSyncedSource(): string | undefined;
|
|
326
|
+
setLastSyncedSource(value: string): Asset;
|
|
322
327
|
clearTagList(): void;
|
|
323
328
|
getTagList(): Array<Tag>;
|
|
324
329
|
setTagList(value: Array<Tag>): Asset;
|
|
@@ -401,6 +406,14 @@ export class Asset extends jspb.Message {
|
|
|
401
406
|
getHardDriveList(): Array<HardDrive>;
|
|
402
407
|
setHardDriveList(value: Array<HardDrive>): Asset;
|
|
403
408
|
addHardDrive(value?: HardDrive, index?: number): HardDrive;
|
|
409
|
+
clearDriveVolumeList(): void;
|
|
410
|
+
getDriveVolumeList(): Array<DriveVolume>;
|
|
411
|
+
setDriveVolumeList(value: Array<DriveVolume>): Asset;
|
|
412
|
+
addDriveVolume(value?: DriveVolume, index?: number): DriveVolume;
|
|
413
|
+
clearNetworkVolumeList(): void;
|
|
414
|
+
getNetworkVolumeList(): Array<NetworkVolume>;
|
|
415
|
+
setNetworkVolumeList(value: Array<NetworkVolume>): Asset;
|
|
416
|
+
addNetworkVolume(value?: NetworkVolume, index?: number): NetworkVolume;
|
|
404
417
|
clearGraphicsCardList(): void;
|
|
405
418
|
getGraphicsCardList(): Array<GraphicsCard>;
|
|
406
419
|
setGraphicsCardList(value: Array<GraphicsCard>): Asset;
|
|
@@ -465,6 +478,7 @@ export namespace Asset {
|
|
|
465
478
|
lastEnriched?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
466
479
|
uniqueKey?: string,
|
|
467
480
|
scanErrorList: Array<ScanError.AsObject>,
|
|
481
|
+
lastSyncedSource?: string,
|
|
468
482
|
tagList: Array<Tag.AsObject>,
|
|
469
483
|
relationList: Array<Relation.AsObject>,
|
|
470
484
|
core?: CoreFields.AsObject,
|
|
@@ -483,6 +497,8 @@ export namespace Asset {
|
|
|
483
497
|
motherboard?: Motherboard.AsObject,
|
|
484
498
|
opticalDriveList: Array<OpticalDrive.AsObject>,
|
|
485
499
|
hardDriveList: Array<HardDrive.AsObject>,
|
|
500
|
+
driveVolumeList: Array<DriveVolume.AsObject>,
|
|
501
|
+
networkVolumeList: Array<NetworkVolume.AsObject>,
|
|
486
502
|
graphicsCardList: Array<GraphicsCard.AsObject>,
|
|
487
503
|
soundCardList: Array<SoundCard.AsObject>,
|
|
488
504
|
keyboardList: Array<Keyboard.AsObject>,
|
|
@@ -2172,6 +2188,284 @@ export namespace HardDrive {
|
|
|
2172
2188
|
}
|
|
2173
2189
|
}
|
|
2174
2190
|
|
|
2191
|
+
export class DriveVolume extends jspb.Message {
|
|
2192
|
+
|
|
2193
|
+
hasDeviceId(): boolean;
|
|
2194
|
+
clearDeviceId(): void;
|
|
2195
|
+
getDeviceId(): string | undefined;
|
|
2196
|
+
setDeviceId(value: string): DriveVolume;
|
|
2197
|
+
|
|
2198
|
+
hasPath(): boolean;
|
|
2199
|
+
clearPath(): void;
|
|
2200
|
+
getPath(): string | undefined;
|
|
2201
|
+
setPath(value: string): DriveVolume;
|
|
2202
|
+
|
|
2203
|
+
hasLabel(): boolean;
|
|
2204
|
+
clearLabel(): void;
|
|
2205
|
+
getLabel(): string | undefined;
|
|
2206
|
+
setLabel(value: string): DriveVolume;
|
|
2207
|
+
|
|
2208
|
+
hasName(): boolean;
|
|
2209
|
+
clearName(): void;
|
|
2210
|
+
getName(): string | undefined;
|
|
2211
|
+
setName(value: string): DriveVolume;
|
|
2212
|
+
|
|
2213
|
+
hasCapacity(): boolean;
|
|
2214
|
+
clearCapacity(): void;
|
|
2215
|
+
getCapacity(): number | undefined;
|
|
2216
|
+
setCapacity(value: number): DriveVolume;
|
|
2217
|
+
|
|
2218
|
+
hasBlockSize(): boolean;
|
|
2219
|
+
clearBlockSize(): void;
|
|
2220
|
+
getBlockSize(): number | undefined;
|
|
2221
|
+
setBlockSize(value: number): DriveVolume;
|
|
2222
|
+
|
|
2223
|
+
hasFreeSpace(): boolean;
|
|
2224
|
+
clearFreeSpace(): void;
|
|
2225
|
+
getFreeSpace(): number | undefined;
|
|
2226
|
+
setFreeSpace(value: number): DriveVolume;
|
|
2227
|
+
|
|
2228
|
+
hasDriveType(): boolean;
|
|
2229
|
+
clearDriveType(): void;
|
|
2230
|
+
getDriveType(): MappedValue | undefined;
|
|
2231
|
+
setDriveType(value?: MappedValue): DriveVolume;
|
|
2232
|
+
|
|
2233
|
+
hasProtectionStatus(): boolean;
|
|
2234
|
+
clearProtectionStatus(): void;
|
|
2235
|
+
getProtectionStatus(): MappedValue | undefined;
|
|
2236
|
+
setProtectionStatus(value?: MappedValue): DriveVolume;
|
|
2237
|
+
|
|
2238
|
+
hasErrorDescription(): boolean;
|
|
2239
|
+
clearErrorDescription(): void;
|
|
2240
|
+
getErrorDescription(): string | undefined;
|
|
2241
|
+
setErrorDescription(value: string): DriveVolume;
|
|
2242
|
+
|
|
2243
|
+
hasErrorMethodology(): boolean;
|
|
2244
|
+
clearErrorMethodology(): void;
|
|
2245
|
+
getErrorMethodology(): string | undefined;
|
|
2246
|
+
setErrorMethodology(value: string): DriveVolume;
|
|
2247
|
+
|
|
2248
|
+
hasFileSystem(): boolean;
|
|
2249
|
+
clearFileSystem(): void;
|
|
2250
|
+
getFileSystem(): string | undefined;
|
|
2251
|
+
setFileSystem(value: string): DriveVolume;
|
|
2252
|
+
|
|
2253
|
+
hasAutoMount(): boolean;
|
|
2254
|
+
clearAutoMount(): void;
|
|
2255
|
+
getAutoMount(): boolean | undefined;
|
|
2256
|
+
setAutoMount(value: boolean): DriveVolume;
|
|
2257
|
+
|
|
2258
|
+
hasCompressed(): boolean;
|
|
2259
|
+
clearCompressed(): void;
|
|
2260
|
+
getCompressed(): boolean | undefined;
|
|
2261
|
+
setCompressed(value: boolean): DriveVolume;
|
|
2262
|
+
|
|
2263
|
+
hasDirtyBitSet(): boolean;
|
|
2264
|
+
clearDirtyBitSet(): void;
|
|
2265
|
+
getDirtyBitSet(): boolean | undefined;
|
|
2266
|
+
setDirtyBitSet(value: boolean): DriveVolume;
|
|
2267
|
+
|
|
2268
|
+
hasErrorCleared(): boolean;
|
|
2269
|
+
clearErrorCleared(): void;
|
|
2270
|
+
getErrorCleared(): boolean | undefined;
|
|
2271
|
+
setErrorCleared(value: boolean): DriveVolume;
|
|
2272
|
+
|
|
2273
|
+
hasIndexingEnabled(): boolean;
|
|
2274
|
+
clearIndexingEnabled(): void;
|
|
2275
|
+
getIndexingEnabled(): boolean | undefined;
|
|
2276
|
+
setIndexingEnabled(value: boolean): DriveVolume;
|
|
2277
|
+
|
|
2278
|
+
hasPageFilePresent(): boolean;
|
|
2279
|
+
clearPageFilePresent(): void;
|
|
2280
|
+
getPageFilePresent(): boolean | undefined;
|
|
2281
|
+
setPageFilePresent(value: boolean): DriveVolume;
|
|
2282
|
+
|
|
2283
|
+
hasSupportsDiskQuotas(): boolean;
|
|
2284
|
+
clearSupportsDiskQuotas(): void;
|
|
2285
|
+
getSupportsDiskQuotas(): boolean | undefined;
|
|
2286
|
+
setSupportsDiskQuotas(value: boolean): DriveVolume;
|
|
2287
|
+
|
|
2288
|
+
hasSupportsFileBasedCompression(): boolean;
|
|
2289
|
+
clearSupportsFileBasedCompression(): void;
|
|
2290
|
+
getSupportsFileBasedCompression(): boolean | undefined;
|
|
2291
|
+
setSupportsFileBasedCompression(value: boolean): DriveVolume;
|
|
2292
|
+
|
|
2293
|
+
hasMounted(): boolean;
|
|
2294
|
+
clearMounted(): void;
|
|
2295
|
+
getMounted(): string | undefined;
|
|
2296
|
+
setMounted(value: string): DriveVolume;
|
|
2297
|
+
|
|
2298
|
+
hasMountPoint(): boolean;
|
|
2299
|
+
clearMountPoint(): void;
|
|
2300
|
+
getMountPoint(): string | undefined;
|
|
2301
|
+
setMountPoint(value: string): DriveVolume;
|
|
2302
|
+
|
|
2303
|
+
serializeBinary(): Uint8Array;
|
|
2304
|
+
toObject(includeInstance?: boolean): DriveVolume.AsObject;
|
|
2305
|
+
static toObject(includeInstance: boolean, msg: DriveVolume): DriveVolume.AsObject;
|
|
2306
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2307
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2308
|
+
static serializeBinaryToWriter(message: DriveVolume, writer: jspb.BinaryWriter): void;
|
|
2309
|
+
static deserializeBinary(bytes: Uint8Array): DriveVolume;
|
|
2310
|
+
static deserializeBinaryFromReader(message: DriveVolume, reader: jspb.BinaryReader): DriveVolume;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
export namespace DriveVolume {
|
|
2314
|
+
export type AsObject = {
|
|
2315
|
+
deviceId?: string,
|
|
2316
|
+
path?: string,
|
|
2317
|
+
label?: string,
|
|
2318
|
+
name?: string,
|
|
2319
|
+
capacity?: number,
|
|
2320
|
+
blockSize?: number,
|
|
2321
|
+
freeSpace?: number,
|
|
2322
|
+
driveType?: MappedValue.AsObject,
|
|
2323
|
+
protectionStatus?: MappedValue.AsObject,
|
|
2324
|
+
errorDescription?: string,
|
|
2325
|
+
errorMethodology?: string,
|
|
2326
|
+
fileSystem?: string,
|
|
2327
|
+
autoMount?: boolean,
|
|
2328
|
+
compressed?: boolean,
|
|
2329
|
+
dirtyBitSet?: boolean,
|
|
2330
|
+
errorCleared?: boolean,
|
|
2331
|
+
indexingEnabled?: boolean,
|
|
2332
|
+
pageFilePresent?: boolean,
|
|
2333
|
+
supportsDiskQuotas?: boolean,
|
|
2334
|
+
supportsFileBasedCompression?: boolean,
|
|
2335
|
+
mounted?: string,
|
|
2336
|
+
mountPoint?: string,
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
export class NetworkVolume extends jspb.Message {
|
|
2341
|
+
|
|
2342
|
+
hasWinMappedDrive(): boolean;
|
|
2343
|
+
clearWinMappedDrive(): void;
|
|
2344
|
+
getWinMappedDrive(): WindowsMappedDrive | undefined;
|
|
2345
|
+
setWinMappedDrive(value?: WindowsMappedDrive): NetworkVolume;
|
|
2346
|
+
|
|
2347
|
+
hasMacVolume(): boolean;
|
|
2348
|
+
clearMacVolume(): void;
|
|
2349
|
+
getMacVolume(): MacNetworkVolume | undefined;
|
|
2350
|
+
setMacVolume(value?: MacNetworkVolume): NetworkVolume;
|
|
2351
|
+
|
|
2352
|
+
hasName(): boolean;
|
|
2353
|
+
clearName(): void;
|
|
2354
|
+
getName(): string | undefined;
|
|
2355
|
+
setName(value: string): NetworkVolume;
|
|
2356
|
+
|
|
2357
|
+
getDriverCase(): NetworkVolume.DriverCase;
|
|
2358
|
+
|
|
2359
|
+
serializeBinary(): Uint8Array;
|
|
2360
|
+
toObject(includeInstance?: boolean): NetworkVolume.AsObject;
|
|
2361
|
+
static toObject(includeInstance: boolean, msg: NetworkVolume): NetworkVolume.AsObject;
|
|
2362
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2363
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2364
|
+
static serializeBinaryToWriter(message: NetworkVolume, writer: jspb.BinaryWriter): void;
|
|
2365
|
+
static deserializeBinary(bytes: Uint8Array): NetworkVolume;
|
|
2366
|
+
static deserializeBinaryFromReader(message: NetworkVolume, reader: jspb.BinaryReader): NetworkVolume;
|
|
2367
|
+
}
|
|
2368
|
+
|
|
2369
|
+
export namespace NetworkVolume {
|
|
2370
|
+
export type AsObject = {
|
|
2371
|
+
winMappedDrive?: WindowsMappedDrive.AsObject,
|
|
2372
|
+
macVolume?: MacNetworkVolume.AsObject,
|
|
2373
|
+
name?: string,
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
export enum DriverCase {
|
|
2377
|
+
DRIVER_NOT_SET = 0,
|
|
2378
|
+
WIN_MAPPED_DRIVE = 1,
|
|
2379
|
+
MAC_VOLUME = 2,
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
export class WindowsMappedDrive extends jspb.Message {
|
|
2385
|
+
getDriveLetter(): string;
|
|
2386
|
+
setDriveLetter(value: string): WindowsMappedDrive;
|
|
2387
|
+
|
|
2388
|
+
hasUserName(): boolean;
|
|
2389
|
+
clearUserName(): void;
|
|
2390
|
+
getUserName(): string | undefined;
|
|
2391
|
+
setUserName(value: string): WindowsMappedDrive;
|
|
2392
|
+
|
|
2393
|
+
hasUserDomain(): boolean;
|
|
2394
|
+
clearUserDomain(): void;
|
|
2395
|
+
getUserDomain(): string | undefined;
|
|
2396
|
+
setUserDomain(value: string): WindowsMappedDrive;
|
|
2397
|
+
|
|
2398
|
+
hasRemotePath(): boolean;
|
|
2399
|
+
clearRemotePath(): void;
|
|
2400
|
+
getRemotePath(): string | undefined;
|
|
2401
|
+
setRemotePath(value: string): WindowsMappedDrive;
|
|
2402
|
+
|
|
2403
|
+
serializeBinary(): Uint8Array;
|
|
2404
|
+
toObject(includeInstance?: boolean): WindowsMappedDrive.AsObject;
|
|
2405
|
+
static toObject(includeInstance: boolean, msg: WindowsMappedDrive): WindowsMappedDrive.AsObject;
|
|
2406
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2407
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2408
|
+
static serializeBinaryToWriter(message: WindowsMappedDrive, writer: jspb.BinaryWriter): void;
|
|
2409
|
+
static deserializeBinary(bytes: Uint8Array): WindowsMappedDrive;
|
|
2410
|
+
static deserializeBinaryFromReader(message: WindowsMappedDrive, reader: jspb.BinaryReader): WindowsMappedDrive;
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
export namespace WindowsMappedDrive {
|
|
2414
|
+
export type AsObject = {
|
|
2415
|
+
driveLetter: string,
|
|
2416
|
+
userName?: string,
|
|
2417
|
+
userDomain?: string,
|
|
2418
|
+
remotePath?: string,
|
|
2419
|
+
}
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
export class MacNetworkVolume extends jspb.Message {
|
|
2423
|
+
|
|
2424
|
+
hasName(): boolean;
|
|
2425
|
+
clearName(): void;
|
|
2426
|
+
getName(): string | undefined;
|
|
2427
|
+
setName(value: string): MacNetworkVolume;
|
|
2428
|
+
|
|
2429
|
+
hasAutoMounted(): boolean;
|
|
2430
|
+
clearAutoMounted(): void;
|
|
2431
|
+
getAutoMounted(): string | undefined;
|
|
2432
|
+
setAutoMounted(value: string): MacNetworkVolume;
|
|
2433
|
+
|
|
2434
|
+
hasFsmtNonName(): boolean;
|
|
2435
|
+
clearFsmtNonName(): void;
|
|
2436
|
+
getFsmtNonName(): string | undefined;
|
|
2437
|
+
setFsmtNonName(value: string): MacNetworkVolume;
|
|
2438
|
+
|
|
2439
|
+
hasFsTypeName(): boolean;
|
|
2440
|
+
clearFsTypeName(): void;
|
|
2441
|
+
getFsTypeName(): string | undefined;
|
|
2442
|
+
setFsTypeName(value: string): MacNetworkVolume;
|
|
2443
|
+
|
|
2444
|
+
hasMntFromName(): boolean;
|
|
2445
|
+
clearMntFromName(): void;
|
|
2446
|
+
getMntFromName(): string | undefined;
|
|
2447
|
+
setMntFromName(value: string): MacNetworkVolume;
|
|
2448
|
+
|
|
2449
|
+
serializeBinary(): Uint8Array;
|
|
2450
|
+
toObject(includeInstance?: boolean): MacNetworkVolume.AsObject;
|
|
2451
|
+
static toObject(includeInstance: boolean, msg: MacNetworkVolume): MacNetworkVolume.AsObject;
|
|
2452
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2453
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2454
|
+
static serializeBinaryToWriter(message: MacNetworkVolume, writer: jspb.BinaryWriter): void;
|
|
2455
|
+
static deserializeBinary(bytes: Uint8Array): MacNetworkVolume;
|
|
2456
|
+
static deserializeBinaryFromReader(message: MacNetworkVolume, reader: jspb.BinaryReader): MacNetworkVolume;
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
export namespace MacNetworkVolume {
|
|
2460
|
+
export type AsObject = {
|
|
2461
|
+
name?: string,
|
|
2462
|
+
autoMounted?: string,
|
|
2463
|
+
fsmtNonName?: string,
|
|
2464
|
+
fsTypeName?: string,
|
|
2465
|
+
mntFromName?: string,
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2175
2469
|
export class Keyboard extends jspb.Message {
|
|
2176
2470
|
|
|
2177
2471
|
hasConfigManagerErrorCode(): boolean;
|