@lansweeper/data-platform-outbound-grpc 0.1.71 → 0.1.73

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.
@@ -382,71 +382,6 @@ export class Asset extends jspb.Message {
382
382
  getPortScan(): PortScan | undefined;
383
383
  setPortScan(value?: PortScan): Asset;
384
384
 
385
- hasSoftwareInventory(): boolean;
386
- clearSoftwareInventory(): void;
387
- getSoftwareInventory(): SoftwareInventory | undefined;
388
- setSoftwareInventory(value?: SoftwareInventory): Asset;
389
- clearAntivirusList(): void;
390
- getAntivirusList(): Array<AntivirusSoftware>;
391
- setAntivirusList(value: Array<AntivirusSoftware>): Asset;
392
- addAntivirus(value?: AntivirusSoftware, index?: number): AntivirusSoftware;
393
- clearOsPatchList(): void;
394
- getOsPatchList(): Array<OperatingSystemPatch>;
395
- setOsPatchList(value: Array<OperatingSystemPatch>): Asset;
396
- addOsPatch(value?: OperatingSystemPatch, index?: number): OperatingSystemPatch;
397
- clearOsFeatureList(): void;
398
- getOsFeatureList(): Array<OperatingSystemFeature>;
399
- setOsFeatureList(value: Array<OperatingSystemFeature>): Asset;
400
- addOsFeature(value?: OperatingSystemFeature, index?: number): OperatingSystemFeature;
401
- clearProcessorList(): void;
402
- getProcessorList(): Array<Processor>;
403
- setProcessorList(value: Array<Processor>): Asset;
404
- addProcessor(value?: Processor, index?: number): Processor;
405
-
406
- hasChassis(): boolean;
407
- clearChassis(): void;
408
- getChassis(): Chassis | undefined;
409
- setChassis(value?: Chassis): Asset;
410
-
411
- hasMemory(): boolean;
412
- clearMemory(): void;
413
- getMemory(): Memory | undefined;
414
- setMemory(value?: Memory): Asset;
415
-
416
- hasMotherboard(): boolean;
417
- clearMotherboard(): void;
418
- getMotherboard(): Motherboard | undefined;
419
- setMotherboard(value?: Motherboard): Asset;
420
- clearOpticalDriveList(): void;
421
- getOpticalDriveList(): Array<OpticalDrive>;
422
- setOpticalDriveList(value: Array<OpticalDrive>): Asset;
423
- addOpticalDrive(value?: OpticalDrive, index?: number): OpticalDrive;
424
- clearHardDriveList(): void;
425
- getHardDriveList(): Array<HardDrive>;
426
- setHardDriveList(value: Array<HardDrive>): Asset;
427
- addHardDrive(value?: HardDrive, index?: number): HardDrive;
428
- clearGraphicsCardList(): void;
429
- getGraphicsCardList(): Array<GraphicsCard>;
430
- setGraphicsCardList(value: Array<GraphicsCard>): Asset;
431
- addGraphicsCard(value?: GraphicsCard, index?: number): GraphicsCard;
432
- clearSoundCardList(): void;
433
- getSoundCardList(): Array<SoundCard>;
434
- setSoundCardList(value: Array<SoundCard>): Asset;
435
- addSoundCard(value?: SoundCard, index?: number): SoundCard;
436
- clearKeyboardList(): void;
437
- getKeyboardList(): Array<Keyboard>;
438
- setKeyboardList(value: Array<Keyboard>): Asset;
439
- addKeyboard(value?: Keyboard, index?: number): Keyboard;
440
- clearPointingDeviceList(): void;
441
- getPointingDeviceList(): Array<PointingDevice>;
442
- setPointingDeviceList(value: Array<PointingDevice>): Asset;
443
- addPointingDevice(value?: PointingDevice, index?: number): PointingDevice;
444
-
445
- hasLastUser(): boolean;
446
- clearLastUser(): void;
447
- getLastUser(): LastUser | undefined;
448
- setLastUser(value?: LastUser): Asset;
449
-
450
385
  hasComputer(): boolean;
451
386
  clearComputer(): void;
452
387
  getComputer(): Computer | undefined;
@@ -494,21 +429,6 @@ export namespace Asset {
494
429
  networkInterfaces?: NetworkInterfaces.AsObject,
495
430
  networkProtocols?: NetworkProtocols.AsObject,
496
431
  portScan?: PortScan.AsObject,
497
- softwareInventory?: SoftwareInventory.AsObject,
498
- antivirusList: Array<AntivirusSoftware.AsObject>,
499
- osPatchList: Array<OperatingSystemPatch.AsObject>,
500
- osFeatureList: Array<OperatingSystemFeature.AsObject>,
501
- processorList: Array<Processor.AsObject>,
502
- chassis?: Chassis.AsObject,
503
- memory?: Memory.AsObject,
504
- motherboard?: Motherboard.AsObject,
505
- opticalDriveList: Array<OpticalDrive.AsObject>,
506
- hardDriveList: Array<HardDrive.AsObject>,
507
- graphicsCardList: Array<GraphicsCard.AsObject>,
508
- soundCardList: Array<SoundCard.AsObject>,
509
- keyboardList: Array<Keyboard.AsObject>,
510
- pointingDeviceList: Array<PointingDevice.AsObject>,
511
- lastUser?: LastUser.AsObject,
512
432
  computer?: Computer.AsObject,
513
433
  otModule?: OtModule.AsObject,
514
434
  cloud?: CloudEntity.AsObject,
@@ -926,10 +846,10 @@ export class OtModule extends jspb.Message {
926
846
  getComponentType(): string | undefined;
927
847
  setComponentType(value: string): OtModule;
928
848
 
929
- hasRack(): boolean;
930
- clearRack(): void;
931
- getRack(): OtRack | undefined;
932
- setRack(value?: OtRack): OtModule;
849
+ hasBusConfig(): boolean;
850
+ clearBusConfig(): void;
851
+ getBusConfig(): OtBusConfig | undefined;
852
+ setBusConfig(value?: OtBusConfig): OtModule;
933
853
  getIsMainModule(): boolean;
934
854
  setIsMainModule(value: boolean): OtModule;
935
855
  getIsNetworkNode(): boolean;
@@ -967,7 +887,7 @@ export class OtModule extends jspb.Message {
967
887
  export namespace OtModule {
968
888
  export type AsObject = {
969
889
  componentType?: string,
970
- rack?: OtRack.AsObject,
890
+ busConfig?: OtBusConfig.AsObject,
971
891
  isMainModule: boolean,
972
892
  isNetworkNode: boolean,
973
893
  scanProtocol?: string,
@@ -977,50 +897,53 @@ export namespace OtModule {
977
897
  }
978
898
  }
979
899
 
980
- export class OtRack extends jspb.Message {
900
+ export class OtBusConfig extends jspb.Message {
981
901
  getNumber(): number;
982
- setNumber(value: number): OtRack;
902
+ setNumber(value: number): OtBusConfig;
983
903
 
984
904
  hasName(): boolean;
985
905
  clearName(): void;
986
906
  getName(): string | undefined;
987
- setName(value: string): OtRack;
907
+ setName(value: string): OtBusConfig;
988
908
 
989
909
  hasType(): boolean;
990
910
  clearType(): void;
991
911
  getType(): string | undefined;
992
- setType(value: string): OtRack;
912
+ setType(value: string): OtBusConfig;
993
913
  getSize(): number;
994
- setSize(value: number): OtRack;
914
+ setSize(value: number): OtBusConfig;
915
+ getStartIndex(): number;
916
+ setStartIndex(value: number): OtBusConfig;
995
917
 
996
- hasSlotNumber(): boolean;
997
- clearSlotNumber(): void;
998
- getSlotNumber(): number | undefined;
999
- setSlotNumber(value: number): OtRack;
918
+ hasPosition(): boolean;
919
+ clearPosition(): void;
920
+ getPosition(): number | undefined;
921
+ setPosition(value: number): OtBusConfig;
1000
922
 
1001
- hasSlotWidth(): boolean;
1002
- clearSlotWidth(): void;
1003
- getSlotWidth(): number | undefined;
1004
- setSlotWidth(value: number): OtRack;
923
+ hasWidth(): boolean;
924
+ clearWidth(): void;
925
+ getWidth(): number | undefined;
926
+ setWidth(value: number): OtBusConfig;
1005
927
 
1006
928
  serializeBinary(): Uint8Array;
1007
- toObject(includeInstance?: boolean): OtRack.AsObject;
1008
- static toObject(includeInstance: boolean, msg: OtRack): OtRack.AsObject;
929
+ toObject(includeInstance?: boolean): OtBusConfig.AsObject;
930
+ static toObject(includeInstance: boolean, msg: OtBusConfig): OtBusConfig.AsObject;
1009
931
  static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
1010
932
  static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
1011
- static serializeBinaryToWriter(message: OtRack, writer: jspb.BinaryWriter): void;
1012
- static deserializeBinary(bytes: Uint8Array): OtRack;
1013
- static deserializeBinaryFromReader(message: OtRack, reader: jspb.BinaryReader): OtRack;
933
+ static serializeBinaryToWriter(message: OtBusConfig, writer: jspb.BinaryWriter): void;
934
+ static deserializeBinary(bytes: Uint8Array): OtBusConfig;
935
+ static deserializeBinaryFromReader(message: OtBusConfig, reader: jspb.BinaryReader): OtBusConfig;
1014
936
  }
1015
937
 
1016
- export namespace OtRack {
938
+ export namespace OtBusConfig {
1017
939
  export type AsObject = {
1018
940
  number: number,
1019
941
  name?: string,
1020
942
  type?: string,
1021
943
  size: number,
1022
- slotNumber?: number,
1023
- slotWidth?: number,
944
+ startIndex: number,
945
+ position?: number,
946
+ width?: number,
1024
947
  }
1025
948
  }
1026
949