@lansweeper/data-platform-outbound-grpc 0.1.54 → 0.1.56
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 +354 -0
- package/gen-proto/outbound_pb.js +6297 -3489
- package/generated-go/outbound.pb.go +4156 -3286
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +82 -0
|
@@ -407,6 +407,11 @@ export class Asset extends jspb.Message {
|
|
|
407
407
|
clearMotherboard(): void;
|
|
408
408
|
getMotherboard(): Motherboard | undefined;
|
|
409
409
|
setMotherboard(value?: Motherboard): Asset;
|
|
410
|
+
|
|
411
|
+
hasBios(): boolean;
|
|
412
|
+
clearBios(): void;
|
|
413
|
+
getBios(): Bios | undefined;
|
|
414
|
+
setBios(value?: Bios): Asset;
|
|
410
415
|
clearComputerBatteryList(): void;
|
|
411
416
|
getComputerBatteryList(): Array<ComputerBattery>;
|
|
412
417
|
setComputerBatteryList(value: Array<ComputerBattery>): Asset;
|
|
@@ -443,6 +448,14 @@ export class Asset extends jspb.Message {
|
|
|
443
448
|
getPointingDeviceList(): Array<PointingDevice>;
|
|
444
449
|
setPointingDeviceList(value: Array<PointingDevice>): Asset;
|
|
445
450
|
addPointingDevice(value?: PointingDevice, index?: number): PointingDevice;
|
|
451
|
+
clearComputerBusList(): void;
|
|
452
|
+
getComputerBusList(): Array<ComputerBus>;
|
|
453
|
+
setComputerBusList(value: Array<ComputerBus>): Asset;
|
|
454
|
+
addComputerBus(value?: ComputerBus, index?: number): ComputerBus;
|
|
455
|
+
clearComputerInfraredList(): void;
|
|
456
|
+
getComputerInfraredList(): Array<ComputerInfrared>;
|
|
457
|
+
setComputerInfraredList(value: Array<ComputerInfrared>): Asset;
|
|
458
|
+
addComputerInfrared(value?: ComputerInfrared, index?: number): ComputerInfrared;
|
|
446
459
|
clearAutoRunCommandList(): void;
|
|
447
460
|
getAutoRunCommandList(): Array<AutoRunCommand>;
|
|
448
461
|
setAutoRunCommandList(value: Array<AutoRunCommand>): Asset;
|
|
@@ -518,6 +531,7 @@ export namespace Asset {
|
|
|
518
531
|
chassis?: Chassis.AsObject,
|
|
519
532
|
memory?: Memory.AsObject,
|
|
520
533
|
motherboard?: Motherboard.AsObject,
|
|
534
|
+
bios?: Bios.AsObject,
|
|
521
535
|
computerBatteryList: Array<ComputerBattery.AsObject>,
|
|
522
536
|
opticalDriveList: Array<OpticalDrive.AsObject>,
|
|
523
537
|
hardDriveList: Array<HardDrive.AsObject>,
|
|
@@ -527,6 +541,8 @@ export namespace Asset {
|
|
|
527
541
|
soundCardList: Array<SoundCard.AsObject>,
|
|
528
542
|
keyboardList: Array<Keyboard.AsObject>,
|
|
529
543
|
pointingDeviceList: Array<PointingDevice.AsObject>,
|
|
544
|
+
computerBusList: Array<ComputerBus.AsObject>,
|
|
545
|
+
computerInfraredList: Array<ComputerInfrared.AsObject>,
|
|
530
546
|
autoRunCommandList: Array<AutoRunCommand.AsObject>,
|
|
531
547
|
bootConfig?: BootConfig.AsObject,
|
|
532
548
|
driverList: Array<Driver.AsObject>,
|
|
@@ -2545,6 +2561,106 @@ export namespace Keyboard {
|
|
|
2545
2561
|
}
|
|
2546
2562
|
}
|
|
2547
2563
|
|
|
2564
|
+
export class ComputerBus extends jspb.Message {
|
|
2565
|
+
|
|
2566
|
+
hasBusNum(): boolean;
|
|
2567
|
+
clearBusNum(): void;
|
|
2568
|
+
getBusNum(): number | undefined;
|
|
2569
|
+
setBusNum(value: number): ComputerBus;
|
|
2570
|
+
|
|
2571
|
+
hasBusType(): boolean;
|
|
2572
|
+
clearBusType(): void;
|
|
2573
|
+
getBusType(): MappedValue | undefined;
|
|
2574
|
+
setBusType(value?: MappedValue): ComputerBus;
|
|
2575
|
+
|
|
2576
|
+
hasDeviceId(): boolean;
|
|
2577
|
+
clearDeviceId(): void;
|
|
2578
|
+
getDeviceId(): string | undefined;
|
|
2579
|
+
setDeviceId(value: string): ComputerBus;
|
|
2580
|
+
|
|
2581
|
+
hasPnpDeviceId(): boolean;
|
|
2582
|
+
clearPnpDeviceId(): void;
|
|
2583
|
+
getPnpDeviceId(): string | undefined;
|
|
2584
|
+
setPnpDeviceId(value: string): ComputerBus;
|
|
2585
|
+
|
|
2586
|
+
serializeBinary(): Uint8Array;
|
|
2587
|
+
toObject(includeInstance?: boolean): ComputerBus.AsObject;
|
|
2588
|
+
static toObject(includeInstance: boolean, msg: ComputerBus): ComputerBus.AsObject;
|
|
2589
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2590
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2591
|
+
static serializeBinaryToWriter(message: ComputerBus, writer: jspb.BinaryWriter): void;
|
|
2592
|
+
static deserializeBinary(bytes: Uint8Array): ComputerBus;
|
|
2593
|
+
static deserializeBinaryFromReader(message: ComputerBus, reader: jspb.BinaryReader): ComputerBus;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
export namespace ComputerBus {
|
|
2597
|
+
export type AsObject = {
|
|
2598
|
+
busNum?: number,
|
|
2599
|
+
busType?: MappedValue.AsObject,
|
|
2600
|
+
deviceId?: string,
|
|
2601
|
+
pnpDeviceId?: string,
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
export class ComputerInfrared extends jspb.Message {
|
|
2606
|
+
|
|
2607
|
+
hasAvailability(): boolean;
|
|
2608
|
+
clearAvailability(): void;
|
|
2609
|
+
getAvailability(): MappedValue | undefined;
|
|
2610
|
+
setAvailability(value?: MappedValue): ComputerInfrared;
|
|
2611
|
+
|
|
2612
|
+
hasCaption(): boolean;
|
|
2613
|
+
clearCaption(): void;
|
|
2614
|
+
getCaption(): string | undefined;
|
|
2615
|
+
setCaption(value: string): ComputerInfrared;
|
|
2616
|
+
|
|
2617
|
+
hasConfigManagerErrorCode(): boolean;
|
|
2618
|
+
clearConfigManagerErrorCode(): void;
|
|
2619
|
+
getConfigManagerErrorCode(): MappedValue | undefined;
|
|
2620
|
+
setConfigManagerErrorCode(value?: MappedValue): ComputerInfrared;
|
|
2621
|
+
|
|
2622
|
+
hasConfigManagerUserConfig(): boolean;
|
|
2623
|
+
clearConfigManagerUserConfig(): void;
|
|
2624
|
+
getConfigManagerUserConfig(): boolean | undefined;
|
|
2625
|
+
setConfigManagerUserConfig(value: boolean): ComputerInfrared;
|
|
2626
|
+
|
|
2627
|
+
hasDeviceId(): boolean;
|
|
2628
|
+
clearDeviceId(): void;
|
|
2629
|
+
getDeviceId(): string | undefined;
|
|
2630
|
+
setDeviceId(value: string): ComputerInfrared;
|
|
2631
|
+
|
|
2632
|
+
hasManufacturer(): boolean;
|
|
2633
|
+
clearManufacturer(): void;
|
|
2634
|
+
getManufacturer(): string | undefined;
|
|
2635
|
+
setManufacturer(value: string): ComputerInfrared;
|
|
2636
|
+
|
|
2637
|
+
hasProtocolSupported(): boolean;
|
|
2638
|
+
clearProtocolSupported(): void;
|
|
2639
|
+
getProtocolSupported(): MappedValue | undefined;
|
|
2640
|
+
setProtocolSupported(value?: MappedValue): ComputerInfrared;
|
|
2641
|
+
|
|
2642
|
+
serializeBinary(): Uint8Array;
|
|
2643
|
+
toObject(includeInstance?: boolean): ComputerInfrared.AsObject;
|
|
2644
|
+
static toObject(includeInstance: boolean, msg: ComputerInfrared): ComputerInfrared.AsObject;
|
|
2645
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2646
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2647
|
+
static serializeBinaryToWriter(message: ComputerInfrared, writer: jspb.BinaryWriter): void;
|
|
2648
|
+
static deserializeBinary(bytes: Uint8Array): ComputerInfrared;
|
|
2649
|
+
static deserializeBinaryFromReader(message: ComputerInfrared, reader: jspb.BinaryReader): ComputerInfrared;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
export namespace ComputerInfrared {
|
|
2653
|
+
export type AsObject = {
|
|
2654
|
+
availability?: MappedValue.AsObject,
|
|
2655
|
+
caption?: string,
|
|
2656
|
+
configManagerErrorCode?: MappedValue.AsObject,
|
|
2657
|
+
configManagerUserConfig?: boolean,
|
|
2658
|
+
deviceId?: string,
|
|
2659
|
+
manufacturer?: string,
|
|
2660
|
+
protocolSupported?: MappedValue.AsObject,
|
|
2661
|
+
}
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2548
2664
|
export class PointingDevice extends jspb.Message {
|
|
2549
2665
|
|
|
2550
2666
|
hasCaption(): boolean;
|
|
@@ -3701,6 +3817,244 @@ export namespace GraphicsCard {
|
|
|
3701
3817
|
}
|
|
3702
3818
|
}
|
|
3703
3819
|
|
|
3820
|
+
export class Bios extends jspb.Message {
|
|
3821
|
+
|
|
3822
|
+
hasWin(): boolean;
|
|
3823
|
+
clearWin(): void;
|
|
3824
|
+
getWin(): WindowsBios | undefined;
|
|
3825
|
+
setWin(value?: WindowsBios): Bios;
|
|
3826
|
+
|
|
3827
|
+
hasLinux(): boolean;
|
|
3828
|
+
clearLinux(): void;
|
|
3829
|
+
getLinux(): LinuxBios | undefined;
|
|
3830
|
+
setLinux(value?: LinuxBios): Bios;
|
|
3831
|
+
|
|
3832
|
+
hasManufacturer(): boolean;
|
|
3833
|
+
clearManufacturer(): void;
|
|
3834
|
+
getManufacturer(): string | undefined;
|
|
3835
|
+
setManufacturer(value: string): Bios;
|
|
3836
|
+
|
|
3837
|
+
hasVersion(): boolean;
|
|
3838
|
+
clearVersion(): void;
|
|
3839
|
+
getVersion(): string | undefined;
|
|
3840
|
+
setVersion(value: string): Bios;
|
|
3841
|
+
|
|
3842
|
+
hasReleaseDate(): boolean;
|
|
3843
|
+
clearReleaseDate(): void;
|
|
3844
|
+
getReleaseDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3845
|
+
setReleaseDate(value?: google_protobuf_timestamp_pb.Timestamp): Bios;
|
|
3846
|
+
|
|
3847
|
+
getSpecCase(): Bios.SpecCase;
|
|
3848
|
+
|
|
3849
|
+
serializeBinary(): Uint8Array;
|
|
3850
|
+
toObject(includeInstance?: boolean): Bios.AsObject;
|
|
3851
|
+
static toObject(includeInstance: boolean, msg: Bios): Bios.AsObject;
|
|
3852
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3853
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3854
|
+
static serializeBinaryToWriter(message: Bios, writer: jspb.BinaryWriter): void;
|
|
3855
|
+
static deserializeBinary(bytes: Uint8Array): Bios;
|
|
3856
|
+
static deserializeBinaryFromReader(message: Bios, reader: jspb.BinaryReader): Bios;
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
export namespace Bios {
|
|
3860
|
+
export type AsObject = {
|
|
3861
|
+
win?: WindowsBios.AsObject,
|
|
3862
|
+
linux?: LinuxBios.AsObject,
|
|
3863
|
+
manufacturer?: string,
|
|
3864
|
+
version?: string,
|
|
3865
|
+
releaseDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
export enum SpecCase {
|
|
3869
|
+
SPEC_NOT_SET = 0,
|
|
3870
|
+
WIN = 1,
|
|
3871
|
+
LINUX = 2,
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3876
|
+
export class WindowsBios extends jspb.Message {
|
|
3877
|
+
clearBiosCharacteristicsList(): void;
|
|
3878
|
+
getBiosCharacteristicsList(): Array<MappedValue>;
|
|
3879
|
+
setBiosCharacteristicsList(value: Array<MappedValue>): WindowsBios;
|
|
3880
|
+
addBiosCharacteristics(value?: MappedValue, index?: number): MappedValue;
|
|
3881
|
+
|
|
3882
|
+
hasCaption(): boolean;
|
|
3883
|
+
clearCaption(): void;
|
|
3884
|
+
getCaption(): string | undefined;
|
|
3885
|
+
setCaption(value: string): WindowsBios;
|
|
3886
|
+
|
|
3887
|
+
hasCurrentLanguage(): boolean;
|
|
3888
|
+
clearCurrentLanguage(): void;
|
|
3889
|
+
getCurrentLanguage(): string | undefined;
|
|
3890
|
+
setCurrentLanguage(value: string): WindowsBios;
|
|
3891
|
+
|
|
3892
|
+
hasInstallableLanguages(): boolean;
|
|
3893
|
+
clearInstallableLanguages(): void;
|
|
3894
|
+
getInstallableLanguages(): number | undefined;
|
|
3895
|
+
setInstallableLanguages(value: number): WindowsBios;
|
|
3896
|
+
|
|
3897
|
+
hasManufacturer(): boolean;
|
|
3898
|
+
clearManufacturer(): void;
|
|
3899
|
+
getManufacturer(): string | undefined;
|
|
3900
|
+
setManufacturer(value: string): WindowsBios;
|
|
3901
|
+
|
|
3902
|
+
hasName(): boolean;
|
|
3903
|
+
clearName(): void;
|
|
3904
|
+
getName(): string | undefined;
|
|
3905
|
+
setName(value: string): WindowsBios;
|
|
3906
|
+
|
|
3907
|
+
hasPrimaryBios(): boolean;
|
|
3908
|
+
clearPrimaryBios(): void;
|
|
3909
|
+
getPrimaryBios(): boolean | undefined;
|
|
3910
|
+
setPrimaryBios(value: boolean): WindowsBios;
|
|
3911
|
+
|
|
3912
|
+
hasReleaseDate(): boolean;
|
|
3913
|
+
clearReleaseDate(): void;
|
|
3914
|
+
getReleaseDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3915
|
+
setReleaseDate(value?: google_protobuf_timestamp_pb.Timestamp): WindowsBios;
|
|
3916
|
+
|
|
3917
|
+
hasSerialNumber(): boolean;
|
|
3918
|
+
clearSerialNumber(): void;
|
|
3919
|
+
getSerialNumber(): string | undefined;
|
|
3920
|
+
setSerialNumber(value: string): WindowsBios;
|
|
3921
|
+
|
|
3922
|
+
hasSmbiosBiosVersion(): boolean;
|
|
3923
|
+
clearSmbiosBiosVersion(): void;
|
|
3924
|
+
getSmbiosBiosVersion(): string | undefined;
|
|
3925
|
+
setSmbiosBiosVersion(value: string): WindowsBios;
|
|
3926
|
+
|
|
3927
|
+
hasSmbiosMajorVersion(): boolean;
|
|
3928
|
+
clearSmbiosMajorVersion(): void;
|
|
3929
|
+
getSmbiosMajorVersion(): number | undefined;
|
|
3930
|
+
setSmbiosMajorVersion(value: number): WindowsBios;
|
|
3931
|
+
|
|
3932
|
+
hasSmbiosMinorVersion(): boolean;
|
|
3933
|
+
clearSmbiosMinorVersion(): void;
|
|
3934
|
+
getSmbiosMinorVersion(): number | undefined;
|
|
3935
|
+
setSmbiosMinorVersion(value: number): WindowsBios;
|
|
3936
|
+
|
|
3937
|
+
hasSmbiosPresent(): boolean;
|
|
3938
|
+
clearSmbiosPresent(): void;
|
|
3939
|
+
getSmbiosPresent(): boolean | undefined;
|
|
3940
|
+
setSmbiosPresent(value: boolean): WindowsBios;
|
|
3941
|
+
|
|
3942
|
+
hasSoftwareElementId(): boolean;
|
|
3943
|
+
clearSoftwareElementId(): void;
|
|
3944
|
+
getSoftwareElementId(): string | undefined;
|
|
3945
|
+
setSoftwareElementId(value: string): WindowsBios;
|
|
3946
|
+
|
|
3947
|
+
hasSoftwareElementState(): boolean;
|
|
3948
|
+
clearSoftwareElementState(): void;
|
|
3949
|
+
getSoftwareElementState(): MappedValue | undefined;
|
|
3950
|
+
setSoftwareElementState(value?: MappedValue): WindowsBios;
|
|
3951
|
+
|
|
3952
|
+
hasStatus(): boolean;
|
|
3953
|
+
clearStatus(): void;
|
|
3954
|
+
getStatus(): string | undefined;
|
|
3955
|
+
setStatus(value: string): WindowsBios;
|
|
3956
|
+
|
|
3957
|
+
hasTargetOperatingSystem(): boolean;
|
|
3958
|
+
clearTargetOperatingSystem(): void;
|
|
3959
|
+
getTargetOperatingSystem(): MappedValue | undefined;
|
|
3960
|
+
setTargetOperatingSystem(value?: MappedValue): WindowsBios;
|
|
3961
|
+
|
|
3962
|
+
hasVersion(): boolean;
|
|
3963
|
+
clearVersion(): void;
|
|
3964
|
+
getVersion(): string | undefined;
|
|
3965
|
+
setVersion(value: string): WindowsBios;
|
|
3966
|
+
clearBiosVersionList(): void;
|
|
3967
|
+
getBiosVersionList(): Array<string>;
|
|
3968
|
+
setBiosVersionList(value: Array<string>): WindowsBios;
|
|
3969
|
+
addBiosVersion(value: string, index?: number): string;
|
|
3970
|
+
|
|
3971
|
+
serializeBinary(): Uint8Array;
|
|
3972
|
+
toObject(includeInstance?: boolean): WindowsBios.AsObject;
|
|
3973
|
+
static toObject(includeInstance: boolean, msg: WindowsBios): WindowsBios.AsObject;
|
|
3974
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3975
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3976
|
+
static serializeBinaryToWriter(message: WindowsBios, writer: jspb.BinaryWriter): void;
|
|
3977
|
+
static deserializeBinary(bytes: Uint8Array): WindowsBios;
|
|
3978
|
+
static deserializeBinaryFromReader(message: WindowsBios, reader: jspb.BinaryReader): WindowsBios;
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
export namespace WindowsBios {
|
|
3982
|
+
export type AsObject = {
|
|
3983
|
+
biosCharacteristicsList: Array<MappedValue.AsObject>,
|
|
3984
|
+
caption?: string,
|
|
3985
|
+
currentLanguage?: string,
|
|
3986
|
+
installableLanguages?: number,
|
|
3987
|
+
manufacturer?: string,
|
|
3988
|
+
name?: string,
|
|
3989
|
+
primaryBios?: boolean,
|
|
3990
|
+
releaseDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3991
|
+
serialNumber?: string,
|
|
3992
|
+
smbiosBiosVersion?: string,
|
|
3993
|
+
smbiosMajorVersion?: number,
|
|
3994
|
+
smbiosMinorVersion?: number,
|
|
3995
|
+
smbiosPresent?: boolean,
|
|
3996
|
+
softwareElementId?: string,
|
|
3997
|
+
softwareElementState?: MappedValue.AsObject,
|
|
3998
|
+
status?: string,
|
|
3999
|
+
targetOperatingSystem?: MappedValue.AsObject,
|
|
4000
|
+
version?: string,
|
|
4001
|
+
biosVersionList: Array<string>,
|
|
4002
|
+
}
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
export class LinuxBios extends jspb.Message {
|
|
4006
|
+
|
|
4007
|
+
hasVersion(): boolean;
|
|
4008
|
+
clearVersion(): void;
|
|
4009
|
+
getVersion(): string | undefined;
|
|
4010
|
+
setVersion(value: string): LinuxBios;
|
|
4011
|
+
|
|
4012
|
+
hasAddress(): boolean;
|
|
4013
|
+
clearAddress(): void;
|
|
4014
|
+
getAddress(): string | undefined;
|
|
4015
|
+
setAddress(value: string): LinuxBios;
|
|
4016
|
+
|
|
4017
|
+
hasVendor(): boolean;
|
|
4018
|
+
clearVendor(): void;
|
|
4019
|
+
getVendor(): string | undefined;
|
|
4020
|
+
setVendor(value: string): LinuxBios;
|
|
4021
|
+
|
|
4022
|
+
hasRuntimeSize(): boolean;
|
|
4023
|
+
clearRuntimeSize(): void;
|
|
4024
|
+
getRuntimeSize(): number | undefined;
|
|
4025
|
+
setRuntimeSize(value: number): LinuxBios;
|
|
4026
|
+
|
|
4027
|
+
hasRomSize(): boolean;
|
|
4028
|
+
clearRomSize(): void;
|
|
4029
|
+
getRomSize(): number | undefined;
|
|
4030
|
+
setRomSize(value: number): LinuxBios;
|
|
4031
|
+
|
|
4032
|
+
hasReleaseDate(): boolean;
|
|
4033
|
+
clearReleaseDate(): void;
|
|
4034
|
+
getReleaseDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4035
|
+
setReleaseDate(value?: google_protobuf_timestamp_pb.Timestamp): LinuxBios;
|
|
4036
|
+
|
|
4037
|
+
serializeBinary(): Uint8Array;
|
|
4038
|
+
toObject(includeInstance?: boolean): LinuxBios.AsObject;
|
|
4039
|
+
static toObject(includeInstance: boolean, msg: LinuxBios): LinuxBios.AsObject;
|
|
4040
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4041
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4042
|
+
static serializeBinaryToWriter(message: LinuxBios, writer: jspb.BinaryWriter): void;
|
|
4043
|
+
static deserializeBinary(bytes: Uint8Array): LinuxBios;
|
|
4044
|
+
static deserializeBinaryFromReader(message: LinuxBios, reader: jspb.BinaryReader): LinuxBios;
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
export namespace LinuxBios {
|
|
4048
|
+
export type AsObject = {
|
|
4049
|
+
version?: string,
|
|
4050
|
+
address?: string,
|
|
4051
|
+
vendor?: string,
|
|
4052
|
+
runtimeSize?: number,
|
|
4053
|
+
romSize?: number,
|
|
4054
|
+
releaseDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4055
|
+
}
|
|
4056
|
+
}
|
|
4057
|
+
|
|
3704
4058
|
export class ComputerBattery extends jspb.Message {
|
|
3705
4059
|
|
|
3706
4060
|
hasWinBattery(): boolean;
|