@lansweeper/data-platform-outbound-grpc 0.1.38 → 0.1.40

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.
@@ -392,6 +392,18 @@ export class Asset extends jspb.Message {
392
392
  getGraphicsCardList(): Array<GraphicsCard>;
393
393
  setGraphicsCardList(value: Array<GraphicsCard>): Asset;
394
394
  addGraphicsCard(value?: GraphicsCard, index?: number): GraphicsCard;
395
+ clearSoundCardList(): void;
396
+ getSoundCardList(): Array<SoundCard>;
397
+ setSoundCardList(value: Array<SoundCard>): Asset;
398
+ addSoundCard(value?: SoundCard, index?: number): SoundCard;
399
+ clearKeyboardList(): void;
400
+ getKeyboardList(): Array<Keyboard>;
401
+ setKeyboardList(value: Array<Keyboard>): Asset;
402
+ addKeyboard(value?: Keyboard, index?: number): Keyboard;
403
+ clearPointingDeviceList(): void;
404
+ getPointingDeviceList(): Array<PointingDevice>;
405
+ setPointingDeviceList(value: Array<PointingDevice>): Asset;
406
+ addPointingDevice(value?: PointingDevice, index?: number): PointingDevice;
395
407
 
396
408
  hasOtModule(): boolean;
397
409
  clearOtModule(): void;
@@ -438,6 +450,9 @@ export namespace Asset {
438
450
  opticalDriveList: Array<OpticalDrive.AsObject>,
439
451
  hardDriveList: Array<HardDrive.AsObject>,
440
452
  graphicsCardList: Array<GraphicsCard.AsObject>,
453
+ soundCardList: Array<SoundCard.AsObject>,
454
+ keyboardList: Array<Keyboard.AsObject>,
455
+ pointingDeviceList: Array<PointingDevice.AsObject>,
441
456
  otModule?: OtModule.AsObject,
442
457
  cloud?: CloudEntity.AsObject,
443
458
  }
@@ -1952,6 +1967,201 @@ export namespace HardDrive {
1952
1967
  }
1953
1968
  }
1954
1969
 
