@lansweeper/data-platform-outbound-grpc 0.1.83 → 0.1.84

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.
@@ -555,6 +555,10 @@ export class Computer extends jspb.Message {
555
555
  getTapeDriveList(): Array<ComputerConnectedTapeDrive>;
556
556
  setTapeDriveList(value: Array<ComputerConnectedTapeDrive>): Computer;
557
557
  addTapeDrive(value?: ComputerConnectedTapeDrive, index?: number): ComputerConnectedTapeDrive;
558
+ clearWindowsFloppyList(): void;
559
+ getWindowsFloppyList(): Array<ComputerWindowsFloppy>;
560
+ setWindowsFloppyList(value: Array<ComputerWindowsFloppy>): Computer;
561
+ addWindowsFloppy(value?: ComputerWindowsFloppy, index?: number): ComputerWindowsFloppy;
558
562
  clearWindowsDesktopList(): void;
559
563
  getWindowsDesktopList(): Array<ComputerWindowsDesktop>;
560
564
  setWindowsDesktopList(value: Array<ComputerWindowsDesktop>): Computer;
@@ -662,6 +666,10 @@ export class Computer extends jspb.Message {
662
666
  getWindowsCertList(): Array<ComputerWindowsCertificate>;
663
667
  setWindowsCertList(value: Array<ComputerWindowsCertificate>): Computer;
664
668
  addWindowsCert(value?: ComputerWindowsCertificate, index?: number): ComputerWindowsCertificate;
669
+ clearWindowsSerialList(): void;
670
+ getWindowsSerialList(): Array<ComputerWindowsSerial>;
671
+ setWindowsSerialList(value: Array<ComputerWindowsSerial>): Computer;
672
+ addWindowsSerial(value?: ComputerWindowsSerial, index?: number): ComputerWindowsSerial;
665
673
 
666
674
  hasLastUser(): boolean;
667
675
  clearLastUser(): void;
@@ -718,6 +726,7 @@ export namespace Computer {
718
726
  modemList: Array<ComputerConnectedModem.AsObject>,
719
727
  printerList: Array<ComputerConnectedPrinter.AsObject>,
720
728
  tapeDriveList: Array<ComputerConnectedTapeDrive.AsObject>,
729
+ windowsFloppyList: Array<ComputerWindowsFloppy.AsObject>,
721
730
  windowsDesktopList: Array<ComputerWindowsDesktop.AsObject>,
722
731
  windowsDesktopMonitorList: Array<ComputerWindowsDesktopMonitor.AsObject>,
723
732
  windowsDisplayList: Array<ComputerWindowsDisplay.AsObject>,
@@ -743,6 +752,7 @@ export namespace Computer {
743
752
  windowsNetworkClientList: Array<ComputerWindowsNetworkClient.AsObject>,
744
753
  networkVolumeList: Array<NetworkVolume.AsObject>,
745
754
  windowsCertList: Array<ComputerWindowsCertificate.AsObject>,
755
+ windowsSerialList: Array<ComputerWindowsSerial.AsObject>,
746
756
  lastUser?: LastUser.AsObject,
747
757
  userList: Array<UserAccount.AsObject>,
748
758
  userGroupList: Array<UserGroup.AsObject>,
@@ -7176,6 +7186,41 @@ export namespace ComputerConnectedTapeDrive {
7176
7186
  }
7177
7187
  }
7178
7188
 
7189
+ export class ComputerWindowsSerial extends jspb.Message {
7190
+
7191
+ hasProductName(): boolean;
7192
+ clearProductName(): void;
7193
+ getProductName(): string | undefined;
7194
+ setProductName(value: string): ComputerWindowsSerial;
7195
+
7196
+ hasProductId(): boolean;
7197
+ clearProductId(): void;
7198
+ getProductId(): string | undefined;
7199
+ setProductId(value: string): ComputerWindowsSerial;
7200
+
7201
+ hasProductSerial(): boolean;
7202
+ clearProductSerial(): void;
7203
+ getProductSerial(): string | undefined;
7204
+ setProductSerial(value: string): ComputerWindowsSerial;
7205
+
7206
+ serializeBinary(): Uint8Array;
7207
+ toObject(includeInstance?: boolean): ComputerWindowsSerial.AsObject;
7208
+ static toObject(includeInstance: boolean, msg: ComputerWindowsSerial): ComputerWindowsSerial.AsObject;
7209
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
7210
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
7211
+ static serializeBinaryToWriter(message: ComputerWindowsSerial, writer: jspb.BinaryWriter): void;
7212
+ static deserializeBinary(bytes: Uint8Array): ComputerWindowsSerial;
7213
+ static deserializeBinaryFromReader(message: ComputerWindowsSerial, reader: jspb.BinaryReader): ComputerWindowsSerial;
7214
+ }
7215
+
7216
+ export namespace ComputerWindowsSerial {
7217
+ export type AsObject = {
7218
+ productName?: string,
7219
+ productId?: string,
7220
+ productSerial?: string,
7221
+ }
7222
+ }
7223
+
7179
7224
  export class ComputerWindowsCertificate extends jspb.Message {
7180
7225
  clearEnhancedKeyUsageList(): void;
7181
7226
  getEnhancedKeyUsageList(): Array<WindowsCertificateEnhancedKeyUsage>;
@@ -8141,6 +8186,137 @@ export namespace ComputerWindowsDiskPartition {
8141
8186
  }
8142
8187
  }
8143
8188
 
8189
+ export class ComputerWindowsFloppy extends jspb.Message {
8190
+
8191
+ hasBytesPerSector(): boolean;
8192
+ clearBytesPerSector(): void;
8193
+ getBytesPerSector(): number | undefined;
8194
+ setBytesPerSector(value: number): ComputerWindowsFloppy;
8195
+
8196
+ hasDescription(): boolean;
8197
+ clearDescription(): void;
8198
+ getDescription(): string | undefined;
8199
+ setDescription(value: string): ComputerWindowsFloppy;
8200
+
8201
+ hasInterfaceType(): boolean;
8202
+ clearInterfaceType(): void;
8203
+ getInterfaceType(): string | undefined;
8204
+ setInterfaceType(value: string): ComputerWindowsFloppy;
8205
+
8206
+ hasManufacturer(): boolean;
8207
+ clearManufacturer(): void;
8208
+ getManufacturer(): string | undefined;
8209
+ setManufacturer(value: string): ComputerWindowsFloppy;
8210
+
8211
+ hasModel(): boolean;
8212
+ clearModel(): void;
8213
+ getModel(): string | undefined;
8214
+ setModel(value: string): ComputerWindowsFloppy;
8215
+
8216
+ hasName(): boolean;
8217
+ clearName(): void;
8218
+ getName(): string | undefined;
8219
+ setName(value: string): ComputerWindowsFloppy;
8220
+
8221
+ hasPartitions(): boolean;
8222
+ clearPartitions(): void;
8223
+ getPartitions(): number | undefined;
8224
+ setPartitions(value: number): ComputerWindowsFloppy;
8225
+
8226
+ hasPnpDeviceId(): boolean;
8227
+ clearPnpDeviceId(): void;
8228
+ getPnpDeviceId(): string | undefined;
8229
+ setPnpDeviceId(value: string): ComputerWindowsFloppy;
8230
+
8231
+ hasSectorsPerTrack(): boolean;
8232
+ clearSectorsPerTrack(): void;
8233
+ getSectorsPerTrack(): number | undefined;
8234
+ setSectorsPerTrack(value: number): ComputerWindowsFloppy;
8235
+
8236
+ hasSize(): boolean;
8237
+ clearSize(): void;
8238
+ getSize(): number | undefined;
8239
+ setSize(value: number): ComputerWindowsFloppy;
8240
+
8241
+ hasTotalCylinders(): boolean;
8242
+ clearTotalCylinders(): void;
8243
+ getTotalCylinders(): number | undefined;
8244
+ setTotalCylinders(value: number): ComputerWindowsFloppy;
8245
+
8246
+ hasTotalHeads(): boolean;
8247
+ clearTotalHeads(): void;
8248
+ getTotalHeads(): number | undefined;
8249
+ setTotalHeads(value: number): ComputerWindowsFloppy;
8250
+
8251
+ hasTotalSectors(): boolean;
8252
+ clearTotalSectors(): void;
8253
+ getTotalSectors(): number | undefined;
8254
+ setTotalSectors(value: number): ComputerWindowsFloppy;
8255
+
8256
+ hasTotalTracks(): boolean;
8257
+ clearTotalTracks(): void;
8258
+ getTotalTracks(): number | undefined;
8259
+ setTotalTracks(value: number): ComputerWindowsFloppy;
8260
+
8261
+ hasTracksPerCylinder(): boolean;
8262
+ clearTracksPerCylinder(): void;
8263
+ getTracksPerCylinder(): number | undefined;
8264
+ setTracksPerCylinder(value: number): ComputerWindowsFloppy;
8265
+
8266
+ hasDeviceId(): boolean;
8267
+ clearDeviceId(): void;
8268
+ getDeviceId(): string | undefined;
8269
+ setDeviceId(value: string): ComputerWindowsFloppy;
8270
+
8271
+ hasStatus(): boolean;
8272
+ clearStatus(): void;
8273
+ getStatus(): string | undefined;
8274
+ setStatus(value: string): ComputerWindowsFloppy;
8275
+
8276
+ hasFirmwareRevision(): boolean;
8277
+ clearFirmwareRevision(): void;
8278
+ getFirmwareRevision(): string | undefined;
8279
+ setFirmwareRevision(value: string): ComputerWindowsFloppy;
8280
+
8281
+ hasSerialNumber(): boolean;
8282
+ clearSerialNumber(): void;
8283
+ getSerialNumber(): string | undefined;
8284
+ setSerialNumber(value: string): ComputerWindowsFloppy;
8285
+
8286
+ serializeBinary(): Uint8Array;
8287
+ toObject(includeInstance?: boolean): ComputerWindowsFloppy.AsObject;
8288
+ static toObject(includeInstance: boolean, msg: ComputerWindowsFloppy): ComputerWindowsFloppy.AsObject;
8289
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
8290
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
8291
+ static serializeBinaryToWriter(message: ComputerWindowsFloppy, writer: jspb.BinaryWriter): void;
8292
+ static deserializeBinary(bytes: Uint8Array): ComputerWindowsFloppy;
8293
+ static deserializeBinaryFromReader(message: ComputerWindowsFloppy, reader: jspb.BinaryReader): ComputerWindowsFloppy;
8294
+ }
8295
+
8296
+ export namespace ComputerWindowsFloppy {
8297
+ export type AsObject = {
8298
+ bytesPerSector?: number,
8299
+ description?: string,
8300
+ interfaceType?: string,
8301
+ manufacturer?: string,
8302
+ model?: string,
8303
+ name?: string,
8304
+ partitions?: number,
8305
+ pnpDeviceId?: string,
8306
+ sectorsPerTrack?: number,
8307
+ size?: number,
8308
+ totalCylinders?: number,
8309
+ totalHeads?: number,
8310
+ totalSectors?: number,
8311
+ totalTracks?: number,
8312
+ tracksPerCylinder?: number,
8313
+ deviceId?: string,
8314
+ status?: string,
8315
+ firmwareRevision?: string,
8316
+ serialNumber?: string,
8317
+ }
8318
+ }
8319
+
8144
8320
  export class PortableBattery extends jspb.Message {
8145
8321
 
8146
8322
  hasCapacityMultiplier(): boolean;