@lansweeper/data-platform-outbound-grpc 0.1.33 → 0.1.35
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 +150 -3
- package/gen-proto/outbound_pb.js +1212 -14
- package/generated-go/outbound.pb.go +2327 -2008
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +29 -1
|
@@ -381,6 +381,10 @@ export class Asset extends jspb.Message {
|
|
|
381
381
|
clearMotherboard(): void;
|
|
382
382
|
getMotherboard(): Motherboard | undefined;
|
|
383
383
|
setMotherboard(value?: Motherboard): Asset;
|
|
384
|
+
clearOpticalDriveList(): void;
|
|
385
|
+
getOpticalDriveList(): Array<OpticalDrive>;
|
|
386
|
+
setOpticalDriveList(value: Array<OpticalDrive>): Asset;
|
|
387
|
+
addOpticalDrive(value?: OpticalDrive, index?: number): OpticalDrive;
|
|
384
388
|
|
|
385
389
|
hasOtModule(): boolean;
|
|
386
390
|
clearOtModule(): void;
|
|
@@ -424,6 +428,7 @@ export namespace Asset {
|
|
|
424
428
|
chassis?: Chassis.AsObject,
|
|
425
429
|
memory?: Memory.AsObject,
|
|
426
430
|
motherboard?: Motherboard.AsObject,
|
|
431
|
+
opticalDriveList: Array<OpticalDrive.AsObject>,
|
|
427
432
|
otModule?: OtModule.AsObject,
|
|
428
433
|
cloud?: CloudEntity.AsObject,
|
|
429
434
|
}
|
|
@@ -1025,8 +1030,8 @@ export class OperatingSystem extends jspb.Message {
|
|
|
1025
1030
|
|
|
1026
1031
|
hasOsType(): boolean;
|
|
1027
1032
|
clearOsType(): void;
|
|
1028
|
-
getOsType():
|
|
1029
|
-
setOsType(value
|
|
1033
|
+
getOsType(): MappedValue | undefined;
|
|
1034
|
+
setOsType(value?: MappedValue): OperatingSystem;
|
|
1030
1035
|
|
|
1031
1036
|
hasOsSerialNumber(): boolean;
|
|
1032
1037
|
clearOsSerialNumber(): void;
|
|
@@ -1146,7 +1151,7 @@ export namespace OperatingSystem {
|
|
|
1146
1151
|
osEdition?: string,
|
|
1147
1152
|
osName?: string,
|
|
1148
1153
|
osPhysicalPartition?: string,
|
|
1149
|
-
osType?:
|
|
1154
|
+
osType?: MappedValue.AsObject,
|
|
1150
1155
|
osSerialNumber?: string,
|
|
1151
1156
|
osSystemDirectory?: string,
|
|
1152
1157
|
otherTypeDescription?: string,
|
|
@@ -2086,6 +2091,148 @@ export namespace Chassis {
|
|
|
2086
2091
|
}
|
|
2087
2092
|
}
|
|
2088
2093
|
|
|
2094
|
+
export class OpticalDrive extends jspb.Message {
|
|
2095
|
+
|
|
2096
|
+
hasName(): boolean;
|
|
2097
|
+
clearName(): void;
|
|
2098
|
+
getName(): string | undefined;
|
|
2099
|
+
setName(value: string): OpticalDrive;
|
|
2100
|
+
|
|
2101
|
+
hasStatus(): boolean;
|
|
2102
|
+
clearStatus(): void;
|
|
2103
|
+
getStatus(): string | undefined;
|
|
2104
|
+
setStatus(value: string): OpticalDrive;
|
|
2105
|
+
|
|
2106
|
+
hasBus(): boolean;
|
|
2107
|
+
clearBus(): void;
|
|
2108
|
+
getBus(): string | undefined;
|
|
2109
|
+
setBus(value: string): OpticalDrive;
|
|
2110
|
+
clearCapabilitiesList(): void;
|
|
2111
|
+
getCapabilitiesList(): Array<MappedValue>;
|
|
2112
|
+
setCapabilitiesList(value: Array<MappedValue>): OpticalDrive;
|
|
2113
|
+
addCapabilities(value?: MappedValue, index?: number): MappedValue;
|
|
2114
|
+
|
|
2115
|
+
hasCacheSize(): boolean;
|
|
2116
|
+
clearCacheSize(): void;
|
|
2117
|
+
getCacheSize(): string | undefined;
|
|
2118
|
+
setCacheSize(value: string): OpticalDrive;
|
|
2119
|
+
|
|
2120
|
+
hasBurnSupport(): boolean;
|
|
2121
|
+
clearBurnSupport(): void;
|
|
2122
|
+
getBurnSupport(): string | undefined;
|
|
2123
|
+
setBurnSupport(value: string): OpticalDrive;
|
|
2124
|
+
|
|
2125
|
+
hasCdWrite(): boolean;
|
|
2126
|
+
clearCdWrite(): void;
|
|
2127
|
+
getCdWrite(): string | undefined;
|
|
2128
|
+
setCdWrite(value: string): OpticalDrive;
|
|
2129
|
+
|
|
2130
|
+
hasDvdWrite(): boolean;
|
|
2131
|
+
clearDvdWrite(): void;
|
|
2132
|
+
getDvdWrite(): string | undefined;
|
|
2133
|
+
setDvdWrite(value: string): OpticalDrive;
|
|
2134
|
+
|
|
2135
|
+
hasReadDvd(): boolean;
|
|
2136
|
+
clearReadDvd(): void;
|
|
2137
|
+
getReadDvd(): string | undefined;
|
|
2138
|
+
setReadDvd(value: string): OpticalDrive;
|
|
2139
|
+
|
|
2140
|
+
hasDrivePath(): boolean;
|
|
2141
|
+
clearDrivePath(): void;
|
|
2142
|
+
getDrivePath(): string | undefined;
|
|
2143
|
+
setDrivePath(value: string): OpticalDrive;
|
|
2144
|
+
|
|
2145
|
+
hasFirmwareVersion(): boolean;
|
|
2146
|
+
clearFirmwareVersion(): void;
|
|
2147
|
+
getFirmwareVersion(): string | undefined;
|
|
2148
|
+
setFirmwareVersion(value: string): OpticalDrive;
|
|
2149
|
+
|
|
2150
|
+
hasConnection(): boolean;
|
|
2151
|
+
clearConnection(): void;
|
|
2152
|
+
getConnection(): string | undefined;
|
|
2153
|
+
setConnection(value: string): OpticalDrive;
|
|
2154
|
+
|
|
2155
|
+
hasIsUnderrunProtectionEnabled(): boolean;
|
|
2156
|
+
clearIsUnderrunProtectionEnabled(): void;
|
|
2157
|
+
getIsUnderrunProtectionEnabled(): string | undefined;
|
|
2158
|
+
setIsUnderrunProtectionEnabled(value: string): OpticalDrive;
|
|
2159
|
+
|
|
2160
|
+
hasManufacturer(): boolean;
|
|
2161
|
+
clearManufacturer(): void;
|
|
2162
|
+
getManufacturer(): string | undefined;
|
|
2163
|
+
setManufacturer(value: string): OpticalDrive;
|
|
2164
|
+
|
|
2165
|
+
hasMountPoint(): boolean;
|
|
2166
|
+
clearMountPoint(): void;
|
|
2167
|
+
getMountPoint(): string | undefined;
|
|
2168
|
+
setMountPoint(value: string): OpticalDrive;
|
|
2169
|
+
|
|
2170
|
+
hasWriteStrategies(): boolean;
|
|
2171
|
+
clearWriteStrategies(): void;
|
|
2172
|
+
getWriteStrategies(): string | undefined;
|
|
2173
|
+
setWriteStrategies(value: string): OpticalDrive;
|
|
2174
|
+
|
|
2175
|
+
hasScsiBus(): boolean;
|
|
2176
|
+
clearScsiBus(): void;
|
|
2177
|
+
getScsiBus(): number | undefined;
|
|
2178
|
+
setScsiBus(value: number): OpticalDrive;
|
|
2179
|
+
|
|
2180
|
+
hasScsiLogicalUnit(): boolean;
|
|
2181
|
+
clearScsiLogicalUnit(): void;
|
|
2182
|
+
getScsiLogicalUnit(): number | undefined;
|
|
2183
|
+
setScsiLogicalUnit(value: number): OpticalDrive;
|
|
2184
|
+
|
|
2185
|
+
hasScsiPort(): boolean;
|
|
2186
|
+
clearScsiPort(): void;
|
|
2187
|
+
getScsiPort(): number | undefined;
|
|
2188
|
+
setScsiPort(value: number): OpticalDrive;
|
|
2189
|
+
|
|
2190
|
+
hasScsiTargetId(): boolean;
|
|
2191
|
+
clearScsiTargetId(): void;
|
|
2192
|
+
getScsiTargetId(): number | undefined;
|
|
2193
|
+
setScsiTargetId(value: number): OpticalDrive;
|
|
2194
|
+
|
|
2195
|
+
hasMediaBurnInformation(): boolean;
|
|
2196
|
+
clearMediaBurnInformation(): void;
|
|
2197
|
+
getMediaBurnInformation(): string | undefined;
|
|
2198
|
+
setMediaBurnInformation(value: string): OpticalDrive;
|
|
2199
|
+
|
|
2200
|
+
serializeBinary(): Uint8Array;
|
|
2201
|
+
toObject(includeInstance?: boolean): OpticalDrive.AsObject;
|
|
2202
|
+
static toObject(includeInstance: boolean, msg: OpticalDrive): OpticalDrive.AsObject;
|
|
2203
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2204
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2205
|
+
static serializeBinaryToWriter(message: OpticalDrive, writer: jspb.BinaryWriter): void;
|
|
2206
|
+
static deserializeBinary(bytes: Uint8Array): OpticalDrive;
|
|
2207
|
+
static deserializeBinaryFromReader(message: OpticalDrive, reader: jspb.BinaryReader): OpticalDrive;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
export namespace OpticalDrive {
|
|
2211
|
+
export type AsObject = {
|
|
2212
|
+
name?: string,
|
|
2213
|
+
status?: string,
|
|
2214
|
+
bus?: string,
|
|
2215
|
+
capabilitiesList: Array<MappedValue.AsObject>,
|
|
2216
|
+
cacheSize?: string,
|
|
2217
|
+
burnSupport?: string,
|
|
2218
|
+
cdWrite?: string,
|
|
2219
|
+
dvdWrite?: string,
|
|
2220
|
+
readDvd?: string,
|
|
2221
|
+
drivePath?: string,
|
|
2222
|
+
firmwareVersion?: string,
|
|
2223
|
+
connection?: string,
|
|
2224
|
+
isUnderrunProtectionEnabled?: string,
|
|
2225
|
+
manufacturer?: string,
|
|
2226
|
+
mountPoint?: string,
|
|
2227
|
+
writeStrategies?: string,
|
|
2228
|
+
scsiBus?: number,
|
|
2229
|
+
scsiLogicalUnit?: number,
|
|
2230
|
+
scsiPort?: number,
|
|
2231
|
+
scsiTargetId?: number,
|
|
2232
|
+
mediaBurnInformation?: string,
|
|
2233
|
+
}
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2089
2236
|
export class Motherboard extends jspb.Message {
|
|
2090
2237
|
getName(): string;
|
|
2091
2238
|
setName(value: string): Motherboard;
|