@lansweeper/data-platform-outbound-grpc 0.1.37 → 0.1.39
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 +341 -6
- package/gen-proto/outbound_pb.js +2733 -22
- package/generated-go/outbound.pb.go +3002 -2218
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +67 -1
|
@@ -343,11 +343,10 @@ export class Asset extends jspb.Message {
|
|
|
343
343
|
clearSoftwareInventory(): void;
|
|
344
344
|
getSoftwareInventory(): SoftwareInventory | undefined;
|
|
345
345
|
setSoftwareInventory(value?: SoftwareInventory): Asset;
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
setAntivirus(value?: AntivirusSoftware): Asset;
|
|
346
|
+
clearAntivirusList(): void;
|
|
347
|
+
getAntivirusList(): Array<AntivirusSoftware>;
|
|
348
|
+
setAntivirusList(value: Array<AntivirusSoftware>): Asset;
|
|
349
|
+
addAntivirus(value?: AntivirusSoftware, index?: number): AntivirusSoftware;
|
|
351
350
|
|
|
352
351
|
hasMonitorInventory(): boolean;
|
|
353
352
|
clearMonitorInventory(): void;
|
|
@@ -389,6 +388,18 @@ export class Asset extends jspb.Message {
|
|
|
389
388
|
getHardDriveList(): Array<HardDrive>;
|
|
390
389
|
setHardDriveList(value: Array<HardDrive>): Asset;
|
|
391
390
|
addHardDrive(value?: HardDrive, index?: number): HardDrive;
|
|
391
|
+
clearGraphicsCardList(): void;
|
|
392
|
+
getGraphicsCardList(): Array<GraphicsCard>;
|
|
393
|
+
setGraphicsCardList(value: Array<GraphicsCard>): Asset;
|
|
394
|
+
addGraphicsCard(value?: GraphicsCard, index?: number): GraphicsCard;
|
|
395
|
+
clearKeyboardList(): void;
|
|
396
|
+
getKeyboardList(): Array<Keyboard>;
|
|
397
|
+
setKeyboardList(value: Array<Keyboard>): Asset;
|
|
398
|
+
addKeyboard(value?: Keyboard, index?: number): Keyboard;
|
|
399
|
+
clearPointingDeviceList(): void;
|
|
400
|
+
getPointingDeviceList(): Array<PointingDevice>;
|
|
401
|
+
setPointingDeviceList(value: Array<PointingDevice>): Asset;
|
|
402
|
+
addPointingDevice(value?: PointingDevice, index?: number): PointingDevice;
|
|
392
403
|
|
|
393
404
|
hasOtModule(): boolean;
|
|
394
405
|
clearOtModule(): void;
|
|
@@ -424,7 +435,7 @@ export namespace Asset {
|
|
|
424
435
|
hw?: HardwareInfo.AsObject,
|
|
425
436
|
os?: OperatingSystem.AsObject,
|
|
426
437
|
softwareInventory?: SoftwareInventory.AsObject,
|
|
427
|
-
|
|
438
|
+
antivirusList: Array<AntivirusSoftware.AsObject>,
|
|
428
439
|
monitorInventory?: MonitorInventory.AsObject,
|
|
429
440
|
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
430
441
|
osPatchList: Array<OperatingSystemPatch.AsObject>,
|
|
@@ -434,6 +445,9 @@ export namespace Asset {
|
|
|
434
445
|
motherboard?: Motherboard.AsObject,
|
|
435
446
|
opticalDriveList: Array<OpticalDrive.AsObject>,
|
|
436
447
|
hardDriveList: Array<HardDrive.AsObject>,
|
|
448
|
+
graphicsCardList: Array<GraphicsCard.AsObject>,
|
|
449
|
+
keyboardList: Array<Keyboard.AsObject>,
|
|
450
|
+
pointingDeviceList: Array<PointingDevice.AsObject>,
|
|
437
451
|
otModule?: OtModule.AsObject,
|
|
438
452
|
cloud?: CloudEntity.AsObject,
|
|
439
453
|
}
|
|
@@ -1948,6 +1962,327 @@ export namespace HardDrive {
|
|
|
1948
1962
|
}
|
|
1949
1963
|
}
|
|
1950
1964
|
|
|
1965
|
+
export class Keyboard extends jspb.Message {
|
|
1966
|
+
|
|
1967
|
+
hasConfigManagerErrorCode(): boolean;
|
|
1968
|
+
clearConfigManagerErrorCode(): void;
|
|
1969
|
+
getConfigManagerErrorCode(): MappedValue | undefined;
|
|
1970
|
+
setConfigManagerErrorCode(value?: MappedValue): Keyboard;
|
|
1971
|
+
|
|
1972
|
+
hasConfigManagerUserConfig(): boolean;
|
|
1973
|
+
clearConfigManagerUserConfig(): void;
|
|
1974
|
+
getConfigManagerUserConfig(): boolean | undefined;
|
|
1975
|
+
setConfigManagerUserConfig(value: boolean): Keyboard;
|
|
1976
|
+
|
|
1977
|
+
hasDescription(): boolean;
|
|
1978
|
+
clearDescription(): void;
|
|
1979
|
+
getDescription(): string | undefined;
|
|
1980
|
+
setDescription(value: string): Keyboard;
|
|
1981
|
+
|
|
1982
|
+
hasDeviceId(): boolean;
|
|
1983
|
+
clearDeviceId(): void;
|
|
1984
|
+
getDeviceId(): string | undefined;
|
|
1985
|
+
setDeviceId(value: string): Keyboard;
|
|
1986
|
+
|
|
1987
|
+
hasLayout(): boolean;
|
|
1988
|
+
clearLayout(): void;
|
|
1989
|
+
getLayout(): string | undefined;
|
|
1990
|
+
setLayout(value: string): Keyboard;
|
|
1991
|
+
|
|
1992
|
+
hasNumberOfFunctionKeys(): boolean;
|
|
1993
|
+
clearNumberOfFunctionKeys(): void;
|
|
1994
|
+
getNumberOfFunctionKeys(): number | undefined;
|
|
1995
|
+
setNumberOfFunctionKeys(value: number): Keyboard;
|
|
1996
|
+
|
|
1997
|
+
serializeBinary(): Uint8Array;
|
|
1998
|
+
toObject(includeInstance?: boolean): Keyboard.AsObject;
|
|
1999
|
+
static toObject(includeInstance: boolean, msg: Keyboard): Keyboard.AsObject;
|
|
2000
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2001
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2002
|
+
static serializeBinaryToWriter(message: Keyboard, writer: jspb.BinaryWriter): void;
|
|
2003
|
+
static deserializeBinary(bytes: Uint8Array): Keyboard;
|
|
2004
|
+
static deserializeBinaryFromReader(message: Keyboard, reader: jspb.BinaryReader): Keyboard;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
export namespace Keyboard {
|
|
2008
|
+
export type AsObject = {
|
|
2009
|
+
configManagerErrorCode?: MappedValue.AsObject,
|
|
2010
|
+
configManagerUserConfig?: boolean,
|
|
2011
|
+
description?: string,
|
|
2012
|
+
deviceId?: string,
|
|
2013
|
+
layout?: string,
|
|
2014
|
+
numberOfFunctionKeys?: number,
|
|
2015
|
+
}
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
export class PointingDevice extends jspb.Message {
|
|
2019
|
+
|
|
2020
|
+
hasCaption(): boolean;
|
|
2021
|
+
clearCaption(): void;
|
|
2022
|
+
getCaption(): string | undefined;
|
|
2023
|
+
setCaption(value: string): PointingDevice;
|
|
2024
|
+
|
|
2025
|
+
hasDeviceId(): boolean;
|
|
2026
|
+
clearDeviceId(): void;
|
|
2027
|
+
getDeviceId(): string | undefined;
|
|
2028
|
+
setDeviceId(value: string): PointingDevice;
|
|
2029
|
+
|
|
2030
|
+
hasDeviceInterface(): boolean;
|
|
2031
|
+
clearDeviceInterface(): void;
|
|
2032
|
+
getDeviceInterface(): MappedValue | undefined;
|
|
2033
|
+
setDeviceInterface(value?: MappedValue): PointingDevice;
|
|
2034
|
+
|
|
2035
|
+
hasDoubleSpeedThreshold(): boolean;
|
|
2036
|
+
clearDoubleSpeedThreshold(): void;
|
|
2037
|
+
getDoubleSpeedThreshold(): number | undefined;
|
|
2038
|
+
setDoubleSpeedThreshold(value: number): PointingDevice;
|
|
2039
|
+
|
|
2040
|
+
hasHandedness(): boolean;
|
|
2041
|
+
clearHandedness(): void;
|
|
2042
|
+
getHandedness(): MappedValue | undefined;
|
|
2043
|
+
setHandedness(value?: MappedValue): PointingDevice;
|
|
2044
|
+
|
|
2045
|
+
hasInfFileName(): boolean;
|
|
2046
|
+
clearInfFileName(): void;
|
|
2047
|
+
getInfFileName(): string | undefined;
|
|
2048
|
+
setInfFileName(value: string): PointingDevice;
|
|
2049
|
+
|
|
2050
|
+
hasInfSection(): boolean;
|
|
2051
|
+
clearInfSection(): void;
|
|
2052
|
+
getInfSection(): string | undefined;
|
|
2053
|
+
setInfSection(value: string): PointingDevice;
|
|
2054
|
+
|
|
2055
|
+
hasManufacturer(): boolean;
|
|
2056
|
+
clearManufacturer(): void;
|
|
2057
|
+
getManufacturer(): string | undefined;
|
|
2058
|
+
setManufacturer(value: string): PointingDevice;
|
|
2059
|
+
|
|
2060
|
+
hasNumberOfButtons(): boolean;
|
|
2061
|
+
clearNumberOfButtons(): void;
|
|
2062
|
+
getNumberOfButtons(): number | undefined;
|
|
2063
|
+
setNumberOfButtons(value: number): PointingDevice;
|
|
2064
|
+
|
|
2065
|
+
hasPointingType(): boolean;
|
|
2066
|
+
clearPointingType(): void;
|
|
2067
|
+
getPointingType(): MappedValue | undefined;
|
|
2068
|
+
setPointingType(value?: MappedValue): PointingDevice;
|
|
2069
|
+
|
|
2070
|
+
hasQuadSpeedThreshold(): boolean;
|
|
2071
|
+
clearQuadSpeedThreshold(): void;
|
|
2072
|
+
getQuadSpeedThreshold(): number | undefined;
|
|
2073
|
+
setQuadSpeedThreshold(value: number): PointingDevice;
|
|
2074
|
+
|
|
2075
|
+
serializeBinary(): Uint8Array;
|
|
2076
|
+
toObject(includeInstance?: boolean): PointingDevice.AsObject;
|
|
2077
|
+
static toObject(includeInstance: boolean, msg: PointingDevice): PointingDevice.AsObject;
|
|
2078
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2079
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2080
|
+
static serializeBinaryToWriter(message: PointingDevice, writer: jspb.BinaryWriter): void;
|
|
2081
|
+
static deserializeBinary(bytes: Uint8Array): PointingDevice;
|
|
2082
|
+
static deserializeBinaryFromReader(message: PointingDevice, reader: jspb.BinaryReader): PointingDevice;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
export namespace PointingDevice {
|
|
2086
|
+
export type AsObject = {
|
|
2087
|
+
caption?: string,
|
|
2088
|
+
deviceId?: string,
|
|
2089
|
+
deviceInterface?: MappedValue.AsObject,
|
|
2090
|
+
doubleSpeedThreshold?: number,
|
|
2091
|
+
handedness?: MappedValue.AsObject,
|
|
2092
|
+
infFileName?: string,
|
|
2093
|
+
infSection?: string,
|
|
2094
|
+
manufacturer?: string,
|
|
2095
|
+
numberOfButtons?: number,
|
|
2096
|
+
pointingType?: MappedValue.AsObject,
|
|
2097
|
+
quadSpeedThreshold?: number,
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
export class GraphicsCard extends jspb.Message {
|
|
2102
|
+
|
|
2103
|
+
hasName(): boolean;
|
|
2104
|
+
clearName(): void;
|
|
2105
|
+
getName(): string | undefined;
|
|
2106
|
+
setName(value: string): GraphicsCard;
|
|
2107
|
+
|
|
2108
|
+
hasColorPlanesCount(): boolean;
|
|
2109
|
+
clearColorPlanesCount(): void;
|
|
2110
|
+
getColorPlanesCount(): number | undefined;
|
|
2111
|
+
setColorPlanesCount(value: number): GraphicsCard;
|
|
2112
|
+
|
|
2113
|
+
hasCurrentBitsPerPixel(): boolean;
|
|
2114
|
+
clearCurrentBitsPerPixel(): void;
|
|
2115
|
+
getCurrentBitsPerPixel(): number | undefined;
|
|
2116
|
+
setCurrentBitsPerPixel(value: number): GraphicsCard;
|
|
2117
|
+
|
|
2118
|
+
hasCurrentHorizontalResolution(): boolean;
|
|
2119
|
+
clearCurrentHorizontalResolution(): void;
|
|
2120
|
+
getCurrentHorizontalResolution(): number | undefined;
|
|
2121
|
+
setCurrentHorizontalResolution(value: number): GraphicsCard;
|
|
2122
|
+
|
|
2123
|
+
hasCurrentNumberOfColors(): boolean;
|
|
2124
|
+
clearCurrentNumberOfColors(): void;
|
|
2125
|
+
getCurrentNumberOfColors(): number | undefined;
|
|
2126
|
+
setCurrentNumberOfColors(value: number): GraphicsCard;
|
|
2127
|
+
|
|
2128
|
+
hasCurrentRefreshRate(): boolean;
|
|
2129
|
+
clearCurrentRefreshRate(): void;
|
|
2130
|
+
getCurrentRefreshRate(): number | undefined;
|
|
2131
|
+
setCurrentRefreshRate(value: number): GraphicsCard;
|
|
2132
|
+
|
|
2133
|
+
hasCurrentScanMode(): boolean;
|
|
2134
|
+
clearCurrentScanMode(): void;
|
|
2135
|
+
getCurrentScanMode(): MappedValue | undefined;
|
|
2136
|
+
setCurrentScanMode(value?: MappedValue): GraphicsCard;
|
|
2137
|
+
|
|
2138
|
+
hasCurrentVerticalResolution(): boolean;
|
|
2139
|
+
clearCurrentVerticalResolution(): void;
|
|
2140
|
+
getCurrentVerticalResolution(): number | undefined;
|
|
2141
|
+
setCurrentVerticalResolution(value: number): GraphicsCard;
|
|
2142
|
+
|
|
2143
|
+
hasDeviceId(): boolean;
|
|
2144
|
+
clearDeviceId(): void;
|
|
2145
|
+
getDeviceId(): string | undefined;
|
|
2146
|
+
setDeviceId(value: string): GraphicsCard;
|
|
2147
|
+
|
|
2148
|
+
hasDeviceSpecificPens(): boolean;
|
|
2149
|
+
clearDeviceSpecificPens(): void;
|
|
2150
|
+
getDeviceSpecificPens(): number | undefined;
|
|
2151
|
+
setDeviceSpecificPens(value: number): GraphicsCard;
|
|
2152
|
+
|
|
2153
|
+
hasDriverVersion(): boolean;
|
|
2154
|
+
clearDriverVersion(): void;
|
|
2155
|
+
getDriverVersion(): string | undefined;
|
|
2156
|
+
setDriverVersion(value: string): GraphicsCard;
|
|
2157
|
+
|
|
2158
|
+
hasInfFilename(): boolean;
|
|
2159
|
+
clearInfFilename(): void;
|
|
2160
|
+
getInfFilename(): string | undefined;
|
|
2161
|
+
setInfFilename(value: string): GraphicsCard;
|
|
2162
|
+
|
|
2163
|
+
hasInfSection(): boolean;
|
|
2164
|
+
clearInfSection(): void;
|
|
2165
|
+
getInfSection(): string | undefined;
|
|
2166
|
+
setInfSection(value: string): GraphicsCard;
|
|
2167
|
+
|
|
2168
|
+
hasInstalledDisplayDrivers(): boolean;
|
|
2169
|
+
clearInstalledDisplayDrivers(): void;
|
|
2170
|
+
getInstalledDisplayDrivers(): string | undefined;
|
|
2171
|
+
setInstalledDisplayDrivers(value: string): GraphicsCard;
|
|
2172
|
+
|
|
2173
|
+
hasIsMonochrome(): boolean;
|
|
2174
|
+
clearIsMonochrome(): void;
|
|
2175
|
+
getIsMonochrome(): boolean | undefined;
|
|
2176
|
+
setIsMonochrome(value: boolean): GraphicsCard;
|
|
2177
|
+
|
|
2178
|
+
hasManufacturer(): boolean;
|
|
2179
|
+
clearManufacturer(): void;
|
|
2180
|
+
getManufacturer(): string | undefined;
|
|
2181
|
+
setManufacturer(value: string): GraphicsCard;
|
|
2182
|
+
|
|
2183
|
+
hasMaxRefreshRate(): boolean;
|
|
2184
|
+
clearMaxRefreshRate(): void;
|
|
2185
|
+
getMaxRefreshRate(): number | undefined;
|
|
2186
|
+
setMaxRefreshRate(value: number): GraphicsCard;
|
|
2187
|
+
|
|
2188
|
+
hasMemory(): boolean;
|
|
2189
|
+
clearMemory(): void;
|
|
2190
|
+
getMemory(): number | undefined;
|
|
2191
|
+
setMemory(value: number): GraphicsCard;
|
|
2192
|
+
|
|
2193
|
+
hasMemoryType(): boolean;
|
|
2194
|
+
clearMemoryType(): void;
|
|
2195
|
+
getMemoryType(): MappedValue | undefined;
|
|
2196
|
+
setMemoryType(value?: MappedValue): GraphicsCard;
|
|
2197
|
+
|
|
2198
|
+
hasMinRefreshRate(): boolean;
|
|
2199
|
+
clearMinRefreshRate(): void;
|
|
2200
|
+
getMinRefreshRate(): number | undefined;
|
|
2201
|
+
setMinRefreshRate(value: number): GraphicsCard;
|
|
2202
|
+
|
|
2203
|
+
hasPciType(): boolean;
|
|
2204
|
+
clearPciType(): void;
|
|
2205
|
+
getPciType(): string | undefined;
|
|
2206
|
+
setPciType(value: string): GraphicsCard;
|
|
2207
|
+
|
|
2208
|
+
hasPnpDeviceId(): boolean;
|
|
2209
|
+
clearPnpDeviceId(): void;
|
|
2210
|
+
getPnpDeviceId(): string | undefined;
|
|
2211
|
+
setPnpDeviceId(value: string): GraphicsCard;
|
|
2212
|
+
|
|
2213
|
+
hasState(): boolean;
|
|
2214
|
+
clearState(): void;
|
|
2215
|
+
getState(): MappedValue | undefined;
|
|
2216
|
+
setState(value?: MappedValue): GraphicsCard;
|
|
2217
|
+
|
|
2218
|
+
hasSubsystemManufacturer(): boolean;
|
|
2219
|
+
clearSubsystemManufacturer(): void;
|
|
2220
|
+
getSubsystemManufacturer(): string | undefined;
|
|
2221
|
+
setSubsystemManufacturer(value: string): GraphicsCard;
|
|
2222
|
+
|
|
2223
|
+
hasSubsystemName(): boolean;
|
|
2224
|
+
clearSubsystemName(): void;
|
|
2225
|
+
getSubsystemName(): string | undefined;
|
|
2226
|
+
setSubsystemName(value: string): GraphicsCard;
|
|
2227
|
+
|
|
2228
|
+
hasVideoArchitecture(): boolean;
|
|
2229
|
+
clearVideoArchitecture(): void;
|
|
2230
|
+
getVideoArchitecture(): MappedValue | undefined;
|
|
2231
|
+
setVideoArchitecture(value?: MappedValue): GraphicsCard;
|
|
2232
|
+
|
|
2233
|
+
hasVideoMode(): boolean;
|
|
2234
|
+
clearVideoMode(): void;
|
|
2235
|
+
getVideoMode(): string | undefined;
|
|
2236
|
+
setVideoMode(value: string): GraphicsCard;
|
|
2237
|
+
|
|
2238
|
+
hasVideoProcessor(): boolean;
|
|
2239
|
+
clearVideoProcessor(): void;
|
|
2240
|
+
getVideoProcessor(): string | undefined;
|
|
2241
|
+
setVideoProcessor(value: string): GraphicsCard;
|
|
2242
|
+
|
|
2243
|
+
serializeBinary(): Uint8Array;
|
|
2244
|
+
toObject(includeInstance?: boolean): GraphicsCard.AsObject;
|
|
2245
|
+
static toObject(includeInstance: boolean, msg: GraphicsCard): GraphicsCard.AsObject;
|
|
2246
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2247
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2248
|
+
static serializeBinaryToWriter(message: GraphicsCard, writer: jspb.BinaryWriter): void;
|
|
2249
|
+
static deserializeBinary(bytes: Uint8Array): GraphicsCard;
|
|
2250
|
+
static deserializeBinaryFromReader(message: GraphicsCard, reader: jspb.BinaryReader): GraphicsCard;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
export namespace GraphicsCard {
|
|
2254
|
+
export type AsObject = {
|
|
2255
|
+
name?: string,
|
|
2256
|
+
colorPlanesCount?: number,
|
|
2257
|
+
currentBitsPerPixel?: number,
|
|
2258
|
+
currentHorizontalResolution?: number,
|
|
2259
|
+
currentNumberOfColors?: number,
|
|
2260
|
+
currentRefreshRate?: number,
|
|
2261
|
+
currentScanMode?: MappedValue.AsObject,
|
|
2262
|
+
currentVerticalResolution?: number,
|
|
2263
|
+
deviceId?: string,
|
|
2264
|
+
deviceSpecificPens?: number,
|
|
2265
|
+
driverVersion?: string,
|
|
2266
|
+
infFilename?: string,
|
|
2267
|
+
infSection?: string,
|
|
2268
|
+
installedDisplayDrivers?: string,
|
|
2269
|
+
isMonochrome?: boolean,
|
|
2270
|
+
manufacturer?: string,
|
|
2271
|
+
maxRefreshRate?: number,
|
|
2272
|
+
memory?: number,
|
|
2273
|
+
memoryType?: MappedValue.AsObject,
|
|
2274
|
+
minRefreshRate?: number,
|
|
2275
|
+
pciType?: string,
|
|
2276
|
+
pnpDeviceId?: string,
|
|
2277
|
+
state?: MappedValue.AsObject,
|
|
2278
|
+
subsystemManufacturer?: string,
|
|
2279
|
+
subsystemName?: string,
|
|
2280
|
+
videoArchitecture?: MappedValue.AsObject,
|
|
2281
|
+
videoMode?: string,
|
|
2282
|
+
videoProcessor?: string,
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
|
|
1951
2286
|
export class OpticalDrive extends jspb.Message {
|
|
1952
2287
|
|
|
1953
2288
|
hasName(): boolean;
|