@lansweeper/discovery-sensor-proto 2.85.1 → 2.87.0
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/gen-proto/discovery_sections_other_pb.d.ts +314 -0
- package/gen-proto/discovery_sections_other_pb.js +2601 -144
- package/gen-proto/discovery_sections_windows_pb.d.ts +435 -0
- package/gen-proto/discovery_sections_windows_pb.js +3647 -0
- package/gen-proto/image.json +1 -1
- package/package.json +1 -1
- package/proto/discovery_sections_other.proto +118 -1
- package/proto/discovery_sections_windows.proto +120 -0
|
@@ -141,6 +141,16 @@ export class Snmp extends jspb.Message {
|
|
|
141
141
|
getTotalMemory(): google_protobuf_wrappers_pb.UInt64Value | undefined;
|
|
142
142
|
setTotalMemory(value?: google_protobuf_wrappers_pb.UInt64Value): Snmp;
|
|
143
143
|
|
|
144
|
+
hasStackInfo(): boolean;
|
|
145
|
+
clearStackInfo(): void;
|
|
146
|
+
getStackInfo(): SnmpStackInfo | undefined;
|
|
147
|
+
setStackInfo(value?: SnmpStackInfo): Snmp;
|
|
148
|
+
|
|
149
|
+
hasChassisInfo(): boolean;
|
|
150
|
+
clearChassisInfo(): void;
|
|
151
|
+
getChassisInfo(): SnmpBusConfigData | undefined;
|
|
152
|
+
setChassisInfo(value?: SnmpBusConfigData): Snmp;
|
|
153
|
+
|
|
144
154
|
serializeBinary(): Uint8Array;
|
|
145
155
|
toObject(includeInstance?: boolean): Snmp.AsObject;
|
|
146
156
|
static toObject(includeInstance: boolean, msg: Snmp): Snmp.AsObject;
|
|
@@ -180,6 +190,8 @@ export namespace Snmp {
|
|
|
180
190
|
customOidsList: Array<SnmpCustomOid.AsObject>,
|
|
181
191
|
processorArchitecture?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
182
192
|
totalMemory?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
|
|
193
|
+
stackInfo?: SnmpStackInfo.AsObject,
|
|
194
|
+
chassisInfo?: SnmpBusConfigData.AsObject,
|
|
183
195
|
}
|
|
184
196
|
}
|
|
185
197
|
|
|
@@ -585,6 +597,102 @@ export namespace SnmpArpEntry {
|
|
|
585
597
|
}
|
|
586
598
|
}
|
|
587
599
|
|
|
600
|
+
export class SnmpStackInfo extends jspb.Message {
|
|
601
|
+
clearMembersList(): void;
|
|
602
|
+
getMembersList(): Array<SnmpStackMember>;
|
|
603
|
+
setMembersList(value: Array<SnmpStackMember>): SnmpStackInfo;
|
|
604
|
+
addMembers(value?: SnmpStackMember, index?: number): SnmpStackMember;
|
|
605
|
+
getProtocol(): SnmpStackProtocol;
|
|
606
|
+
setProtocol(value: SnmpStackProtocol): SnmpStackInfo;
|
|
607
|
+
|
|
608
|
+
serializeBinary(): Uint8Array;
|
|
609
|
+
toObject(includeInstance?: boolean): SnmpStackInfo.AsObject;
|
|
610
|
+
static toObject(includeInstance: boolean, msg: SnmpStackInfo): SnmpStackInfo.AsObject;
|
|
611
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
612
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
613
|
+
static serializeBinaryToWriter(message: SnmpStackInfo, writer: jspb.BinaryWriter): void;
|
|
614
|
+
static deserializeBinary(bytes: Uint8Array): SnmpStackInfo;
|
|
615
|
+
static deserializeBinaryFromReader(message: SnmpStackInfo, reader: jspb.BinaryReader): SnmpStackInfo;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
export namespace SnmpStackInfo {
|
|
619
|
+
export type AsObject = {
|
|
620
|
+
membersList: Array<SnmpStackMember.AsObject>,
|
|
621
|
+
protocol: SnmpStackProtocol,
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export class SnmpStackMember extends jspb.Message {
|
|
626
|
+
|
|
627
|
+
hasMemberId(): boolean;
|
|
628
|
+
clearMemberId(): void;
|
|
629
|
+
getMemberId(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
630
|
+
setMemberId(value?: google_protobuf_wrappers_pb.Int32Value): SnmpStackMember;
|
|
631
|
+
getRole(): SnmpStackRole;
|
|
632
|
+
setRole(value: SnmpStackRole): SnmpStackMember;
|
|
633
|
+
|
|
634
|
+
hasMacAddress(): boolean;
|
|
635
|
+
clearMacAddress(): void;
|
|
636
|
+
getMacAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
637
|
+
setMacAddress(value?: google_protobuf_wrappers_pb.StringValue): SnmpStackMember;
|
|
638
|
+
|
|
639
|
+
hasSerialNumber(): boolean;
|
|
640
|
+
clearSerialNumber(): void;
|
|
641
|
+
getSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
642
|
+
setSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): SnmpStackMember;
|
|
643
|
+
|
|
644
|
+
hasModel(): boolean;
|
|
645
|
+
clearModel(): void;
|
|
646
|
+
getModel(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
647
|
+
setModel(value?: google_protobuf_wrappers_pb.StringValue): SnmpStackMember;
|
|
648
|
+
|
|
649
|
+
hasDescription(): boolean;
|
|
650
|
+
clearDescription(): void;
|
|
651
|
+
getDescription(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
652
|
+
setDescription(value?: google_protobuf_wrappers_pb.StringValue): SnmpStackMember;
|
|
653
|
+
|
|
654
|
+
hasPriority(): boolean;
|
|
655
|
+
clearPriority(): void;
|
|
656
|
+
getPriority(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
657
|
+
setPriority(value?: google_protobuf_wrappers_pb.Int32Value): SnmpStackMember;
|
|
658
|
+
getState(): SnmpStackMemberState;
|
|
659
|
+
setState(value: SnmpStackMemberState): SnmpStackMember;
|
|
660
|
+
|
|
661
|
+
hasSoftwareImage(): boolean;
|
|
662
|
+
clearSoftwareImage(): void;
|
|
663
|
+
getSoftwareImage(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
664
|
+
setSoftwareImage(value?: google_protobuf_wrappers_pb.StringValue): SnmpStackMember;
|
|
665
|
+
|
|
666
|
+
hasEntPhysicalIndex(): boolean;
|
|
667
|
+
clearEntPhysicalIndex(): void;
|
|
668
|
+
getEntPhysicalIndex(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
669
|
+
setEntPhysicalIndex(value?: google_protobuf_wrappers_pb.Int32Value): SnmpStackMember;
|
|
670
|
+
|
|
671
|
+
serializeBinary(): Uint8Array;
|
|
672
|
+
toObject(includeInstance?: boolean): SnmpStackMember.AsObject;
|
|
673
|
+
static toObject(includeInstance: boolean, msg: SnmpStackMember): SnmpStackMember.AsObject;
|
|
674
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
675
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
676
|
+
static serializeBinaryToWriter(message: SnmpStackMember, writer: jspb.BinaryWriter): void;
|
|
677
|
+
static deserializeBinary(bytes: Uint8Array): SnmpStackMember;
|
|
678
|
+
static deserializeBinaryFromReader(message: SnmpStackMember, reader: jspb.BinaryReader): SnmpStackMember;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
export namespace SnmpStackMember {
|
|
682
|
+
export type AsObject = {
|
|
683
|
+
memberId?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
684
|
+
role: SnmpStackRole,
|
|
685
|
+
macAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
686
|
+
serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
687
|
+
model?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
688
|
+
description?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
689
|
+
priority?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
690
|
+
state: SnmpStackMemberState,
|
|
691
|
+
softwareImage?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
692
|
+
entPhysicalIndex?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
|
|
588
696
|
export class Warranties extends jspb.Message {
|
|
589
697
|
clearEntriesList(): void;
|
|
590
698
|
getEntriesList(): Array<Warranty>;
|
|
@@ -653,3 +761,209 @@ export namespace Warranty {
|
|
|
653
761
|
shipDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
654
762
|
}
|
|
655
763
|
}
|
|
764
|
+
|
|
765
|
+
export class SnmpBusConfigData extends jspb.Message {
|
|
766
|
+
clearEntriesList(): void;
|
|
767
|
+
getEntriesList(): Array<SnmpBusConfig>;
|
|
768
|
+
setEntriesList(value: Array<SnmpBusConfig>): SnmpBusConfigData;
|
|
769
|
+
addEntries(value?: SnmpBusConfig, index?: number): SnmpBusConfig;
|
|
770
|
+
|
|
771
|
+
serializeBinary(): Uint8Array;
|
|
772
|
+
toObject(includeInstance?: boolean): SnmpBusConfigData.AsObject;
|
|
773
|
+
static toObject(includeInstance: boolean, msg: SnmpBusConfigData): SnmpBusConfigData.AsObject;
|
|
774
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
775
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
776
|
+
static serializeBinaryToWriter(message: SnmpBusConfigData, writer: jspb.BinaryWriter): void;
|
|
777
|
+
static deserializeBinary(bytes: Uint8Array): SnmpBusConfigData;
|
|
778
|
+
static deserializeBinaryFromReader(message: SnmpBusConfigData, reader: jspb.BinaryReader): SnmpBusConfigData;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
export namespace SnmpBusConfigData {
|
|
782
|
+
export type AsObject = {
|
|
783
|
+
entriesList: Array<SnmpBusConfig.AsObject>,
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
export class SnmpBusConfig extends jspb.Message {
|
|
788
|
+
getIndex(): number;
|
|
789
|
+
setIndex(value: number): SnmpBusConfig;
|
|
790
|
+
|
|
791
|
+
hasName(): boolean;
|
|
792
|
+
clearName(): void;
|
|
793
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
794
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): SnmpBusConfig;
|
|
795
|
+
getMaxSize(): number;
|
|
796
|
+
setMaxSize(value: number): SnmpBusConfig;
|
|
797
|
+
clearModulesList(): void;
|
|
798
|
+
getModulesList(): Array<SnmpModuleData>;
|
|
799
|
+
setModulesList(value: Array<SnmpModuleData>): SnmpBusConfig;
|
|
800
|
+
addModules(value?: SnmpModuleData, index?: number): SnmpModuleData;
|
|
801
|
+
|
|
802
|
+
hasType(): boolean;
|
|
803
|
+
clearType(): void;
|
|
804
|
+
getType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
805
|
+
setType(value?: google_protobuf_wrappers_pb.StringValue): SnmpBusConfig;
|
|
806
|
+
getModuleStartIndex(): number;
|
|
807
|
+
setModuleStartIndex(value: number): SnmpBusConfig;
|
|
808
|
+
|
|
809
|
+
serializeBinary(): Uint8Array;
|
|
810
|
+
toObject(includeInstance?: boolean): SnmpBusConfig.AsObject;
|
|
811
|
+
static toObject(includeInstance: boolean, msg: SnmpBusConfig): SnmpBusConfig.AsObject;
|
|
812
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
813
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
814
|
+
static serializeBinaryToWriter(message: SnmpBusConfig, writer: jspb.BinaryWriter): void;
|
|
815
|
+
static deserializeBinary(bytes: Uint8Array): SnmpBusConfig;
|
|
816
|
+
static deserializeBinaryFromReader(message: SnmpBusConfig, reader: jspb.BinaryReader): SnmpBusConfig;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
export namespace SnmpBusConfig {
|
|
820
|
+
export type AsObject = {
|
|
821
|
+
index: number,
|
|
822
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
823
|
+
maxSize: number,
|
|
824
|
+
modulesList: Array<SnmpModuleData.AsObject>,
|
|
825
|
+
type?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
826
|
+
moduleStartIndex: number,
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
export class SnmpModuleData extends jspb.Message {
|
|
831
|
+
getComponentType(): string;
|
|
832
|
+
setComponentType(value: string): SnmpModuleData;
|
|
833
|
+
|
|
834
|
+
hasName(): boolean;
|
|
835
|
+
clearName(): void;
|
|
836
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
837
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
838
|
+
|
|
839
|
+
hasMac(): boolean;
|
|
840
|
+
clearMac(): void;
|
|
841
|
+
getMac(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
842
|
+
setMac(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
843
|
+
|
|
844
|
+
hasManufacturer(): boolean;
|
|
845
|
+
clearManufacturer(): void;
|
|
846
|
+
getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
847
|
+
setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
848
|
+
|
|
849
|
+
hasSerialNumber(): boolean;
|
|
850
|
+
clearSerialNumber(): void;
|
|
851
|
+
getSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
852
|
+
setSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
853
|
+
|
|
854
|
+
hasModel(): boolean;
|
|
855
|
+
clearModel(): void;
|
|
856
|
+
getModel(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
857
|
+
setModel(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
858
|
+
|
|
859
|
+
hasFirmware(): boolean;
|
|
860
|
+
clearFirmware(): void;
|
|
861
|
+
getFirmware(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
862
|
+
setFirmware(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
863
|
+
|
|
864
|
+
hasPartNumber(): boolean;
|
|
865
|
+
clearPartNumber(): void;
|
|
866
|
+
getPartNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
867
|
+
setPartNumber(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
868
|
+
|
|
869
|
+
hasPositionInBusConfig(): boolean;
|
|
870
|
+
clearPositionInBusConfig(): void;
|
|
871
|
+
getPositionInBusConfig(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
872
|
+
setPositionInBusConfig(value?: google_protobuf_wrappers_pb.Int32Value): SnmpModuleData;
|
|
873
|
+
|
|
874
|
+
hasWidth(): boolean;
|
|
875
|
+
clearWidth(): void;
|
|
876
|
+
getWidth(): google_protobuf_wrappers_pb.UInt32Value | undefined;
|
|
877
|
+
setWidth(value?: google_protobuf_wrappers_pb.UInt32Value): SnmpModuleData;
|
|
878
|
+
clearExtendedInformationList(): void;
|
|
879
|
+
getExtendedInformationList(): Array<SnmpModuleExtendedInformation>;
|
|
880
|
+
setExtendedInformationList(value: Array<SnmpModuleExtendedInformation>): SnmpModuleData;
|
|
881
|
+
addExtendedInformation(value?: SnmpModuleExtendedInformation, index?: number): SnmpModuleExtendedInformation;
|
|
882
|
+
clearBusConfigList(): void;
|
|
883
|
+
getBusConfigList(): Array<SnmpBusConfig>;
|
|
884
|
+
setBusConfigList(value: Array<SnmpBusConfig>): SnmpModuleData;
|
|
885
|
+
addBusConfig(value?: SnmpBusConfig, index?: number): SnmpBusConfig;
|
|
886
|
+
|
|
887
|
+
hasRoutePath(): boolean;
|
|
888
|
+
clearRoutePath(): void;
|
|
889
|
+
getRoutePath(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
890
|
+
setRoutePath(value?: google_protobuf_wrappers_pb.StringValue): SnmpModuleData;
|
|
891
|
+
|
|
892
|
+
serializeBinary(): Uint8Array;
|
|
893
|
+
toObject(includeInstance?: boolean): SnmpModuleData.AsObject;
|
|
894
|
+
static toObject(includeInstance: boolean, msg: SnmpModuleData): SnmpModuleData.AsObject;
|
|
895
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
896
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
897
|
+
static serializeBinaryToWriter(message: SnmpModuleData, writer: jspb.BinaryWriter): void;
|
|
898
|
+
static deserializeBinary(bytes: Uint8Array): SnmpModuleData;
|
|
899
|
+
static deserializeBinaryFromReader(message: SnmpModuleData, reader: jspb.BinaryReader): SnmpModuleData;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
export namespace SnmpModuleData {
|
|
903
|
+
export type AsObject = {
|
|
904
|
+
componentType: string,
|
|
905
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
906
|
+
mac?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
907
|
+
manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
908
|
+
serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
909
|
+
model?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
910
|
+
firmware?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
911
|
+
partNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
912
|
+
positionInBusConfig?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
913
|
+
width?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
914
|
+
extendedInformationList: Array<SnmpModuleExtendedInformation.AsObject>,
|
|
915
|
+
busConfigList: Array<SnmpBusConfig.AsObject>,
|
|
916
|
+
routePath?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
export class SnmpModuleExtendedInformation extends jspb.Message {
|
|
921
|
+
getKey(): string;
|
|
922
|
+
setKey(value: string): SnmpModuleExtendedInformation;
|
|
923
|
+
getValue(): string;
|
|
924
|
+
setValue(value: string): SnmpModuleExtendedInformation;
|
|
925
|
+
|
|
926
|
+
serializeBinary(): Uint8Array;
|
|
927
|
+
toObject(includeInstance?: boolean): SnmpModuleExtendedInformation.AsObject;
|
|
928
|
+
static toObject(includeInstance: boolean, msg: SnmpModuleExtendedInformation): SnmpModuleExtendedInformation.AsObject;
|
|
929
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
930
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
931
|
+
static serializeBinaryToWriter(message: SnmpModuleExtendedInformation, writer: jspb.BinaryWriter): void;
|
|
932
|
+
static deserializeBinary(bytes: Uint8Array): SnmpModuleExtendedInformation;
|
|
933
|
+
static deserializeBinaryFromReader(message: SnmpModuleExtendedInformation, reader: jspb.BinaryReader): SnmpModuleExtendedInformation;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
export namespace SnmpModuleExtendedInformation {
|
|
937
|
+
export type AsObject = {
|
|
938
|
+
key: string,
|
|
939
|
+
value: string,
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
export enum SnmpStackProtocol {
|
|
944
|
+
SNMP_STACK_PROTOCOL_UNKNOWN = 0,
|
|
945
|
+
SNMP_STACK_PROTOCOL_CISCO_STACKWISE = 1,
|
|
946
|
+
SNMP_STACK_PROTOCOL_HP_VSF = 2,
|
|
947
|
+
SNMP_STACK_PROTOCOL_JUNIPER_VC = 3,
|
|
948
|
+
SNMP_STACK_PROTOCOL_GENERIC_STACK_MIB = 4,
|
|
949
|
+
SNMP_STACK_PROTOCOL_ENTITY_MIB = 5,
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
export enum SnmpStackRole {
|
|
953
|
+
SNMP_STACK_ROLE_UNKNOWN = 0,
|
|
954
|
+
SNMP_STACK_ROLE_MASTER = 1,
|
|
955
|
+
SNMP_STACK_ROLE_MEMBER = 2,
|
|
956
|
+
SNMP_STACK_ROLE_STANDBY = 3,
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
export enum SnmpStackMemberState {
|
|
960
|
+
SNMP_STACK_MEMBER_STATE_UNKNOWN = 0,
|
|
961
|
+
SNMP_STACK_MEMBER_STATE_READY = 1,
|
|
962
|
+
SNMP_STACK_MEMBER_STATE_NOT_READY = 2,
|
|
963
|
+
SNMP_STACK_MEMBER_STATE_PROVISIONING = 3,
|
|
964
|
+
SNMP_STACK_MEMBER_STATE_DEGRADED = 4,
|
|
965
|
+
SNMP_STACK_MEMBER_STATE_VERSION_MISMATCH = 5,
|
|
966
|
+
SNMP_STACK_MEMBER_STATE_FEATURE_MISMATCH = 6,
|
|
967
|
+
SNMP_STACK_MEMBER_STATE_SDM_MISMATCH = 7,
|
|
968
|
+
SNMP_STACK_MEMBER_STATE_REMOVED = 8,
|
|
969
|
+
}
|