@lansweeper/discovery-sensor-proto 2.47.0 → 2.48.0
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.
|
@@ -3421,3 +3421,296 @@ export namespace PrinterCupsFilter {
|
|
|
3421
3421
|
imageTypeSetting?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3422
3422
|
}
|
|
3423
3423
|
}
|
|
3424
|
+
|
|
3425
|
+
export class MacSATA extends jspb.Message {
|
|
3426
|
+
clearEntriesList(): void;
|
|
3427
|
+
getEntriesList(): Array<SATAController>;
|
|
3428
|
+
setEntriesList(value: Array<SATAController>): MacSATA;
|
|
3429
|
+
addEntries(value?: SATAController, index?: number): SATAController;
|
|
3430
|
+
|
|
3431
|
+
serializeBinary(): Uint8Array;
|
|
3432
|
+
toObject(includeInstance?: boolean): MacSATA.AsObject;
|
|
3433
|
+
static toObject(includeInstance: boolean, msg: MacSATA): MacSATA.AsObject;
|
|
3434
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3435
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3436
|
+
static serializeBinaryToWriter(message: MacSATA, writer: jspb.BinaryWriter): void;
|
|
3437
|
+
static deserializeBinary(bytes: Uint8Array): MacSATA;
|
|
3438
|
+
static deserializeBinaryFromReader(message: MacSATA, reader: jspb.BinaryReader): MacSATA;
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3441
|
+
export namespace MacSATA {
|
|
3442
|
+
export type AsObject = {
|
|
3443
|
+
entriesList: Array<SATAController.AsObject>,
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
export class SATAController extends jspb.Message {
|
|
3448
|
+
|
|
3449
|
+
hasName(): boolean;
|
|
3450
|
+
clearName(): void;
|
|
3451
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3452
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3453
|
+
|
|
3454
|
+
hasNegotiatedLinkSpeed(): boolean;
|
|
3455
|
+
clearNegotiatedLinkSpeed(): void;
|
|
3456
|
+
getNegotiatedLinkSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3457
|
+
setNegotiatedLinkSpeed(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3458
|
+
|
|
3459
|
+
hasPhysicalInterconnect(): boolean;
|
|
3460
|
+
clearPhysicalInterconnect(): void;
|
|
3461
|
+
getPhysicalInterconnect(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3462
|
+
setPhysicalInterconnect(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3463
|
+
|
|
3464
|
+
hasPortDescription(): boolean;
|
|
3465
|
+
clearPortDescription(): void;
|
|
3466
|
+
getPortDescription(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3467
|
+
setPortDescription(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3468
|
+
|
|
3469
|
+
hasPortSpeed(): boolean;
|
|
3470
|
+
clearPortSpeed(): void;
|
|
3471
|
+
getPortSpeed(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3472
|
+
setPortSpeed(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3473
|
+
|
|
3474
|
+
hasProduct(): boolean;
|
|
3475
|
+
clearProduct(): void;
|
|
3476
|
+
getProduct(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3477
|
+
setProduct(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3478
|
+
|
|
3479
|
+
hasVendor(): boolean;
|
|
3480
|
+
clearVendor(): void;
|
|
3481
|
+
getVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3482
|
+
setVendor(value?: google_protobuf_wrappers_pb.StringValue): SATAController;
|
|
3483
|
+
clearDevicesList(): void;
|
|
3484
|
+
getDevicesList(): Array<SATADevice>;
|
|
3485
|
+
setDevicesList(value: Array<SATADevice>): SATAController;
|
|
3486
|
+
addDevices(value?: SATADevice, index?: number): SATADevice;
|
|
3487
|
+
|
|
3488
|
+
serializeBinary(): Uint8Array;
|
|
3489
|
+
toObject(includeInstance?: boolean): SATAController.AsObject;
|
|
3490
|
+
static toObject(includeInstance: boolean, msg: SATAController): SATAController.AsObject;
|
|
3491
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3492
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3493
|
+
static serializeBinaryToWriter(message: SATAController, writer: jspb.BinaryWriter): void;
|
|
3494
|
+
static deserializeBinary(bytes: Uint8Array): SATAController;
|
|
3495
|
+
static deserializeBinaryFromReader(message: SATAController, reader: jspb.BinaryReader): SATAController;
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
export namespace SATAController {
|
|
3499
|
+
export type AsObject = {
|
|
3500
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3501
|
+
negotiatedLinkSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3502
|
+
physicalInterconnect?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3503
|
+
portDescription?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3504
|
+
portSpeed?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3505
|
+
product?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3506
|
+
vendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3507
|
+
devicesList: Array<SATADevice.AsObject>,
|
|
3508
|
+
}
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
export class SATADevice extends jspb.Message {
|
|
3512
|
+
|
|
3513
|
+
hasName(): boolean;
|
|
3514
|
+
clearName(): void;
|
|
3515
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3516
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3517
|
+
|
|
3518
|
+
hasBsdName(): boolean;
|
|
3519
|
+
clearBsdName(): void;
|
|
3520
|
+
getBsdName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3521
|
+
setBsdName(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3522
|
+
|
|
3523
|
+
hasDetachableDrive(): boolean;
|
|
3524
|
+
clearDetachableDrive(): void;
|
|
3525
|
+
getDetachableDrive(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3526
|
+
setDetachableDrive(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3527
|
+
|
|
3528
|
+
hasDeviceModel(): boolean;
|
|
3529
|
+
clearDeviceModel(): void;
|
|
3530
|
+
getDeviceModel(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3531
|
+
setDeviceModel(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3532
|
+
|
|
3533
|
+
hasDeviceRevision(): boolean;
|
|
3534
|
+
clearDeviceRevision(): void;
|
|
3535
|
+
getDeviceRevision(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3536
|
+
setDeviceRevision(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3537
|
+
|
|
3538
|
+
hasDeviceSerialNumber(): boolean;
|
|
3539
|
+
clearDeviceSerialNumber(): void;
|
|
3540
|
+
getDeviceSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3541
|
+
setDeviceSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3542
|
+
|
|
3543
|
+
hasPartitionMapType(): boolean;
|
|
3544
|
+
clearPartitionMapType(): void;
|
|
3545
|
+
getPartitionMapType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3546
|
+
setPartitionMapType(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3547
|
+
|
|
3548
|
+
hasRemovableMedia(): boolean;
|
|
3549
|
+
clearRemovableMedia(): void;
|
|
3550
|
+
getRemovableMedia(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3551
|
+
setRemovableMedia(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3552
|
+
|
|
3553
|
+
hasSize(): boolean;
|
|
3554
|
+
clearSize(): void;
|
|
3555
|
+
getSize(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3556
|
+
setSize(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3557
|
+
|
|
3558
|
+
hasSizeInBytes(): boolean;
|
|
3559
|
+
clearSizeInBytes(): void;
|
|
3560
|
+
getSizeInBytes(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3561
|
+
setSizeInBytes(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3562
|
+
|
|
3563
|
+
hasSmartStatus(): boolean;
|
|
3564
|
+
clearSmartStatus(): void;
|
|
3565
|
+
getSmartStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3566
|
+
setSmartStatus(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3567
|
+
|
|
3568
|
+
hasMediumType(): boolean;
|
|
3569
|
+
clearMediumType(): void;
|
|
3570
|
+
getMediumType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3571
|
+
setMediumType(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3572
|
+
|
|
3573
|
+
hasNativeCommandQueuing(): boolean;
|
|
3574
|
+
clearNativeCommandQueuing(): void;
|
|
3575
|
+
getNativeCommandQueuing(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3576
|
+
setNativeCommandQueuing(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3577
|
+
|
|
3578
|
+
hasQueueDepth(): boolean;
|
|
3579
|
+
clearQueueDepth(): void;
|
|
3580
|
+
getQueueDepth(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3581
|
+
setQueueDepth(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3582
|
+
|
|
3583
|
+
hasTrimSupport(): boolean;
|
|
3584
|
+
clearTrimSupport(): void;
|
|
3585
|
+
getTrimSupport(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3586
|
+
setTrimSupport(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3587
|
+
|
|
3588
|
+
hasAsyncNotification(): boolean;
|
|
3589
|
+
clearAsyncNotification(): void;
|
|
3590
|
+
getAsyncNotification(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3591
|
+
setAsyncNotification(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3592
|
+
|
|
3593
|
+
hasPowerOff(): boolean;
|
|
3594
|
+
clearPowerOff(): void;
|
|
3595
|
+
getPowerOff(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3596
|
+
setPowerOff(value?: google_protobuf_wrappers_pb.StringValue): SATADevice;
|
|
3597
|
+
clearVolumesList(): void;
|
|
3598
|
+
getVolumesList(): Array<SATAVolume>;
|
|
3599
|
+
setVolumesList(value: Array<SATAVolume>): SATADevice;
|
|
3600
|
+
addVolumes(value?: SATAVolume, index?: number): SATAVolume;
|
|
3601
|
+
|
|
3602
|
+
serializeBinary(): Uint8Array;
|
|
3603
|
+
toObject(includeInstance?: boolean): SATADevice.AsObject;
|
|
3604
|
+
static toObject(includeInstance: boolean, msg: SATADevice): SATADevice.AsObject;
|
|
3605
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3606
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3607
|
+
static serializeBinaryToWriter(message: SATADevice, writer: jspb.BinaryWriter): void;
|
|
3608
|
+
static deserializeBinary(bytes: Uint8Array): SATADevice;
|
|
3609
|
+
static deserializeBinaryFromReader(message: SATADevice, reader: jspb.BinaryReader): SATADevice;
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3612
|
+
export namespace SATADevice {
|
|
3613
|
+
export type AsObject = {
|
|
3614
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3615
|
+
bsdName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3616
|
+
detachableDrive?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3617
|
+
deviceModel?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3618
|
+
deviceRevision?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3619
|
+
deviceSerialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3620
|
+
partitionMapType?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3621
|
+
removableMedia?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3622
|
+
size?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3623
|
+
sizeInBytes?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3624
|
+
smartStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3625
|
+
mediumType?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3626
|
+
nativeCommandQueuing?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3627
|
+
queueDepth?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3628
|
+
trimSupport?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3629
|
+
asyncNotification?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3630
|
+
powerOff?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3631
|
+
volumesList: Array<SATAVolume.AsObject>,
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
export class SATAVolume extends jspb.Message {
|
|
3636
|
+
|
|
3637
|
+
hasName(): boolean;
|
|
3638
|
+
clearName(): void;
|
|
3639
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3640
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3641
|
+
|
|
3642
|
+
hasBsdName(): boolean;
|
|
3643
|
+
clearBsdName(): void;
|
|
3644
|
+
getBsdName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3645
|
+
setBsdName(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3646
|
+
|
|
3647
|
+
hasFileSystem(): boolean;
|
|
3648
|
+
clearFileSystem(): void;
|
|
3649
|
+
getFileSystem(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3650
|
+
setFileSystem(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3651
|
+
|
|
3652
|
+
hasFreeSpace(): boolean;
|
|
3653
|
+
clearFreeSpace(): void;
|
|
3654
|
+
getFreeSpace(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3655
|
+
setFreeSpace(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3656
|
+
|
|
3657
|
+
hasFreeSpaceInBytes(): boolean;
|
|
3658
|
+
clearFreeSpaceInBytes(): void;
|
|
3659
|
+
getFreeSpaceInBytes(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3660
|
+
setFreeSpaceInBytes(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3661
|
+
|
|
3662
|
+
hasIoContent(): boolean;
|
|
3663
|
+
clearIoContent(): void;
|
|
3664
|
+
getIoContent(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3665
|
+
setIoContent(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3666
|
+
|
|
3667
|
+
hasMountPoint(): boolean;
|
|
3668
|
+
clearMountPoint(): void;
|
|
3669
|
+
getMountPoint(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3670
|
+
setMountPoint(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3671
|
+
|
|
3672
|
+
hasSize(): boolean;
|
|
3673
|
+
clearSize(): void;
|
|
3674
|
+
getSize(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3675
|
+
setSize(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3676
|
+
|
|
3677
|
+
hasSizeInBytes(): boolean;
|
|
3678
|
+
clearSizeInBytes(): void;
|
|
3679
|
+
getSizeInBytes(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3680
|
+
setSizeInBytes(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3681
|
+
|
|
3682
|
+
hasVolumeUuid(): boolean;
|
|
3683
|
+
clearVolumeUuid(): void;
|
|
3684
|
+
getVolumeUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3685
|
+
setVolumeUuid(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3686
|
+
|
|
3687
|
+
hasWritable(): boolean;
|
|
3688
|
+
clearWritable(): void;
|
|
3689
|
+
getWritable(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3690
|
+
setWritable(value?: google_protobuf_wrappers_pb.StringValue): SATAVolume;
|
|
3691
|
+
|
|
3692
|
+
serializeBinary(): Uint8Array;
|
|
3693
|
+
toObject(includeInstance?: boolean): SATAVolume.AsObject;
|
|
3694
|
+
static toObject(includeInstance: boolean, msg: SATAVolume): SATAVolume.AsObject;
|
|
3695
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3696
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3697
|
+
static serializeBinaryToWriter(message: SATAVolume, writer: jspb.BinaryWriter): void;
|
|
3698
|
+
static deserializeBinary(bytes: Uint8Array): SATAVolume;
|
|
3699
|
+
static deserializeBinaryFromReader(message: SATAVolume, reader: jspb.BinaryReader): SATAVolume;
|
|
3700
|
+
}
|
|
3701
|
+
|
|
3702
|
+
export namespace SATAVolume {
|
|
3703
|
+
export type AsObject = {
|
|
3704
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3705
|
+
bsdName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3706
|
+
fileSystem?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3707
|
+
freeSpace?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3708
|
+
freeSpaceInBytes?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3709
|
+
ioContent?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3710
|
+
mountPoint?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3711
|
+
size?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3712
|
+
sizeInBytes?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3713
|
+
volumeUuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3714
|
+
writable?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3715
|
+
}
|
|
3716
|
+
}
|