@lansweeper/data-platform-outbound-grpc 0.1.21 → 0.1.22
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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +119 -0
- package/gen-proto/outbound_pb.js +1067 -68
- package/generated-go/outbound.pb.go +1830 -1475
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +38 -0
|
@@ -356,6 +356,11 @@ export class Asset extends jspb.Message {
|
|
|
356
356
|
setProcessorList(value: Array<Processor>): Asset;
|
|
357
357
|
addProcessor(value?: Processor, index?: number): Processor;
|
|
358
358
|
|
|
359
|
+
hasOtModule(): boolean;
|
|
360
|
+
clearOtModule(): void;
|
|
361
|
+
getOtModule(): OtModule | undefined;
|
|
362
|
+
setOtModule(value?: OtModule): Asset;
|
|
363
|
+
|
|
359
364
|
serializeBinary(): Uint8Array;
|
|
360
365
|
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
361
366
|
static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
|
|
@@ -383,6 +388,93 @@ export namespace Asset {
|
|
|
383
388
|
networkInterfaces?: NetworkInterfaces.AsObject,
|
|
384
389
|
osPatchList: Array<OperatingSystemPatch.AsObject>,
|
|
385
390
|
processorList: Array<Processor.AsObject>,
|
|
391
|
+
otModule?: OtModule.AsObject,
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
export class OtModule extends jspb.Message {
|
|
396
|
+
|
|
397
|
+
hasParentId(): boolean;
|
|
398
|
+
clearParentId(): void;
|
|
399
|
+
getParentId(): EntityPath | undefined;
|
|
400
|
+
setParentId(value?: EntityPath): OtModule;
|
|
401
|
+
clearSubModuleIdList(): void;
|
|
402
|
+
getSubModuleIdList(): Array<EntityPath>;
|
|
403
|
+
setSubModuleIdList(value: Array<EntityPath>): OtModule;
|
|
404
|
+
addSubModuleId(value?: EntityPath, index?: number): EntityPath;
|
|
405
|
+
getRackNumber(): number;
|
|
406
|
+
setRackNumber(value: number): OtModule;
|
|
407
|
+
getRackName(): string;
|
|
408
|
+
setRackName(value: string): OtModule;
|
|
409
|
+
getRackSize(): number;
|
|
410
|
+
setRackSize(value: number): OtModule;
|
|
411
|
+
getSlot(): number;
|
|
412
|
+
setSlot(value: number): OtModule;
|
|
413
|
+
getSlotWidth(): number;
|
|
414
|
+
setSlotWidth(value: number): OtModule;
|
|
415
|
+
getIsMainModule(): boolean;
|
|
416
|
+
setIsMainModule(value: boolean): OtModule;
|
|
417
|
+
|
|
418
|
+
hasComponentType(): boolean;
|
|
419
|
+
clearComponentType(): void;
|
|
420
|
+
getComponentType(): string | undefined;
|
|
421
|
+
setComponentType(value: string): OtModule;
|
|
422
|
+
|
|
423
|
+
hasPartNumber(): boolean;
|
|
424
|
+
clearPartNumber(): void;
|
|
425
|
+
getPartNumber(): string | undefined;
|
|
426
|
+
setPartNumber(value: string): OtModule;
|
|
427
|
+
clearExtInfoList(): void;
|
|
428
|
+
getExtInfoList(): Array<OtModuleExtInfo>;
|
|
429
|
+
setExtInfoList(value: Array<OtModuleExtInfo>): OtModule;
|
|
430
|
+
addExtInfo(value?: OtModuleExtInfo, index?: number): OtModuleExtInfo;
|
|
431
|
+
|
|
432
|
+
serializeBinary(): Uint8Array;
|
|
433
|
+
toObject(includeInstance?: boolean): OtModule.AsObject;
|
|
434
|
+
static toObject(includeInstance: boolean, msg: OtModule): OtModule.AsObject;
|
|
435
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
436
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
437
|
+
static serializeBinaryToWriter(message: OtModule, writer: jspb.BinaryWriter): void;
|
|
438
|
+
static deserializeBinary(bytes: Uint8Array): OtModule;
|
|
439
|
+
static deserializeBinaryFromReader(message: OtModule, reader: jspb.BinaryReader): OtModule;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
export namespace OtModule {
|
|
443
|
+
export type AsObject = {
|
|
444
|
+
parentId?: EntityPath.AsObject,
|
|
445
|
+
subModuleIdList: Array<EntityPath.AsObject>,
|
|
446
|
+
rackNumber: number,
|
|
447
|
+
rackName: string,
|
|
448
|
+
rackSize: number,
|
|
449
|
+
slot: number,
|
|
450
|
+
slotWidth: number,
|
|
451
|
+
isMainModule: boolean,
|
|
452
|
+
componentType?: string,
|
|
453
|
+
partNumber?: string,
|
|
454
|
+
extInfoList: Array<OtModuleExtInfo.AsObject>,
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export class OtModuleExtInfo extends jspb.Message {
|
|
459
|
+
getKey(): string;
|
|
460
|
+
setKey(value: string): OtModuleExtInfo;
|
|
461
|
+
getValue(): string;
|
|
462
|
+
setValue(value: string): OtModuleExtInfo;
|
|
463
|
+
|
|
464
|
+
serializeBinary(): Uint8Array;
|
|
465
|
+
toObject(includeInstance?: boolean): OtModuleExtInfo.AsObject;
|
|
466
|
+
static toObject(includeInstance: boolean, msg: OtModuleExtInfo): OtModuleExtInfo.AsObject;
|
|
467
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
468
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
469
|
+
static serializeBinaryToWriter(message: OtModuleExtInfo, writer: jspb.BinaryWriter): void;
|
|
470
|
+
static deserializeBinary(bytes: Uint8Array): OtModuleExtInfo;
|
|
471
|
+
static deserializeBinaryFromReader(message: OtModuleExtInfo, reader: jspb.BinaryReader): OtModuleExtInfo;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
export namespace OtModuleExtInfo {
|
|
475
|
+
export type AsObject = {
|
|
476
|
+
key: string,
|
|
477
|
+
value: string,
|
|
386
478
|
}
|
|
387
479
|
}
|
|
388
480
|
|
|
@@ -665,6 +757,11 @@ export class OperatingSystemInfo extends jspb.Message {
|
|
|
665
757
|
getWindows(): WindowsOperatingSystemInfo | undefined;
|
|
666
758
|
setWindows(value?: WindowsOperatingSystemInfo): OperatingSystemInfo;
|
|
667
759
|
|
|
760
|
+
hasOt(): boolean;
|
|
761
|
+
clearOt(): void;
|
|
762
|
+
getOt(): OtFirmwareInfo | undefined;
|
|
763
|
+
setOt(value?: OtFirmwareInfo): OperatingSystemInfo;
|
|
764
|
+
|
|
668
765
|
getSpecCase(): OperatingSystemInfo.SpecCase;
|
|
669
766
|
|
|
670
767
|
serializeBinary(): Uint8Array;
|
|
@@ -689,11 +786,13 @@ export namespace OperatingSystemInfo {
|
|
|
689
786
|
fwCpe?: string,
|
|
690
787
|
rank?: number,
|
|
691
788
|
windows?: WindowsOperatingSystemInfo.AsObject,
|
|
789
|
+
ot?: OtFirmwareInfo.AsObject,
|
|
692
790
|
}
|
|
693
791
|
|
|
694
792
|
export enum SpecCase {
|
|
695
793
|
SPEC_NOT_SET = 0,
|
|
696
794
|
WINDOWS = 32,
|
|
795
|
+
OT = 33,
|
|
697
796
|
}
|
|
698
797
|
|
|
699
798
|
}
|
|
@@ -748,6 +847,26 @@ export namespace OperatingSystemPatch {
|
|
|
748
847
|
}
|
|
749
848
|
}
|
|
750
849
|
|
|
850
|
+
export class OtFirmwareInfo extends jspb.Message {
|
|
851
|
+
getFirmware(): string;
|
|
852
|
+
setFirmware(value: string): OtFirmwareInfo;
|
|
853
|
+
|
|
854
|
+
serializeBinary(): Uint8Array;
|
|
855
|
+
toObject(includeInstance?: boolean): OtFirmwareInfo.AsObject;
|
|
856
|
+
static toObject(includeInstance: boolean, msg: OtFirmwareInfo): OtFirmwareInfo.AsObject;
|
|
857
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
858
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
859
|
+
static serializeBinaryToWriter(message: OtFirmwareInfo, writer: jspb.BinaryWriter): void;
|
|
860
|
+
static deserializeBinary(bytes: Uint8Array): OtFirmwareInfo;
|
|
861
|
+
static deserializeBinaryFromReader(message: OtFirmwareInfo, reader: jspb.BinaryReader): OtFirmwareInfo;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
export namespace OtFirmwareInfo {
|
|
865
|
+
export type AsObject = {
|
|
866
|
+
firmware: string,
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
|
|
751
870
|
export class WindowsOperatingSystemInfo extends jspb.Message {
|
|
752
871
|
|
|
753
872
|
hasVersion(): boolean;
|