1970
+ export class Keyboard extends jspb.Message {
1971
+
1972
+ hasConfigManagerErrorCode(): boolean;
1973
+ clearConfigManagerErrorCode(): void;
1974
+ getConfigManagerErrorCode(): MappedValue | undefined;
1975
+ setConfigManagerErrorCode(value?: MappedValue): Keyboard;
1976
+
1977
+ hasConfigManagerUserConfig(): boolean;
1978
+ clearConfigManagerUserConfig(): void;
1979
+ getConfigManagerUserConfig(): boolean | undefined;
1980
+ setConfigManagerUserConfig(value: boolean): Keyboard;
1981
+
1982
+ hasDescription(): boolean;
1983
+ clearDescription(): void;
1984
+ getDescription(): string | undefined;
1985
+ setDescription(value: string): Keyboard;
1986
+
1987
+ hasDeviceId(): boolean;
1988
+ clearDeviceId(): void;
1989
+ getDeviceId(): string | undefined;
1990
+ setDeviceId(value: string): Keyboard;
1991
+
1992
+ hasLayout(): boolean;
1993
+ clearLayout(): void;
1994
+ getLayout(): string | undefined;
1995
+ setLayout(value: string): Keyboard;
1996
+
1997
+ hasNumberOfFunctionKeys(): boolean;
1998
+ clearNumberOfFunctionKeys(): void;
1999
+ getNumberOfFunctionKeys(): number | undefined;
2000
+ setNumberOfFunctionKeys(value: number): Keyboard;
2001
+
2002
+ serializeBinary(): Uint8Array;
2003
+ toObject(includeInstance?: boolean): Keyboard.AsObject;
2004
+ static toObject(includeInstance: boolean, msg: Keyboard): Keyboard.AsObject;
2005
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2006
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2007
+ static serializeBinaryToWriter(message: Keyboard, writer: jspb.BinaryWriter): void;
2008
+ static deserializeBinary(bytes: Uint8Array): Keyboard;
2009
+ static deserializeBinaryFromReader(message: Keyboard, reader: jspb.BinaryReader): Keyboard;
2010
+ }
2011
+
2012
+ export namespace Keyboard {
2013
+ export type AsObject = {
2014
+ configManagerErrorCode?: MappedValue.AsObject,
2015
+ configManagerUserConfig?: boolean,
2016
+ description?: string,
2017
+ deviceId?: string,
2018
+ layout?: string,
2019
+ numberOfFunctionKeys?: number,
2020
+ }
2021
+ }
2022
+
2023
+ export class PointingDevice extends jspb.Message {
2024
+
2025
+ hasCaption(): boolean;
2026
+ clearCaption(): void;
2027
+ getCaption(): string | undefined;
2028
+ setCaption(value: string): PointingDevice;
2029
+
2030
+ hasDeviceId(): boolean;
2031
+ clearDeviceId(): void;
2032
+ getDeviceId(): string | undefined;
2033
+ setDeviceId(value: string): PointingDevice;
2034
+
2035
+ hasDeviceInterface(): boolean;
2036
+ clearDeviceInterface(): void;
2037
+ getDeviceInterface(): MappedValue | undefined;
2038
+ setDeviceInterface(value?: MappedValue): PointingDevice;
2039
+
2040
+ hasDoubleSpeedThreshold(): boolean;
2041
+ clearDoubleSpeedThreshold(): void;
2042
+ getDoubleSpeedThreshold(): number | undefined;
2043
+ setDoubleSpeedThreshold(value: number): PointingDevice;
2044
+
2045
+ hasHandedness(): boolean;
2046
+ clearHandedness(): void;
2047
+ getHandedness(): MappedValue | undefined;
2048
+ setHandedness(value?: MappedValue): PointingDevice;
2049
+
2050
+ hasInfFileName(): boolean;
2051
+ clearInfFileName(): void;
2052
+ getInfFileName(): string | undefined;
2053
+ setInfFileName(value: string): PointingDevice;
2054
+
2055
+ hasInfSection(): boolean;
2056
+ clearInfSection(): void;
2057
+ getInfSection(): string | undefined;
2058
+ setInfSection(value: string): PointingDevice;
2059
+
2060
+ hasManufacturer(): boolean;
2061
+ clearManufacturer(): void;
2062
+ getManufacturer(): string | undefined;
2063
+ setManufacturer(value: string): PointingDevice;
2064
+
2065
+ hasNumberOfButtons(): boolean;
2066
+ clearNumberOfButtons(): void;
2067
+ getNumberOfButtons(): number | undefined;
2068
+ setNumberOfButtons(value: number): PointingDevice;
2069
+
2070
+ hasPointingType(): boolean;
2071
+ clearPointingType(): void;
2072
+ getPointingType(): MappedValue | undefined;
2073
+ setPointingType(value?: MappedValue): PointingDevice;
2074
+
2075
+ hasQuadSpeedThreshold(): boolean;
2076
+ clearQuadSpeedThreshold(): void;
2077
+ getQuadSpeedThreshold(): number | undefined;
2078
+ setQuadSpeedThreshold(value: number): PointingDevice;
2079
+
2080
+ serializeBinary(): Uint8Array;
2081
+ toObject(includeInstance?: boolean): PointingDevice.AsObject;
2082
+ static toObject(includeInstance: boolean, msg: PointingDevice): PointingDevice.AsObject;
2083
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2084
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2085
+ static serializeBinaryToWriter(message: PointingDevice, writer: jspb.BinaryWriter): void;
2086
+ static deserializeBinary(bytes: Uint8Array): PointingDevice;
2087
+ static deserializeBinaryFromReader(message: PointingDevice, reader: jspb.BinaryReader): PointingDevice;
2088
+ }
2089
+
2090
+ export namespace PointingDevice {
2091
+ export type AsObject = {
2092
+ caption?: string,
2093
+ deviceId?: string,
2094
+ deviceInterface?: MappedValue.AsObject,
2095
+ doubleSpeedThreshold?: number,
2096
+ handedness?: MappedValue.AsObject,
2097
+ infFileName?: string,
2098
+ infSection?: string,
2099
+ manufacturer?: string,
2100
+ numberOfButtons?: number,
2101
+ pointingType?: MappedValue.AsObject,
2102
+ quadSpeedThreshold?: number,
2103
+ }
2104
+ }
2105
+
2106
+ export class SoundCard extends jspb.Message {
2107
+
2108
+ hasCaption(): boolean;
2109
+ clearCaption(): void;
2110
+ getCaption(): string | undefined;
2111
+ setCaption(value: string): SoundCard;
2112
+
2113
+ hasDeviceId(): boolean;
2114
+ clearDeviceId(): void;
2115
+ getDeviceId(): string | undefined;
2116
+ setDeviceId(value: string): SoundCard;
2117
+
2118
+ hasManufacturer(): boolean;
2119
+ clearManufacturer(): void;
2120
+ getManufacturer(): string | undefined;
2121
+ setManufacturer(value: string): SoundCard;
2122
+
2123
+ hasType(): boolean;
2124
+ clearType(): void;
2125
+ getType(): string | undefined;
2126
+ setType(value: string): SoundCard;
2127
+
2128
+ hasSubsystemName(): boolean;
2129
+ clearSubsystemName(): void;
2130
+ getSubsystemName(): string | undefined;
2131
+ setSubsystemName(value: string): SoundCard;
2132
+
2133
+ hasSubsystemManufacturer(): boolean;
2134
+ clearSubsystemManufacturer(): void;
2135
+ getSubsystemManufacturer(): string | undefined;
2136
+ setSubsystemManufacturer(value: string): SoundCard;
2137
+
2138
+ hasParent(): boolean;
2139
+ clearParent(): void;
2140
+ getParent(): string | undefined;
2141
+ setParent(value: string): SoundCard;
2142
+
2143
+ serializeBinary(): Uint8Array;
2144
+ toObject(includeInstance?: boolean): SoundCard.AsObject;
2145
+ static toObject(includeInstance: boolean, msg: SoundCard): SoundCard.AsObject;
2146
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2147
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2148
+ static serializeBinaryToWriter(message: SoundCard, writer: jspb.BinaryWriter): void;
2149
+ static deserializeBinary(bytes: Uint8Array): SoundCard;
2150
+ static deserializeBinaryFromReader(message: SoundCard, reader: jspb.BinaryReader): SoundCard;
2151
+ }
2152
+
2153
+ export namespace SoundCard {
2154
+ export type AsObject = {
2155
+ caption?: string,
2156
+ deviceId?: string,
2157
+ manufacturer?: string,
2158
+ type?: string,
2159
+ subsystemName?: string,
2160
+ subsystemManufacturer?: string,
2161
+ parent?: string,
2162
+ }
2163
+ }
2164
+
1955
2165
  export class GraphicsCard extends jspb.Message {
1956
2166
 
1957
2167
  hasName(): boolean;