[VOL-4485] omci-lib-go: ME Attribute names should be exported
Change-Id: I15ef78c3b470a9c49a23b32aad513c1cddfb3066
diff --git a/VERSION b/VERSION
index 549faf4..ccbccc3 100755
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.2.0-dev268
+2.2.0
diff --git a/go.mod b/go.mod
index 8abcf13..a6368cd 100644
--- a/go.mod
+++ b/go.mod
@@ -15,7 +15,7 @@
github.com/golang/protobuf v1.5.2
github.com/google/gopacket v1.1.17
github.com/looplab/fsm v0.2.0
- github.com/opencord/omci-lib-go/v2 v2.1.3
+ github.com/opencord/omci-lib-go/v2 v2.2.0
github.com/opencord/voltha-lib-go/v7 v7.1.3
github.com/opencord/voltha-protos/v5 v5.1.2
github.com/stretchr/testify v1.7.0
diff --git a/go.sum b/go.sum
index 649befb..b76d4a7 100644
--- a/go.sum
+++ b/go.sum
@@ -190,8 +190,8 @@
github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=
github.com/onsi/gomega v1.14.0 h1:ep6kpPVwmr/nTbklSx2nrLNSIO62DoYAhnPNIMhK8gI=
github.com/onsi/gomega v1.14.0/go.mod h1:cIuvLEne0aoVhAgh/O6ac0Op8WWw9H6eYCriF+tEHG0=
-github.com/opencord/omci-lib-go/v2 v2.1.3 h1:tUCzQXOJFQtPCVy8n71jpUAP4qFPYcu6XiHFuikJbdE=
-github.com/opencord/omci-lib-go/v2 v2.1.3/go.mod h1:o1S/jhDLHNikFU7uG2TR5UOM5KmKlqwLlVncXi0FBYQ=
+github.com/opencord/omci-lib-go/v2 v2.2.0 h1:9eawwD1+oWHTzEv9Q/JeSN12N/3YSGKoj1dr2Pm434g=
+github.com/opencord/omci-lib-go/v2 v2.2.0/go.mod h1:o1S/jhDLHNikFU7uG2TR5UOM5KmKlqwLlVncXi0FBYQ=
github.com/opencord/voltha-lib-go/v7 v7.1.3 h1:K6bnHg9N/Eg+P+qLqtuZ4GhOOVxZJ14qj9RZYujjEBw=
github.com/opencord/voltha-lib-go/v7 v7.1.3/go.mod h1:tdAFZ7N/rRg3ScnVM/15KkUZN60kTYPGU+uiRMpjTfY=
github.com/opencord/voltha-protos/v5 v5.1.2 h1:biyhoK+5JBcpT3HvUBb1xzN5cAKA0xXU/hLbtzuR9xI=
diff --git a/internal/pkg/avcfg/omci_ani_config.go b/internal/pkg/avcfg/omci_ani_config.go
index cc023ba..92fe84f 100755
--- a/internal/pkg/avcfg/omci_ani_config.go
+++ b/internal/pkg/avcfg/omci_ani_config.go
@@ -377,7 +377,7 @@
dsQueueFound := false
for _, mgmtEntityID := range queueInstKeys {
if meAttributes := oFsm.pOnuDB.GetMe(me.PriorityQueueClassID, mgmtEntityID); meAttributes != nil {
- returnVal := meAttributes["RelatedPort"]
+ returnVal := meAttributes[me.PriorityQueue_RelatedPort]
if returnVal != nil {
if relatedPort, err := oFsm.pOnuDB.GetUint32Attrib(returnVal); err == nil {
if relatedPort == usQrelPortMask {
@@ -398,7 +398,7 @@
logger.Warnw(ctx, "Could not convert attribute value", log.Fields{"device-id": oFsm.deviceID})
}
} else {
- logger.Warnw(ctx, "'RelatedPort' not found in meAttributes:", log.Fields{"device-id": oFsm.deviceID})
+ logger.Warnw(ctx, "PrioQueue.RelatedPort not found in meAttributes:", log.Fields{"device-id": oFsm.deviceID})
}
} else {
logger.Warnw(ctx, "No attributes available in DB:", log.Fields{"meClassID": me.PriorityQueueClassID,
@@ -525,10 +525,10 @@
meParams := me.ParamData{
EntityID: oFsm.macBPCD0ID,
Attributes: me.AttributeValueMap{
- "BridgeIdPointer": bridgePtr,
- "PortNum": 0xFF, //fixed unique ANI side indication
- "TpType": 3, //for .1PMapper
- "TpPointer": oFsm.mapperSP0ID,
+ me.MacBridgePortConfigurationData_BridgeIdPointer: bridgePtr,
+ me.MacBridgePortConfigurationData_PortNum: 0xFF, //fixed unique ANI side indication
+ me.MacBridgePortConfigurationData_TpType: 3, //for .1PMapper
+ me.MacBridgePortConfigurationData_TpPointer: oFsm.mapperSP0ID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -574,7 +574,7 @@
meParams := me.ParamData{
EntityID: oFsm.tcont0ID,
Attributes: me.AttributeValueMap{
- "AllocId": oFsm.alloc0ID,
+ me.TCont_AllocId: oFsm.alloc0ID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -691,7 +691,7 @@
// The TP type value 0 also indicates bridging mapping, and the TP pointer should be set to 0xFFFF
// setting this parameter is not strictly needed anymore with the ensured .1pMapper create default setting
// but except for processing effort does not really harm - left to keep changes low
- meParams.Attributes["TpPointer"] = 0xffff
+ meParams.Attributes[me.Ieee8021PMapperServiceProfile_TpPointer] = 0xffff
if !foundIwPtr {
logger.Debugw(ctx, "UniPonAniConfigFsm no GemIwPtr found for .1pMapper - abort", log.Fields{
@@ -983,7 +983,7 @@
meParams := me.ParamData{
EntityID: oFsm.tcont0ID,
Attributes: me.AttributeValueMap{
- "AllocId": cmn.UnusedTcontAllocID,
+ me.TCont_AllocId: cmn.UnusedTcontAllocID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -1454,13 +1454,13 @@
meParams := me.ParamData{
EntityID: gemPortAttribs.gemPortID, //unique, same as PortId
Attributes: me.AttributeValueMap{
- "PortId": gemPortAttribs.gemPortID,
- "TContPointer": oFsm.tcont0ID,
- "Direction": gemPortAttribs.direction,
+ me.GemPortNetworkCtp_PortId: gemPortAttribs.gemPortID,
+ me.GemPortNetworkCtp_TContPointer: oFsm.tcont0ID,
+ me.GemPortNetworkCtp_Direction: gemPortAttribs.direction,
//ONU-G.TrafficManagementOption dependency ->PrioQueue or TCont
// TODO!! verify dependency and QueueId in case of Multi-GemPort setup!
- "TrafficManagementPointerForUpstream": gemPortAttribs.upQueueID, //might be different in wrr-only Setup - tcont0ID
- "PriorityQueuePointerForDownStream": gemPortAttribs.downQueueID,
+ me.GemPortNetworkCtp_TrafficManagementPointerForUpstream: gemPortAttribs.upQueueID, //might be different in wrr-only Setup - tcont0ID
+ me.GemPortNetworkCtp_PriorityQueuePointerForDownStream: gemPortAttribs.downQueueID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -1520,10 +1520,10 @@
meParams := me.ParamData{
EntityID: gemPortAttribs.multicastGemID,
Attributes: me.AttributeValueMap{
- "GemPortNetworkCtpConnectivityPointer": gemPortAttribs.multicastGemID,
- "InterworkingOption": 0, // Don't Care
- "ServiceProfilePointer": 0, // Don't Care
- "GalProfilePointer": cmn.GalEthernetEID,
+ me.MulticastGemInterworkingTerminationPoint_GemPortNetworkCtpConnectivityPointer: gemPortAttribs.multicastGemID,
+ me.MulticastGemInterworkingTerminationPoint_InterworkingOption: 0, // Don't Care
+ me.MulticastGemInterworkingTerminationPoint_ServiceProfilePointer: 0, // Don't Care
+ me.MulticastGemInterworkingTerminationPoint_GalProfilePointer: cmn.GalEthernetEID,
},
}
if oFsm.pUniTechProf.multicastConfiguredForOtherUniTps(ctx, oFsm.uniTpKey) {
@@ -1564,7 +1564,7 @@
meIPV4MCTableParams := me.ParamData{
EntityID: gemPortAttribs.multicastGemID,
Attributes: me.AttributeValueMap{
- "Ipv4MulticastAddressTable": ipv4MulticastTable,
+ me.MulticastGemInterworkingTerminationPoint_Ipv4MulticastAddressTable: ipv4MulticastTable,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -1584,11 +1584,11 @@
meParams := me.ParamData{
EntityID: gemPortAttribs.gemPortID,
Attributes: me.AttributeValueMap{
- "GemPortNetworkCtpConnectivityPointer": gemPortAttribs.gemPortID, //same as EntityID, see above
- "InterworkingOption": 5, //fixed model:: G.998 .1pMapper
- "ServiceProfilePointer": oFsm.mapperSP0ID,
- "InterworkingTerminationPointPointer": 0, //not used with .1PMapper Mac bridge
- "GalProfilePointer": cmn.GalEthernetEID,
+ me.GemInterworkingTerminationPoint_GemPortNetworkCtpConnectivityPointer: gemPortAttribs.gemPortID, //same as EntityID, see above
+ me.GemInterworkingTerminationPoint_InterworkingOption: 5, //fixed model:: G.998 .1pMapper
+ me.GemInterworkingTerminationPoint_ServiceProfilePointer: oFsm.mapperSP0ID,
+ me.GemInterworkingTerminationPoint_InterworkingTerminationPointPointer: 0, //not used with .1PMapper Mac bridge
+ me.GemInterworkingTerminationPoint_GalProfilePointer: cmn.GalEthernetEID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -1705,15 +1705,15 @@
logger.Debugw(ctx, "uniPonAniConfigFsm Tx Set::PrioQueue to StrictPrio", log.Fields{
"EntitytId": strconv.FormatInt(int64(queueIndex), 16),
"device-id": oFsm.deviceID})
- meParams.Attributes["TrafficSchedulerPointer"] = 0 //ensure T-Cont defined StrictPrio scheduling
+ meParams.Attributes[me.PriorityQueue_TrafficSchedulerPointer] = 0 //ensure T-Cont defined StrictPrio scheduling
} else {
//WRR indication
logger.Debugw(ctx, "uniPonAniConfigFsm Tx Set::PrioQueue to WRR", log.Fields{
"EntitytId": strconv.FormatInt(int64(queueIndex), 16),
"Weight": kv.Value,
"device-id": oFsm.deviceID})
- meParams.Attributes["TrafficSchedulerPointer"] = loTrafficSchedulerEID //ensure assignment of the relevant trafficScheduler
- meParams.Attributes["Weight"] = uint8(kv.Value.(uint16))
+ meParams.Attributes[me.PriorityQueue_TrafficSchedulerPointer] = loTrafficSchedulerEID //ensure assignment of the relevant trafficScheduler
+ meParams.Attributes[me.PriorityQueue_Weight] = uint8(kv.Value.(uint16))
}
} else {
// setting Traffic Scheduler (TS) pointer is not supported unless we point to another TS that points to the same TCONT.
@@ -1730,7 +1730,7 @@
"EntitytId": strconv.FormatInt(int64(queueIndex), 16),
"Weight": kv.Value,
"device-id": oFsm.deviceID})
- meParams.Attributes["Weight"] = uint8(kv.Value.(uint16))
+ meParams.Attributes[me.PriorityQueue_Weight] = uint8(kv.Value.(uint16))
}
oFsm.mutexPLastTxMeInstance.Lock()
meInstance, err := oFsm.pOmciCC.SendSetPrioQueueVar(log.WithSpanFromContext(context.TODO(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), true,
diff --git a/internal/pkg/avcfg/omci_vlan_config.go b/internal/pkg/avcfg/omci_vlan_config.go
index e97b0be..dd066b7 100755
--- a/internal/pkg/avcfg/omci_vlan_config.go
+++ b/internal/pkg/avcfg/omci_vlan_config.go
@@ -1215,9 +1215,9 @@
meParams := me.ParamData{
EntityID: vtfdID,
Attributes: me.AttributeValueMap{
- "VlanFilterList": vtfdFilterList, //omci lib wants a slice for serialization
- "ForwardOperation": uint8(0x10), //VID investigation
- "NumberOfEntries": oFsm.numVlanFilterEntries,
+ me.VlanTaggingFilterData_VlanFilterList: vtfdFilterList, //omci lib wants a slice for serialization
+ me.VlanTaggingFilterData_ForwardOperation: uint8(0x10), //VID investigation
+ me.VlanTaggingFilterData_NumberOfEntries: oFsm.numVlanFilterEntries,
},
}
logger.Debugw(ctx, "UniVlanConfigFsm sendcreate VTFD", log.Fields{
@@ -1448,9 +1448,9 @@
meParams := me.ParamData{
EntityID: vtfdID,
Attributes: me.AttributeValueMap{
- "VlanFilterList": vtfdFilterList,
- "ForwardOperation": uint8(0x10), //VID investigation
- "NumberOfEntries": oFsm.numVlanFilterEntries,
+ me.VlanTaggingFilterData_VlanFilterList: vtfdFilterList,
+ me.VlanTaggingFilterData_ForwardOperation: uint8(0x10), //VID investigation
+ me.VlanTaggingFilterData_NumberOfEntries: oFsm.numVlanFilterEntries,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -1499,9 +1499,9 @@
meParams := me.ParamData{
EntityID: vtfdID,
Attributes: me.AttributeValueMap{
- "VlanFilterList": vtfdFilterList,
- "ForwardOperation": uint8(0x10), //VID investigation
- "NumberOfEntries": oFsm.numVlanFilterEntries,
+ me.VlanTaggingFilterData_VlanFilterList: vtfdFilterList,
+ me.VlanTaggingFilterData_ForwardOperation: uint8(0x10), //VID investigation
+ me.VlanTaggingFilterData_NumberOfEntries: oFsm.numVlanFilterEntries,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2166,8 +2166,8 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "AssociationType": uint8(associationType),
- "AssociatedMePointer": oFsm.pOnuUniPort.EntityID,
+ me.ExtendedVlanTaggingOperationConfigurationData_AssociationType: uint8(associationType),
+ me.ExtendedVlanTaggingOperationConfigurationData_AssociatedMePointer: oFsm.pOnuUniPort.EntityID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2198,9 +2198,9 @@
meParams = me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "InputTpid": uint16(cDefaultTpid), //could be possibly retrieved from flow config one day, by now just like py-code base
- "OutputTpid": uint16(cDefaultTpid), //could be possibly retrieved from flow config one day, by now just like py-code base
- "DownstreamMode": uint8(cDefaultDownstreamMode),
+ me.ExtendedVlanTaggingOperationConfigurationData_InputTpid: uint16(cDefaultTpid), //could be possibly retrieved from flow config one day, by now just like py-code base
+ me.ExtendedVlanTaggingOperationConfigurationData_OutputTpid: uint16(cDefaultTpid), //could be possibly retrieved from flow config one day, by now just like py-code base
+ me.ExtendedVlanTaggingOperationConfigurationData_DownstreamMode: uint8(cDefaultDownstreamMode),
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2262,7 +2262,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2328,7 +2328,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2390,7 +2390,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2453,7 +2453,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2532,7 +2532,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2587,7 +2587,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2699,7 +2699,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2751,7 +2751,7 @@
meParams := me.ParamData{
EntityID: evtocdID,
Attributes: me.AttributeValueMap{
- "ReceivedFrameVlanTaggingOperationTable": sliceEvtocdRule,
+ me.ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable: sliceEvtocdRule,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2864,10 +2864,10 @@
meParams := me.ParamData{
EntityID: macBpCdEID,
Attributes: me.AttributeValueMap{
- "BridgeIdPointer": cmn.MacBridgeServiceProfileEID + uint16(oFsm.pOnuUniPort.MacBpNo),
- "PortNum": 0xf0, //fixed unique ANI side indication
- "TpType": 6, //MCGemIWTP
- "TpPointer": multicastGemPortID,
+ me.MacBridgePortConfigurationData_BridgeIdPointer: cmn.MacBridgeServiceProfileEID + uint16(oFsm.pOnuUniPort.MacBpNo),
+ me.MacBridgePortConfigurationData_PortNum: 0xf0, //fixed unique ANI side indication
+ me.MacBridgePortConfigurationData_TpType: 6, //MCGemIWTP
+ me.MacBridgePortConfigurationData_TpPointer: multicastGemPortID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2911,9 +2911,9 @@
meParams = me.ParamData{
EntityID: mcastVtfdID,
Attributes: me.AttributeValueMap{
- "VlanFilterList": vtfdFilterList,
- "ForwardOperation": uint8(0x10), //VID investigation
- "NumberOfEntries": oFsm.numVlanFilterEntries,
+ me.VlanTaggingFilterData_VlanFilterList: vtfdFilterList,
+ me.VlanTaggingFilterData_ForwardOperation: uint8(0x10), //VID investigation
+ me.VlanTaggingFilterData_NumberOfEntries: oFsm.numVlanFilterEntries,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -2951,7 +2951,7 @@
meParams := me.ParamData{
EntityID: instID,
Attributes: me.AttributeValueMap{
- "MeType": 0,
+ me.MulticastSubscriberConfigInfo_MeType: 0,
//Direct reference to the Operation profile
//TODO ANI side used on UNI side, not the clearest option.
"MulticastOperationsProfilePointer": instID,
@@ -2995,17 +2995,17 @@
meParams := me.ParamData{
EntityID: instID,
Attributes: me.AttributeValueMap{
- "IgmpVersion": 2,
- "IgmpFunction": 0,
+ me.MulticastOperationsProfile_IgmpVersion: 2,
+ me.MulticastOperationsProfile_IgmpFunction: 0,
//0 means false
- "ImmediateLeave": 0,
- "Robustness": 2,
- "QuerierIpAddress": 0,
- "QueryInterval": 125,
- "QueryMaxResponseTime": 100,
- "LastMemberQueryInterval": 10,
+ me.MulticastOperationsProfile_ImmediateLeave: 0,
+ me.MulticastOperationsProfile_Robustness: 2,
+ me.MulticastOperationsProfile_QuerierIpAddress: 0,
+ me.MulticastOperationsProfile_QueryInterval: 125,
+ me.MulticastOperationsProfile_QueryMaxResponseTime: 100,
+ me.MulticastOperationsProfile_LastMemberQueryInterval: 10,
//0 means false
- "UnauthorizedJoinRequestBehaviour": 0,
+ me.MulticastOperationsProfile_UnauthorizedJoinRequestBehaviour: 0,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -3070,7 +3070,7 @@
meParams := me.ParamData{
EntityID: instID,
Attributes: me.AttributeValueMap{
- "DynamicAccessControlListTable": dynamicAccessCL,
+ me.MulticastOperationsProfile_DynamicAccessControlListTable: dynamicAccessCL,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -3122,14 +3122,14 @@
meParams := me.ParamData{
EntityID: trafficDescriptorID,
Attributes: me.AttributeValueMap{
- "Cir": cir,
- "Pir": pir,
- "Cbs": cbs,
- "Pbs": pbs,
- "ColourMode": 1,
- "IngressColourMarking": 3,
- "EgressColourMarking": 3,
- "MeterType": 1,
+ me.TrafficDescriptor_Cir: cir,
+ me.TrafficDescriptor_Pir: pir,
+ me.TrafficDescriptor_Cbs: cbs,
+ me.TrafficDescriptor_Pbs: pbs,
+ me.TrafficDescriptor_ColourMode: 1,
+ me.TrafficDescriptor_IngressColourMarking: 3,
+ me.TrafficDescriptor_EgressColourMarking: 3,
+ me.TrafficDescriptor_MeterType: 1,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
@@ -3165,7 +3165,7 @@
meParams := me.ParamData{
EntityID: gemPortEntityID,
Attributes: me.AttributeValueMap{
- "TrafficDescriptorProfilePointerForUpstream": trafficDescriptorEntityID,
+ me.GemPortNetworkCtp_TrafficDescriptorProfilePointerForUpstream: trafficDescriptorEntityID,
},
}
oFsm.mutexPLastTxMeInstance.Lock()
diff --git a/internal/pkg/common/omci_cc.go b/internal/pkg/common/omci_cc.go
index 57bc0ce..45c536d 100755
--- a/internal/pkg/common/omci_cc.go
+++ b/internal/pkg/common/omci_cc.go
@@ -891,7 +891,7 @@
meParams := me.ParamData{
EntityID: GalEthernetEID,
- Attributes: me.AttributeValueMap{"MaximumGemPayloadSize": maxGemPayloadSize},
+ Attributes: me.AttributeValueMap{me.GalEthernetProfile_MaximumGemPayloadSize: maxGemPayloadSize},
}
meInstance, omciErr := me.NewGalEthernetProfile(meParams)
if omciErr.GetError() == nil {
@@ -941,7 +941,7 @@
// read ONU-2G from DB ???? //TODO!!!
meParams := me.ParamData{
EntityID: 0,
- Attributes: me.AttributeValueMap{"CurrentConnectivityMode": connectivityModeValue},
+ Attributes: me.AttributeValueMap{me.Onu2G_CurrentConnectivityMode: connectivityModeValue},
}
meInstance, omciErr := me.NewOnu2G(meParams)
if omciErr.GetError() == nil {
@@ -988,11 +988,11 @@
meParams := me.ParamData{
EntityID: instID,
Attributes: me.AttributeValueMap{
- "Priority": 0x8000,
- "MaxAge": 20 * 256, //20s
- "HelloTime": 2 * 256, //2s
- "ForwardDelay": 15 * 256, //15s
- "DynamicFilteringAgeingTime": 0,
+ me.MacBridgeServiceProfile_Priority: 0x8000,
+ me.MacBridgeServiceProfile_MaxAge: 20 * 256, //20s
+ me.MacBridgeServiceProfile_HelloTime: 2 * 256, //2s
+ me.MacBridgeServiceProfile_ForwardDelay: 15 * 256, //15s
+ me.MacBridgeServiceProfile_DynamicFilteringAgeingTime: 0,
},
}
@@ -1048,10 +1048,10 @@
meParams := me.ParamData{
EntityID: instID,
Attributes: me.AttributeValueMap{
- "BridgeIdPointer": MacBridgeServiceProfileEID + uint16(aPUniPort.MacBpNo),
- "PortNum": aPUniPort.MacBpNo,
- "TpType": uint8(aPUniPort.PortType),
- "TpPointer": aPUniPort.EntityID,
+ me.MacBridgePortConfigurationData_BridgeIdPointer: MacBridgeServiceProfileEID + uint16(aPUniPort.MacBpNo),
+ me.MacBridgePortConfigurationData_PortNum: aPUniPort.MacBpNo,
+ me.MacBridgePortConfigurationData_TpType: uint8(aPUniPort.PortType),
+ me.MacBridgePortConfigurationData_TpPointer: aPUniPort.EntityID,
},
}
meInstance, omciErr := me.NewMacBridgePortConfigurationData(meParams)
@@ -1109,8 +1109,8 @@
meParams := me.ParamData{
EntityID: instID,
Attributes: me.AttributeValueMap{
- "AssociationType": assType,
- "AssociatedMePointer": aPUniPort.EntityID,
+ me.ExtendedVlanTaggingOperationConfigurationData_AssociationType: assType,
+ me.ExtendedVlanTaggingOperationConfigurationData_AssociatedMePointer: aPUniPort.EntityID,
//EnhancedMode not yet supported, used with default options
},
}
@@ -1422,15 +1422,15 @@
EntityID: aInstID,
Attributes: me.AttributeValueMap{
//workaround for unsuitable omci-lib default values, cmp VOL-3729
- "TpPointer": 0xFFFF,
- "InterworkTpPointerForPBitPriority0": 0xFFFF,
- "InterworkTpPointerForPBitPriority1": 0xFFFF,
- "InterworkTpPointerForPBitPriority2": 0xFFFF,
- "InterworkTpPointerForPBitPriority3": 0xFFFF,
- "InterworkTpPointerForPBitPriority4": 0xFFFF,
- "InterworkTpPointerForPBitPriority5": 0xFFFF,
- "InterworkTpPointerForPBitPriority6": 0xFFFF,
- "InterworkTpPointerForPBitPriority7": 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_TpPointer: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority0: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority1: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority2: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority3: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority4: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority5: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority6: 0xFFFF,
+ me.Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority7: 0xFFFF,
},
}
meInstance, omciErr := me.NewIeee8021PMapperServiceProfile(meParams)
@@ -4552,7 +4552,7 @@
"SequNo": strconv.FormatInt(int64(tid), 16), "InstId": strconv.FormatInt(int64(entityID), 16), "create": create, "upstream": upstream})
meParam := me.ParamData{EntityID: entityID,
- Attributes: me.AttributeValueMap{"ControlBlock": controlBlock},
+ Attributes: me.AttributeValueMap{me.EthernetFrameExtendedPm_ControlBlock: controlBlock},
}
var meInstance *me.ManagedEntity
var omciErr me.OmciErrors
@@ -4633,7 +4633,7 @@
"SequNo": strconv.FormatInt(int64(tid), 16), "InstId": strconv.FormatInt(int64(entityID), 16)})
meParams := me.ParamData{EntityID: entityID,
- Attributes: me.AttributeValueMap{"ControlBlock": controlBlock},
+ Attributes: me.AttributeValueMap{me.EthernetFrameExtendedPm_ControlBlock: controlBlock},
}
var meInstance *me.ManagedEntity
var omciErr me.OmciErrors
diff --git a/internal/pkg/mib/mib_sync.go b/internal/pkg/mib/mib_sync.go
index 5222b8b..9b8196b 100755
--- a/internal/pkg/mib/mib_sync.go
+++ b/internal/pkg/mib/mib_sync.go
@@ -97,7 +97,7 @@
func (oo *OnuDeviceEntry) enterGettingVendorAndSerialState(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting VendorId and SerialNumber in State": e.FSM.Current(), "device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"VendorId": "", "SerialNumber": 0}
+ requestedAttributes := me.AttributeValueMap{me.OnuG_VendorId: "", me.OnuG_SerialNumber: 0}
oo.mutexLastTxParamStruct.Lock()
meInstance, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.OnuGClassID, cmn.OnugMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
//accept also nil as (error) return value for writing to LastTx
@@ -120,7 +120,7 @@
func (oo *OnuDeviceEntry) enterGettingEquipmentIDState(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting EquipmentId in State": e.FSM.Current(), "device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"EquipmentId": ""}
+ requestedAttributes := me.AttributeValueMap{me.Onu2G_EquipmentId: ""}
oo.mutexLastTxParamStruct.Lock()
meInstance, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.Onu2GClassID, cmn.Onu2gMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
//accept also nil as (error) return value for writing to LastTx
@@ -143,7 +143,7 @@
func (oo *OnuDeviceEntry) enterGettingFirstSwVersionState(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting IsActive and Version of first SW-image in State": e.FSM.Current(), "device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
+ requestedAttributes := me.AttributeValueMap{me.SoftwareImage_IsCommitted: 0, me.SoftwareImage_IsActive: 0, me.SoftwareImage_Version: ""}
oo.mutexLastTxParamStruct.Lock()
meInstance, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.SoftwareImageClassID, cmn.FirstSwImageMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
//accept also nil as (error) return value for writing to LastTx
@@ -166,7 +166,7 @@
func (oo *OnuDeviceEntry) enterGettingSecondSwVersionState(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting IsActive and Version of second SW-image in State": e.FSM.Current(), "device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
+ requestedAttributes := me.AttributeValueMap{me.SoftwareImage_IsCommitted: 0, me.SoftwareImage_IsActive: 0, me.SoftwareImage_Version: ""}
oo.mutexLastTxParamStruct.Lock()
meInstance, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.SoftwareImageClassID, cmn.SecondSwImageMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
//accept also nil as (error) return value for writing to LastTx
@@ -189,7 +189,7 @@
func (oo *OnuDeviceEntry) enterGettingMacAddressState(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting MacAddress in State": e.FSM.Current(), "device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"MacAddress": ""}
+ requestedAttributes := me.AttributeValueMap{me.IpHostConfigData_MacAddress: ""}
oo.mutexLastTxParamStruct.Lock()
meInstance, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.IpHostConfigDataClassID, cmn.IPHostConfigDataMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
//accept also nil as (error) return value for writing to LastTx
@@ -550,7 +550,7 @@
oo.mutexLastTxParamStruct.Lock()
if oo.lastTxParamStruct.lastTxMessageType == omci.GetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
logger.Debugw(ctx, "MibSync FSM - repeat MdsGetRequest (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
+ requestedAttributes := me.AttributeValueMap{me.OnuData_MibDataSync: ""}
_, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
me.OnuDataClassID, cmn.OnuDataMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
if err != nil {
@@ -721,8 +721,8 @@
case "OnuG":
oo.mutexLastTxParamStruct.RUnlock()
oo.MutexPersOnuConfig.Lock()
- oo.SOnuPersistentData.PersVendorID = cmn.TrimStringFromMeOctet(meAttributes["VendorId"])
- snBytes, _ := me.InterfaceToOctets(meAttributes["SerialNumber"])
+ oo.SOnuPersistentData.PersVendorID = cmn.TrimStringFromMeOctet(meAttributes[me.OnuG_VendorId])
+ snBytes, _ := me.InterfaceToOctets(meAttributes[me.OnuG_SerialNumber])
if cmn.OnugSerialNumberLen == len(snBytes) {
snVendorPart := fmt.Sprintf("%s", snBytes[:4])
snNumberPart := hex.EncodeToString(snBytes[4:])
@@ -740,7 +740,7 @@
case "Onu2G":
oo.mutexLastTxParamStruct.RUnlock()
oo.MutexPersOnuConfig.Lock()
- oo.SOnuPersistentData.PersEquipmentID = cmn.TrimStringFromMeOctet(meAttributes["EquipmentId"])
+ oo.SOnuPersistentData.PersEquipmentID = cmn.TrimStringFromMeOctet(meAttributes[me.Onu2G_EquipmentId])
logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu2-G - EquipmentId", log.Fields{"device-id": oo.deviceID,
"onuDeviceEntry.equipmentID": oo.SOnuPersistentData.PersEquipmentID})
oo.MutexPersOnuConfig.Unlock()
@@ -760,7 +760,7 @@
return nil
case "IpHostConfigData":
oo.mutexLastTxParamStruct.RUnlock()
- macBytes, _ := me.InterfaceToOctets(meAttributes["MacAddress"])
+ macBytes, _ := me.InterfaceToOctets(meAttributes[me.IpHostConfigData_MacAddress])
oo.MutexPersOnuConfig.Lock()
if cmn.OmciMacAddressLen == len(macBytes) {
oo.SOnuPersistentData.PersMacAddress = hex.EncodeToString(macBytes[:])
@@ -776,7 +776,7 @@
return nil
case "OnuData":
oo.mutexLastTxParamStruct.RUnlock()
- oo.checkMdsValue(ctx, meAttributes["MibDataSync"].(uint8))
+ oo.checkMdsValue(ctx, meAttributes[me.OnuData_MibDataSync].(uint8))
return nil
default:
oo.mutexLastTxParamStruct.RUnlock()
@@ -801,9 +801,9 @@
//HandleSwImageIndications updates onuSwImageIndications with the ONU data just received
func (oo *OnuDeviceEntry) HandleSwImageIndications(ctx context.Context, entityID uint16, meAttributes me.AttributeValueMap) {
- imageIsCommitted := meAttributes["IsCommitted"].(uint8)
- imageIsActive := meAttributes["IsActive"].(uint8)
- imageVersion := cmn.TrimStringFromMeOctet(meAttributes["Version"])
+ imageIsCommitted := meAttributes[me.SoftwareImage_IsCommitted].(uint8)
+ imageIsActive := meAttributes[me.SoftwareImage_IsActive].(uint8)
+ imageVersion := cmn.TrimStringFromMeOctet(meAttributes[me.SoftwareImage_Version])
oo.MutexPersOnuConfig.RLock()
logger.Infow(ctx, "MibSync FSM - GetResponse Data for SoftwareImage",
log.Fields{"device-id": oo.deviceID, "entityID": entityID,
@@ -1042,7 +1042,7 @@
func (oo *OnuDeviceEntry) requestMdsValue(ctx context.Context) {
logger.Debugw(ctx, "Request MDS value", log.Fields{"device-id": oo.deviceID})
- requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
+ requestedAttributes := me.AttributeValueMap{me.OnuData_MibDataSync: ""}
meInstance, err := oo.PDevOmciCC.SendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
me.OnuDataClassID, cmn.OnuDataMeID, requestedAttributes, oo.baseDeviceHandler.GetOmciTimeout(), true, oo.PMibUploadFsm.CommChan)
//accept also nil as (error) return value for writing to LastTx
diff --git a/internal/pkg/pmmgr/onu_metrics_manager.go b/internal/pkg/pmmgr/onu_metrics_manager.go
index 2ce6174..b67f455 100755
--- a/internal/pkg/pmmgr/onu_metrics_manager.go
+++ b/internal/pkg/pmmgr/onu_metrics_manager.go
@@ -74,20 +74,6 @@
ExtendedPmCreateAttempts = 3
UnsupportedCounterValue32bit uint64 = 4294967294
UnsupportedCounterValue64bit uint64 = 18446744073709551614
- dropEvents = "DropEvents"
- octets = "Octets"
- frames = "Frames"
- broadcastFrames = "BroadcastFrames"
- multicastFrames = "MulticastFrames"
- crcErroredFrames = "CrcErroredFrames"
- undersizeFrames = "UndersizeFrames"
- oversizeFrames = "OversizeFrames"
- frames64Octets = "Frames64Octets"
- frames65To127Octets = "Frames65To127Octets"
- frames128To255Octets = "Frames128To255Octets"
- frames256To511Octets = "Frames256To511Octets"
- frames512To1023Octets = "Frames512To1023Octets"
- frames1024To1518Octets = "Frames1024To1518Octets"
)
// OpticalPowerGroupMetrics are supported optical pm names
@@ -760,7 +746,7 @@
var meAttributes me.AttributeValueMap
opticalMetrics := make(map[string]float32)
// Get the ANI-G instance optical power attributes
- requestedAttributes := me.AttributeValueMap{"OpticalSignalLevel": 0, "TransmitOpticalLevel": 0}
+ requestedAttributes := me.AttributeValueMap{me.AniG_OpticalSignalLevel: 0, me.AniG_TransmitOpticalLevel: 0}
meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, me.AniGClassID, anigInstID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
logger.Errorw(ctx, "GetMe failed, failure PM FSM!", log.Fields{"device-id": mm.deviceID})
@@ -781,15 +767,15 @@
for k := range OpticalPowerGroupMetrics {
switch k {
case "ani_g_instance_id":
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
opticalMetrics[k] = float32(val.(uint16))
}
case "transmit_power_dBm":
- if val, ok := meAttributes["TransmitOpticalLevel"]; ok && val != nil {
+ if val, ok := meAttributes[me.AniG_TransmitOpticalLevel]; ok && val != nil {
opticalMetrics[k] = float32(math.Round((float64(cmn.TwosComplementToSignedInt16(val.(uint16)))/500.0)*10) / 10) // convert to dBm rounded of to single decimal place
}
case "receive_power_dBm":
- if val, ok := meAttributes["OpticalSignalLevel"]; ok && val != nil {
+ if val, ok := meAttributes[me.AniG_OpticalSignalLevel]; ok && val != nil {
opticalMetrics[k] = float32(math.Round((float64(cmn.TwosComplementToSignedInt16(val.(uint16)))/500.0)*10) / 10) // convert to dBm rounded of to single decimal place
}
default:
@@ -843,7 +829,7 @@
unigMetrics := make(map[string]float32)
var meAttributes me.AttributeValueMap
// Get the UNI-G instance optical power attributes
- requestedAttributes := me.AttributeValueMap{"AdministrativeState": 0}
+ requestedAttributes := me.AttributeValueMap{me.UniG_AdministrativeState: 0}
meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, me.UniGClassID, unigInstID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
logger.Errorw(ctx, "UNI-G failed, failure PM FSM!", log.Fields{"device-id": mm.deviceID})
@@ -864,14 +850,14 @@
for k := range UniStatusGroupMetrics {
switch k {
case "uni_admin_state":
- if val, ok := meAttributes["AdministrativeState"]; ok && val != nil {
+ if val, ok := meAttributes[me.UniG_AdministrativeState]; ok && val != nil {
unigMetrics[k] = float32(val.(byte))
}
default:
// do nothing
}
}
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
entityID := val.(uint16)
unigMetrics["entity_id"] = float32(entityID)
// TODO: Rlock needed for reading uniEntityMap? May not be needed given uniEntityMap is populated setup at initial ONU bring up
@@ -899,8 +885,12 @@
var meAttributes me.AttributeValueMap
pptpMetrics := make(map[string]float32)
- requestedAttributes := me.AttributeValueMap{"ConfigurationInd": 0, "OperationalState": 0, "AdministrativeState": 0}
- meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, me.PhysicalPathTerminationPointEthernetUniClassID, pptpInstID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
+ requestedAttributes := me.AttributeValueMap{
+ me.PhysicalPathTerminationPointEthernetUni_ConfigurationInd: 0,
+ me.PhysicalPathTerminationPointEthernetUni_OperationalState: 0,
+ me.PhysicalPathTerminationPointEthernetUni_AdministrativeState: 0}
+ meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, me.PhysicalPathTerminationPointEthernetUniClassID,
+ pptpInstID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
logger.Errorw(ctx, "GetMe failed, failure PM FSM!", log.Fields{"device-id": mm.deviceID})
_ = mm.PAdaptFsm.PFsm.Event(L2PmEventFailure)
@@ -921,15 +911,15 @@
for k := range UniStatusGroupMetrics {
switch k {
case "configuration_ind":
- if val, ok := meAttributes["ConfigurationInd"]; ok && val != nil {
+ if val, ok := meAttributes[me.PhysicalPathTerminationPointEthernetUni_ConfigurationInd]; ok && val != nil {
pptpMetrics[k] = float32(val.(byte))
}
case "oper_status":
- if val, ok := meAttributes["OperationalState"]; ok && val != nil {
+ if val, ok := meAttributes[me.PhysicalPathTerminationPointEthernetUni_OperationalState]; ok && val != nil {
pptpMetrics[k] = float32(val.(byte))
}
case "uni_admin_state":
- if val, ok := meAttributes["AdministrativeState"]; ok && val != nil {
+ if val, ok := meAttributes[me.PhysicalPathTerminationPointEthernetUni_AdministrativeState]; ok && val != nil {
pptpMetrics[k] = float32(val.(byte))
}
default:
@@ -937,7 +927,7 @@
}
}
}
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
entityID := val.(uint16)
pptpMetrics["entity_id"] = float32(entityID)
// TODO: Rlock needed for reading uniEntityMap? May not be needed given uniEntityMap is populated setup at initial ONU bring up
@@ -964,7 +954,7 @@
var meAttributes me.AttributeValueMap
veipMetrics := make(map[string]float32)
- requestedAttributes := me.AttributeValueMap{"OperationalState": 0, "AdministrativeState": 0}
+ requestedAttributes := me.AttributeValueMap{me.VirtualEthernetInterfacePoint_OperationalState: 0, me.VirtualEthernetInterfacePoint_AdministrativeState: 0}
meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, me.VirtualEthernetInterfacePointClassID, veipInstID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
logger.Errorw(ctx, "GetMe failed, failure PM FSM!", log.Fields{"device-id": mm.deviceID})
@@ -986,11 +976,11 @@
for k := range UniStatusGroupMetrics {
switch k {
case "oper_status":
- if val, ok := meAttributes["OperationalState"]; ok && val != nil {
+ if val, ok := meAttributes[me.VirtualEthernetInterfacePoint_OperationalState]; ok && val != nil {
veipMetrics[k] = float32(val.(byte))
}
case "uni_admin_state":
- if val, ok := meAttributes["AdministrativeState"]; ok && val != nil {
+ if val, ok := meAttributes[me.VirtualEthernetInterfacePoint_AdministrativeState]; ok && val != nil {
veipMetrics[k] = float32(val.(byte))
}
default:
@@ -999,7 +989,7 @@
}
}
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
entityID := val.(uint16)
veipMetrics["entity_id"] = float32(entityID)
// TODO: Rlock needed for reading uniEntityMap? May not be needed given uniEntityMap is populated setup at initial ONU bring up
@@ -1999,7 +1989,7 @@
upstream = true
}
// Insert "IntervalEndTime" as part of the requested attributes as we need this to compare the get responses when get request is multipart
- requestedAttributes["IntervalEndTime"] = 0
+ requestedAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_IntervalEndTime] = 0
meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, classID, entityID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
logger.Errorw(ctx, "GetME failed, failure PM FSM!", log.Fields{"device-id": mm.deviceID})
@@ -2034,63 +2024,63 @@
if _, ok := ethPMHistData[k]; !ok {
switch k {
case "entity_id":
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint16))
}
case "drop_events":
- if val, ok := meAttributes["DropEvents"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_DropEvents]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "octets":
- if val, ok := meAttributes["Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "packets":
- if val, ok := meAttributes["Packets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "broadcast_packets":
- if val, ok := meAttributes["BroadcastPackets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_BroadcastPackets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "multicast_packets":
- if val, ok := meAttributes["MulticastPackets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_MulticastPackets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "crc_errored_packets":
- if val, ok := meAttributes["CrcErroredPackets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_CrcErroredPackets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "undersize_packets":
- if val, ok := meAttributes["UndersizePackets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_UndersizePackets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "oversize_packets":
- if val, ok := meAttributes["OversizePackets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_OversizePackets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "64_octets":
- if val, ok := meAttributes["Packets64Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets64Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "65_to_127_octets":
- if val, ok := meAttributes["Packets65To127Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets65To127Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "128_to_255_octets":
- if val, ok := meAttributes["Packets128To255Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets128To255Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "256_to_511_octets":
- if val, ok := meAttributes["Packets256To511Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets256To511Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "512_to_1023_octets":
- if val, ok := meAttributes["Packets512To1023Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets512To1023Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
case "1024_to_1518_octets":
- if val, ok := meAttributes["Packets1024To1518Octets"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets1024To1518Octets]; ok && val != nil {
ethPMHistData[k] = float32(val.(uint32))
}
default:
@@ -2136,63 +2126,63 @@
if _, ok := ethPMUniHistData[k]; !ok {
switch k {
case "entity_id":
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint16))
}
case "fcs_errors":
- if val, ok := meAttributes["FcsErrors"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_FcsErrors]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "excessive_collision_counter":
- if val, ok := meAttributes["ExcessiveCollisionCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_ExcessiveCollisionCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "late_collision_counter":
- if val, ok := meAttributes["LateCollisionCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_LateCollisionCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "frames_too_long":
- if val, ok := meAttributes["FramesTooLong"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_FramesTooLong]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "buffer_overflows_on_rx":
- if val, ok := meAttributes["BufferOverflowsOnReceive"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnReceive]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "buffer_overflows_on_tx":
- if val, ok := meAttributes["BufferOverflowsOnTransmit"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnTransmit]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "single_collision_frame_counter":
- if val, ok := meAttributes["SingleCollisionFrameCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_SingleCollisionFrameCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "multiple_collisions_frame_counter":
- if val, ok := meAttributes["MultipleCollisionsFrameCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_MultipleCollisionsFrameCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "sqe_counter":
- if val, ok := meAttributes["SqeCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_SqeCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "deferred_tx_counter":
- if val, ok := meAttributes["DeferredTransmissionCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_DeferredTransmissionCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "internal_mac_tx_error_counter":
- if val, ok := meAttributes["InternalMacTransmitErrorCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_InternalMacTransmitErrorCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "carrier_sense_error_counter":
- if val, ok := meAttributes["CarrierSenseErrorCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_CarrierSenseErrorCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "alignment_error_counter":
- if val, ok := meAttributes["AlignmentErrorCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_AlignmentErrorCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
case "internal_mac_rx_error_counter":
- if val, ok := meAttributes["InternalMacReceiveErrorCounter"]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetPerformanceMonitoringHistoryData_InternalMacReceiveErrorCounter]; ok && val != nil {
ethPMUniHistData[k] = float32(val.(uint32))
}
default:
@@ -2207,8 +2197,8 @@
func (mm *OnuMetricsManager) populateFecHistoryMetrics(ctx context.Context, classID me.ClassID, entityID uint16,
meAttributes me.AttributeValueMap, requestedAttributes me.AttributeValueMap, fecHistData map[string]float32, intervalEndTime *int) error {
// Insert "IntervalEndTime" as part of the requested attributes as we need this to compare the get responses when get request is multipart
- if _, ok := requestedAttributes["IntervalEndTime"]; !ok {
- requestedAttributes["IntervalEndTime"] = 0
+ if _, ok := requestedAttributes[me.FecPerformanceMonitoringHistoryData_IntervalEndTime]; !ok {
+ requestedAttributes[me.FecPerformanceMonitoringHistoryData_IntervalEndTime] = 0
}
meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, classID, entityID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
@@ -2238,27 +2228,27 @@
if _, ok := fecHistData[k]; !ok {
switch k {
case "entity_id":
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
fecHistData[k] = float32(val.(uint16))
}
case "corrected_bytes":
- if val, ok := meAttributes["CorrectedBytes"]; ok && val != nil {
+ if val, ok := meAttributes[me.FecPerformanceMonitoringHistoryData_CorrectedBytes]; ok && val != nil {
fecHistData[k] = float32(val.(uint32))
}
case "corrected_code_words":
- if val, ok := meAttributes["CorrectedCodeWords"]; ok && val != nil {
+ if val, ok := meAttributes[me.FecPerformanceMonitoringHistoryData_CorrectedCodeWords]; ok && val != nil {
fecHistData[k] = float32(val.(uint32))
}
case "uncorrectable_code_words":
- if val, ok := meAttributes["UncorrectableCodeWords"]; ok && val != nil {
+ if val, ok := meAttributes[me.FecPerformanceMonitoringHistoryData_UncorrectableCodeWords]; ok && val != nil {
fecHistData[k] = float32(val.(uint32))
}
case "total_code_words":
- if val, ok := meAttributes["TotalCodeWords"]; ok && val != nil {
+ if val, ok := meAttributes[me.FecPerformanceMonitoringHistoryData_TotalCodeWords]; ok && val != nil {
fecHistData[k] = float32(val.(uint32))
}
case "fec_seconds":
- if val, ok := meAttributes["FecSeconds"]; ok && val != nil {
+ if val, ok := meAttributes[me.FecPerformanceMonitoringHistoryData_FecSeconds]; ok && val != nil {
fecHistData[k] = float32(val.(uint16))
}
default:
@@ -2273,8 +2263,8 @@
func (mm *OnuMetricsManager) populateGemPortMetrics(ctx context.Context, classID me.ClassID, entityID uint16,
meAttributes me.AttributeValueMap, requestedAttributes me.AttributeValueMap, gemPortHistData map[string]float32, intervalEndTime *int) error {
// Insert "IntervalEndTime" is part of the requested attributes as we need this to compare the get responses when get request is multipart
- if _, ok := requestedAttributes["IntervalEndTime"]; !ok {
- requestedAttributes["IntervalEndTime"] = 0
+ if _, ok := requestedAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_IntervalEndTime]; !ok {
+ requestedAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_IntervalEndTime] = 0
}
meInstance, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendGetMe(ctx, classID, entityID, requestedAttributes, mm.pDeviceHandler.GetOmciTimeout(), true, mm.PAdaptFsm.CommChan)
if err != nil {
@@ -2304,27 +2294,27 @@
if _, ok := gemPortHistData[k]; !ok {
switch k {
case "entity_id":
- if val, ok := meAttributes["ManagedEntityId"]; ok && val != nil {
+ if val, ok := meAttributes[me.ManagedEntityID]; ok && val != nil {
gemPortHistData[k] = float32(val.(uint16))
}
case "transmitted_gem_frames":
- if val, ok := meAttributes["TransmittedGemFrames"]; ok && val != nil {
+ if val, ok := meAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedGemFrames]; ok && val != nil {
gemPortHistData[k] = float32(val.(uint32))
}
case "received_gem_frames":
- if val, ok := meAttributes["ReceivedGemFrames"]; ok && val != nil {
+ if val, ok := meAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedGemFrames]; ok && val != nil {
gemPortHistData[k] = float32(val.(uint32))
}
case "received_payload_bytes":
- if val, ok := meAttributes["ReceivedPayloadBytes"]; ok && val != nil {
+ if val, ok := meAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedPayloadBytes]; ok && val != nil {
gemPortHistData[k] = float32(val.(uint64))
}
case "transmitted_payload_bytes":
- if val, ok := meAttributes["TransmittedPayloadBytes"]; ok && val != nil {
+ if val, ok := meAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedPayloadBytes]; ok && val != nil {
gemPortHistData[k] = float32(val.(uint64))
}
case "encryption_key_errors":
- if val, ok := meAttributes["EncryptionKeyErrors"]; ok && val != nil {
+ if val, ok := meAttributes[me.GemPortNetworkCtpPerformanceMonitoringHistoryData_EncryptionKeyErrors]; ok && val != nil {
gemPortHistData[k] = float32(val.(uint32))
}
default:
@@ -3476,42 +3466,42 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "drop_events":
- if val, ok := meAttributes[dropEvents]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_DropEvents]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x2000
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "octets":
- if val, ok := meAttributes[octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x1000
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "frames":
- if val, ok := meAttributes[frames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x800
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "broadcast_frames":
- if val, ok := meAttributes[broadcastFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_BroadcastFrames]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x400
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "multicast_frames":
- if val, ok := meAttributes[multicastFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_MulticastFrames]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x200
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "crc_errored_frames":
- if val, ok := meAttributes[crcErroredFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_CrcErroredFrames]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x100
} else if !ok {
@@ -3527,42 +3517,42 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "undersize_frames":
- if val, ok := meAttributes[undersizeFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_UndersizeFrames]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x80
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "oversize_frames":
- if val, ok := meAttributes[oversizeFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_OversizeFrames]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x40
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "64_octets":
- if val, ok := meAttributes[frames64Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames64Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x20
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "65_to_127_octets":
- if val, ok := meAttributes[frames65To127Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames65To127Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x10
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "128_to_255_octets":
- if val, ok := meAttributes[frames128To255Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames128To255Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x8
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "256_to_511_octets":
- if val, ok := meAttributes[frames256To511Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames256To511Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x4
} else if !ok {
@@ -3578,14 +3568,14 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "512_to_1023_octets":
- if val, ok := meAttributes[frames512To1023Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames512To1023Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x2
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue32bit
}
case "1024_to_1518_octets":
- if val, ok := meAttributes[frames1024To1518Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm_Frames1024To1518Octets]; ok && val != nil {
ethFrameExtPMData[k] = uint64(val.(uint32))
receivedMask |= 0x1
} else if !ok {
@@ -3611,21 +3601,21 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "drop_events":
- if val, ok := meAttributes[dropEvents]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_DropEvents]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x2000
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "octets":
- if val, ok := meAttributes[octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x1000
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "frames":
- if val, ok := meAttributes[frames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x800
} else if !ok {
@@ -3639,21 +3629,21 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "broadcast_frames":
- if val, ok := meAttributes[broadcastFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_BroadcastFrames]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x400
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "multicast_frames":
- if val, ok := meAttributes[multicastFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_MulticastFrames]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x200
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "crc_errored_frames":
- if val, ok := meAttributes[crcErroredFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_CrcErroredFrames]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x100
} else if !ok {
@@ -3667,21 +3657,21 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "undersize_frames":
- if val, ok := meAttributes[undersizeFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_UndersizeFrames]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x80
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "oversize_frames":
- if val, ok := meAttributes[oversizeFrames]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_OversizeFrames]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x40
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "64_octets":
- if val, ok := meAttributes[frames64Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames64Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x20
} else if !ok {
@@ -3695,21 +3685,21 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "65_to_127_octets":
- if val, ok := meAttributes[frames65To127Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames65To127Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x10
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "128_to_255_octets":
- if val, ok := meAttributes[frames128To255Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames128To255Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x8
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "256_to_511_octets":
- if val, ok := meAttributes[frames256To511Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames256To511Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x4
} else if !ok {
@@ -3725,14 +3715,14 @@
if _, ok := ethFrameExtPMData[k]; !ok {
switch k {
case "512_to_1023_octets":
- if val, ok := meAttributes[frames512To1023Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames512To1023Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x2
} else if !ok {
ethFrameExtPMData[k] = UnsupportedCounterValue64bit
}
case "1024_to_1518_octets":
- if val, ok := meAttributes[frames1024To1518Octets]; ok && val != nil {
+ if val, ok := meAttributes[me.EthernetFrameExtendedPm64Bit_Frames1024To1518Octets]; ok && val != nil {
ethFrameExtPMData[k] = val.(uint64)
receivedMask |= 0x1
} else if !ok {
diff --git a/internal/pkg/swupg/omci_onu_upgrade.go b/internal/pkg/swupg/omci_onu_upgrade.go
index f9b393e..7809ef8 100755
--- a/internal/pkg/swupg/omci_onu_upgrade.go
+++ b/internal/pkg/swupg/omci_onu_upgrade.go
@@ -960,7 +960,7 @@
func (oFsm *OnuUpgradeFsm) enterCheckImageName(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "OnuUpgradeFsm checking downloaded image name", log.Fields{
"device-id": oFsm.deviceID, "me-id": oFsm.InactiveImageMeID})
- requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
+ requestedAttributes := me.AttributeValueMap{me.SoftwareImage_IsCommitted: 0, me.SoftwareImage_IsActive: 0, me.SoftwareImage_Version: ""}
meInstance, err := oFsm.pOmciCC.SendGetMe(log.WithSpanFromContext(context.Background(), ctx),
me.SoftwareImageClassID, oFsm.InactiveImageMeID, requestedAttributes, oFsm.pDeviceHandler.GetOmciTimeout(),
false, oFsm.PAdaptFsm.CommChan)
@@ -1038,7 +1038,7 @@
func (oFsm *OnuUpgradeFsm) enterCheckCommitted(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "OnuUpgradeFsm checking committed SW", log.Fields{
"device-id": oFsm.deviceID, "me-id": oFsm.InactiveImageMeID})
- requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
+ requestedAttributes := me.AttributeValueMap{me.SoftwareImage_IsCommitted: 0, me.SoftwareImage_IsActive: 0, me.SoftwareImage_Version: ""}
meInstance, err := oFsm.pOmciCC.SendGetMe(log.WithSpanFromContext(context.Background(), ctx),
me.SoftwareImageClassID, oFsm.InactiveImageMeID, requestedAttributes, oFsm.pDeviceHandler.GetOmciTimeout(), false, oFsm.PAdaptFsm.CommChan)
if err != nil {
@@ -1612,9 +1612,9 @@
}
meAttributes := msgObj.Attributes
- imageIsCommitted := meAttributes["IsCommitted"].(uint8)
- imageIsActive := meAttributes["IsActive"].(uint8)
- imageVersion := cmn.TrimStringFromMeOctet(meAttributes["Version"])
+ imageIsCommitted := meAttributes[me.SoftwareImage_IsCommitted].(uint8)
+ imageIsActive := meAttributes[me.SoftwareImage_IsActive].(uint8)
+ imageVersion := cmn.TrimStringFromMeOctet(meAttributes[me.SoftwareImage_Version])
logger.Debugw(ctx, "OnuUpgradeFsm - GetResponse Data for SoftwareImage",
log.Fields{"device-id": oFsm.deviceID, "entityID": msgObj.EntityInstance,
"version": imageVersion, "isActive": imageIsActive, "isCommitted": imageIsCommitted})
diff --git a/internal/pkg/swupg/onu_image_status.go b/internal/pkg/swupg/onu_image_status.go
index eb4021f..02d92bc 100755
--- a/internal/pkg/swupg/onu_image_status.go
+++ b/internal/pkg/swupg/onu_image_status.go
@@ -45,14 +45,6 @@
pLastTxMeInstance *me.ManagedEntity
}
-const (
- cImgVersion = "Version"
- cImgIsCommitted = "IsCommitted"
- cImgIsActive = "IsActive"
- cImgIsValid = "IsValid"
- cImgProductCode = "ProductCode"
- cImgImageHash = "ImageHash"
-)
const cResponse = "response: "
//NewOnuImageStatus creates a new instance of OnuImageStatus
@@ -91,17 +83,17 @@
// a global mechanism should be implemented that automates this distribution - which would entail quite some
// changes on the respective receiver sides.
- oo.requestedAttributes = me.AttributeValueMap{cImgVersion: "", cImgIsCommitted: 0, cImgIsActive: 0, cImgIsValid: 0}
+ oo.requestedAttributes = me.AttributeValueMap{me.SoftwareImage_Version: "", me.SoftwareImage_IsCommitted: 0, me.SoftwareImage_IsActive: 0, me.SoftwareImage_IsValid: 0}
if err := oo.requestOnuImageAttributes(ctx, uint16(i), &image); err != nil {
logger.Errorw(ctx, err.Error(), log.Fields{"requestedAttributes": oo.requestedAttributes, "device-id": oo.deviceID})
return nil, err
}
- oo.requestedAttributes = me.AttributeValueMap{cImgProductCode: ""}
+ oo.requestedAttributes = me.AttributeValueMap{me.SoftwareImage_ProductCode: ""}
if err := oo.requestOnuImageAttributes(ctx, uint16(i), &image); err != nil {
logger.Errorw(ctx, err.Error(), log.Fields{"requestedAttributes": oo.requestedAttributes, "device-id": oo.deviceID})
return nil, err
}
- oo.requestedAttributes = me.AttributeValueMap{cImgImageHash: 0}
+ oo.requestedAttributes = me.AttributeValueMap{me.SoftwareImage_ImageHash: 0}
if err := oo.requestOnuImageAttributes(ctx, uint16(i), &image); err != nil {
logger.Errorw(ctx, err.Error(), log.Fields{"requestedAttributes": oo.requestedAttributes, "device-id": oo.deviceID})
return nil, err
@@ -213,7 +205,7 @@
meAttributes := msgObj.Attributes
logger.Debugw(ctx, "processAttributesReceived", log.Fields{"attributes": meAttributes, "device-id": oo.deviceID})
- if _, ok := oo.requestedAttributes[cImgVersion]; ok {
+ if _, ok := oo.requestedAttributes[me.SoftwareImage_Version]; ok {
if msgObj.Result != me.Success {
logger.Errorw(ctx, "processAttributesReceived retrieval of mandatory attributes failed",
log.Fields{"device-id": oo.deviceID})
@@ -224,40 +216,40 @@
for k := range oo.requestedAttributes {
switch k {
// mandatory attributes
- case cImgIsCommitted:
- if meAttributes[cImgIsCommitted].(uint8) == cmn.SwIsCommitted {
+ case me.SoftwareImage_IsCommitted:
+ if meAttributes[me.SoftwareImage_IsCommitted].(uint8) == cmn.SwIsCommitted {
image.IsCommited = true
} else {
image.IsCommited = false
}
- case cImgIsActive:
- if meAttributes[cImgIsActive].(uint8) == cmn.SwIsActive {
+ case me.SoftwareImage_IsActive:
+ if meAttributes[me.SoftwareImage_IsActive].(uint8) == cmn.SwIsActive {
image.IsActive = true
} else {
image.IsActive = false
}
- case cImgIsValid:
- if meAttributes[cImgIsValid].(uint8) == cmn.SwIsValid {
+ case me.SoftwareImage_IsValid:
+ if meAttributes[me.SoftwareImage_IsValid].(uint8) == cmn.SwIsValid {
image.IsValid = true
} else {
image.IsValid = false
}
- case cImgVersion:
- image.Version = cmn.TrimStringFromMeOctet(meAttributes[cImgVersion])
+ case me.SoftwareImage_Version:
+ image.Version = cmn.TrimStringFromMeOctet(meAttributes[me.SoftwareImage_Version])
// optional attributes
- case cImgProductCode:
+ case me.SoftwareImage_ProductCode:
if msgObj.Result == me.Success {
- image.ProductCode = cmn.TrimStringFromMeOctet(meAttributes[cImgProductCode])
+ image.ProductCode = cmn.TrimStringFromMeOctet(meAttributes[me.SoftwareImage_ProductCode])
} else {
sResult := msgObj.Result.String()
logger.Infow(ctx, "processAttributesReceived - ProductCode",
log.Fields{"result": sResult, "unsupported attribute mask": msgObj.UnsupportedAttributeMask, "device-id": oo.deviceID})
image.ProductCode = cResponse + sResult
}
- case cImgImageHash:
+ case me.SoftwareImage_ImageHash:
if msgObj.Result == me.Success {
- bytes, _ := me.InterfaceToOctets(meAttributes[cImgImageHash])
+ bytes, _ := me.InterfaceToOctets(meAttributes[me.SoftwareImage_ImageHash])
image.Hash = hex.EncodeToString(bytes)
} else {
sResult := msgObj.Result.String()
diff --git a/internal/pkg/uniprt/uniportadmin.go b/internal/pkg/uniprt/uniportadmin.go
index 4ddf154..2a0a2c9 100755
--- a/internal/pkg/uniprt/uniportadmin.go
+++ b/internal/pkg/uniprt/uniportadmin.go
@@ -213,7 +213,7 @@
oFsm.mutexAdminState.RUnlock()
logger.Debugw(ctx, "LockStateFSM Tx Set::ONU-G:admin", log.Fields{
"omciAdmin": omciAdminState, "in state": e.FSM.Current(), "device-id": oFsm.deviceID})
- requestedAttributes := me.AttributeValueMap{"AdministrativeState": omciAdminState}
+ requestedAttributes := me.AttributeValueMap{me.OnuG_AdministrativeState: omciAdminState}
oFsm.mutexPLastTxMeInstance.Lock()
meInstance, err := oFsm.pOmciCC.SendSetOnuGLS(log.WithSpanFromContext(context.TODO(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), true,
requestedAttributes, oFsm.PAdaptFsm.CommChan)
@@ -430,7 +430,7 @@
}
oFsm.mutexAdminState.RUnlock()
//set PPTPEthUni or VEIP AdminState
- requestedAttributes := me.AttributeValueMap{"AdministrativeState": omciAdminState}
+ requestedAttributes := me.AttributeValueMap{me.PhysicalPathTerminationPointEthernetUni_AdministrativeState: omciAdminState}
for uniNo, uniPort := range *oFsm.pDeviceHandler.GetUniEntityMap() {
// only unlock the UniPort in case it is defined for usage (R2.6 limit only one port),
diff --git a/internal/pkg/uniprt/uniportstatus.go b/internal/pkg/uniprt/uniportstatus.go
index b088d41..4c294ce 100755
--- a/internal/pkg/uniprt/uniportstatus.go
+++ b/internal/pkg/uniprt/uniportstatus.go
@@ -28,12 +28,7 @@
"github.com/opencord/voltha-protos/v5/go/extension"
)
-const (
- uniStatusTimeout = 3
- adminState = "AdministrativeState"
- operationalState = "OperationalState"
- configInd = "ConfigurationInd"
-)
+const uniStatusTimeout = 3
//UniPortStatus implements methods to get uni port status info
type UniPortStatus struct {
@@ -59,7 +54,10 @@
if uniPort.UniID == uint8(uniIdx) && uniPort.PortType == cmn.UniPPTP {
- requestedAttributes := me.AttributeValueMap{adminState: 0, operationalState: 0, configInd: 0}
+ requestedAttributes := me.AttributeValueMap{
+ me.PhysicalPathTerminationPointEthernetUni_AdministrativeState: 0,
+ me.PhysicalPathTerminationPointEthernetUni_OperationalState: 0,
+ me.PhysicalPathTerminationPointEthernetUni_ConfigurationInd: 0}
// Note: No reference to fetch the OMCI timeout configuration value, so hard code it to 10s
meInstance, err := portStatus.pOmiCC.SendGetMe(ctx, me.PhysicalPathTerminationPointEthernetUniClassID, uniPort.EntityID, requestedAttributes, 10, true, portStatus.omciRespChn)
if err != nil {
@@ -134,17 +132,17 @@
},
},
}
- if meAttributes[operationalState].(uint8) == 0 {
+ if meAttributes[me.PhysicalPathTerminationPointEthernetUni_OperationalState].(uint8) == 0 {
singleValResp.Response.GetUniInfo().OperState = extension.GetOnuUniInfoResponse_ENABLED
- } else if meAttributes[operationalState].(uint8) == 1 {
+ } else if meAttributes[me.PhysicalPathTerminationPointEthernetUni_OperationalState].(uint8) == 1 {
singleValResp.Response.GetUniInfo().OperState = extension.GetOnuUniInfoResponse_DISABLED
} else {
singleValResp.Response.GetUniInfo().OperState = extension.GetOnuUniInfoResponse_OPERSTATE_UNDEFINED
}
- if meAttributes[adminState].(uint8) == 0 {
+ if meAttributes[me.PhysicalPathTerminationPointEthernetUni_AdministrativeState].(uint8) == 0 {
singleValResp.Response.GetUniInfo().AdmState = extension.GetOnuUniInfoResponse_UNLOCKED
- } else if meAttributes[adminState].(uint8) == 1 {
+ } else if meAttributes[me.PhysicalPathTerminationPointEthernetUni_AdministrativeState].(uint8) == 1 {
singleValResp.Response.GetUniInfo().AdmState = extension.GetOnuUniInfoResponse_LOCKED
} else {
singleValResp.Response.GetUniInfo().AdmState = extension.GetOnuUniInfoResponse_ADMSTATE_UNDEFINED
@@ -159,7 +157,7 @@
18: extension.GetOnuUniInfoResponse_HUNDRED_BASE_T_HDX,
19: extension.GetOnuUniInfoResponse_GIGABIT_ETHERNET_HDX,
}
- configInd := meAttributes[configInd].(uint8)
+ configInd := meAttributes[me.PhysicalPathTerminationPointEthernetUni_ConfigurationInd].(uint8)
singleValResp.Response.GetUniInfo().ConfigInd = configIndMap[configInd]
return &singleValResp
}
diff --git a/vendor/github.com/opencord/omci-lib-go/v2/VERSION b/vendor/github.com/opencord/omci-lib-go/v2/VERSION
index ac2cdeb..ccbccc3 100644
--- a/vendor/github.com/opencord/omci-lib-go/v2/VERSION
+++ b/vendor/github.com/opencord/omci-lib-go/v2/VERSION
@@ -1 +1 @@
-2.1.3
+2.2.0
diff --git a/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5performancemonitoringhistorydata.go b/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5performancemonitoringhistorydata.go
index 50dd54a..2ddf76e 100644
--- a/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5performancemonitoringhistorydata.go
+++ b/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5performancemonitoringhistorydata.go
@@ -1,13 +1,13 @@
/*
* Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
* Copyright 2020-present Open Networking Foundation
-
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
-
+ *
* http://www.apache.org/licenses/LICENSE-2.0
-
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -81,10 +81,20 @@
Attributes AttributeValueMap
}
+// Attribute name constants
+
+const Aal5PerformanceMonitoringHistoryData_IntervalEndTime = "IntervalEndTime"
+const Aal5PerformanceMonitoringHistoryData_ThresholdData12Id = "ThresholdData12Id"
+const Aal5PerformanceMonitoringHistoryData_SumOfInvalidCsFieldErrors = "SumOfInvalidCsFieldErrors"
+const Aal5PerformanceMonitoringHistoryData_CrcViolations = "CrcViolations"
+const Aal5PerformanceMonitoringHistoryData_ReassemblyTimerExpirations = "ReassemblyTimerExpirations"
+const Aal5PerformanceMonitoringHistoryData_BufferOverflows = "BufferOverflows"
+const Aal5PerformanceMonitoringHistoryData_EncapProtocolErrors = "EncapProtocolErrors"
+
func init() {
aal5performancemonitoringhistorydataBME = &ManagedEntityDefinition{
Name: "Aal5PerformanceMonitoringHistoryData",
- ClassID: 18,
+ ClassID: Aal5PerformanceMonitoringHistoryDataClassID,
MessageTypes: mapset.NewSetWith(
Create,
Delete,
@@ -94,14 +104,14 @@
),
AllowedAttributeMask: 0xfe00,
AttributeDefinitions: AttributeDefinitionMap{
- 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
- 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
- 2: Uint16Field("ThresholdData12Id", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
- 3: Uint32Field("SumOfInvalidCsFieldErrors", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
- 4: Uint32Field("CrcViolations", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
- 5: Uint32Field("ReassemblyTimerExpirations", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
- 6: Uint32Field("BufferOverflows", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
- 7: Uint32Field("EncapProtocolErrors", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
+ 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
+ 1: ByteField(Aal5PerformanceMonitoringHistoryData_IntervalEndTime, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
+ 2: Uint16Field(Aal5PerformanceMonitoringHistoryData_ThresholdData12Id, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
+ 3: Uint32Field(Aal5PerformanceMonitoringHistoryData_SumOfInvalidCsFieldErrors, CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
+ 4: Uint32Field(Aal5PerformanceMonitoringHistoryData_CrcViolations, CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
+ 5: Uint32Field(Aal5PerformanceMonitoringHistoryData_ReassemblyTimerExpirations, CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
+ 6: Uint32Field(Aal5PerformanceMonitoringHistoryData_BufferOverflows, CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
+ 7: Uint32Field(Aal5PerformanceMonitoringHistoryData_EncapProtocolErrors, CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
},
Access: CreatedByOlt,
Support: UnknownSupport,
diff --git a/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5profile.go b/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5profile.go
index bbade42..423bce7 100644
--- a/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5profile.go
+++ b/vendor/github.com/opencord/omci-lib-go/v2/generated/aal5profile.go
@@ -1,13 +1,13 @@
/*
* Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
* Copyright 2020-present Open Networking Foundation
-
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
-
+ *
* http://www.apache.org/licenses/LICENSE-2.0
-
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -80,10 +80,16 @@
Attributes AttributeValueMap
}
+// Attribute name constants
+
+const Aal5Profile_MaxCpcsPduSize = "MaxCpcsPduSize"
+const Aal5Profile_AalMode = "AalMode"
+const Aal5Profile_SscsType = "SscsType"
+
func init() {
aal5profileBME = &ManagedEntityDefinition{
Name: "Aal5Profile",
- ClassID: 16,
+ ClassID: Aal5ProfileClassID,
MessageTypes: mapset.NewSetWith(
Create,
Delete,
@@ -92,10 +98,10 @@
),
AllowedAttributeMask: 0xe000,
AttributeDefinitions: AttributeDefinitionMap{
- 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
- 1: Uint16Field("MaxCpcsPduSize", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
- 2: ByteField("AalMode", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
- 3: ByteField("SscsType", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
+ 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
+ 1: Uint16Field(Aal5Profile_MaxCpcsPduSize, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
+ 2: ByteField(Aal5Profile_AalMode, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
+ 3: ByteField(Aal5Profile_SscsType, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
},
Access: CreatedByOlt,
Support: UnknownSupport,
diff --git a/vendor/github.com/opencord/omci-lib-go/v2/generated/ani-g.go b/vendor/github.com/opencord/omci-lib-go/v2/generated/ani-g.go
index 0e13c5c..bec4bb4 100644
--- a/vendor/github.com/opencord/omci-lib-go/v2/generated/ani-g.go
+++ b/vendor/github.com/opencord/omci-lib-go/v2/generated/ani-g.go
@@ -1,13 +1,13 @@
/*
* Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
* Copyright 2020-present Open Networking Foundation
-
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
-
+ *
* http://www.apache.org/licenses/LICENSE-2.0
-
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -155,10 +155,29 @@
Attributes AttributeValueMap
}
+// Attribute name constants
+
+const AniG_SrIndication = "SrIndication"
+const AniG_TotalTcontNumber = "TotalTcontNumber"
+const AniG_GemBlockLength = "GemBlockLength"
+const AniG_PiggybackDbaReporting = "PiggybackDbaReporting"
+const AniG_Deprecated = "Deprecated"
+const AniG_SignalFailThreshold = "SignalFailThreshold"
+const AniG_SignalDegradeThreshold = "SignalDegradeThreshold"
+const AniG_Arc = "Arc"
+const AniG_ArcInterval = "ArcInterval"
+const AniG_OpticalSignalLevel = "OpticalSignalLevel"
+const AniG_LowerOpticalThreshold = "LowerOpticalThreshold"
+const AniG_UpperOpticalThreshold = "UpperOpticalThreshold"
+const AniG_OnuResponseTime = "OnuResponseTime"
+const AniG_TransmitOpticalLevel = "TransmitOpticalLevel"
+const AniG_LowerTransmitPowerThreshold = "LowerTransmitPowerThreshold"
+const AniG_UpperTransmitPowerThreshold = "UpperTransmitPowerThreshold"
+
func init() {
anigBME = &ManagedEntityDefinition{
Name: "AniG",
- ClassID: 263,
+ ClassID: AniGClassID,
MessageTypes: mapset.NewSetWith(
Get,
Set,
@@ -166,23 +185,23 @@
),
AllowedAttributeMask: 0xffff,
AttributeDefinitions: AttributeDefinitionMap{
- 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
- 1: ByteField("SrIndication", EnumerationAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
- 2: Uint16Field("TotalTcontNumber", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
- 3: Uint16Field("GemBlockLength", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), false, false, false, 3),
- 4: ByteField("PiggybackDbaReporting", EnumerationAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
- 5: ByteField("Deprecated", UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, true, 5),
- 6: ByteField("SignalFailThreshold", UnsignedIntegerAttributeType, 0x0400, 5, mapset.NewSetWith(Read, Write), false, false, false, 6),
- 7: ByteField("SignalDegradeThreshold", UnsignedIntegerAttributeType, 0x0200, 9, mapset.NewSetWith(Read, Write), false, false, false, 7),
- 8: ByteField("Arc", EnumerationAttributeType, 0x0100, 0, mapset.NewSetWith(Read, Write), true, true, false, 8),
- 9: ByteField("ArcInterval", UnsignedIntegerAttributeType, 0x0080, 0, mapset.NewSetWith(Read, Write), false, true, false, 9),
- 10: Uint16Field("OpticalSignalLevel", SignedIntegerAttributeType, 0x0040, 0, mapset.NewSetWith(Read), false, true, false, 10),
- 11: ByteField("LowerOpticalThreshold", SignedIntegerAttributeType, 0x0020, 255, mapset.NewSetWith(Read, Write), false, true, false, 11),
- 12: ByteField("UpperOpticalThreshold", SignedIntegerAttributeType, 0x0010, 255, mapset.NewSetWith(Read, Write), false, true, false, 12),
- 13: Uint16Field("OnuResponseTime", UnsignedIntegerAttributeType, 0x0008, 35000, mapset.NewSetWith(Read), false, true, false, 13),
- 14: Uint16Field("TransmitOpticalLevel", SignedIntegerAttributeType, 0x0004, 0, mapset.NewSetWith(Read), false, true, false, 14),
- 15: ByteField("LowerTransmitPowerThreshold", SignedIntegerAttributeType, 0x0002, 129, mapset.NewSetWith(Read, Write), false, true, false, 15),
- 16: ByteField("UpperTransmitPowerThreshold", SignedIntegerAttributeType, 0x0001, 129, mapset.NewSetWith(Read, Write), false, true, false, 16),
+ 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
+ 1: ByteField(AniG_SrIndication, EnumerationAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
+ 2: Uint16Field(AniG_TotalTcontNumber, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
+ 3: Uint16Field(AniG_GemBlockLength, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), false, false, false, 3),
+ 4: ByteField(AniG_PiggybackDbaReporting, EnumerationAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
+ 5: ByteField(AniG_Deprecated, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, true, 5),
+ 6: ByteField(AniG_SignalFailThreshold, UnsignedIntegerAttributeType, 0x0400, 5, mapset.NewSetWith(Read, Write), false, false, false, 6),
+ 7: ByteField(AniG_SignalDegradeThreshold, UnsignedIntegerAttributeType, 0x0200, 9, mapset.NewSetWith(Read, Write), false, false, false, 7),
+ 8: ByteField(AniG_Arc, EnumerationAttributeType, 0x0100, 0, mapset.NewSetWith(Read, Write), true, true, false, 8),
+ 9: ByteField(AniG_ArcInterval, UnsignedIntegerAttributeType, 0x0080, 0, mapset.NewSetWith(Read, Write), false, true, false, 9),
+ 10: Uint16Field(AniG_OpticalSignalLevel, SignedIntegerAttributeType, 0x0040, 0, mapset.NewSetWith(Read), false, true, false, 10),
+ 11: ByteField(AniG_LowerOpticalThreshold, SignedIntegerAttributeType, 0x0020, 255, mapset.NewSetWith(Read, Write), false, true, false, 11),
+ 12: ByteField(AniG_UpperOpticalThreshold, SignedIntegerAttributeType, 0x0010, 255, mapset.NewSetWith(Read, Write), false, true, false, 12),
+ 13: Uint16Field(AniG_OnuResponseTime, UnsignedIntegerAttributeType, 0x0008, 35000, mapset.NewSetWith(Read), false, true, false, 13),
+ 14: Uint16Field(AniG_TransmitOpticalLevel, SignedIntegerAttributeType, 0x0004, 0, mapset.NewSetWith(Read), false, true, false, 14),
+ 15: ByteField(AniG_LowerTransmitPowerThreshold, SignedIntegerAttributeType, 0x0002, 129, mapset.NewSetWith(Read, Write), false, true, false, 15),
+ 16: ByteField(AniG_UpperTransmitPowerThreshold, SignedIntegerAttributeType, 0x0001, 129, mapset.NewSetWith(Read, Write), false, true, false, 16),
},
Access: CreatedByOnu,
Support: UnknownSupport,
diff --git a/vendor/github.com/opencord/omci-lib-go/v2/generated/attrNames_test.json b/vendor/github.com/opencord/omci-lib-go/v2/generated/attrNames_test.json
new file mode 100644
index 0000000..a25d51a
--- /dev/null
+++ b/vendor/github.com/opencord/omci-lib-go/v2/generated/attrNames_test.json
@@ -0,0 +1,13276 @@
+{
+ "2": {
+ "Name": "ONU data",
+ "Filename": "onudata.go",
+ "CamelCase": "OnuData",
+ "ClassID": 2,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Mib Data Sync",
+ "CamelCase": "MibDataSync",
+ "Final": "OnuData_MibDataSync",
+ "Index": 1
+ }
+ }
+ },
+ "5": {
+ "Name": "Cardholder",
+ "Filename": "cardholder.go",
+ "CamelCase": "Cardholder",
+ "ClassID": 5,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Actual Plug In Unit Type",
+ "CamelCase": "ActualPlugInUnitType",
+ "Final": "Cardholder_ActualPlugInUnitType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Expected Plug_In Unit Type",
+ "CamelCase": "ExpectedPlugInUnitType",
+ "Final": "Cardholder_ExpectedPlugInUnitType",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Expected Port Count",
+ "CamelCase": "ExpectedPortCount",
+ "Final": "Cardholder_ExpectedPortCount",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Expected Equipment Id",
+ "CamelCase": "ExpectedEquipmentId",
+ "Final": "Cardholder_ExpectedEquipmentId",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Actual Equipment Id",
+ "CamelCase": "ActualEquipmentId",
+ "Final": "Cardholder_ActualEquipmentId",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Protection Profile Pointer",
+ "CamelCase": "ProtectionProfilePointer",
+ "Final": "Cardholder_ProtectionProfilePointer",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Invoke Protection Switch",
+ "CamelCase": "InvokeProtectionSwitch",
+ "Final": "Cardholder_InvokeProtectionSwitch",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Alarm _ Reporting Control",
+ "CamelCase": "AlarmReportingControl",
+ "Final": "Cardholder_AlarmReportingControl",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "Cardholder_ArcInterval",
+ "Index": 9
+ }
+ }
+ },
+ "6": {
+ "Name": "Circuit pack",
+ "Filename": "circuitpack.go",
+ "CamelCase": "CircuitPack",
+ "ClassID": 6,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Type",
+ "CamelCase": "Type",
+ "Final": "CircuitPack_Type",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Number Of Ports",
+ "CamelCase": "NumberOfPorts",
+ "Final": "CircuitPack_NumberOfPorts",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Serial Number",
+ "CamelCase": "SerialNumber",
+ "Final": "CircuitPack_SerialNumber",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Version",
+ "CamelCase": "Version",
+ "Final": "CircuitPack_Version",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Vendor Id",
+ "CamelCase": "VendorId",
+ "Final": "CircuitPack_VendorId",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "CircuitPack_AdministrativeState",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "CircuitPack_OperationalState",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Bridged Or Ip Ind",
+ "CamelCase": "BridgedOrIpInd",
+ "Final": "CircuitPack_BridgedOrIpInd",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Equipment Id",
+ "CamelCase": "EquipmentId",
+ "Final": "CircuitPack_EquipmentId",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Card Configuration",
+ "CamelCase": "CardConfiguration",
+ "Final": "CircuitPack_CardConfiguration",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Total T_Cont Buffer Number",
+ "CamelCase": "TotalTContBufferNumber",
+ "Final": "CircuitPack_TotalTContBufferNumber",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Total Priority Queue Number",
+ "CamelCase": "TotalPriorityQueueNumber",
+ "Final": "CircuitPack_TotalPriorityQueueNumber",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Total Traffic Scheduler Number",
+ "CamelCase": "TotalTrafficSchedulerNumber",
+ "Final": "CircuitPack_TotalTrafficSchedulerNumber",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Power Shed Override",
+ "CamelCase": "PowerShedOverride",
+ "Final": "CircuitPack_PowerShedOverride",
+ "Index": 14
+ }
+ }
+ },
+ "7": {
+ "Name": "Software image",
+ "Filename": "softwareimage.go",
+ "CamelCase": "SoftwareImage",
+ "ClassID": 7,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Version",
+ "CamelCase": "Version",
+ "Final": "SoftwareImage_Version",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Is Committed",
+ "CamelCase": "IsCommitted",
+ "Final": "SoftwareImage_IsCommitted",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Is Active",
+ "CamelCase": "IsActive",
+ "Final": "SoftwareImage_IsActive",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Is Valid",
+ "CamelCase": "IsValid",
+ "Final": "SoftwareImage_IsValid",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Product Code",
+ "CamelCase": "ProductCode",
+ "Final": "SoftwareImage_ProductCode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Image Hash",
+ "CamelCase": "ImageHash",
+ "Final": "SoftwareImage_ImageHash",
+ "Index": 6
+ }
+ }
+ },
+ "11": {
+ "Name": "Physical path termination point Ethernet UNI",
+ "Filename": "physicalpathterminationpointethernetuni.go",
+ "CamelCase": "PhysicalPathTerminationPointEthernetUni",
+ "ClassID": 11,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Expected Type",
+ "CamelCase": "ExpectedType",
+ "Final": "PhysicalPathTerminationPointEthernetUni_ExpectedType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Sensed Type",
+ "CamelCase": "SensedType",
+ "Final": "PhysicalPathTerminationPointEthernetUni_SensedType",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Auto Detection Configuration",
+ "CamelCase": "AutoDetectionConfiguration",
+ "Final": "PhysicalPathTerminationPointEthernetUni_AutoDetectionConfiguration",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Ethernet Loopback Configuration",
+ "CamelCase": "EthernetLoopbackConfiguration",
+ "Final": "PhysicalPathTerminationPointEthernetUni_EthernetLoopbackConfiguration",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointEthernetUni_AdministrativeState",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointEthernetUni_OperationalState",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Configuration Ind",
+ "CamelCase": "ConfigurationInd",
+ "Final": "PhysicalPathTerminationPointEthernetUni_ConfigurationInd",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Max Frame Size",
+ "CamelCase": "MaxFrameSize",
+ "Final": "PhysicalPathTerminationPointEthernetUni_MaxFrameSize",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Dte Or Dce Ind",
+ "CamelCase": "DteOrDceInd",
+ "Final": "PhysicalPathTerminationPointEthernetUni_DteOrDceInd",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Pause Time",
+ "CamelCase": "PauseTime",
+ "Final": "PhysicalPathTerminationPointEthernetUni_PauseTime",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Bridged Or Ip Ind",
+ "CamelCase": "BridgedOrIpInd",
+ "Final": "PhysicalPathTerminationPointEthernetUni_BridgedOrIpInd",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointEthernetUni_Arc",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointEthernetUni_ArcInterval",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Pppoe Filter",
+ "CamelCase": "PppoeFilter",
+ "Final": "PhysicalPathTerminationPointEthernetUni_PppoeFilter",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Power Control",
+ "CamelCase": "PowerControl",
+ "Final": "PhysicalPathTerminationPointEthernetUni_PowerControl",
+ "Index": 15
+ }
+ }
+ },
+ "12": {
+ "Name": "Physical path termination point CES UNI",
+ "Filename": "physicalpathterminationpointcesuni.go",
+ "CamelCase": "PhysicalPathTerminationPointCesUni",
+ "ClassID": 12,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Expected Type",
+ "CamelCase": "ExpectedType",
+ "Final": "PhysicalPathTerminationPointCesUni_ExpectedType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Sensed Type",
+ "CamelCase": "SensedType",
+ "Final": "PhysicalPathTerminationPointCesUni_SensedType",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Ces Loopback Configuration",
+ "CamelCase": "CesLoopbackConfiguration",
+ "Final": "PhysicalPathTerminationPointCesUni_CesLoopbackConfiguration",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointCesUni_AdministrativeState",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointCesUni_OperationalState",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Framing",
+ "CamelCase": "Framing",
+ "Final": "PhysicalPathTerminationPointCesUni_Framing",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Encoding",
+ "CamelCase": "Encoding",
+ "Final": "PhysicalPathTerminationPointCesUni_Encoding",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Line Length",
+ "CamelCase": "LineLength",
+ "Final": "PhysicalPathTerminationPointCesUni_LineLength",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Ds1 Mode",
+ "CamelCase": "Ds1Mode",
+ "Final": "PhysicalPathTerminationPointCesUni_Ds1Mode",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointCesUni_Arc",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointCesUni_ArcInterval",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Line Type",
+ "CamelCase": "LineType",
+ "Final": "PhysicalPathTerminationPointCesUni_LineType",
+ "Index": 12
+ }
+ }
+ },
+ "14": {
+ "Name": "Interworking VCC termination point",
+ "Filename": "interworkingvccterminationpoint.go",
+ "CamelCase": "InterworkingVccTerminationPoint",
+ "ClassID": 14,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vci Value",
+ "CamelCase": "VciValue",
+ "Final": "InterworkingVccTerminationPoint_VciValue",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Vp Network Ctp Connectivity Pointer",
+ "CamelCase": "VpNetworkCtpConnectivityPointer",
+ "Final": "InterworkingVccTerminationPoint_VpNetworkCtpConnectivityPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Deprecated 1",
+ "CamelCase": "Deprecated1",
+ "Final": "InterworkingVccTerminationPoint_Deprecated1",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Deprecated 2",
+ "CamelCase": "Deprecated2",
+ "Final": "InterworkingVccTerminationPoint_Deprecated2",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Aal5 Profile Pointer",
+ "CamelCase": "Aal5ProfilePointer",
+ "Final": "InterworkingVccTerminationPoint_Aal5ProfilePointer",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Deprecated 3",
+ "CamelCase": "Deprecated3",
+ "Final": "InterworkingVccTerminationPoint_Deprecated3",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Aal Loopback Configuration",
+ "CamelCase": "AalLoopbackConfiguration",
+ "Final": "InterworkingVccTerminationPoint_AalLoopbackConfiguration",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Pptp Counter",
+ "CamelCase": "PptpCounter",
+ "Final": "InterworkingVccTerminationPoint_PptpCounter",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "InterworkingVccTerminationPoint_OperationalState",
+ "Index": 9
+ }
+ }
+ },
+ "16": {
+ "Name": "AAL5 profile",
+ "Filename": "aal5profile.go",
+ "CamelCase": "Aal5Profile",
+ "ClassID": 16,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Max Cpcs Pdu Size",
+ "CamelCase": "MaxCpcsPduSize",
+ "Final": "Aal5Profile_MaxCpcsPduSize",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Aal Mode",
+ "CamelCase": "AalMode",
+ "Final": "Aal5Profile_AalMode",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Sscs Type",
+ "CamelCase": "SscsType",
+ "Final": "Aal5Profile_SscsType",
+ "Index": 3
+ }
+ }
+ },
+ "18": {
+ "Name": "AAL5 performance monitoring history data",
+ "Filename": "aal5performancemonitoringhistorydata.go",
+ "CamelCase": "Aal5PerformanceMonitoringHistoryData",
+ "ClassID": 18,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "Aal5PerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "Aal5PerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Sum Of Invalid Cs Field Errors",
+ "CamelCase": "SumOfInvalidCsFieldErrors",
+ "Final": "Aal5PerformanceMonitoringHistoryData_SumOfInvalidCsFieldErrors",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Crc Violations",
+ "CamelCase": "CrcViolations",
+ "Final": "Aal5PerformanceMonitoringHistoryData_CrcViolations",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Reassembly Timer Expirations",
+ "CamelCase": "ReassemblyTimerExpirations",
+ "Final": "Aal5PerformanceMonitoringHistoryData_ReassemblyTimerExpirations",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Buffer Overflows",
+ "CamelCase": "BufferOverflows",
+ "Final": "Aal5PerformanceMonitoringHistoryData_BufferOverflows",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Encap Protocol Errors",
+ "CamelCase": "EncapProtocolErrors",
+ "Final": "Aal5PerformanceMonitoringHistoryData_EncapProtocolErrors",
+ "Index": 7
+ }
+ }
+ },
+ "21": {
+ "Name": "CES service profile",
+ "Filename": "cesserviceprofile.go",
+ "CamelCase": "CesServiceProfile",
+ "ClassID": 21,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Ces Buffered Cdv Tolerance",
+ "CamelCase": "CesBufferedCdvTolerance",
+ "Final": "CesServiceProfile_CesBufferedCdvTolerance",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Channel Associated Signalling Cas",
+ "CamelCase": "ChannelAssociatedSignallingCas",
+ "Final": "CesServiceProfile_ChannelAssociatedSignallingCas",
+ "Index": 2
+ }
+ }
+ },
+ "24": {
+ "Name": "Ethernet performance monitoring history data",
+ "Filename": "ethernetperformancemonitoringhistorydata.go",
+ "CamelCase": "EthernetPerformanceMonitoringHistoryData",
+ "ClassID": 24,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EthernetPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "EthernetPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Fcs Errors",
+ "CamelCase": "FcsErrors",
+ "Final": "EthernetPerformanceMonitoringHistoryData_FcsErrors",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Excessive Collision Counter",
+ "CamelCase": "ExcessiveCollisionCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_ExcessiveCollisionCounter",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Late Collision Counter",
+ "CamelCase": "LateCollisionCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_LateCollisionCounter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Frames Too Long",
+ "CamelCase": "FramesTooLong",
+ "Final": "EthernetPerformanceMonitoringHistoryData_FramesTooLong",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Buffer Overflows On Receive",
+ "CamelCase": "BufferOverflowsOnReceive",
+ "Final": "EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnReceive",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Buffer Overflows On Transmit",
+ "CamelCase": "BufferOverflowsOnTransmit",
+ "Final": "EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnTransmit",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Single Collision Frame Counter",
+ "CamelCase": "SingleCollisionFrameCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_SingleCollisionFrameCounter",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Multiple Collisions Frame Counter",
+ "CamelCase": "MultipleCollisionsFrameCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_MultipleCollisionsFrameCounter",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Sqe Counter",
+ "CamelCase": "SqeCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_SqeCounter",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Deferred Transmission Counter",
+ "CamelCase": "DeferredTransmissionCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_DeferredTransmissionCounter",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Internal Mac Transmit Error Counter",
+ "CamelCase": "InternalMacTransmitErrorCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_InternalMacTransmitErrorCounter",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Carrier Sense Error Counter",
+ "CamelCase": "CarrierSenseErrorCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_CarrierSenseErrorCounter",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Alignment Error Counter",
+ "CamelCase": "AlignmentErrorCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_AlignmentErrorCounter",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Internal Mac Receive Error Counter",
+ "CamelCase": "InternalMacReceiveErrorCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData_InternalMacReceiveErrorCounter",
+ "Index": 16
+ }
+ }
+ },
+ "45": {
+ "Name": "MAC bridge service profile",
+ "Filename": "macbridgeserviceprofile.go",
+ "CamelCase": "MacBridgeServiceProfile",
+ "ClassID": 45,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Spanning Tree Ind",
+ "CamelCase": "SpanningTreeInd",
+ "Final": "MacBridgeServiceProfile_SpanningTreeInd",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Learning Ind",
+ "CamelCase": "LearningInd",
+ "Final": "MacBridgeServiceProfile_LearningInd",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Port Bridging Ind",
+ "CamelCase": "PortBridgingInd",
+ "Final": "MacBridgeServiceProfile_PortBridgingInd",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Priority",
+ "CamelCase": "Priority",
+ "Final": "MacBridgeServiceProfile_Priority",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Max Age",
+ "CamelCase": "MaxAge",
+ "Final": "MacBridgeServiceProfile_MaxAge",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Hello Time",
+ "CamelCase": "HelloTime",
+ "Final": "MacBridgeServiceProfile_HelloTime",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Forward Delay",
+ "CamelCase": "ForwardDelay",
+ "Final": "MacBridgeServiceProfile_ForwardDelay",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Unknown Mac Address Discard",
+ "CamelCase": "UnknownMacAddressDiscard",
+ "Final": "MacBridgeServiceProfile_UnknownMacAddressDiscard",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Mac Learning Depth",
+ "CamelCase": "MacLearningDepth",
+ "Final": "MacBridgeServiceProfile_MacLearningDepth",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Dynamic Filtering Ageing Time",
+ "CamelCase": "DynamicFilteringAgeingTime",
+ "Final": "MacBridgeServiceProfile_DynamicFilteringAgeingTime",
+ "Index": 10
+ }
+ }
+ },
+ "46": {
+ "Name": "MAC bridge configuration data",
+ "Filename": "macbridgeconfigurationdata.go",
+ "CamelCase": "MacBridgeConfigurationData",
+ "ClassID": 46,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Bridge Mac Address",
+ "CamelCase": "BridgeMacAddress",
+ "Final": "MacBridgeConfigurationData_BridgeMacAddress",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Bridge Priority",
+ "CamelCase": "BridgePriority",
+ "Final": "MacBridgeConfigurationData_BridgePriority",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Designated Root",
+ "CamelCase": "DesignatedRoot",
+ "Final": "MacBridgeConfigurationData_DesignatedRoot",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Root Path Cost",
+ "CamelCase": "RootPathCost",
+ "Final": "MacBridgeConfigurationData_RootPathCost",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Bridge Port Count",
+ "CamelCase": "BridgePortCount",
+ "Final": "MacBridgeConfigurationData_BridgePortCount",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Root Port Num",
+ "CamelCase": "RootPortNum",
+ "Final": "MacBridgeConfigurationData_RootPortNum",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Hello Time",
+ "CamelCase": "HelloTime",
+ "Final": "MacBridgeConfigurationData_HelloTime",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Forward Delay",
+ "CamelCase": "ForwardDelay",
+ "Final": "MacBridgeConfigurationData_ForwardDelay",
+ "Index": 8
+ }
+ }
+ },
+ "47": {
+ "Name": "MAC bridge port configuration data",
+ "Filename": "macbridgeportconfigurationdata.go",
+ "CamelCase": "MacBridgePortConfigurationData",
+ "ClassID": 47,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Bridge Id Pointer",
+ "CamelCase": "BridgeIdPointer",
+ "Final": "MacBridgePortConfigurationData_BridgeIdPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Port Num",
+ "CamelCase": "PortNum",
+ "Final": "MacBridgePortConfigurationData_PortNum",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Tp Type",
+ "CamelCase": "TpType",
+ "Final": "MacBridgePortConfigurationData_TpType",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Tp Pointer",
+ "CamelCase": "TpPointer",
+ "Final": "MacBridgePortConfigurationData_TpPointer",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Port Priority",
+ "CamelCase": "PortPriority",
+ "Final": "MacBridgePortConfigurationData_PortPriority",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Port Path Cost",
+ "CamelCase": "PortPathCost",
+ "Final": "MacBridgePortConfigurationData_PortPathCost",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Port Spanning Tree Ind",
+ "CamelCase": "PortSpanningTreeInd",
+ "Final": "MacBridgePortConfigurationData_PortSpanningTreeInd",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Deprecated 1",
+ "CamelCase": "Deprecated1",
+ "Final": "MacBridgePortConfigurationData_Deprecated1",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Deprecated 2",
+ "CamelCase": "Deprecated2",
+ "Final": "MacBridgePortConfigurationData_Deprecated2",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Port Mac Address",
+ "CamelCase": "PortMacAddress",
+ "Final": "MacBridgePortConfigurationData_PortMacAddress",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Outbound Td Pointer",
+ "CamelCase": "OutboundTdPointer",
+ "Final": "MacBridgePortConfigurationData_OutboundTdPointer",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Inbound Td Pointer",
+ "CamelCase": "InboundTdPointer",
+ "Final": "MacBridgePortConfigurationData_InboundTdPointer",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Mac Learning Depth",
+ "CamelCase": "MacLearningDepth",
+ "Final": "MacBridgePortConfigurationData_MacLearningDepth",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Lasp Id Pointer",
+ "CamelCase": "LaspIdPointer",
+ "Final": "MacBridgePortConfigurationData_LaspIdPointer",
+ "Index": 14
+ }
+ }
+ },
+ "48": {
+ "Name": "MAC bridge port designation data",
+ "Filename": "macbridgeportdesignationdata.go",
+ "CamelCase": "MacBridgePortDesignationData",
+ "ClassID": 48,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Designated Bridge Root Cost Port",
+ "CamelCase": "DesignatedBridgeRootCostPort",
+ "Final": "MacBridgePortDesignationData_DesignatedBridgeRootCostPort",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Port State",
+ "CamelCase": "PortState",
+ "Final": "MacBridgePortDesignationData_PortState",
+ "Index": 2
+ }
+ }
+ },
+ "49": {
+ "Name": "MAC bridge port filter table data",
+ "Filename": "macbridgeportfiltertabledata.go",
+ "CamelCase": "MacBridgePortFilterTableData",
+ "ClassID": 49,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Mac Filter Table",
+ "CamelCase": "MacFilterTable",
+ "Final": "MacBridgePortFilterTableData_MacFilterTable",
+ "Index": 1
+ }
+ }
+ },
+ "50": {
+ "Name": "MAC bridge port bridge table data",
+ "Filename": "macbridgeportbridgetabledata.go",
+ "CamelCase": "MacBridgePortBridgeTableData",
+ "ClassID": 50,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Bridge Table",
+ "CamelCase": "BridgeTable",
+ "Final": "MacBridgePortBridgeTableData_BridgeTable",
+ "Index": 1
+ }
+ }
+ },
+ "51": {
+ "Name": "MAC bridge performance monitoring history data",
+ "Filename": "macbridgeperformancemonitoringhistorydata.go",
+ "CamelCase": "MacBridgePerformanceMonitoringHistoryData",
+ "ClassID": 51,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "MacBridgePerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "MacBridgePerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Bridge Learning Entry Discard Count",
+ "CamelCase": "BridgeLearningEntryDiscardCount",
+ "Final": "MacBridgePerformanceMonitoringHistoryData_BridgeLearningEntryDiscardCount",
+ "Index": 3
+ }
+ }
+ },
+ "52": {
+ "Name": "MAC bridge port performance monitoring history data",
+ "Filename": "macbridgeportperformancemonitoringhistorydata.go",
+ "CamelCase": "MacBridgePortPerformanceMonitoringHistoryData",
+ "ClassID": 52,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Forwarded Frame Counter",
+ "CamelCase": "ForwardedFrameCounter",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_ForwardedFrameCounter",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Delay Exceeded Discard Counter",
+ "CamelCase": "DelayExceededDiscardCounter",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_DelayExceededDiscardCounter",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Maximum Transmission Unit Mtu Exceeded Discard Counter",
+ "CamelCase": "MaximumTransmissionUnitMtuExceededDiscardCounter",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_MaximumTransmissionUnitMtuExceededDiscardCounter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Received Frame Counter",
+ "CamelCase": "ReceivedFrameCounter",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_ReceivedFrameCounter",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Received And Discarded Counter",
+ "CamelCase": "ReceivedAndDiscardedCounter",
+ "Final": "MacBridgePortPerformanceMonitoringHistoryData_ReceivedAndDiscardedCounter",
+ "Index": 7
+ }
+ }
+ },
+ "53": {
+ "Name": "Physical path termination point POTS UNI",
+ "Filename": "physicalpathterminationpointpotsuni.go",
+ "CamelCase": "PhysicalPathTerminationPointPotsUni",
+ "ClassID": 53,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointPotsUni_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Deprecated",
+ "CamelCase": "Deprecated",
+ "Final": "PhysicalPathTerminationPointPotsUni_Deprecated",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointPotsUni_Arc",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointPotsUni_ArcInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Impedance",
+ "CamelCase": "Impedance",
+ "Final": "PhysicalPathTerminationPointPotsUni_Impedance",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Transmission Path",
+ "CamelCase": "TransmissionPath",
+ "Final": "PhysicalPathTerminationPointPotsUni_TransmissionPath",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Rx Gain",
+ "CamelCase": "RxGain",
+ "Final": "PhysicalPathTerminationPointPotsUni_RxGain",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Tx Gain",
+ "CamelCase": "TxGain",
+ "Final": "PhysicalPathTerminationPointPotsUni_TxGain",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointPotsUni_OperationalState",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Hook State",
+ "CamelCase": "HookState",
+ "Final": "PhysicalPathTerminationPointPotsUni_HookState",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Pots Holdover Time",
+ "CamelCase": "PotsHoldoverTime",
+ "Final": "PhysicalPathTerminationPointPotsUni_PotsHoldoverTime",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Nominal Feed Voltage",
+ "CamelCase": "NominalFeedVoltage",
+ "Final": "PhysicalPathTerminationPointPotsUni_NominalFeedVoltage",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Loss Of Softswitch",
+ "CamelCase": "LossOfSoftswitch",
+ "Final": "PhysicalPathTerminationPointPotsUni_LossOfSoftswitch",
+ "Index": 13
+ }
+ }
+ },
+ "58": {
+ "Name": "Voice service profile",
+ "Filename": "voiceserviceprofile.go",
+ "CamelCase": "VoiceServiceProfile",
+ "ClassID": 58,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Announcement Type",
+ "CamelCase": "AnnouncementType",
+ "Final": "VoiceServiceProfile_AnnouncementType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Jitter Target",
+ "CamelCase": "JitterTarget",
+ "Final": "VoiceServiceProfile_JitterTarget",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Jitter Buffer Max",
+ "CamelCase": "JitterBufferMax",
+ "Final": "VoiceServiceProfile_JitterBufferMax",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Echo Cancel Ind",
+ "CamelCase": "EchoCancelInd",
+ "Final": "VoiceServiceProfile_EchoCancelInd",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Pstn Protocol Variant",
+ "CamelCase": "PstnProtocolVariant",
+ "Final": "VoiceServiceProfile_PstnProtocolVariant",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Dtmf Digit Levels",
+ "CamelCase": "DtmfDigitLevels",
+ "Final": "VoiceServiceProfile_DtmfDigitLevels",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Dtmf Digit Duration",
+ "CamelCase": "DtmfDigitDuration",
+ "Final": "VoiceServiceProfile_DtmfDigitDuration",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Hook Flash Minimum Time",
+ "CamelCase": "HookFlashMinimumTime",
+ "Final": "VoiceServiceProfile_HookFlashMinimumTime",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Hook Flash Maximum Time",
+ "CamelCase": "HookFlashMaximumTime",
+ "Final": "VoiceServiceProfile_HookFlashMaximumTime",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Tone Pattern Table",
+ "CamelCase": "TonePatternTable",
+ "Final": "VoiceServiceProfile_TonePatternTable",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Tone Event Table",
+ "CamelCase": "ToneEventTable",
+ "Final": "VoiceServiceProfile_ToneEventTable",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Ringing Pattern Table",
+ "CamelCase": "RingingPatternTable",
+ "Final": "VoiceServiceProfile_RingingPatternTable",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Ringing Event Table",
+ "CamelCase": "RingingEventTable",
+ "Final": "VoiceServiceProfile_RingingEventTable",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Network Specific Extensions Pointer",
+ "CamelCase": "NetworkSpecificExtensionsPointer",
+ "Final": "VoiceServiceProfile_NetworkSpecificExtensionsPointer",
+ "Index": 14
+ }
+ }
+ },
+ "62": {
+ "Name": "VP performance monitoring history data",
+ "Filename": "vpperformancemonitoringhistorydata.go",
+ "CamelCase": "VpPerformanceMonitoringHistoryData",
+ "ClassID": 62,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "VpPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "VpPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Lost C 0 1 Cells",
+ "CamelCase": "LostC01Cells",
+ "Final": "VpPerformanceMonitoringHistoryData_LostC01Cells",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Lost C0 Cells",
+ "CamelCase": "LostC0Cells",
+ "Final": "VpPerformanceMonitoringHistoryData_LostC0Cells",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Misinserted Cells",
+ "CamelCase": "MisinsertedCells",
+ "Final": "VpPerformanceMonitoringHistoryData_MisinsertedCells",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Transmitted C0 _ 1 Cells",
+ "CamelCase": "TransmittedC01Cells",
+ "Final": "VpPerformanceMonitoringHistoryData_TransmittedC01Cells",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Transmitted C0 Cells",
+ "CamelCase": "TransmittedC0Cells",
+ "Final": "VpPerformanceMonitoringHistoryData_TransmittedC0Cells",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Impaired Block",
+ "CamelCase": "ImpairedBlock",
+ "Final": "VpPerformanceMonitoringHistoryData_ImpairedBlock",
+ "Index": 8
+ }
+ }
+ },
+ "78": {
+ "Name": "VLAN tagging operation configuration data",
+ "Filename": "vlantaggingoperationconfigurationdata.go",
+ "CamelCase": "VlanTaggingOperationConfigurationData",
+ "ClassID": 78,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Upstream Vlan Tagging Operation Mode",
+ "CamelCase": "UpstreamVlanTaggingOperationMode",
+ "Final": "VlanTaggingOperationConfigurationData_UpstreamVlanTaggingOperationMode",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Upstream Vlan Tag Tci Value",
+ "CamelCase": "UpstreamVlanTagTciValue",
+ "Final": "VlanTaggingOperationConfigurationData_UpstreamVlanTagTciValue",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Downstream Vlan Tagging Operation Mode",
+ "CamelCase": "DownstreamVlanTaggingOperationMode",
+ "Final": "VlanTaggingOperationConfigurationData_DownstreamVlanTaggingOperationMode",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Association Type",
+ "CamelCase": "AssociationType",
+ "Final": "VlanTaggingOperationConfigurationData_AssociationType",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Associated Me Pointer",
+ "CamelCase": "AssociatedMePointer",
+ "Final": "VlanTaggingOperationConfigurationData_AssociatedMePointer",
+ "Index": 5
+ }
+ }
+ },
+ "79": {
+ "Name": "MAC bridge port filter pre-assign table",
+ "Filename": "macbridgeportfilterpre-assigntable.go",
+ "CamelCase": "MacBridgePortFilterPreAssignTable",
+ "ClassID": 79,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Ipv4 Multicast Filtering",
+ "CamelCase": "Ipv4MulticastFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_Ipv4MulticastFiltering",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Ipv6 Multicast Filtering",
+ "CamelCase": "Ipv6MulticastFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_Ipv6MulticastFiltering",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Ipv4 Broadcast Filtering",
+ "CamelCase": "Ipv4BroadcastFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_Ipv4BroadcastFiltering",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Rarp Filtering",
+ "CamelCase": "RarpFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_RarpFiltering",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Ipx Filtering",
+ "CamelCase": "IpxFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_IpxFiltering",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Netbeui Filtering",
+ "CamelCase": "NetbeuiFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_NetbeuiFiltering",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Appletalk Filtering",
+ "CamelCase": "AppletalkFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_AppletalkFiltering",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Bridge Management Information Filtering",
+ "CamelCase": "BridgeManagementInformationFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_BridgeManagementInformationFiltering",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Arp Filtering",
+ "CamelCase": "ArpFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_ArpFiltering",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Point_To_Point Protocol Over Ethernet Pppoe Broadcast Filtering",
+ "CamelCase": "PointToPointProtocolOverEthernetPppoeBroadcastFiltering",
+ "Final": "MacBridgePortFilterPreAssignTable_PointToPointProtocolOverEthernetPppoeBroadcastFiltering",
+ "Index": 10
+ }
+ }
+ },
+ "82": {
+ "Name": "Physical path termination point video UNI",
+ "Filename": "physicalpathterminationpointvideouni.go",
+ "CamelCase": "PhysicalPathTerminationPointVideoUni",
+ "ClassID": 82,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointVideoUni_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointVideoUni_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointVideoUni_Arc",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointVideoUni_ArcInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Power Control",
+ "CamelCase": "PowerControl",
+ "Final": "PhysicalPathTerminationPointVideoUni_PowerControl",
+ "Index": 5
+ }
+ }
+ },
+ "83": {
+ "Name": "Physical path termination point LCT UNI",
+ "Filename": "physicalpathterminationpointlctuni.go",
+ "CamelCase": "PhysicalPathTerminationPointLctUni",
+ "ClassID": 83,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointLctUni_AdministrativeState",
+ "Index": 1
+ }
+ }
+ },
+ "84": {
+ "Name": "VLAN tagging filter data",
+ "Filename": "vlantaggingfilterdata.go",
+ "CamelCase": "VlanTaggingFilterData",
+ "ClassID": 84,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vlan Filter List",
+ "CamelCase": "VlanFilterList",
+ "Final": "VlanTaggingFilterData_VlanFilterList",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Forward Operation",
+ "CamelCase": "ForwardOperation",
+ "Final": "VlanTaggingFilterData_ForwardOperation",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Number Of Entries",
+ "CamelCase": "NumberOfEntries",
+ "Final": "VlanTaggingFilterData_NumberOfEntries",
+ "Index": 3
+ }
+ }
+ },
+ "89": {
+ "Name": "Ethernet performance monitoring history data 2",
+ "Filename": "ethernetperformancemonitoringhistorydata2.go",
+ "CamelCase": "EthernetPerformanceMonitoringHistoryData2",
+ "ClassID": 89,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EthernetPerformanceMonitoringHistoryData2_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "EthernetPerformanceMonitoringHistoryData2_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Pppoe Filtered Frame Counter",
+ "CamelCase": "PppoeFilteredFrameCounter",
+ "Final": "EthernetPerformanceMonitoringHistoryData2_PppoeFilteredFrameCounter",
+ "Index": 3
+ }
+ }
+ },
+ "90": {
+ "Name": "Physical path termination point video ANI",
+ "Filename": "physicalpathterminationpointvideoani.go",
+ "CamelCase": "PhysicalPathTerminationPointVideoAni",
+ "ClassID": 90,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointVideoAni_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointVideoAni_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointVideoAni_Arc",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointVideoAni_ArcInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Frequency Range Low",
+ "CamelCase": "FrequencyRangeLow",
+ "Final": "PhysicalPathTerminationPointVideoAni_FrequencyRangeLow",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Frequency Range High",
+ "CamelCase": "FrequencyRangeHigh",
+ "Final": "PhysicalPathTerminationPointVideoAni_FrequencyRangeHigh",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Signal Capability",
+ "CamelCase": "SignalCapability",
+ "Final": "PhysicalPathTerminationPointVideoAni_SignalCapability",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Optical Signal Level",
+ "CamelCase": "OpticalSignalLevel",
+ "Final": "PhysicalPathTerminationPointVideoAni_OpticalSignalLevel",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Pilot Signal Level",
+ "CamelCase": "PilotSignalLevel",
+ "Final": "PhysicalPathTerminationPointVideoAni_PilotSignalLevel",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Signal Level Min",
+ "CamelCase": "SignalLevelMin",
+ "Final": "PhysicalPathTerminationPointVideoAni_SignalLevelMin",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Signal Level Max",
+ "CamelCase": "SignalLevelMax",
+ "Final": "PhysicalPathTerminationPointVideoAni_SignalLevelMax",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Pilot Frequency",
+ "CamelCase": "PilotFrequency",
+ "Final": "PhysicalPathTerminationPointVideoAni_PilotFrequency",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Agc Mode",
+ "CamelCase": "AgcMode",
+ "Final": "PhysicalPathTerminationPointVideoAni_AgcMode",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Agc Setting",
+ "CamelCase": "AgcSetting",
+ "Final": "PhysicalPathTerminationPointVideoAni_AgcSetting",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Video Lower Optical Threshold",
+ "CamelCase": "VideoLowerOpticalThreshold",
+ "Final": "PhysicalPathTerminationPointVideoAni_VideoLowerOpticalThreshold",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Video Upper Optical Threshold",
+ "CamelCase": "VideoUpperOpticalThreshold",
+ "Final": "PhysicalPathTerminationPointVideoAni_VideoUpperOpticalThreshold",
+ "Index": 16
+ }
+ }
+ },
+ "98": {
+ "Name": "Physical path termination point xDSL UNI part 1",
+ "Filename": "physicalpathterminationpointxdslunipart1.go",
+ "CamelCase": "PhysicalPathTerminationPointXdslUniPart1",
+ "ClassID": 98,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Loopback Configuration",
+ "CamelCase": "LoopbackConfiguration",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_LoopbackConfiguration",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_AdministrativeState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_OperationalState",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Xdsl Line Configuration Profile",
+ "CamelCase": "XdslLineConfigurationProfile",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_XdslLineConfigurationProfile",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Xdsl Subcarrier Masking Downstream Profile",
+ "CamelCase": "XdslSubcarrierMaskingDownstreamProfile",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_XdslSubcarrierMaskingDownstreamProfile",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Xdsl Subcarrier Masking Upstream Profile",
+ "CamelCase": "XdslSubcarrierMaskingUpstreamProfile",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_XdslSubcarrierMaskingUpstreamProfile",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Xdsl Downstream Power Spectral Density Psd Mask Profile",
+ "CamelCase": "XdslDownstreamPowerSpectralDensityPsdMaskProfile",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_XdslDownstreamPowerSpectralDensityPsdMaskProfile",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Xdsl Downstream Rfi Bands Profile",
+ "CamelCase": "XdslDownstreamRfiBandsProfile",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_XdslDownstreamRfiBandsProfile",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_Arc",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_ArcInterval",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Modem Type",
+ "CamelCase": "ModemType",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_ModemType",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Upstream Psd Mask Profile",
+ "CamelCase": "UpstreamPsdMaskProfile",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_UpstreamPsdMaskProfile",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Network Specific Extensions Pointer",
+ "CamelCase": "NetworkSpecificExtensionsPointer",
+ "Final": "PhysicalPathTerminationPointXdslUniPart1_NetworkSpecificExtensionsPointer",
+ "Index": 13
+ }
+ }
+ },
+ "99": {
+ "Name": "Physical path termination point xDSL UNI part 2",
+ "Filename": "physicalpathterminationpointxdslunipart2.go",
+ "CamelCase": "PhysicalPathTerminationPointXdslUniPart2",
+ "ClassID": 99,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 0 Downstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel0Downstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel0Downstream",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 1 Downstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel1Downstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel1Downstream",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 2 Downstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel2Downstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel2Downstream",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 3 Downstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel3Downstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel3Downstream",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 0 Upstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel0Upstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel0Upstream",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 1 Upstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel1Upstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel1Upstream",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 2 Upstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel2Upstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel2Upstream",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Xdsl Channel Configuration Profile For Bearer Channel 3 Upstream",
+ "CamelCase": "XdslChannelConfigurationProfileForBearerChannel3Upstream",
+ "Final": "PhysicalPathTerminationPointXdslUniPart2_XdslChannelConfigurationProfileForBearerChannel3Upstream",
+ "Index": 8
+ }
+ }
+ },
+ "100": {
+ "Name": "xDSL line inventory and status data part 1",
+ "Filename": "xdsllineinventoryandstatusdatapart1.go",
+ "CamelCase": "XdslLineInventoryAndStatusDataPart1",
+ "ClassID": 100,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Xtu_C G.994.1 Vendor Id",
+ "CamelCase": "XtuCG9941VendorId",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCG9941VendorId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Xtu_R G.994.1 Vendor Id",
+ "CamelCase": "XtuRG9941VendorId",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRG9941VendorId",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Xtu_C System Vendor Id",
+ "CamelCase": "XtuCSystemVendorId",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCSystemVendorId",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Xtu_R System Vendor Id",
+ "CamelCase": "XtuRSystemVendorId",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRSystemVendorId",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Xtu_C Version Number",
+ "CamelCase": "XtuCVersionNumber",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCVersionNumber",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Xtu_R Version Number",
+ "CamelCase": "XtuRVersionNumber",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRVersionNumber",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Xtu_C Serial Number Part 1",
+ "CamelCase": "XtuCSerialNumberPart1",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCSerialNumberPart1",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Xtu_C Serial Number Part 2",
+ "CamelCase": "XtuCSerialNumberPart2",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCSerialNumberPart2",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Xtu_R Serial Number Part 1",
+ "CamelCase": "XtuRSerialNumberPart1",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRSerialNumberPart1",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Xtu_R Serial Number Part 2",
+ "CamelCase": "XtuRSerialNumberPart2",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRSerialNumberPart2",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Xtu_C Self Test Results",
+ "CamelCase": "XtuCSelfTestResults",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCSelfTestResults",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Xtu_R Self Test Results",
+ "CamelCase": "XtuRSelfTestResults",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRSelfTestResults",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Xtu_C Transmission System Capability",
+ "CamelCase": "XtuCTransmissionSystemCapability",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuCTransmissionSystemCapability",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Xtu_R Transmission System Capability",
+ "CamelCase": "XtuRTransmissionSystemCapability",
+ "Final": "XdslLineInventoryAndStatusDataPart1_XtuRTransmissionSystemCapability",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Initialization Success_Failure Cause",
+ "CamelCase": "InitializationSuccessFailureCause",
+ "Final": "XdslLineInventoryAndStatusDataPart1_InitializationSuccessFailureCause",
+ "Index": 15
+ }
+ }
+ },
+ "101": {
+ "Name": "xDSL line inventory and status data part 2",
+ "Filename": "xdsllineinventoryandstatusdatapart2.go",
+ "CamelCase": "XdslLineInventoryAndStatusDataPart2",
+ "ClassID": 101,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Xdsl Transmission System",
+ "CamelCase": "XdslTransmissionSystem",
+ "Final": "XdslLineInventoryAndStatusDataPart2_XdslTransmissionSystem",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Line Power Management State",
+ "CamelCase": "LinePowerManagementState",
+ "Final": "XdslLineInventoryAndStatusDataPart2_LinePowerManagementState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Downstream Line Attenuation",
+ "CamelCase": "DownstreamLineAttenuation",
+ "Final": "XdslLineInventoryAndStatusDataPart2_DownstreamLineAttenuation",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Upstream Line Attenuation",
+ "CamelCase": "UpstreamLineAttenuation",
+ "Final": "XdslLineInventoryAndStatusDataPart2_UpstreamLineAttenuation",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Downstream Signal Attenuation",
+ "CamelCase": "DownstreamSignalAttenuation",
+ "Final": "XdslLineInventoryAndStatusDataPart2_DownstreamSignalAttenuation",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Upstream Signal Attenuation",
+ "CamelCase": "UpstreamSignalAttenuation",
+ "Final": "XdslLineInventoryAndStatusDataPart2_UpstreamSignalAttenuation",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Downstream Snr Ratio Margin",
+ "CamelCase": "DownstreamSnrRatioMargin",
+ "Final": "XdslLineInventoryAndStatusDataPart2_DownstreamSnrRatioMargin",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Upstream Snr Margin",
+ "CamelCase": "UpstreamSnrMargin",
+ "Final": "XdslLineInventoryAndStatusDataPart2_UpstreamSnrMargin",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Downstream Maximum Attainable Data Rate",
+ "CamelCase": "DownstreamMaximumAttainableDataRate",
+ "Final": "XdslLineInventoryAndStatusDataPart2_DownstreamMaximumAttainableDataRate",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Upstream Maximum Attainable Data Rate",
+ "CamelCase": "UpstreamMaximumAttainableDataRate",
+ "Final": "XdslLineInventoryAndStatusDataPart2_UpstreamMaximumAttainableDataRate",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Downstream Actual Power Spectrum Density",
+ "CamelCase": "DownstreamActualPowerSpectrumDensity",
+ "Final": "XdslLineInventoryAndStatusDataPart2_DownstreamActualPowerSpectrumDensity",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Upstream Actual Power Spectrum Density",
+ "CamelCase": "UpstreamActualPowerSpectrumDensity",
+ "Final": "XdslLineInventoryAndStatusDataPart2_UpstreamActualPowerSpectrumDensity",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Downstream Actual Aggregate Transmit Power",
+ "CamelCase": "DownstreamActualAggregateTransmitPower",
+ "Final": "XdslLineInventoryAndStatusDataPart2_DownstreamActualAggregateTransmitPower",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Upstream Actual Aggregate Transmit Power",
+ "CamelCase": "UpstreamActualAggregateTransmitPower",
+ "Final": "XdslLineInventoryAndStatusDataPart2_UpstreamActualAggregateTransmitPower",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Initialization _ Last State Transmitted Downstream",
+ "CamelCase": "InitializationLastStateTransmittedDownstream",
+ "Final": "XdslLineInventoryAndStatusDataPart2_InitializationLastStateTransmittedDownstream",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Initialization _ Last State Transmitted Upstream",
+ "CamelCase": "InitializationLastStateTransmittedUpstream",
+ "Final": "XdslLineInventoryAndStatusDataPart2_InitializationLastStateTransmittedUpstream",
+ "Index": 16
+ }
+ }
+ },
+ "102": {
+ "Name": "xDSL channel downstream status data",
+ "Filename": "xdslchanneldownstreamstatusdata.go",
+ "CamelCase": "XdslChannelDownstreamStatusData",
+ "ClassID": 102,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Actual Interleaving Delay",
+ "CamelCase": "ActualInterleavingDelay",
+ "Final": "XdslChannelDownstreamStatusData_ActualInterleavingDelay",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Actual Data Rate",
+ "CamelCase": "ActualDataRate",
+ "Final": "XdslChannelDownstreamStatusData_ActualDataRate",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Previous Data Rate",
+ "CamelCase": "PreviousDataRate",
+ "Final": "XdslChannelDownstreamStatusData_PreviousDataRate",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Actual Impulse Noise Protection",
+ "CamelCase": "ActualImpulseNoiseProtection",
+ "Final": "XdslChannelDownstreamStatusData_ActualImpulseNoiseProtection",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Actual Size Of Reed_Solomon Codeword",
+ "CamelCase": "ActualSizeOfReedSolomonCodeword",
+ "Final": "XdslChannelDownstreamStatusData_ActualSizeOfReedSolomonCodeword",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Actual Number Of Reed_Solomon Redundancy Bytes",
+ "CamelCase": "ActualNumberOfReedSolomonRedundancyBytes",
+ "Final": "XdslChannelDownstreamStatusData_ActualNumberOfReedSolomonRedundancyBytes",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Actual Number Of Bits Per Symbol",
+ "CamelCase": "ActualNumberOfBitsPerSymbol",
+ "Final": "XdslChannelDownstreamStatusData_ActualNumberOfBitsPerSymbol",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Actual Interleaving Depth",
+ "CamelCase": "ActualInterleavingDepth",
+ "Final": "XdslChannelDownstreamStatusData_ActualInterleavingDepth",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Actual Interleaving Block Length",
+ "CamelCase": "ActualInterleavingBlockLength",
+ "Final": "XdslChannelDownstreamStatusData_ActualInterleavingBlockLength",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Actual Latency Path",
+ "CamelCase": "ActualLatencyPath",
+ "Final": "XdslChannelDownstreamStatusData_ActualLatencyPath",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Actual Impulse Noise Protection Against Repetitive Electrical Impulse Noise Actinp_Rein",
+ "CamelCase": "ActualImpulseNoiseProtectionAgainstRepetitiveElectricalImpulseNoiseActinpRein",
+ "Final": "XdslChannelDownstreamStatusData_ActualImpulseNoiseProtectionAgainstRepetitiveElectricalImpulseNoiseActinpRein",
+ "Index": 11
+ }
+ }
+ },
+ "103": {
+ "Name": "xDSL channel upstream status data",
+ "Filename": "xdslchannelupstreamstatusdata.go",
+ "CamelCase": "XdslChannelUpstreamStatusData",
+ "ClassID": 103,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Actual Interleaving Delay",
+ "CamelCase": "ActualInterleavingDelay",
+ "Final": "XdslChannelUpstreamStatusData_ActualInterleavingDelay",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Actual Data Rate",
+ "CamelCase": "ActualDataRate",
+ "Final": "XdslChannelUpstreamStatusData_ActualDataRate",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Previous Data Rate",
+ "CamelCase": "PreviousDataRate",
+ "Final": "XdslChannelUpstreamStatusData_PreviousDataRate",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Actual Impulse Noise Protection",
+ "CamelCase": "ActualImpulseNoiseProtection",
+ "Final": "XdslChannelUpstreamStatusData_ActualImpulseNoiseProtection",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Impulse Noise Protection Reporting Mode",
+ "CamelCase": "ImpulseNoiseProtectionReportingMode",
+ "Final": "XdslChannelUpstreamStatusData_ImpulseNoiseProtectionReportingMode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Actual Size Of Reed_Solomon Codeword",
+ "CamelCase": "ActualSizeOfReedSolomonCodeword",
+ "Final": "XdslChannelUpstreamStatusData_ActualSizeOfReedSolomonCodeword",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Actual Number Of Reed_Solomon Redundancy Bytes",
+ "CamelCase": "ActualNumberOfReedSolomonRedundancyBytes",
+ "Final": "XdslChannelUpstreamStatusData_ActualNumberOfReedSolomonRedundancyBytes",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Actual Number Of Bits Per Symbol",
+ "CamelCase": "ActualNumberOfBitsPerSymbol",
+ "Final": "XdslChannelUpstreamStatusData_ActualNumberOfBitsPerSymbol",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Actual Interleaving Depth",
+ "CamelCase": "ActualInterleavingDepth",
+ "Final": "XdslChannelUpstreamStatusData_ActualInterleavingDepth",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Actual Interleaving Block Length",
+ "CamelCase": "ActualInterleavingBlockLength",
+ "Final": "XdslChannelUpstreamStatusData_ActualInterleavingBlockLength",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Actual Latency Path",
+ "CamelCase": "ActualLatencyPath",
+ "Final": "XdslChannelUpstreamStatusData_ActualLatencyPath",
+ "Index": 11
+ }
+ }
+ },
+ "105": {
+ "Name": "xDSL line configuration profile part 2",
+ "Filename": "xdsllineconfigurationprofilepart2.go",
+ "CamelCase": "XdslLineConfigurationProfilePart2",
+ "ClassID": 105,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Downstream Minimum Time Interval For Upshift Rate Adaptation",
+ "CamelCase": "DownstreamMinimumTimeIntervalForUpshiftRateAdaptation",
+ "Final": "XdslLineConfigurationProfilePart2_DownstreamMinimumTimeIntervalForUpshiftRateAdaptation",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Upstream Minimum Time Interval For Upshift Rate Adaptation",
+ "CamelCase": "UpstreamMinimumTimeIntervalForUpshiftRateAdaptation",
+ "Final": "XdslLineConfigurationProfilePart2_UpstreamMinimumTimeIntervalForUpshiftRateAdaptation",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Downstream Downshift Noise Margin",
+ "CamelCase": "DownstreamDownshiftNoiseMargin",
+ "Final": "XdslLineConfigurationProfilePart2_DownstreamDownshiftNoiseMargin",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Upstream Downshift Noise Margin",
+ "CamelCase": "UpstreamDownshiftNoiseMargin",
+ "Final": "XdslLineConfigurationProfilePart2_UpstreamDownshiftNoiseMargin",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Downstream Minimum Time Interval For Downshift Rate Adaptation",
+ "CamelCase": "DownstreamMinimumTimeIntervalForDownshiftRateAdaptation",
+ "Final": "XdslLineConfigurationProfilePart2_DownstreamMinimumTimeIntervalForDownshiftRateAdaptation",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Upstream Minimum Time Interval For Downshift Rate Adaptation",
+ "CamelCase": "UpstreamMinimumTimeIntervalForDownshiftRateAdaptation",
+ "Final": "XdslLineConfigurationProfilePart2_UpstreamMinimumTimeIntervalForDownshiftRateAdaptation",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Xtu Impedance State Forced",
+ "CamelCase": "XtuImpedanceStateForced",
+ "Final": "XdslLineConfigurationProfilePart2_XtuImpedanceStateForced",
+ "Index": 7
+ },
+ "8": {
+ "Name": "L0_Time",
+ "CamelCase": "L0Time",
+ "Final": "XdslLineConfigurationProfilePart2_L0Time",
+ "Index": 8
+ },
+ "9": {
+ "Name": "L2_Time",
+ "CamelCase": "L2Time",
+ "Final": "XdslLineConfigurationProfilePart2_L2Time",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Downstream Maximum Nominal Power Spectral Density",
+ "CamelCase": "DownstreamMaximumNominalPowerSpectralDensity",
+ "Final": "XdslLineConfigurationProfilePart2_DownstreamMaximumNominalPowerSpectralDensity",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Upstream Maximum Nominal Power Spectral Density",
+ "CamelCase": "UpstreamMaximumNominalPowerSpectralDensity",
+ "Final": "XdslLineConfigurationProfilePart2_UpstreamMaximumNominalPowerSpectralDensity",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Downstream Maximum Nominal Aggregate Transmit Power",
+ "CamelCase": "DownstreamMaximumNominalAggregateTransmitPower",
+ "Final": "XdslLineConfigurationProfilePart2_DownstreamMaximumNominalAggregateTransmitPower",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Upstream Maximum Nominal Aggregate Transmit Power",
+ "CamelCase": "UpstreamMaximumNominalAggregateTransmitPower",
+ "Final": "XdslLineConfigurationProfilePart2_UpstreamMaximumNominalAggregateTransmitPower",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Upstream Maximum Aggregate_Receive Power",
+ "CamelCase": "UpstreamMaximumAggregateReceivePower",
+ "Final": "XdslLineConfigurationProfilePart2_UpstreamMaximumAggregateReceivePower",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Vdsl2 Transmission System Enabling",
+ "CamelCase": "Vdsl2TransmissionSystemEnabling",
+ "Final": "XdslLineConfigurationProfilePart2_Vdsl2TransmissionSystemEnabling",
+ "Index": 15
+ }
+ }
+ },
+ "106": {
+ "Name": "xDSL line configuration profile part 3",
+ "Filename": "xdsllineconfigurationprofilepart3.go",
+ "CamelCase": "XdslLineConfigurationProfilePart3",
+ "ClassID": 106,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Loop Diagnostics Mode Forced Ldsf",
+ "CamelCase": "LoopDiagnosticsModeForcedLdsf",
+ "Final": "XdslLineConfigurationProfilePart3_LoopDiagnosticsModeForcedLdsf",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Automode Cold Start Forced",
+ "CamelCase": "AutomodeColdStartForced",
+ "Final": "XdslLineConfigurationProfilePart3_AutomodeColdStartForced",
+ "Index": 2
+ },
+ "3": {
+ "Name": "L2 Atpr",
+ "CamelCase": "L2Atpr",
+ "Final": "XdslLineConfigurationProfilePart3_L2Atpr",
+ "Index": 3
+ },
+ "4": {
+ "Name": "L2 Atprt",
+ "CamelCase": "L2Atprt",
+ "Final": "XdslLineConfigurationProfilePart3_L2Atprt",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Force Inp Downstream",
+ "CamelCase": "ForceInpDownstream",
+ "Final": "XdslLineConfigurationProfilePart3_ForceInpDownstream",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Force Inp Upstream",
+ "CamelCase": "ForceInpUpstream",
+ "Final": "XdslLineConfigurationProfilePart3_ForceInpUpstream",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Update Request Flag For Near_End Test Parameters",
+ "CamelCase": "UpdateRequestFlagForNearEndTestParameters",
+ "Final": "XdslLineConfigurationProfilePart3_UpdateRequestFlagForNearEndTestParameters",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Update Request Flag For Far_End Test Parameters",
+ "CamelCase": "UpdateRequestFlagForFarEndTestParameters",
+ "Final": "XdslLineConfigurationProfilePart3_UpdateRequestFlagForFarEndTestParameters",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Inm Inter Arrival Time Offset Upstream",
+ "CamelCase": "InmInterArrivalTimeOffsetUpstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmInterArrivalTimeOffsetUpstream",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Inm Inter_Arrival Time Step Upstream",
+ "CamelCase": "InmInterArrivalTimeStepUpstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmInterArrivalTimeStepUpstream",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Inm Cluster Continuation Value Upstream",
+ "CamelCase": "InmClusterContinuationValueUpstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmClusterContinuationValueUpstream",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Inm Equivalent Inp Mode Upstream",
+ "CamelCase": "InmEquivalentInpModeUpstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmEquivalentInpModeUpstream",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Inm Inter Arrival Time Offset Downstream",
+ "CamelCase": "InmInterArrivalTimeOffsetDownstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmInterArrivalTimeOffsetDownstream",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Inm Inter_Arrival Time Step Downstream",
+ "CamelCase": "InmInterArrivalTimeStepDownstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmInterArrivalTimeStepDownstream",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Inm Cluster Continuation Value Downstream",
+ "CamelCase": "InmClusterContinuationValueDownstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmClusterContinuationValueDownstream",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Inm Equivalent Inp Mode Downstream",
+ "CamelCase": "InmEquivalentInpModeDownstream",
+ "Final": "XdslLineConfigurationProfilePart3_InmEquivalentInpModeDownstream",
+ "Index": 16
+ }
+ }
+ },
+ "107": {
+ "Name": "xDSL channel configuration profile",
+ "Filename": "xdslchannelconfigurationprofile.go",
+ "CamelCase": "XdslChannelConfigurationProfile",
+ "ClassID": 107,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Minimum Data Rate",
+ "CamelCase": "MinimumDataRate",
+ "Final": "XdslChannelConfigurationProfile_MinimumDataRate",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Maximum Data Rate",
+ "CamelCase": "MaximumDataRate",
+ "Final": "XdslChannelConfigurationProfile_MaximumDataRate",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Rate Adaptation Ratio",
+ "CamelCase": "RateAdaptationRatio",
+ "Final": "XdslChannelConfigurationProfile_RateAdaptationRatio",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Maximum Interleaving Delay",
+ "CamelCase": "MaximumInterleavingDelay",
+ "Final": "XdslChannelConfigurationProfile_MaximumInterleavingDelay",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Data Rate Threshold Upshift",
+ "CamelCase": "DataRateThresholdUpshift",
+ "Final": "XdslChannelConfigurationProfile_DataRateThresholdUpshift",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Data Rate Threshold Downshift",
+ "CamelCase": "DataRateThresholdDownshift",
+ "Final": "XdslChannelConfigurationProfile_DataRateThresholdDownshift",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Minimum Reserved Data Rate",
+ "CamelCase": "MinimumReservedDataRate",
+ "Final": "XdslChannelConfigurationProfile_MinimumReservedDataRate",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Minimum Data Rate In Low _ Power State",
+ "CamelCase": "MinimumDataRateInLowPowerState",
+ "Final": "XdslChannelConfigurationProfile_MinimumDataRateInLowPowerState",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Minimum Impulse Noise Protection",
+ "CamelCase": "MinimumImpulseNoiseProtection",
+ "Final": "XdslChannelConfigurationProfile_MinimumImpulseNoiseProtection",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Maximum Bit Error Ratio",
+ "CamelCase": "MaximumBitErrorRatio",
+ "Final": "XdslChannelConfigurationProfile_MaximumBitErrorRatio",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Minimum Impulse Noise Protection 8_Khz",
+ "CamelCase": "MinimumImpulseNoiseProtection8Khz",
+ "Final": "XdslChannelConfigurationProfile_MinimumImpulseNoiseProtection8Khz",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Maximum Delay Variation",
+ "CamelCase": "MaximumDelayVariation",
+ "Final": "XdslChannelConfigurationProfile_MaximumDelayVariation",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Channel Initialization Policy Selection",
+ "CamelCase": "ChannelInitializationPolicySelection",
+ "Final": "XdslChannelConfigurationProfile_ChannelInitializationPolicySelection",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Minimum Sos Bit Rate Downstream",
+ "CamelCase": "MinimumSosBitRateDownstream",
+ "Final": "XdslChannelConfigurationProfile_MinimumSosBitRateDownstream",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Minimum Sos Bit Rate Upstream",
+ "CamelCase": "MinimumSosBitRateUpstream",
+ "Final": "XdslChannelConfigurationProfile_MinimumSosBitRateUpstream",
+ "Index": 15
+ }
+ }
+ },
+ "108": {
+ "Name": "xDSL subcarrier masking downstream profile",
+ "Filename": "xdslsubcarriermaskingdownstreamprofile.go",
+ "CamelCase": "XdslSubcarrierMaskingDownstreamProfile",
+ "ClassID": 108,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Downstream Subcarrier Mask 1",
+ "CamelCase": "DownstreamSubcarrierMask1",
+ "Final": "XdslSubcarrierMaskingDownstreamProfile_DownstreamSubcarrierMask1",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Downstream Subcarrier Mask 2",
+ "CamelCase": "DownstreamSubcarrierMask2",
+ "Final": "XdslSubcarrierMaskingDownstreamProfile_DownstreamSubcarrierMask2",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Downstream Subcarrier Mask 3",
+ "CamelCase": "DownstreamSubcarrierMask3",
+ "Final": "XdslSubcarrierMaskingDownstreamProfile_DownstreamSubcarrierMask3",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Downstream Subcarrier Mask 4",
+ "CamelCase": "DownstreamSubcarrierMask4",
+ "Final": "XdslSubcarrierMaskingDownstreamProfile_DownstreamSubcarrierMask4",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Mask Valid",
+ "CamelCase": "MaskValid",
+ "Final": "XdslSubcarrierMaskingDownstreamProfile_MaskValid",
+ "Index": 5
+ }
+ }
+ },
+ "109": {
+ "Name": "xDSL subcarrier masking upstream profile",
+ "Filename": "xdslsubcarriermaskingupstreamprofile.go",
+ "CamelCase": "XdslSubcarrierMaskingUpstreamProfile",
+ "ClassID": 109,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Upstream Subcarrier Mask",
+ "CamelCase": "UpstreamSubcarrierMask",
+ "Final": "XdslSubcarrierMaskingUpstreamProfile_UpstreamSubcarrierMask",
+ "Index": 1
+ }
+ }
+ },
+ "110": {
+ "Name": "xDSL PSD mask profile",
+ "Filename": "xdslpsdmaskprofile.go",
+ "CamelCase": "XdslPsdMaskProfile",
+ "ClassID": 110,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Psd Mask Table",
+ "CamelCase": "PsdMaskTable",
+ "Final": "XdslPsdMaskProfile_PsdMaskTable",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Mask Valid",
+ "CamelCase": "MaskValid",
+ "Final": "XdslPsdMaskProfile_MaskValid",
+ "Index": 2
+ }
+ }
+ },
+ "111": {
+ "Name": "xDSL downstream RFI bands profile",
+ "Filename": "xdsldownstreamrfibandsprofile.go",
+ "CamelCase": "XdslDownstreamRfiBandsProfile",
+ "ClassID": 111,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Downstream Rfi Bands Table",
+ "CamelCase": "DownstreamRfiBandsTable",
+ "Final": "XdslDownstreamRfiBandsProfile_DownstreamRfiBandsTable",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Bands Valid",
+ "CamelCase": "BandsValid",
+ "Final": "XdslDownstreamRfiBandsProfile_BandsValid",
+ "Index": 2
+ }
+ }
+ },
+ "112": {
+ "Name": "xDSL xTU-C performance monitoring history data",
+ "Filename": "xdslxtu-cperformancemonitoringhistorydata.go",
+ "CamelCase": "XdslXtuCPerformanceMonitoringHistoryData",
+ "ClassID": 112,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Loss Of Frame Seconds",
+ "CamelCase": "LossOfFrameSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_LossOfFrameSeconds",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Loss Of Signal Seconds",
+ "CamelCase": "LossOfSignalSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_LossOfSignalSeconds",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Loss Of Link Seconds",
+ "CamelCase": "LossOfLinkSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_LossOfLinkSeconds",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Loss Of Power Seconds",
+ "CamelCase": "LossOfPowerSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_LossOfPowerSeconds",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Errored Seconds Es",
+ "CamelCase": "ErroredSecondsEs",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_ErroredSecondsEs",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Severely Errored Seconds",
+ "CamelCase": "SeverelyErroredSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_SeverelyErroredSeconds",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Line Initializations",
+ "CamelCase": "LineInitializations",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_LineInitializations",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Failed Line Initializations",
+ "CamelCase": "FailedLineInitializations",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_FailedLineInitializations",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Short Initializations",
+ "CamelCase": "ShortInitializations",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_ShortInitializations",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Failed Short Initializations",
+ "CamelCase": "FailedShortInitializations",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_FailedShortInitializations",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Fec Seconds",
+ "CamelCase": "FecSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_FecSeconds",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Unavailable Seconds",
+ "CamelCase": "UnavailableSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_UnavailableSeconds",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Sos Success Count Near End",
+ "CamelCase": "SosSuccessCountNearEnd",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_SosSuccessCountNearEnd",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Sos Success Count Far End",
+ "CamelCase": "SosSuccessCountFarEnd",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryData_SosSuccessCountFarEnd",
+ "Index": 16
+ }
+ }
+ },
+ "113": {
+ "Name": "xDSL xTU-R performance monitoring history data",
+ "Filename": "xdslxtu-rperformancemonitoringhistorydata.go",
+ "CamelCase": "XdslXtuRPerformanceMonitoringHistoryData",
+ "ClassID": 113,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Loss Of Frame Seconds",
+ "CamelCase": "LossOfFrameSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_LossOfFrameSeconds",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Loss Of Signal Seconds",
+ "CamelCase": "LossOfSignalSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_LossOfSignalSeconds",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Loss Of Power Seconds",
+ "CamelCase": "LossOfPowerSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_LossOfPowerSeconds",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Errored Seconds",
+ "CamelCase": "ErroredSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_ErroredSeconds",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Severely Errored Seconds",
+ "CamelCase": "SeverelyErroredSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_SeverelyErroredSeconds",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Fec Seconds",
+ "CamelCase": "FecSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_FecSeconds",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Unavailable Seconds",
+ "CamelCase": "UnavailableSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_UnavailableSeconds",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Leftr Defect Seconds",
+ "CamelCase": "LeftrDefectSeconds",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_LeftrDefectSeconds",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Error_Free Bits Counter",
+ "CamelCase": "ErrorFreeBitsCounter",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_ErrorFreeBitsCounter",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Minimum Error_Free Throughput Mineftr",
+ "CamelCase": "MinimumErrorFreeThroughputMineftr",
+ "Final": "XdslXtuRPerformanceMonitoringHistoryData_MinimumErrorFreeThroughputMineftr",
+ "Index": 12
+ }
+ }
+ },
+ "114": {
+ "Name": "xDSL xTU-C channel performance monitoring history data",
+ "Filename": "xdslxtu-cchannelperformancemonitoringhistorydata.go",
+ "CamelCase": "XdslXtuCChannelPerformanceMonitoringHistoryData",
+ "ClassID": 114,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Corrected Blocks",
+ "CamelCase": "CorrectedBlocks",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_CorrectedBlocks",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Uncorrected Blocks",
+ "CamelCase": "UncorrectedBlocks",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_UncorrectedBlocks",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Transmitted Blocks",
+ "CamelCase": "TransmittedBlocks",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_TransmittedBlocks",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Received Blocks",
+ "CamelCase": "ReceivedBlocks",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_ReceivedBlocks",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Code Violations",
+ "CamelCase": "CodeViolations",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_CodeViolations",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Forward Error Corrections",
+ "CamelCase": "ForwardErrorCorrections",
+ "Final": "XdslXtuCChannelPerformanceMonitoringHistoryData_ForwardErrorCorrections",
+ "Index": 8
+ }
+ }
+ },
+ "115": {
+ "Name": "xDSL xTU-R channel performance monitoring history data",
+ "Filename": "xdslxtu-rchannelperformancemonitoringhistorydata.go",
+ "CamelCase": "XdslXtuRChannelPerformanceMonitoringHistoryData",
+ "ClassID": 115,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Corrected Blocks",
+ "CamelCase": "CorrectedBlocks",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_CorrectedBlocks",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Uncorrected Blocks",
+ "CamelCase": "UncorrectedBlocks",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_UncorrectedBlocks",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Transmitted Blocks",
+ "CamelCase": "TransmittedBlocks",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_TransmittedBlocks",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Received Blocks",
+ "CamelCase": "ReceivedBlocks",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_ReceivedBlocks",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Code Violations",
+ "CamelCase": "CodeViolations",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_CodeViolations",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Forward Error Corrections",
+ "CamelCase": "ForwardErrorCorrections",
+ "Final": "XdslXtuRChannelPerformanceMonitoringHistoryData_ForwardErrorCorrections",
+ "Index": 8
+ }
+ }
+ },
+ "116": {
+ "Name": "TC adaptor performance monitoring history data xDSL",
+ "Filename": "tcadaptorperformancemonitoringhistorydataxdsl.go",
+ "CamelCase": "TcAdaptorPerformanceMonitoringHistoryDataXdsl",
+ "ClassID": 116,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Near_End Hec Violation Count",
+ "CamelCase": "NearEndHecViolationCount",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_NearEndHecViolationCount",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Near_End Delineated Total Cell Count Cd P",
+ "CamelCase": "NearEndDelineatedTotalCellCountCdP",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_NearEndDelineatedTotalCellCountCdP",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Near_End User Total Cell Count Cu_P",
+ "CamelCase": "NearEndUserTotalCellCountCuP",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_NearEndUserTotalCellCountCuP",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Near_End Idle Cell Bit Error Count",
+ "CamelCase": "NearEndIdleCellBitErrorCount",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_NearEndIdleCellBitErrorCount",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Far_End Hec Violation Count",
+ "CamelCase": "FarEndHecViolationCount",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_FarEndHecViolationCount",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Far_End Delineated Total Cell Count Cd_Pfe",
+ "CamelCase": "FarEndDelineatedTotalCellCountCdPfe",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_FarEndDelineatedTotalCellCountCdPfe",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Far_End User Total Cell Count Cu_Pfe",
+ "CamelCase": "FarEndUserTotalCellCountCuPfe",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_FarEndUserTotalCellCountCuPfe",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Far_End Idle Cell Bit Error Count",
+ "CamelCase": "FarEndIdleCellBitErrorCount",
+ "Final": "TcAdaptorPerformanceMonitoringHistoryDataXdsl_FarEndIdleCellBitErrorCount",
+ "Index": 10
+ }
+ }
+ },
+ "130": {
+ "Name": "IEEE 802.1p mapper service profile",
+ "Filename": "ieee802.1pmapperserviceprofile.go",
+ "CamelCase": "Ieee8021PMapperServiceProfile",
+ "ClassID": 130,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Tp Pointer",
+ "CamelCase": "TpPointer",
+ "Final": "Ieee8021PMapperServiceProfile_TpPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 0",
+ "CamelCase": "InterworkTpPointerForPBitPriority0",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority0",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 1",
+ "CamelCase": "InterworkTpPointerForPBitPriority1",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority1",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 2",
+ "CamelCase": "InterworkTpPointerForPBitPriority2",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority2",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 3",
+ "CamelCase": "InterworkTpPointerForPBitPriority3",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority3",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 4",
+ "CamelCase": "InterworkTpPointerForPBitPriority4",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority4",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 5",
+ "CamelCase": "InterworkTpPointerForPBitPriority5",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority5",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 6",
+ "CamelCase": "InterworkTpPointerForPBitPriority6",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority6",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Interwork Tp Pointer For P_Bit Priority 7",
+ "CamelCase": "InterworkTpPointerForPBitPriority7",
+ "Final": "Ieee8021PMapperServiceProfile_InterworkTpPointerForPBitPriority7",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Unmarked Frame Option",
+ "CamelCase": "UnmarkedFrameOption",
+ "Final": "Ieee8021PMapperServiceProfile_UnmarkedFrameOption",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Dscp To P Bit Mapping",
+ "CamelCase": "DscpToPBitMapping",
+ "Final": "Ieee8021PMapperServiceProfile_DscpToPBitMapping",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Default P Bit Assumption",
+ "CamelCase": "DefaultPBitAssumption",
+ "Final": "Ieee8021PMapperServiceProfile_DefaultPBitAssumption",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Tp Type",
+ "CamelCase": "TpType",
+ "Final": "Ieee8021PMapperServiceProfile_TpType",
+ "Index": 13
+ }
+ }
+ },
+ "131": {
+ "Name": "OLT-G",
+ "Filename": "olt-g.go",
+ "CamelCase": "OltG",
+ "ClassID": 131,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Olt Vendor Id",
+ "CamelCase": "OltVendorId",
+ "Final": "OltG_OltVendorId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Equipment Id",
+ "CamelCase": "EquipmentId",
+ "Final": "OltG_EquipmentId",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Version",
+ "CamelCase": "Version",
+ "Final": "OltG_Version",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Time Of Day Information",
+ "CamelCase": "TimeOfDayInformation",
+ "Final": "OltG_TimeOfDayInformation",
+ "Index": 4
+ }
+ }
+ },
+ "133": {
+ "Name": "ONU power shedding",
+ "Filename": "onupowershedding.go",
+ "CamelCase": "OnuPowerShedding",
+ "ClassID": 133,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Restore Power Timer Reset Interval",
+ "CamelCase": "RestorePowerTimerResetInterval",
+ "Final": "OnuPowerShedding_RestorePowerTimerResetInterval",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Data Class Shedding Interval",
+ "CamelCase": "DataClassSheddingInterval",
+ "Final": "OnuPowerShedding_DataClassSheddingInterval",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Voice Class Shedding Interval",
+ "CamelCase": "VoiceClassSheddingInterval",
+ "Final": "OnuPowerShedding_VoiceClassSheddingInterval",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Video Overlay Class Shedding Interval",
+ "CamelCase": "VideoOverlayClassSheddingInterval",
+ "Final": "OnuPowerShedding_VideoOverlayClassSheddingInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Video Return Class Shedding Interval",
+ "CamelCase": "VideoReturnClassSheddingInterval",
+ "Final": "OnuPowerShedding_VideoReturnClassSheddingInterval",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Digital Subscriber Line Class Shedding Interval",
+ "CamelCase": "DigitalSubscriberLineClassSheddingInterval",
+ "Final": "OnuPowerShedding_DigitalSubscriberLineClassSheddingInterval",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Atm Class Shedding Interval",
+ "CamelCase": "AtmClassSheddingInterval",
+ "Final": "OnuPowerShedding_AtmClassSheddingInterval",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Ces Class Shedding Interval",
+ "CamelCase": "CesClassSheddingInterval",
+ "Final": "OnuPowerShedding_CesClassSheddingInterval",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Frame Class Shedding Interval",
+ "CamelCase": "FrameClassSheddingInterval",
+ "Final": "OnuPowerShedding_FrameClassSheddingInterval",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Sdh_Sonet Class Shedding Interval",
+ "CamelCase": "SdhSonetClassSheddingInterval",
+ "Final": "OnuPowerShedding_SdhSonetClassSheddingInterval",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Shedding Status",
+ "CamelCase": "SheddingStatus",
+ "Final": "OnuPowerShedding_SheddingStatus",
+ "Index": 11
+ }
+ }
+ },
+ "134": {
+ "Name": "IP host config data",
+ "Filename": "iphostconfigdata.go",
+ "CamelCase": "IpHostConfigData",
+ "ClassID": 134,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Ip Options",
+ "CamelCase": "IpOptions",
+ "Final": "IpHostConfigData_IpOptions",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Mac Address",
+ "CamelCase": "MacAddress",
+ "Final": "IpHostConfigData_MacAddress",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Onu Identifier",
+ "CamelCase": "OnuIdentifier",
+ "Final": "IpHostConfigData_OnuIdentifier",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Ip Address",
+ "CamelCase": "IpAddress",
+ "Final": "IpHostConfigData_IpAddress",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Mask",
+ "CamelCase": "Mask",
+ "Final": "IpHostConfigData_Mask",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Gateway",
+ "CamelCase": "Gateway",
+ "Final": "IpHostConfigData_Gateway",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Primary Dns",
+ "CamelCase": "PrimaryDns",
+ "Final": "IpHostConfigData_PrimaryDns",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Secondary Dns",
+ "CamelCase": "SecondaryDns",
+ "Final": "IpHostConfigData_SecondaryDns",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Current Address",
+ "CamelCase": "CurrentAddress",
+ "Final": "IpHostConfigData_CurrentAddress",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Current Mask",
+ "CamelCase": "CurrentMask",
+ "Final": "IpHostConfigData_CurrentMask",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Current Gateway",
+ "CamelCase": "CurrentGateway",
+ "Final": "IpHostConfigData_CurrentGateway",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Current Primary Dns",
+ "CamelCase": "CurrentPrimaryDns",
+ "Final": "IpHostConfigData_CurrentPrimaryDns",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Current Secondary Dns",
+ "CamelCase": "CurrentSecondaryDns",
+ "Final": "IpHostConfigData_CurrentSecondaryDns",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Domain Name",
+ "CamelCase": "DomainName",
+ "Final": "IpHostConfigData_DomainName",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Host Name",
+ "CamelCase": "HostName",
+ "Final": "IpHostConfigData_HostName",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Relay Agent Options",
+ "CamelCase": "RelayAgentOptions",
+ "Final": "IpHostConfigData_RelayAgentOptions",
+ "Index": 16
+ }
+ }
+ },
+ "135": {
+ "Name": "IP host performance monitoring history data",
+ "Filename": "iphostperformancemonitoringhistorydata.go",
+ "CamelCase": "IpHostPerformanceMonitoringHistoryData",
+ "ClassID": 135,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "IpHostPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "IpHostPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Icmp Errors",
+ "CamelCase": "IcmpErrors",
+ "Final": "IpHostPerformanceMonitoringHistoryData_IcmpErrors",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Dns Errors",
+ "CamelCase": "DnsErrors",
+ "Final": "IpHostPerformanceMonitoringHistoryData_DnsErrors",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Dhcp Timeouts",
+ "CamelCase": "DhcpTimeouts",
+ "Final": "IpHostPerformanceMonitoringHistoryData_DhcpTimeouts",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Ip Address Conflict",
+ "CamelCase": "IpAddressConflict",
+ "Final": "IpHostPerformanceMonitoringHistoryData_IpAddressConflict",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Out Of Memory",
+ "CamelCase": "OutOfMemory",
+ "Final": "IpHostPerformanceMonitoringHistoryData_OutOfMemory",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Internal Error",
+ "CamelCase": "InternalError",
+ "Final": "IpHostPerformanceMonitoringHistoryData_InternalError",
+ "Index": 8
+ }
+ }
+ },
+ "136": {
+ "Name": "TCP/UDP config data",
+ "Filename": "tcpudpconfigdata.go",
+ "CamelCase": "TcpUdpConfigData",
+ "ClassID": 136,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Port Id",
+ "CamelCase": "PortId",
+ "Final": "TcpUdpConfigData_PortId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Protocol",
+ "CamelCase": "Protocol",
+ "Final": "TcpUdpConfigData_Protocol",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Tos_Diffserv Field",
+ "CamelCase": "TosDiffservField",
+ "Final": "TcpUdpConfigData_TosDiffservField",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Ip Host Pointer",
+ "CamelCase": "IpHostPointer",
+ "Final": "TcpUdpConfigData_IpHostPointer",
+ "Index": 4
+ }
+ }
+ },
+ "137": {
+ "Name": "Network address",
+ "Filename": "networkaddress.go",
+ "CamelCase": "NetworkAddress",
+ "ClassID": 137,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Security Pointer",
+ "CamelCase": "SecurityPointer",
+ "Final": "NetworkAddress_SecurityPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Address Pointer",
+ "CamelCase": "AddressPointer",
+ "Final": "NetworkAddress_AddressPointer",
+ "Index": 2
+ }
+ }
+ },
+ "138": {
+ "Name": "VoIP config data",
+ "Filename": "voipconfigdata.go",
+ "CamelCase": "VoipConfigData",
+ "ClassID": 138,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Available Signalling Protocols",
+ "CamelCase": "AvailableSignallingProtocols",
+ "Final": "VoipConfigData_AvailableSignallingProtocols",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Signalling Protocol Used",
+ "CamelCase": "SignallingProtocolUsed",
+ "Final": "VoipConfigData_SignallingProtocolUsed",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Available Voip Configuration Methods",
+ "CamelCase": "AvailableVoipConfigurationMethods",
+ "Final": "VoipConfigData_AvailableVoipConfigurationMethods",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Voip Configuration Method Used",
+ "CamelCase": "VoipConfigurationMethodUsed",
+ "Final": "VoipConfigData_VoipConfigurationMethodUsed",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Voip Configuration Address Pointer",
+ "CamelCase": "VoipConfigurationAddressPointer",
+ "Final": "VoipConfigData_VoipConfigurationAddressPointer",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Voip Configuration State",
+ "CamelCase": "VoipConfigurationState",
+ "Final": "VoipConfigData_VoipConfigurationState",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Retrieve Profile",
+ "CamelCase": "RetrieveProfile",
+ "Final": "VoipConfigData_RetrieveProfile",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Profile Version",
+ "CamelCase": "ProfileVersion",
+ "Final": "VoipConfigData_ProfileVersion",
+ "Index": 8
+ }
+ }
+ },
+ "139": {
+ "Name": "VoIP voice CTP",
+ "Filename": "voipvoicectp.go",
+ "CamelCase": "VoipVoiceCtp",
+ "ClassID": 139,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "User Protocol Pointer",
+ "CamelCase": "UserProtocolPointer",
+ "Final": "VoipVoiceCtp_UserProtocolPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Pptp Pointer",
+ "CamelCase": "PptpPointer",
+ "Final": "VoipVoiceCtp_PptpPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "V O Ip Media Profile Pointer",
+ "CamelCase": "VOIpMediaProfilePointer",
+ "Final": "VoipVoiceCtp_VOIpMediaProfilePointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Signalling Code",
+ "CamelCase": "SignallingCode",
+ "Final": "VoipVoiceCtp_SignallingCode",
+ "Index": 4
+ }
+ }
+ },
+ "140": {
+ "Name": "Call control performance monitoring history data",
+ "Filename": "callcontrolperformancemonitoringhistorydata.go",
+ "CamelCase": "CallControlPerformanceMonitoringHistoryData",
+ "ClassID": 140,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "CallControlPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "CallControlPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Call Setup Failures",
+ "CamelCase": "CallSetupFailures",
+ "Final": "CallControlPerformanceMonitoringHistoryData_CallSetupFailures",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Call Setup Timer",
+ "CamelCase": "CallSetupTimer",
+ "Final": "CallControlPerformanceMonitoringHistoryData_CallSetupTimer",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Call Terminate Failures",
+ "CamelCase": "CallTerminateFailures",
+ "Final": "CallControlPerformanceMonitoringHistoryData_CallTerminateFailures",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Analog Port Releases",
+ "CamelCase": "AnalogPortReleases",
+ "Final": "CallControlPerformanceMonitoringHistoryData_AnalogPortReleases",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Analog Port Off_Hook Timer",
+ "CamelCase": "AnalogPortOffHookTimer",
+ "Final": "CallControlPerformanceMonitoringHistoryData_AnalogPortOffHookTimer",
+ "Index": 7
+ }
+ }
+ },
+ "141": {
+ "Name": "VoIP line status",
+ "Filename": "voiplinestatus.go",
+ "CamelCase": "VoipLineStatus",
+ "ClassID": 141,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Voip Codec Used",
+ "CamelCase": "VoipCodecUsed",
+ "Final": "VoipLineStatus_VoipCodecUsed",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Voip Voice Server Status",
+ "CamelCase": "VoipVoiceServerStatus",
+ "Final": "VoipLineStatus_VoipVoiceServerStatus",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Voip Port Session Type",
+ "CamelCase": "VoipPortSessionType",
+ "Final": "VoipLineStatus_VoipPortSessionType",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Voip Call 1 Packet Period",
+ "CamelCase": "VoipCall1PacketPeriod",
+ "Final": "VoipLineStatus_VoipCall1PacketPeriod",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Voip Call 2 Packet Period",
+ "CamelCase": "VoipCall2PacketPeriod",
+ "Final": "VoipLineStatus_VoipCall2PacketPeriod",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Voip Call 1 Dest Addr",
+ "CamelCase": "VoipCall1DestAddr",
+ "Final": "VoipLineStatus_VoipCall1DestAddr",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Voip Call 2 Dest Addr",
+ "CamelCase": "VoipCall2DestAddr",
+ "Final": "VoipLineStatus_VoipCall2DestAddr",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Voip Line State",
+ "CamelCase": "VoipLineState",
+ "Final": "VoipLineStatus_VoipLineState",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Emergency Call Status",
+ "CamelCase": "EmergencyCallStatus",
+ "Final": "VoipLineStatus_EmergencyCallStatus",
+ "Index": 9
+ }
+ }
+ },
+ "142": {
+ "Name": "VoIP media profile",
+ "Filename": "voipmediaprofile.go",
+ "CamelCase": "VoipMediaProfile",
+ "ClassID": 142,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Fax Mode",
+ "CamelCase": "FaxMode",
+ "Final": "VoipMediaProfile_FaxMode",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Voice Service Profile Pointer",
+ "CamelCase": "VoiceServiceProfilePointer",
+ "Final": "VoipMediaProfile_VoiceServiceProfilePointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Codec Selection 1st Order",
+ "CamelCase": "CodecSelection1StOrder",
+ "Final": "VoipMediaProfile_CodecSelection1StOrder",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Packet Period Selection 1st Order",
+ "CamelCase": "PacketPeriodSelection1StOrder",
+ "Final": "VoipMediaProfile_PacketPeriodSelection1StOrder",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Silence Suppression 1st Order",
+ "CamelCase": "SilenceSuppression1StOrder",
+ "Final": "VoipMediaProfile_SilenceSuppression1StOrder",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Codec Selection 2nd Order",
+ "CamelCase": "CodecSelection2NdOrder",
+ "Final": "VoipMediaProfile_CodecSelection2NdOrder",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Packet Period Selection 2nd Order",
+ "CamelCase": "PacketPeriodSelection2NdOrder",
+ "Final": "VoipMediaProfile_PacketPeriodSelection2NdOrder",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Silence Suppression 2nd Order",
+ "CamelCase": "SilenceSuppression2NdOrder",
+ "Final": "VoipMediaProfile_SilenceSuppression2NdOrder",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Codec Selection 3rd Order",
+ "CamelCase": "CodecSelection3RdOrder",
+ "Final": "VoipMediaProfile_CodecSelection3RdOrder",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Packet Period Selection 3rd Order",
+ "CamelCase": "PacketPeriodSelection3RdOrder",
+ "Final": "VoipMediaProfile_PacketPeriodSelection3RdOrder",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Silence Suppression 3rd Order",
+ "CamelCase": "SilenceSuppression3RdOrder",
+ "Final": "VoipMediaProfile_SilenceSuppression3RdOrder",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Codec Selection 4th Order",
+ "CamelCase": "CodecSelection4ThOrder",
+ "Final": "VoipMediaProfile_CodecSelection4ThOrder",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Packet Period Selection 4th Order",
+ "CamelCase": "PacketPeriodSelection4ThOrder",
+ "Final": "VoipMediaProfile_PacketPeriodSelection4ThOrder",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Silence Suppression 4th Order",
+ "CamelCase": "SilenceSuppression4ThOrder",
+ "Final": "VoipMediaProfile_SilenceSuppression4ThOrder",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Oob Dtmf",
+ "CamelCase": "OobDtmf",
+ "Final": "VoipMediaProfile_OobDtmf",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Rtp Profile Pointer",
+ "CamelCase": "RtpProfilePointer",
+ "Final": "VoipMediaProfile_RtpProfilePointer",
+ "Index": 16
+ }
+ }
+ },
+ "143": {
+ "Name": "RTP profile data",
+ "Filename": "rtpprofiledata.go",
+ "CamelCase": "RtpProfileData",
+ "ClassID": 143,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Local Port Min",
+ "CamelCase": "LocalPortMin",
+ "Final": "RtpProfileData_LocalPortMin",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Local Port Max",
+ "CamelCase": "LocalPortMax",
+ "Final": "RtpProfileData_LocalPortMax",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Dscp Mark",
+ "CamelCase": "DscpMark",
+ "Final": "RtpProfileData_DscpMark",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Piggyback Events",
+ "CamelCase": "PiggybackEvents",
+ "Final": "RtpProfileData_PiggybackEvents",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Tone Events",
+ "CamelCase": "ToneEvents",
+ "Final": "RtpProfileData_ToneEvents",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Dtmf Events",
+ "CamelCase": "DtmfEvents",
+ "Final": "RtpProfileData_DtmfEvents",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Cas Events",
+ "CamelCase": "CasEvents",
+ "Final": "RtpProfileData_CasEvents",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Ip Host Config Pointer",
+ "CamelCase": "IpHostConfigPointer",
+ "Final": "RtpProfileData_IpHostConfigPointer",
+ "Index": 8
+ }
+ }
+ },
+ "144": {
+ "Name": "RTP performance monitoring history data",
+ "Filename": "rtpperformancemonitoringhistorydata.go",
+ "CamelCase": "RtpPerformanceMonitoringHistoryData",
+ "ClassID": 144,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "RtpPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "RtpPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Rtp Errors",
+ "CamelCase": "RtpErrors",
+ "Final": "RtpPerformanceMonitoringHistoryData_RtpErrors",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Packet Loss",
+ "CamelCase": "PacketLoss",
+ "Final": "RtpPerformanceMonitoringHistoryData_PacketLoss",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Maximum Jitter",
+ "CamelCase": "MaximumJitter",
+ "Final": "RtpPerformanceMonitoringHistoryData_MaximumJitter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Maximum Time Between Real_Time Transport Control Protocol Rtcp Packets",
+ "CamelCase": "MaximumTimeBetweenRealTimeTransportControlProtocolRtcpPackets",
+ "Final": "RtpPerformanceMonitoringHistoryData_MaximumTimeBetweenRealTimeTransportControlProtocolRtcpPackets",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Buffer Underflows",
+ "CamelCase": "BufferUnderflows",
+ "Final": "RtpPerformanceMonitoringHistoryData_BufferUnderflows",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Buffer Overflows",
+ "CamelCase": "BufferOverflows",
+ "Final": "RtpPerformanceMonitoringHistoryData_BufferOverflows",
+ "Index": 8
+ }
+ }
+ },
+ "145": {
+ "Name": "Network dial plan table",
+ "Filename": "networkdialplantable.go",
+ "CamelCase": "NetworkDialPlanTable",
+ "ClassID": 145,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Dial Plan Number",
+ "CamelCase": "DialPlanNumber",
+ "Final": "NetworkDialPlanTable_DialPlanNumber",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Dial Plan Table Max Size",
+ "CamelCase": "DialPlanTableMaxSize",
+ "Final": "NetworkDialPlanTable_DialPlanTableMaxSize",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Critical Dial Timeout",
+ "CamelCase": "CriticalDialTimeout",
+ "Final": "NetworkDialPlanTable_CriticalDialTimeout",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Partial Dial Timeout",
+ "CamelCase": "PartialDialTimeout",
+ "Final": "NetworkDialPlanTable_PartialDialTimeout",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Dial Plan Format",
+ "CamelCase": "DialPlanFormat",
+ "Final": "NetworkDialPlanTable_DialPlanFormat",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Dial Plan Table",
+ "CamelCase": "DialPlanTable",
+ "Final": "NetworkDialPlanTable_DialPlanTable",
+ "Index": 6
+ }
+ }
+ },
+ "146": {
+ "Name": "VoIP application service profile",
+ "Filename": "voipapplicationserviceprofile.go",
+ "CamelCase": "VoipApplicationServiceProfile",
+ "ClassID": 146,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Cid Features",
+ "CamelCase": "CidFeatures",
+ "Final": "VoipApplicationServiceProfile_CidFeatures",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Call Waiting Features",
+ "CamelCase": "CallWaitingFeatures",
+ "Final": "VoipApplicationServiceProfile_CallWaitingFeatures",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Call Progress Or Transfer Features",
+ "CamelCase": "CallProgressOrTransferFeatures",
+ "Final": "VoipApplicationServiceProfile_CallProgressOrTransferFeatures",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Call Presentation Features",
+ "CamelCase": "CallPresentationFeatures",
+ "Final": "VoipApplicationServiceProfile_CallPresentationFeatures",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Direct Connect Feature",
+ "CamelCase": "DirectConnectFeature",
+ "Final": "VoipApplicationServiceProfile_DirectConnectFeature",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Direct Connect Uri Pointer",
+ "CamelCase": "DirectConnectUriPointer",
+ "Final": "VoipApplicationServiceProfile_DirectConnectUriPointer",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Bridged Line Agent Uri Pointer",
+ "CamelCase": "BridgedLineAgentUriPointer",
+ "Final": "VoipApplicationServiceProfile_BridgedLineAgentUriPointer",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Conference Factory Uri Pointer",
+ "CamelCase": "ConferenceFactoryUriPointer",
+ "Final": "VoipApplicationServiceProfile_ConferenceFactoryUriPointer",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Dial Tone Feature Delay_Warmline Timer New",
+ "CamelCase": "DialToneFeatureDelayWarmlineTimerNew",
+ "Final": "VoipApplicationServiceProfile_DialToneFeatureDelayWarmlineTimerNew",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Ip Host Pointer",
+ "CamelCase": "IpHostPointer",
+ "Final": "VoipApplicationServiceProfile_IpHostPointer",
+ "Index": 10
+ }
+ }
+ },
+ "147": {
+ "Name": "VoIP feature access codes",
+ "Filename": "voipfeatureaccesscodes.go",
+ "CamelCase": "VoipFeatureAccessCodes",
+ "ClassID": 147,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Cancel Call Waiting",
+ "CamelCase": "CancelCallWaiting",
+ "Final": "VoipFeatureAccessCodes_CancelCallWaiting",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Call Hold",
+ "CamelCase": "CallHold",
+ "Final": "VoipFeatureAccessCodes_CallHold",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Call Park",
+ "CamelCase": "CallPark",
+ "Final": "VoipFeatureAccessCodes_CallPark",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Caller Id Activate",
+ "CamelCase": "CallerIdActivate",
+ "Final": "VoipFeatureAccessCodes_CallerIdActivate",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Caller Id Deactivate",
+ "CamelCase": "CallerIdDeactivate",
+ "Final": "VoipFeatureAccessCodes_CallerIdDeactivate",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Do Not Disturb Activation",
+ "CamelCase": "DoNotDisturbActivation",
+ "Final": "VoipFeatureAccessCodes_DoNotDisturbActivation",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Do Not Disturb Deactivation",
+ "CamelCase": "DoNotDisturbDeactivation",
+ "Final": "VoipFeatureAccessCodes_DoNotDisturbDeactivation",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Do Not Disturb Pin Change",
+ "CamelCase": "DoNotDisturbPinChange",
+ "Final": "VoipFeatureAccessCodes_DoNotDisturbPinChange",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Emergency Service Number",
+ "CamelCase": "EmergencyServiceNumber",
+ "Final": "VoipFeatureAccessCodes_EmergencyServiceNumber",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Intercom Service",
+ "CamelCase": "IntercomService",
+ "Final": "VoipFeatureAccessCodes_IntercomService",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Unattended_Blind Call Transfer",
+ "CamelCase": "UnattendedBlindCallTransfer",
+ "Final": "VoipFeatureAccessCodes_UnattendedBlindCallTransfer",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Attended Call Transfer",
+ "CamelCase": "AttendedCallTransfer",
+ "Final": "VoipFeatureAccessCodes_AttendedCallTransfer",
+ "Index": 12
+ }
+ }
+ },
+ "148": {
+ "Name": "Authentication security method",
+ "Filename": "authenticationsecuritymethod.go",
+ "CamelCase": "AuthenticationSecurityMethod",
+ "ClassID": 148,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Validation Scheme",
+ "CamelCase": "ValidationScheme",
+ "Final": "AuthenticationSecurityMethod_ValidationScheme",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Username 1",
+ "CamelCase": "Username1",
+ "Final": "AuthenticationSecurityMethod_Username1",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Password",
+ "CamelCase": "Password",
+ "Final": "AuthenticationSecurityMethod_Password",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Realm",
+ "CamelCase": "Realm",
+ "Final": "AuthenticationSecurityMethod_Realm",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Username 2",
+ "CamelCase": "Username2",
+ "Final": "AuthenticationSecurityMethod_Username2",
+ "Index": 5
+ }
+ }
+ },
+ "149": {
+ "Name": "SIP config portal",
+ "Filename": "sipconfigportal.go",
+ "CamelCase": "SipConfigPortal",
+ "ClassID": 149,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Configuration Text Table",
+ "CamelCase": "ConfigurationTextTable",
+ "Final": "SipConfigPortal_ConfigurationTextTable",
+ "Index": 1
+ }
+ }
+ },
+ "150": {
+ "Name": "SIP agent config data",
+ "Filename": "sipagentconfigdata.go",
+ "CamelCase": "SipAgentConfigData",
+ "ClassID": 150,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Proxy Server Address Pointer",
+ "CamelCase": "ProxyServerAddressPointer",
+ "Final": "SipAgentConfigData_ProxyServerAddressPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Outbound Proxy Address Pointer",
+ "CamelCase": "OutboundProxyAddressPointer",
+ "Final": "SipAgentConfigData_OutboundProxyAddressPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Primary Sip Dns",
+ "CamelCase": "PrimarySipDns",
+ "Final": "SipAgentConfigData_PrimarySipDns",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Secondary Sip Dns",
+ "CamelCase": "SecondarySipDns",
+ "Final": "SipAgentConfigData_SecondarySipDns",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Tcp_Udp Pointer",
+ "CamelCase": "TcpUdpPointer",
+ "Final": "SipAgentConfigData_TcpUdpPointer",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Sip Reg Exp Time",
+ "CamelCase": "SipRegExpTime",
+ "Final": "SipAgentConfigData_SipRegExpTime",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Sip Rereg Head Start Time",
+ "CamelCase": "SipReregHeadStartTime",
+ "Final": "SipAgentConfigData_SipReregHeadStartTime",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Host Part Uri",
+ "CamelCase": "HostPartUri",
+ "Final": "SipAgentConfigData_HostPartUri",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Sip Status",
+ "CamelCase": "SipStatus",
+ "Final": "SipAgentConfigData_SipStatus",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Sip Registrar",
+ "CamelCase": "SipRegistrar",
+ "Final": "SipAgentConfigData_SipRegistrar",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Softswitch",
+ "CamelCase": "Softswitch",
+ "Final": "SipAgentConfigData_Softswitch",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Sip Response Table",
+ "CamelCase": "SipResponseTable",
+ "Final": "SipAgentConfigData_SipResponseTable",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Sip Option Transmit Control",
+ "CamelCase": "SipOptionTransmitControl",
+ "Final": "SipAgentConfigData_SipOptionTransmitControl",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Sip Uri Format",
+ "CamelCase": "SipUriFormat",
+ "Final": "SipAgentConfigData_SipUriFormat",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Redundant Sip Agent Pointer",
+ "CamelCase": "RedundantSipAgentPointer",
+ "Final": "SipAgentConfigData_RedundantSipAgentPointer",
+ "Index": 15
+ }
+ }
+ },
+ "151": {
+ "Name": "SIP agent performance monitoring history data",
+ "Filename": "sipagentperformancemonitoringhistorydata.go",
+ "CamelCase": "SipAgentPerformanceMonitoringHistoryData",
+ "ClassID": 151,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Transactions",
+ "CamelCase": "Transactions",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_Transactions",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Rx Invite Reqs",
+ "CamelCase": "RxInviteReqs",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_RxInviteReqs",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Rx Invite Retrans",
+ "CamelCase": "RxInviteRetrans",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_RxInviteRetrans",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Rx Noninvite Reqs",
+ "CamelCase": "RxNoninviteReqs",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_RxNoninviteReqs",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Rx Noninvite Retrans",
+ "CamelCase": "RxNoninviteRetrans",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_RxNoninviteRetrans",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Rx Response",
+ "CamelCase": "RxResponse",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_RxResponse",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Rx Response Retransmissions",
+ "CamelCase": "RxResponseRetransmissions",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_RxResponseRetransmissions",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Tx Invite Reqs",
+ "CamelCase": "TxInviteReqs",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_TxInviteReqs",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Tx Invite Retrans",
+ "CamelCase": "TxInviteRetrans",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_TxInviteRetrans",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Tx Noninvite Reqs",
+ "CamelCase": "TxNoninviteReqs",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_TxNoninviteReqs",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Tx Noninvite Retrans",
+ "CamelCase": "TxNoninviteRetrans",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_TxNoninviteRetrans",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Tx Response",
+ "CamelCase": "TxResponse",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_TxResponse",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Tx Response Retransmissions",
+ "CamelCase": "TxResponseRetransmissions",
+ "Final": "SipAgentPerformanceMonitoringHistoryData_TxResponseRetransmissions",
+ "Index": 15
+ }
+ }
+ },
+ "152": {
+ "Name": "SIP call initiation performance monitoring history data",
+ "Filename": "sipcallinitiationperformancemonitoringhistorydata.go",
+ "CamelCase": "SipCallInitiationPerformanceMonitoringHistoryData",
+ "ClassID": 152,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Failed To Connect Counter",
+ "CamelCase": "FailedToConnectCounter",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_FailedToConnectCounter",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Failed To Validate Counter",
+ "CamelCase": "FailedToValidateCounter",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_FailedToValidateCounter",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Timeout Counter",
+ "CamelCase": "TimeoutCounter",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_TimeoutCounter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Failure Received Counter",
+ "CamelCase": "FailureReceivedCounter",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_FailureReceivedCounter",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Failed To Authenticate Counter",
+ "CamelCase": "FailedToAuthenticateCounter",
+ "Final": "SipCallInitiationPerformanceMonitoringHistoryData_FailedToAuthenticateCounter",
+ "Index": 7
+ }
+ }
+ },
+ "153": {
+ "Name": "SIP user data",
+ "Filename": "sipuserdata.go",
+ "CamelCase": "SipUserData",
+ "ClassID": 153,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Sip Agent Pointer",
+ "CamelCase": "SipAgentPointer",
+ "Final": "SipUserData_SipAgentPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "User Part Aor",
+ "CamelCase": "UserPartAor",
+ "Final": "SipUserData_UserPartAor",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Sip Display Name",
+ "CamelCase": "SipDisplayName",
+ "Final": "SipUserData_SipDisplayName",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Username And Password",
+ "CamelCase": "UsernameAndPassword",
+ "Final": "SipUserData_UsernameAndPassword",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Voicemail Server Sip Uri",
+ "CamelCase": "VoicemailServerSipUri",
+ "Final": "SipUserData_VoicemailServerSipUri",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Voicemail Subscription Expiration Time",
+ "CamelCase": "VoicemailSubscriptionExpirationTime",
+ "Final": "SipUserData_VoicemailSubscriptionExpirationTime",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Network Dial Plan Pointer",
+ "CamelCase": "NetworkDialPlanPointer",
+ "Final": "SipUserData_NetworkDialPlanPointer",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Application Services Profile Pointer",
+ "CamelCase": "ApplicationServicesProfilePointer",
+ "Final": "SipUserData_ApplicationServicesProfilePointer",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Feature Code Pointer",
+ "CamelCase": "FeatureCodePointer",
+ "Final": "SipUserData_FeatureCodePointer",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Pptp Pointer",
+ "CamelCase": "PptpPointer",
+ "Final": "SipUserData_PptpPointer",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Release Timer",
+ "CamelCase": "ReleaseTimer",
+ "Final": "SipUserData_ReleaseTimer",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Receiver Off Hook Roh Timer",
+ "CamelCase": "ReceiverOffHookRohTimer",
+ "Final": "SipUserData_ReceiverOffHookRohTimer",
+ "Index": 12
+ }
+ }
+ },
+ "154": {
+ "Name": "MGC config portal",
+ "Filename": "mgcconfigportal.go",
+ "CamelCase": "MgcConfigPortal",
+ "ClassID": 154,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Configuration Text Table",
+ "CamelCase": "ConfigurationTextTable",
+ "Final": "MgcConfigPortal_ConfigurationTextTable",
+ "Index": 1
+ }
+ }
+ },
+ "155": {
+ "Name": "MGC config data",
+ "Filename": "mgcconfigdata.go",
+ "CamelCase": "MgcConfigData",
+ "ClassID": 155,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Primary Mgc",
+ "CamelCase": "PrimaryMgc",
+ "Final": "MgcConfigData_PrimaryMgc",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Secondary Mgc",
+ "CamelCase": "SecondaryMgc",
+ "Final": "MgcConfigData_SecondaryMgc",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Tcp_Udp Pointer",
+ "CamelCase": "TcpUdpPointer",
+ "Final": "MgcConfigData_TcpUdpPointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Version",
+ "CamelCase": "Version",
+ "Final": "MgcConfigData_Version",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Message Format",
+ "CamelCase": "MessageFormat",
+ "Final": "MgcConfigData_MessageFormat",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Maximum Retry Time",
+ "CamelCase": "MaximumRetryTime",
+ "Final": "MgcConfigData_MaximumRetryTime",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Maximum Retry Attempts",
+ "CamelCase": "MaximumRetryAttempts",
+ "Final": "MgcConfigData_MaximumRetryAttempts",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Service Change Delay",
+ "CamelCase": "ServiceChangeDelay",
+ "Final": "MgcConfigData_ServiceChangeDelay",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Termination Id Base",
+ "CamelCase": "TerminationIdBase",
+ "Final": "MgcConfigData_TerminationIdBase",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Softswitch",
+ "CamelCase": "Softswitch",
+ "Final": "MgcConfigData_Softswitch",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Message Id Pointer",
+ "CamelCase": "MessageIdPointer",
+ "Final": "MgcConfigData_MessageIdPointer",
+ "Index": 11
+ }
+ }
+ },
+ "156": {
+ "Name": "MGC performance monitoring history data",
+ "Filename": "mgcperformancemonitoringhistorydata.go",
+ "CamelCase": "MgcPerformanceMonitoringHistoryData",
+ "ClassID": 156,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "MgcPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "MgcPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Received Messages",
+ "CamelCase": "ReceivedMessages",
+ "Final": "MgcPerformanceMonitoringHistoryData_ReceivedMessages",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Received Octets",
+ "CamelCase": "ReceivedOctets",
+ "Final": "MgcPerformanceMonitoringHistoryData_ReceivedOctets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Sent Messages",
+ "CamelCase": "SentMessages",
+ "Final": "MgcPerformanceMonitoringHistoryData_SentMessages",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Sent Octets",
+ "CamelCase": "SentOctets",
+ "Final": "MgcPerformanceMonitoringHistoryData_SentOctets",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Protocol Errors",
+ "CamelCase": "ProtocolErrors",
+ "Final": "MgcPerformanceMonitoringHistoryData_ProtocolErrors",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Transport Losses",
+ "CamelCase": "TransportLosses",
+ "Final": "MgcPerformanceMonitoringHistoryData_TransportLosses",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Last Detected Event",
+ "CamelCase": "LastDetectedEvent",
+ "Final": "MgcPerformanceMonitoringHistoryData_LastDetectedEvent",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Last Detected Event Time",
+ "CamelCase": "LastDetectedEventTime",
+ "Final": "MgcPerformanceMonitoringHistoryData_LastDetectedEventTime",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Last Detected Reset Time",
+ "CamelCase": "LastDetectedResetTime",
+ "Final": "MgcPerformanceMonitoringHistoryData_LastDetectedResetTime",
+ "Index": 11
+ }
+ }
+ },
+ "157": {
+ "Name": "Large string",
+ "Filename": "largestring.go",
+ "CamelCase": "LargeString",
+ "ClassID": 157,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Number Of Parts",
+ "CamelCase": "NumberOfParts",
+ "Final": "LargeString_NumberOfParts",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Part 1",
+ "CamelCase": "Part1",
+ "Final": "LargeString_Part1",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Part 2",
+ "CamelCase": "Part2",
+ "Final": "LargeString_Part2",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Part 3",
+ "CamelCase": "Part3",
+ "Final": "LargeString_Part3",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Part 4",
+ "CamelCase": "Part4",
+ "Final": "LargeString_Part4",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Part 5",
+ "CamelCase": "Part5",
+ "Final": "LargeString_Part5",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Part 6",
+ "CamelCase": "Part6",
+ "Final": "LargeString_Part6",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Part 7",
+ "CamelCase": "Part7",
+ "Final": "LargeString_Part7",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Part 8",
+ "CamelCase": "Part8",
+ "Final": "LargeString_Part8",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Part 9",
+ "CamelCase": "Part9",
+ "Final": "LargeString_Part9",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Part 10",
+ "CamelCase": "Part10",
+ "Final": "LargeString_Part10",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Part 11",
+ "CamelCase": "Part11",
+ "Final": "LargeString_Part11",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Part 12",
+ "CamelCase": "Part12",
+ "Final": "LargeString_Part12",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Part 13",
+ "CamelCase": "Part13",
+ "Final": "LargeString_Part13",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Part 14",
+ "CamelCase": "Part14",
+ "Final": "LargeString_Part14",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Part 15",
+ "CamelCase": "Part15",
+ "Final": "LargeString_Part15",
+ "Index": 16
+ }
+ }
+ },
+ "158": {
+ "Name": "ONU remote debug",
+ "Filename": "onuremotedebug.go",
+ "CamelCase": "OnuRemoteDebug",
+ "ClassID": 158,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Command Format",
+ "CamelCase": "CommandFormat",
+ "Final": "OnuRemoteDebug_CommandFormat",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Command",
+ "CamelCase": "Command",
+ "Final": "OnuRemoteDebug_Command",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Reply Table",
+ "CamelCase": "ReplyTable",
+ "Final": "OnuRemoteDebug_ReplyTable",
+ "Index": 3
+ }
+ }
+ },
+ "160": {
+ "Name": "Equipment extension package",
+ "Filename": "equipmentextensionpackage.go",
+ "CamelCase": "EquipmentExtensionPackage",
+ "ClassID": 160,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Environmental Sense",
+ "CamelCase": "EnvironmentalSense",
+ "Final": "EquipmentExtensionPackage_EnvironmentalSense",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Contact Closure Output",
+ "CamelCase": "ContactClosureOutput",
+ "Final": "EquipmentExtensionPackage_ContactClosureOutput",
+ "Index": 2
+ }
+ }
+ },
+ "162": {
+ "Name": "Physical path termination point MoCA UNI",
+ "Filename": "physicalpathterminationpointmocauni.go",
+ "CamelCase": "PhysicalPathTerminationPointMocaUni",
+ "ClassID": 162,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Loopback Configuration",
+ "CamelCase": "LoopbackConfiguration",
+ "Final": "PhysicalPathTerminationPointMocaUni_LoopbackConfiguration",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointMocaUni_AdministrativeState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointMocaUni_OperationalState",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Max Frame Size",
+ "CamelCase": "MaxFrameSize",
+ "Final": "PhysicalPathTerminationPointMocaUni_MaxFrameSize",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointMocaUni_Arc",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointMocaUni_ArcInterval",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Pppoe Filter",
+ "CamelCase": "PppoeFilter",
+ "Final": "PhysicalPathTerminationPointMocaUni_PppoeFilter",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Network Status",
+ "CamelCase": "NetworkStatus",
+ "Final": "PhysicalPathTerminationPointMocaUni_NetworkStatus",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Password",
+ "CamelCase": "Password",
+ "Final": "PhysicalPathTerminationPointMocaUni_Password",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Privacy Enabled",
+ "CamelCase": "PrivacyEnabled",
+ "Final": "PhysicalPathTerminationPointMocaUni_PrivacyEnabled",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Minimum Bandwidth Alarm Threshold",
+ "CamelCase": "MinimumBandwidthAlarmThreshold",
+ "Final": "PhysicalPathTerminationPointMocaUni_MinimumBandwidthAlarmThreshold",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Frequency Mask",
+ "CamelCase": "FrequencyMask",
+ "Final": "PhysicalPathTerminationPointMocaUni_FrequencyMask",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Rf Channel",
+ "CamelCase": "RfChannel",
+ "Final": "PhysicalPathTerminationPointMocaUni_RfChannel",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Last Operational Frequency",
+ "CamelCase": "LastOperationalFrequency",
+ "Final": "PhysicalPathTerminationPointMocaUni_LastOperationalFrequency",
+ "Index": 14
+ }
+ }
+ },
+ "163": {
+ "Name": "MoCA Ethernet performance monitoring history data",
+ "Filename": "mocaethernetperformancemonitoringhistorydata.go",
+ "CamelCase": "MocaEthernetPerformanceMonitoringHistoryData",
+ "ClassID": 163,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Incoming Unicast Packets",
+ "CamelCase": "IncomingUnicastPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingUnicastPackets",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Incoming Discarded Packets",
+ "CamelCase": "IncomingDiscardedPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingDiscardedPackets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Incoming Errored Packets",
+ "CamelCase": "IncomingErroredPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingErroredPackets",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Incoming Unknown Packets",
+ "CamelCase": "IncomingUnknownPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingUnknownPackets",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Incoming Multicast Packets",
+ "CamelCase": "IncomingMulticastPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingMulticastPackets",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Incoming Broadcast Packets",
+ "CamelCase": "IncomingBroadcastPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingBroadcastPackets",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Incoming Octets",
+ "CamelCase": "IncomingOctets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_IncomingOctets",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Outgoing Unicast Packets",
+ "CamelCase": "OutgoingUnicastPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingUnicastPackets",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Outgoing Discarded Packets",
+ "CamelCase": "OutgoingDiscardedPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingDiscardedPackets",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Outgoing Errored Packets",
+ "CamelCase": "OutgoingErroredPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingErroredPackets",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Outgoing Unknown Packets",
+ "CamelCase": "OutgoingUnknownPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingUnknownPackets",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Outgoing Multicast Packets",
+ "CamelCase": "OutgoingMulticastPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingMulticastPackets",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Outgoing Broadcast Packets",
+ "CamelCase": "OutgoingBroadcastPackets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingBroadcastPackets",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Outgoing Octets",
+ "CamelCase": "OutgoingOctets",
+ "Final": "MocaEthernetPerformanceMonitoringHistoryData_OutgoingOctets",
+ "Index": 16
+ }
+ }
+ },
+ "164": {
+ "Name": "MoCA interface performance monitoring history data",
+ "Filename": "mocainterfaceperformancemonitoringhistorydata.go",
+ "CamelCase": "MocaInterfacePerformanceMonitoringHistoryData",
+ "ClassID": 164,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "MocaInterfacePerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "MocaInterfacePerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Phy T X Broadcast Rate",
+ "CamelCase": "PhyTXBroadcastRate",
+ "Final": "MocaInterfacePerformanceMonitoringHistoryData_PhyTXBroadcastRate",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Node Table",
+ "CamelCase": "NodeTable",
+ "Final": "MocaInterfacePerformanceMonitoringHistoryData_NodeTable",
+ "Index": 4
+ }
+ }
+ },
+ "165": {
+ "Name": "VDSL2 line configuration extensions",
+ "Filename": "vdsl2lineconfigurationextensions.go",
+ "CamelCase": "Vdsl2LineConfigurationExtensions",
+ "ClassID": 165,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vdsl2 Profiles Enabling",
+ "CamelCase": "Vdsl2ProfilesEnabling",
+ "Final": "Vdsl2LineConfigurationExtensions_Vdsl2ProfilesEnabling",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Vdsl2 Psd Mask Class Selection Classmask",
+ "CamelCase": "Vdsl2PsdMaskClassSelectionClassmask",
+ "Final": "Vdsl2LineConfigurationExtensions_Vdsl2PsdMaskClassSelectionClassmask",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Vdsl2 Limit Psd Masks",
+ "CamelCase": "Vdsl2LimitPsdMasks",
+ "Final": "Vdsl2LineConfigurationExtensions_Vdsl2LimitPsdMasks",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Vdsl2 Us0 Disabling",
+ "CamelCase": "Vdsl2Us0Disabling",
+ "Final": "Vdsl2LineConfigurationExtensions_Vdsl2Us0Disabling",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Vdsl2 Us0 Psd Masks",
+ "CamelCase": "Vdsl2Us0PsdMasks",
+ "Final": "Vdsl2LineConfigurationExtensions_Vdsl2Us0PsdMasks",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Vdsl2_Carmask Table",
+ "CamelCase": "Vdsl2CarmaskTable",
+ "Final": "Vdsl2LineConfigurationExtensions_Vdsl2CarmaskTable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Carmask Valid",
+ "CamelCase": "CarmaskValid",
+ "Final": "Vdsl2LineConfigurationExtensions_CarmaskValid",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Upboshaped",
+ "CamelCase": "Upboshaped",
+ "Final": "Vdsl2LineConfigurationExtensions_Upboshaped",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Cyclic Extension",
+ "CamelCase": "CyclicExtension",
+ "Final": "Vdsl2LineConfigurationExtensions_CyclicExtension",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Downstream Signal_To_Noise Ratio Snr Mode",
+ "CamelCase": "DownstreamSignalToNoiseRatioSnrMode",
+ "Final": "Vdsl2LineConfigurationExtensions_DownstreamSignalToNoiseRatioSnrMode",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Upstream Snr Mode",
+ "CamelCase": "UpstreamSnrMode",
+ "Final": "Vdsl2LineConfigurationExtensions_UpstreamSnrMode",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Transmitter Referred Virtual Noise Downstream Table",
+ "CamelCase": "TransmitterReferredVirtualNoiseDownstreamTable",
+ "Final": "Vdsl2LineConfigurationExtensions_TransmitterReferredVirtualNoiseDownstreamTable",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Transmitter Referred Virtual Noise Upstream Table",
+ "CamelCase": "TransmitterReferredVirtualNoiseUpstreamTable",
+ "Final": "Vdsl2LineConfigurationExtensions_TransmitterReferredVirtualNoiseUpstreamTable",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Dpboshaped",
+ "CamelCase": "Dpboshaped",
+ "Final": "Vdsl2LineConfigurationExtensions_Dpboshaped",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Upboklref_Pb",
+ "CamelCase": "UpboklrefPb",
+ "Final": "Vdsl2LineConfigurationExtensions_UpboklrefPb",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Upboshaped Aele_Mode Upboelmt",
+ "CamelCase": "UpboshapedAeleModeUpboelmt",
+ "Final": "Vdsl2LineConfigurationExtensions_UpboshapedAeleModeUpboelmt",
+ "Index": 16
+ }
+ }
+ },
+ "168": {
+ "Name": "VDSL2 line inventory and status data part 1",
+ "Filename": "vdsl2lineinventoryandstatusdatapart1.go",
+ "CamelCase": "Vdsl2LineInventoryAndStatusDataPart1",
+ "ClassID": 168,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vdsl2 Transmission System Capability Xtu C",
+ "CamelCase": "Vdsl2TransmissionSystemCapabilityXtuC",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Vdsl2TransmissionSystemCapabilityXtuC",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Vdsl2 Transmission System",
+ "CamelCase": "Vdsl2TransmissionSystem",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Vdsl2TransmissionSystem",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Vdsl2 Profile",
+ "CamelCase": "Vdsl2Profile",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Vdsl2Profile",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Vdsl2 Limit Psd Mask And Bandplan",
+ "CamelCase": "Vdsl2LimitPsdMaskAndBandplan",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Vdsl2LimitPsdMaskAndBandplan",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Vdsl2 Us0 Psd Mask",
+ "CamelCase": "Vdsl2Us0PsdMask",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Vdsl2Us0PsdMask",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Actsnrmodeds",
+ "CamelCase": "Actsnrmodeds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Actsnrmodeds",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Hlingds",
+ "CamelCase": "Hlingds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Hlingds",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Hloggds",
+ "CamelCase": "Hloggds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Hloggds",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Qlngds",
+ "CamelCase": "Qlngds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Qlngds",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Snrgds",
+ "CamelCase": "Snrgds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Snrgds",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Mrefpsdds Table",
+ "CamelCase": "MrefpsddsTable",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_MrefpsddsTable",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Trellisds",
+ "CamelCase": "Trellisds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_Trellisds",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Actual Rate Adaptation Mode Downstream",
+ "CamelCase": "ActualRateAdaptationModeDownstream",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_ActualRateAdaptationModeDownstream",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Actual Impulse Noise Protection Robust Operations Channel Roc Downstream",
+ "CamelCase": "ActualImpulseNoiseProtectionRobustOperationsChannelRocDownstream",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_ActualImpulseNoiseProtectionRobustOperationsChannelRocDownstream",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Snr Margin Roc Downstream",
+ "CamelCase": "SnrMarginRocDownstream",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart1_SnrMarginRocDownstream",
+ "Index": 15
+ }
+ }
+ },
+ "169": {
+ "Name": "VDSL2 line inventory and status data part 2",
+ "Filename": "vdsl2lineinventoryandstatusdatapart2.go",
+ "CamelCase": "Vdsl2LineInventoryAndStatusDataPart2",
+ "ClassID": 169,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vdsl2 Transmission System Capability Xtu_R",
+ "CamelCase": "Vdsl2TransmissionSystemCapabilityXtuR",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Vdsl2TransmissionSystemCapabilityXtuR",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Actsnrmodeus",
+ "CamelCase": "Actsnrmodeus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Actsnrmodeus",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Upbokle",
+ "CamelCase": "Upbokle",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Upbokle",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Hlingus",
+ "CamelCase": "Hlingus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Hlingus",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Hloggus",
+ "CamelCase": "Hloggus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Hloggus",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Qlngus",
+ "CamelCase": "Qlngus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Qlngus",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Snrgus",
+ "CamelCase": "Snrgus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Snrgus",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Mrefpsdus Table",
+ "CamelCase": "MrefpsdusTable",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_MrefpsdusTable",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Trellisus",
+ "CamelCase": "Trellisus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Trellisus",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Actualce",
+ "CamelCase": "Actualce",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_Actualce",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Upbokle_R",
+ "CamelCase": "UpbokleR",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_UpbokleR",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Actual Rate Adaptation Mode Upstream",
+ "CamelCase": "ActualRateAdaptationModeUpstream",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_ActualRateAdaptationModeUpstream",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Actual Impulse Noise Protection Roc Upstream",
+ "CamelCase": "ActualImpulseNoiseProtectionRocUpstream",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_ActualImpulseNoiseProtectionRocUpstream",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Snr Margin Roc Upstream",
+ "CamelCase": "SnrMarginRocUpstream",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart2_SnrMarginRocUpstream",
+ "Index": 14
+ }
+ }
+ },
+ "170": {
+ "Name": "VDSL2 line inventory and status data part 3",
+ "Filename": "vdsl2lineinventoryandstatusdatapart3.go",
+ "CamelCase": "Vdsl2LineInventoryAndStatusDataPart3",
+ "ClassID": 170,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Upstream Bands Count",
+ "CamelCase": "UpstreamBandsCount",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamBandsCount",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Downstream Bands Count",
+ "CamelCase": "DownstreamBandsCount",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamBandsCount",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Downstream Line Attenuation Per Band",
+ "CamelCase": "DownstreamLineAttenuationPerBand",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamLineAttenuationPerBand",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Upstream Line Attenuation Per Band",
+ "CamelCase": "UpstreamLineAttenuationPerBand",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamLineAttenuationPerBand",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Downstream Signal Attenuation Per Band",
+ "CamelCase": "DownstreamSignalAttenuationPerBand",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamSignalAttenuationPerBand",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Upstream Signal Attenuation Per Band",
+ "CamelCase": "UpstreamSignalAttenuationPerBand",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamSignalAttenuationPerBand",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Downstream Snr Margin Per Band",
+ "CamelCase": "DownstreamSnrMarginPerBand",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamSnrMarginPerBand",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Upstream Snr Margin Per Band",
+ "CamelCase": "UpstreamSnrMarginPerBand",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamSnrMarginPerBand",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Downstream Line Attenuation Extension",
+ "CamelCase": "DownstreamLineAttenuationExtension",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamLineAttenuationExtension",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Upstream Line Attenuation Extension",
+ "CamelCase": "UpstreamLineAttenuationExtension",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamLineAttenuationExtension",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Downstream Signal Attenuation Extension",
+ "CamelCase": "DownstreamSignalAttenuationExtension",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamSignalAttenuationExtension",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Upstream Signal Attenuation Extension",
+ "CamelCase": "UpstreamSignalAttenuationExtension",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamSignalAttenuationExtension",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Downstream Snr Margin Extension",
+ "CamelCase": "DownstreamSnrMarginExtension",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_DownstreamSnrMarginExtension",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Upstream Snr Margin Extension",
+ "CamelCase": "UpstreamSnrMarginExtension",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart3_UpstreamSnrMarginExtension",
+ "Index": 14
+ }
+ }
+ },
+ "171": {
+ "Name": "Extended VLAN tagging operation configuration data",
+ "Filename": "extendedvlantaggingoperationconfigurationdata.go",
+ "CamelCase": "ExtendedVlanTaggingOperationConfigurationData",
+ "ClassID": 171,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Association Type",
+ "CamelCase": "AssociationType",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_AssociationType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Received Frame Vlan Tagging Operation Table Max Size",
+ "CamelCase": "ReceivedFrameVlanTaggingOperationTableMaxSize",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTableMaxSize",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Input Tpid",
+ "CamelCase": "InputTpid",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_InputTpid",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Output Tpid",
+ "CamelCase": "OutputTpid",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_OutputTpid",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Downstream Mode",
+ "CamelCase": "DownstreamMode",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_DownstreamMode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Received Frame Vlan Tagging Operation Table",
+ "CamelCase": "ReceivedFrameVlanTaggingOperationTable",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_ReceivedFrameVlanTaggingOperationTable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Associated Me Pointer",
+ "CamelCase": "AssociatedMePointer",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_AssociatedMePointer",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Dscp To P Bit Mapping",
+ "CamelCase": "DscpToPBitMapping",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_DscpToPBitMapping",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Enhanced Mode",
+ "CamelCase": "EnhancedMode",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_EnhancedMode",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Enhanced Received Frame Classification And Processing Table",
+ "CamelCase": "EnhancedReceivedFrameClassificationAndProcessingTable",
+ "Final": "ExtendedVlanTaggingOperationConfigurationData_EnhancedReceivedFrameClassificationAndProcessingTable",
+ "Index": 10
+ }
+ }
+ },
+ "256": {
+ "Name": "ONU-G",
+ "Filename": "onu-g.go",
+ "CamelCase": "OnuG",
+ "ClassID": 256,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vendor Id",
+ "CamelCase": "VendorId",
+ "Final": "OnuG_VendorId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Version",
+ "CamelCase": "Version",
+ "Final": "OnuG_Version",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Serial Number",
+ "CamelCase": "SerialNumber",
+ "Final": "OnuG_SerialNumber",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Traffic Management Option",
+ "CamelCase": "TrafficManagementOption",
+ "Final": "OnuG_TrafficManagementOption",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Deprecated",
+ "CamelCase": "Deprecated",
+ "Final": "OnuG_Deprecated",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Battery Backup",
+ "CamelCase": "BatteryBackup",
+ "Final": "OnuG_BatteryBackup",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "OnuG_AdministrativeState",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "OnuG_OperationalState",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Onu Survival Time",
+ "CamelCase": "OnuSurvivalTime",
+ "Final": "OnuG_OnuSurvivalTime",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Logical Onu Id",
+ "CamelCase": "LogicalOnuId",
+ "Final": "OnuG_LogicalOnuId",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Logical Password",
+ "CamelCase": "LogicalPassword",
+ "Final": "OnuG_LogicalPassword",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Credentials Status",
+ "CamelCase": "CredentialsStatus",
+ "Final": "OnuG_CredentialsStatus",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Extended Tc_Layer Options",
+ "CamelCase": "ExtendedTcLayerOptions",
+ "Final": "OnuG_ExtendedTcLayerOptions",
+ "Index": 13
+ }
+ }
+ },
+ "257": {
+ "Name": "ONU2-G",
+ "Filename": "onu2-g.go",
+ "CamelCase": "Onu2G",
+ "ClassID": 257,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Equipment Id",
+ "CamelCase": "EquipmentId",
+ "Final": "Onu2G_EquipmentId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Optical Network Unit Management And Control Channel Omcc Version",
+ "CamelCase": "OpticalNetworkUnitManagementAndControlChannelOmccVersion",
+ "Final": "Onu2G_OpticalNetworkUnitManagementAndControlChannelOmccVersion",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Vendor Product Code",
+ "CamelCase": "VendorProductCode",
+ "Final": "Onu2G_VendorProductCode",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Security Capability",
+ "CamelCase": "SecurityCapability",
+ "Final": "Onu2G_SecurityCapability",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Security Mode",
+ "CamelCase": "SecurityMode",
+ "Final": "Onu2G_SecurityMode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Total Priority Queue Number",
+ "CamelCase": "TotalPriorityQueueNumber",
+ "Final": "Onu2G_TotalPriorityQueueNumber",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Total Traffic Scheduler Number",
+ "CamelCase": "TotalTrafficSchedulerNumber",
+ "Final": "Onu2G_TotalTrafficSchedulerNumber",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Deprecated",
+ "CamelCase": "Deprecated",
+ "Final": "Onu2G_Deprecated",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Total Gem Port_Id Number",
+ "CamelCase": "TotalGemPortIdNumber",
+ "Final": "Onu2G_TotalGemPortIdNumber",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Sysuptime",
+ "CamelCase": "Sysuptime",
+ "Final": "Onu2G_Sysuptime",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Connectivity Capability",
+ "CamelCase": "ConnectivityCapability",
+ "Final": "Onu2G_ConnectivityCapability",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Current Connectivity Mode",
+ "CamelCase": "CurrentConnectivityMode",
+ "Final": "Onu2G_CurrentConnectivityMode",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Quality Of Service Qos Configuration Flexibility",
+ "CamelCase": "QualityOfServiceQosConfigurationFlexibility",
+ "Final": "Onu2G_QualityOfServiceQosConfigurationFlexibility",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Priority Queue Scale Factor",
+ "CamelCase": "PriorityQueueScaleFactor",
+ "Final": "Onu2G_PriorityQueueScaleFactor",
+ "Index": 14
+ }
+ }
+ },
+ "262": {
+ "Name": "T-CONT",
+ "Filename": "t-cont.go",
+ "CamelCase": "TCont",
+ "ClassID": 262,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Alloc_Id",
+ "CamelCase": "AllocId",
+ "Final": "TCont_AllocId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Deprecated",
+ "CamelCase": "Deprecated",
+ "Final": "TCont_Deprecated",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Policy",
+ "CamelCase": "Policy",
+ "Final": "TCont_Policy",
+ "Index": 3
+ }
+ }
+ },
+ "263": {
+ "Name": "ANI-G",
+ "Filename": "ani-g.go",
+ "CamelCase": "AniG",
+ "ClassID": 263,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Sr Indication",
+ "CamelCase": "SrIndication",
+ "Final": "AniG_SrIndication",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Total TCont Number",
+ "CamelCase": "TotalTcontNumber",
+ "Final": "AniG_TotalTcontNumber",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Gem Block Length",
+ "CamelCase": "GemBlockLength",
+ "Final": "AniG_GemBlockLength",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Piggyback Dba Reporting",
+ "CamelCase": "PiggybackDbaReporting",
+ "Final": "AniG_PiggybackDbaReporting",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Deprecated",
+ "CamelCase": "Deprecated",
+ "Final": "AniG_Deprecated",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Signal Fail Threshold",
+ "CamelCase": "SignalFailThreshold",
+ "Final": "AniG_SignalFailThreshold",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Signal Degrade Threshold",
+ "CamelCase": "SignalDegradeThreshold",
+ "Final": "AniG_SignalDegradeThreshold",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "AniG_Arc",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "AniG_ArcInterval",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Optical Signal Level",
+ "CamelCase": "OpticalSignalLevel",
+ "Final": "AniG_OpticalSignalLevel",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Lower Optical Threshold",
+ "CamelCase": "LowerOpticalThreshold",
+ "Final": "AniG_LowerOpticalThreshold",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Upper Optical Threshold",
+ "CamelCase": "UpperOpticalThreshold",
+ "Final": "AniG_UpperOpticalThreshold",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Onu Response Time",
+ "CamelCase": "OnuResponseTime",
+ "Final": "AniG_OnuResponseTime",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Transmit Optical Level",
+ "CamelCase": "TransmitOpticalLevel",
+ "Final": "AniG_TransmitOpticalLevel",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Lower Transmit Power Threshold",
+ "CamelCase": "LowerTransmitPowerThreshold",
+ "Final": "AniG_LowerTransmitPowerThreshold",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Upper Transmit Power Threshold",
+ "CamelCase": "UpperTransmitPowerThreshold",
+ "Final": "AniG_UpperTransmitPowerThreshold",
+ "Index": 16
+ }
+ }
+ },
+ "264": {
+ "Name": "UNI-G",
+ "Filename": "uni-g.go",
+ "CamelCase": "UniG",
+ "ClassID": 264,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Deprecated",
+ "CamelCase": "Deprecated",
+ "Final": "UniG_Deprecated",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "UniG_AdministrativeState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Management Capability",
+ "CamelCase": "ManagementCapability",
+ "Final": "UniG_ManagementCapability",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Non_Omci Management Identifier",
+ "CamelCase": "NonOmciManagementIdentifier",
+ "Final": "UniG_NonOmciManagementIdentifier",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Relay Agent Options",
+ "CamelCase": "RelayAgentOptions",
+ "Final": "UniG_RelayAgentOptions",
+ "Index": 5
+ }
+ }
+ },
+ "266": {
+ "Name": "GEM interworking termination point",
+ "Filename": "geminterworkingterminationpoint.go",
+ "CamelCase": "GemInterworkingTerminationPoint",
+ "ClassID": 266,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Gem Port Network Ctp Connectivity Pointer",
+ "CamelCase": "GemPortNetworkCtpConnectivityPointer",
+ "Final": "GemInterworkingTerminationPoint_GemPortNetworkCtpConnectivityPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Interworking Option",
+ "CamelCase": "InterworkingOption",
+ "Final": "GemInterworkingTerminationPoint_InterworkingOption",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Service Profile Pointer",
+ "CamelCase": "ServiceProfilePointer",
+ "Final": "GemInterworkingTerminationPoint_ServiceProfilePointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Interworking Termination Point Pointer",
+ "CamelCase": "InterworkingTerminationPointPointer",
+ "Final": "GemInterworkingTerminationPoint_InterworkingTerminationPointPointer",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Pptp Counter",
+ "CamelCase": "PptpCounter",
+ "Final": "GemInterworkingTerminationPoint_PptpCounter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "GemInterworkingTerminationPoint_OperationalState",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Gal Profile Pointer",
+ "CamelCase": "GalProfilePointer",
+ "Final": "GemInterworkingTerminationPoint_GalProfilePointer",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Gal Loopback Configuration",
+ "CamelCase": "GalLoopbackConfiguration",
+ "Final": "GemInterworkingTerminationPoint_GalLoopbackConfiguration",
+ "Index": 8
+ }
+ }
+ },
+ "268": {
+ "Name": "GEM port network CTP",
+ "Filename": "gemportnetworkctp.go",
+ "CamelCase": "GemPortNetworkCtp",
+ "ClassID": 268,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Port_Id",
+ "CamelCase": "PortId",
+ "Final": "GemPortNetworkCtp_PortId",
+ "Index": 1
+ },
+ "2": {
+ "Name": "T_Cont Pointer",
+ "CamelCase": "TContPointer",
+ "Final": "GemPortNetworkCtp_TContPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Direction",
+ "CamelCase": "Direction",
+ "Final": "GemPortNetworkCtp_Direction",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Traffic Management Pointer For Upstream",
+ "CamelCase": "TrafficManagementPointerForUpstream",
+ "Final": "GemPortNetworkCtp_TrafficManagementPointerForUpstream",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Traffic Descriptor Profile Pointer For Upstream",
+ "CamelCase": "TrafficDescriptorProfilePointerForUpstream",
+ "Final": "GemPortNetworkCtp_TrafficDescriptorProfilePointerForUpstream",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Uni Counter",
+ "CamelCase": "UniCounter",
+ "Final": "GemPortNetworkCtp_UniCounter",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Priority Queue Pointer For Down Stream",
+ "CamelCase": "PriorityQueuePointerForDownStream",
+ "Final": "GemPortNetworkCtp_PriorityQueuePointerForDownStream",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Encryption State",
+ "CamelCase": "EncryptionState",
+ "Final": "GemPortNetworkCtp_EncryptionState",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Traffic Descriptor Profile Pointer For Downstream",
+ "CamelCase": "TrafficDescriptorProfilePointerForDownstream",
+ "Final": "GemPortNetworkCtp_TrafficDescriptorProfilePointerForDownstream",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Encryption Key Ring",
+ "CamelCase": "EncryptionKeyRing",
+ "Final": "GemPortNetworkCtp_EncryptionKeyRing",
+ "Index": 10
+ }
+ }
+ },
+ "269": {
+ "Name": "VP network CTP",
+ "Filename": "vpnetworkctp.go",
+ "CamelCase": "VpNetworkCtp",
+ "ClassID": 269,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vpi Value",
+ "CamelCase": "VpiValue",
+ "Final": "VpNetworkCtp_VpiValue",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Uni Pointer",
+ "CamelCase": "UniPointer",
+ "Final": "VpNetworkCtp_UniPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Direction",
+ "CamelCase": "Direction",
+ "Final": "VpNetworkCtp_Direction",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Deprecated 1",
+ "CamelCase": "Deprecated1",
+ "Final": "VpNetworkCtp_Deprecated1",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Deprecated 2",
+ "CamelCase": "Deprecated2",
+ "Final": "VpNetworkCtp_Deprecated2",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Deprecated 3",
+ "CamelCase": "Deprecated3",
+ "Final": "VpNetworkCtp_Deprecated3",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Deprecated 4",
+ "CamelCase": "Deprecated4",
+ "Final": "VpNetworkCtp_Deprecated4",
+ "Index": 7
+ }
+ }
+ },
+ "272": {
+ "Name": "GAL Ethernet profile",
+ "Filename": "galethernetprofile.go",
+ "CamelCase": "GalEthernetProfile",
+ "ClassID": 272,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Maximum Gem Payload Size",
+ "CamelCase": "MaximumGemPayloadSize",
+ "Final": "GalEthernetProfile_MaximumGemPayloadSize",
+ "Index": 1
+ }
+ }
+ },
+ "273": {
+ "Name": "Threshold data 1",
+ "Filename": "thresholddata1.go",
+ "CamelCase": "ThresholdData1",
+ "ClassID": 273,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Threshold Value_1",
+ "CamelCase": "ThresholdValue1",
+ "Final": "ThresholdData1_ThresholdValue1",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Value_2",
+ "CamelCase": "ThresholdValue2",
+ "Final": "ThresholdData1_ThresholdValue2",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Threshold Value_3",
+ "CamelCase": "ThresholdValue3",
+ "Final": "ThresholdData1_ThresholdValue3",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Threshold Value_4",
+ "CamelCase": "ThresholdValue4",
+ "Final": "ThresholdData1_ThresholdValue4",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Threshold Value_5",
+ "CamelCase": "ThresholdValue5",
+ "Final": "ThresholdData1_ThresholdValue5",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Threshold Value_6",
+ "CamelCase": "ThresholdValue6",
+ "Final": "ThresholdData1_ThresholdValue6",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Threshold Value_7",
+ "CamelCase": "ThresholdValue7",
+ "Final": "ThresholdData1_ThresholdValue7",
+ "Index": 7
+ }
+ }
+ },
+ "274": {
+ "Name": "Threshold data 2",
+ "Filename": "thresholddata2.go",
+ "CamelCase": "ThresholdData2",
+ "ClassID": 274,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Threshold Value_8",
+ "CamelCase": "ThresholdValue8",
+ "Final": "ThresholdData2_ThresholdValue8",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Value_9",
+ "CamelCase": "ThresholdValue9",
+ "Final": "ThresholdData2_ThresholdValue9",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Threshold Value_10",
+ "CamelCase": "ThresholdValue10",
+ "Final": "ThresholdData2_ThresholdValue10",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Threshold Value_11",
+ "CamelCase": "ThresholdValue11",
+ "Final": "ThresholdData2_ThresholdValue11",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Threshold Value_12",
+ "CamelCase": "ThresholdValue12",
+ "Final": "ThresholdData2_ThresholdValue12",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Threshold Value_13",
+ "CamelCase": "ThresholdValue13",
+ "Final": "ThresholdData2_ThresholdValue13",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Threshold Value_14",
+ "CamelCase": "ThresholdValue14",
+ "Final": "ThresholdData2_ThresholdValue14",
+ "Index": 7
+ }
+ }
+ },
+ "276": {
+ "Name": "GAL Ethernet performance monitoring history data",
+ "Filename": "galethernetperformancemonitoringhistorydata.go",
+ "CamelCase": "GalEthernetPerformanceMonitoringHistoryData",
+ "ClassID": 276,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "GalEthernetPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "GalEthernetPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Discarded Frames",
+ "CamelCase": "DiscardedFrames",
+ "Final": "GalEthernetPerformanceMonitoringHistoryData_DiscardedFrames",
+ "Index": 3
+ }
+ }
+ },
+ "277": {
+ "Name": "Priority queue",
+ "Filename": "priorityqueue.go",
+ "CamelCase": "PriorityQueue",
+ "ClassID": 277,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Queue Configuration Option",
+ "CamelCase": "QueueConfigurationOption",
+ "Final": "PriorityQueue_QueueConfigurationOption",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Maximum Queue Size",
+ "CamelCase": "MaximumQueueSize",
+ "Final": "PriorityQueue_MaximumQueueSize",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Allocated Queue Size",
+ "CamelCase": "AllocatedQueueSize",
+ "Final": "PriorityQueue_AllocatedQueueSize",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Discard_Block Counter Reset Interval",
+ "CamelCase": "DiscardBlockCounterResetInterval",
+ "Final": "PriorityQueue_DiscardBlockCounterResetInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Threshold Value For Discarded Blocks Due To Buffer Overflow",
+ "CamelCase": "ThresholdValueForDiscardedBlocksDueToBufferOverflow",
+ "Final": "PriorityQueue_ThresholdValueForDiscardedBlocksDueToBufferOverflow",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Related Port",
+ "CamelCase": "RelatedPort",
+ "Final": "PriorityQueue_RelatedPort",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Traffic Scheduler Pointer",
+ "CamelCase": "TrafficSchedulerPointer",
+ "Final": "PriorityQueue_TrafficSchedulerPointer",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Weight",
+ "CamelCase": "Weight",
+ "Final": "PriorityQueue_Weight",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Back Pressure Operation",
+ "CamelCase": "BackPressureOperation",
+ "Final": "PriorityQueue_BackPressureOperation",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Back Pressure Time",
+ "CamelCase": "BackPressureTime",
+ "Final": "PriorityQueue_BackPressureTime",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Back Pressure Occur Queue Threshold",
+ "CamelCase": "BackPressureOccurQueueThreshold",
+ "Final": "PriorityQueue_BackPressureOccurQueueThreshold",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Back Pressure Clear Queue Threshold",
+ "CamelCase": "BackPressureClearQueueThreshold",
+ "Final": "PriorityQueue_BackPressureClearQueueThreshold",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Packet Drop Queue Thresholds",
+ "CamelCase": "PacketDropQueueThresholds",
+ "Final": "PriorityQueue_PacketDropQueueThresholds",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Packet Drop Max_P",
+ "CamelCase": "PacketDropMaxP",
+ "Final": "PriorityQueue_PacketDropMaxP",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Queue Drop W_Q",
+ "CamelCase": "QueueDropWQ",
+ "Final": "PriorityQueue_QueueDropWQ",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Drop Precedence Colour Marking",
+ "CamelCase": "DropPrecedenceColourMarking",
+ "Final": "PriorityQueue_DropPrecedenceColourMarking",
+ "Index": 16
+ }
+ }
+ },
+ "278": {
+ "Name": "Traffic scheduler",
+ "Filename": "trafficscheduler.go",
+ "CamelCase": "TrafficScheduler",
+ "ClassID": 278,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "T_Cont Pointer",
+ "CamelCase": "TContPointer",
+ "Final": "TrafficScheduler_TContPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Traffic Scheduler Pointer",
+ "CamelCase": "TrafficSchedulerPointer",
+ "Final": "TrafficScheduler_TrafficSchedulerPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Policy",
+ "CamelCase": "Policy",
+ "Final": "TrafficScheduler_Policy",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Priority_Weight",
+ "CamelCase": "PriorityWeight",
+ "Final": "TrafficScheduler_PriorityWeight",
+ "Index": 4
+ }
+ }
+ },
+ "280": {
+ "Name": "Traffic descriptor",
+ "Filename": "trafficdescriptor.go",
+ "CamelCase": "TrafficDescriptor",
+ "ClassID": 280,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Cir",
+ "CamelCase": "Cir",
+ "Final": "TrafficDescriptor_Cir",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Pir",
+ "CamelCase": "Pir",
+ "Final": "TrafficDescriptor_Pir",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Cbs",
+ "CamelCase": "Cbs",
+ "Final": "TrafficDescriptor_Cbs",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Pbs",
+ "CamelCase": "Pbs",
+ "Final": "TrafficDescriptor_Pbs",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Colour Mode",
+ "CamelCase": "ColourMode",
+ "Final": "TrafficDescriptor_ColourMode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Ingress Colour Marking",
+ "CamelCase": "IngressColourMarking",
+ "Final": "TrafficDescriptor_IngressColourMarking",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Egress Colour Marking",
+ "CamelCase": "EgressColourMarking",
+ "Final": "TrafficDescriptor_EgressColourMarking",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Meter Type",
+ "CamelCase": "MeterType",
+ "Final": "TrafficDescriptor_MeterType",
+ "Index": 8
+ }
+ }
+ },
+ "281": {
+ "Name": "Multicast GEM interworking termination point",
+ "Filename": "multicastgeminterworkingterminationpoint.go",
+ "CamelCase": "MulticastGemInterworkingTerminationPoint",
+ "ClassID": 281,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Gem Port Network Ctp Connectivity Pointer",
+ "CamelCase": "GemPortNetworkCtpConnectivityPointer",
+ "Final": "MulticastGemInterworkingTerminationPoint_GemPortNetworkCtpConnectivityPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Interworking Option",
+ "CamelCase": "InterworkingOption",
+ "Final": "MulticastGemInterworkingTerminationPoint_InterworkingOption",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Service Profile Pointer",
+ "CamelCase": "ServiceProfilePointer",
+ "Final": "MulticastGemInterworkingTerminationPoint_ServiceProfilePointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Not Used 1",
+ "CamelCase": "NotUsed1",
+ "Final": "MulticastGemInterworkingTerminationPoint_NotUsed1",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Pptp Counter",
+ "CamelCase": "PptpCounter",
+ "Final": "MulticastGemInterworkingTerminationPoint_PptpCounter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "MulticastGemInterworkingTerminationPoint_OperationalState",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Gal Profile Pointer",
+ "CamelCase": "GalProfilePointer",
+ "Final": "MulticastGemInterworkingTerminationPoint_GalProfilePointer",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Not Used 2",
+ "CamelCase": "NotUsed2",
+ "Final": "MulticastGemInterworkingTerminationPoint_NotUsed2",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Ipv4 Multicast Address Table",
+ "CamelCase": "Ipv4MulticastAddressTable",
+ "Final": "MulticastGemInterworkingTerminationPoint_Ipv4MulticastAddressTable",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Ipv6 Multicast Address Table",
+ "CamelCase": "Ipv6MulticastAddressTable",
+ "Final": "MulticastGemInterworkingTerminationPoint_Ipv6MulticastAddressTable",
+ "Index": 10
+ }
+ }
+ },
+ "282": {
+ "Name": "Pseudowire termination point",
+ "Filename": "pseudowireterminationpoint.go",
+ "CamelCase": "PseudowireTerminationPoint",
+ "ClassID": 282,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Underlying Transport",
+ "CamelCase": "UnderlyingTransport",
+ "Final": "PseudowireTerminationPoint_UnderlyingTransport",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Service Type",
+ "CamelCase": "ServiceType",
+ "Final": "PseudowireTerminationPoint_ServiceType",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Signalling",
+ "CamelCase": "Signalling",
+ "Final": "PseudowireTerminationPoint_Signalling",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Tdm Uni Pointer",
+ "CamelCase": "TdmUniPointer",
+ "Final": "PseudowireTerminationPoint_TdmUniPointer",
+ "Index": 4
+ },
+ "5": {
+ "Name": "North_Side Pointer",
+ "CamelCase": "NorthSidePointer",
+ "Final": "PseudowireTerminationPoint_NorthSidePointer",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Far_End Ip Info",
+ "CamelCase": "FarEndIpInfo",
+ "Final": "PseudowireTerminationPoint_FarEndIpInfo",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Payload Size",
+ "CamelCase": "PayloadSize",
+ "Final": "PseudowireTerminationPoint_PayloadSize",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Payload Encapsulation Delay",
+ "CamelCase": "PayloadEncapsulationDelay",
+ "Final": "PseudowireTerminationPoint_PayloadEncapsulationDelay",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Timing Mode",
+ "CamelCase": "TimingMode",
+ "Final": "PseudowireTerminationPoint_TimingMode",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Transmit Circuit Id",
+ "CamelCase": "TransmitCircuitId",
+ "Final": "PseudowireTerminationPoint_TransmitCircuitId",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Expected Circuit Id",
+ "CamelCase": "ExpectedCircuitId",
+ "Final": "PseudowireTerminationPoint_ExpectedCircuitId",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Received Circuit Id",
+ "CamelCase": "ReceivedCircuitId",
+ "Final": "PseudowireTerminationPoint_ReceivedCircuitId",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Exception Policy",
+ "CamelCase": "ExceptionPolicy",
+ "Final": "PseudowireTerminationPoint_ExceptionPolicy",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PseudowireTerminationPoint_Arc",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PseudowireTerminationPoint_ArcInterval",
+ "Index": 15
+ }
+ }
+ },
+ "283": {
+ "Name": "RTP pseudowire parameters",
+ "Filename": "rtppseudowireparameters.go",
+ "CamelCase": "RtpPseudowireParameters",
+ "ClassID": 283,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Clock Reference",
+ "CamelCase": "ClockReference",
+ "Final": "RtpPseudowireParameters_ClockReference",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Rtp Timestamp Mode",
+ "CamelCase": "RtpTimestampMode",
+ "Final": "RtpPseudowireParameters_RtpTimestampMode",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Ptype",
+ "CamelCase": "Ptype",
+ "Final": "RtpPseudowireParameters_Ptype",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Ssrc",
+ "CamelCase": "Ssrc",
+ "Final": "RtpPseudowireParameters_Ssrc",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Expected Ptype",
+ "CamelCase": "ExpectedPtype",
+ "Final": "RtpPseudowireParameters_ExpectedPtype",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Expected Ssrc",
+ "CamelCase": "ExpectedSsrc",
+ "Final": "RtpPseudowireParameters_ExpectedSsrc",
+ "Index": 6
+ }
+ }
+ },
+ "284": {
+ "Name": "Pseudowire maintenance profile",
+ "Filename": "pseudowiremaintenanceprofile.go",
+ "CamelCase": "PseudowireMaintenanceProfile",
+ "ClassID": 284,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Jitter Buffer Maximum Depth",
+ "CamelCase": "JitterBufferMaximumDepth",
+ "Final": "PseudowireMaintenanceProfile_JitterBufferMaximumDepth",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Jitter Buffer Desired Depth",
+ "CamelCase": "JitterBufferDesiredDepth",
+ "Final": "PseudowireMaintenanceProfile_JitterBufferDesiredDepth",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Fill Policy",
+ "CamelCase": "FillPolicy",
+ "Final": "PseudowireMaintenanceProfile_FillPolicy",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Misconnected Packets Declaration Policy",
+ "CamelCase": "MisconnectedPacketsDeclarationPolicy",
+ "Final": "PseudowireMaintenanceProfile_MisconnectedPacketsDeclarationPolicy",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Misconnected Packets Clear Policy",
+ "CamelCase": "MisconnectedPacketsClearPolicy",
+ "Final": "PseudowireMaintenanceProfile_MisconnectedPacketsClearPolicy",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Loss Of Packets Declaration Policy",
+ "CamelCase": "LossOfPacketsDeclarationPolicy",
+ "Final": "PseudowireMaintenanceProfile_LossOfPacketsDeclarationPolicy",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Loss Of Packets Clear Policy",
+ "CamelCase": "LossOfPacketsClearPolicy",
+ "Final": "PseudowireMaintenanceProfile_LossOfPacketsClearPolicy",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Buffer Overrun_Underrun Declaration Policy",
+ "CamelCase": "BufferOverrunUnderrunDeclarationPolicy",
+ "Final": "PseudowireMaintenanceProfile_BufferOverrunUnderrunDeclarationPolicy",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Buffer Overrun_Underrun Clear Policy",
+ "CamelCase": "BufferOverrunUnderrunClearPolicy",
+ "Final": "PseudowireMaintenanceProfile_BufferOverrunUnderrunClearPolicy",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Malformed Packets Declaration Policy",
+ "CamelCase": "MalformedPacketsDeclarationPolicy",
+ "Final": "PseudowireMaintenanceProfile_MalformedPacketsDeclarationPolicy",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Malformed Packets Clear Policy",
+ "CamelCase": "MalformedPacketsClearPolicy",
+ "Final": "PseudowireMaintenanceProfile_MalformedPacketsClearPolicy",
+ "Index": 11
+ },
+ "12": {
+ "Name": "R_Bit Transmit Set Policy",
+ "CamelCase": "RBitTransmitSetPolicy",
+ "Final": "PseudowireMaintenanceProfile_RBitTransmitSetPolicy",
+ "Index": 12
+ },
+ "13": {
+ "Name": "R_Bit Transmit Clear Policy",
+ "CamelCase": "RBitTransmitClearPolicy",
+ "Final": "PseudowireMaintenanceProfile_RBitTransmitClearPolicy",
+ "Index": 13
+ },
+ "14": {
+ "Name": "R_Bit Receive Policy",
+ "CamelCase": "RBitReceivePolicy",
+ "Final": "PseudowireMaintenanceProfile_RBitReceivePolicy",
+ "Index": 14
+ },
+ "15": {
+ "Name": "L Bit Receive Policy",
+ "CamelCase": "LBitReceivePolicy",
+ "Final": "PseudowireMaintenanceProfile_LBitReceivePolicy",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Ses Threshold",
+ "CamelCase": "SesThreshold",
+ "Final": "PseudowireMaintenanceProfile_SesThreshold",
+ "Index": 16
+ }
+ }
+ },
+ "285": {
+ "Name": "Pseudowire performance monitoring history data",
+ "Filename": "pseudowireperformancemonitoringhistorydata.go",
+ "CamelCase": "PseudowirePerformanceMonitoringHistoryData",
+ "ClassID": 285,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Received Packets",
+ "CamelCase": "ReceivedPackets",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_ReceivedPackets",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Transmitted Packets",
+ "CamelCase": "TransmittedPackets",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_TransmittedPackets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Missing Packets",
+ "CamelCase": "MissingPackets",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_MissingPackets",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Misordered Packets Usable",
+ "CamelCase": "MisorderedPacketsUsable",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_MisorderedPacketsUsable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Misordered Packets Dropped",
+ "CamelCase": "MisorderedPacketsDropped",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_MisorderedPacketsDropped",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Playout Buffer Underruns_Overruns",
+ "CamelCase": "PlayoutBufferUnderrunsOverruns",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_PlayoutBufferUnderrunsOverruns",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Malformed Packets",
+ "CamelCase": "MalformedPackets",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_MalformedPackets",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Stray Packets",
+ "CamelCase": "StrayPackets",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_StrayPackets",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Remote Packet Loss",
+ "CamelCase": "RemotePacketLoss",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_RemotePacketLoss",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Tdm L_Bit Packets Transmitted",
+ "CamelCase": "TdmLBitPacketsTransmitted",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_TdmLBitPacketsTransmitted",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Es",
+ "CamelCase": "Es",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_Es",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Ses",
+ "CamelCase": "Ses",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_Ses",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Uas",
+ "CamelCase": "Uas",
+ "Final": "PseudowirePerformanceMonitoringHistoryData_Uas",
+ "Index": 15
+ }
+ }
+ },
+ "286": {
+ "Name": "Ethernet flow termination point",
+ "Filename": "ethernetflowterminationpoint.go",
+ "CamelCase": "EthernetFlowTerminationPoint",
+ "ClassID": 286,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Destination Mac",
+ "CamelCase": "DestinationMac",
+ "Final": "EthernetFlowTerminationPoint_DestinationMac",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Source Mac",
+ "CamelCase": "SourceMac",
+ "Final": "EthernetFlowTerminationPoint_SourceMac",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Tag Policy",
+ "CamelCase": "TagPolicy",
+ "Final": "EthernetFlowTerminationPoint_TagPolicy",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Tci",
+ "CamelCase": "Tci",
+ "Final": "EthernetFlowTerminationPoint_Tci",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Loopback",
+ "CamelCase": "Loopback",
+ "Final": "EthernetFlowTerminationPoint_Loopback",
+ "Index": 5
+ }
+ }
+ },
+ "287": {
+ "Name": "OMCI",
+ "Filename": "omci.go",
+ "CamelCase": "Omci",
+ "ClassID": 287,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Me Type Table",
+ "CamelCase": "MeTypeTable",
+ "Final": "Omci_MeTypeTable",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Message Type Table",
+ "CamelCase": "MessageTypeTable",
+ "Final": "Omci_MessageTypeTable",
+ "Index": 2
+ }
+ }
+ },
+ "288": {
+ "Name": "Managed entity ME",
+ "Filename": "managedentityme.go",
+ "CamelCase": "ManagedEntityMe",
+ "ClassID": 288,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Name",
+ "CamelCase": "Name",
+ "Final": "ManagedEntityMe_Name",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Attributes Table",
+ "CamelCase": "AttributesTable",
+ "Final": "ManagedEntityMe_AttributesTable",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Access",
+ "CamelCase": "Access",
+ "Final": "ManagedEntityMe_Access",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Alarms Table",
+ "CamelCase": "AlarmsTable",
+ "Final": "ManagedEntityMe_AlarmsTable",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Avcs Table",
+ "CamelCase": "AvcsTable",
+ "Final": "ManagedEntityMe_AvcsTable",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Actions",
+ "CamelCase": "Actions",
+ "Final": "ManagedEntityMe_Actions",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Instances Table",
+ "CamelCase": "InstancesTable",
+ "Final": "ManagedEntityMe_InstancesTable",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Support",
+ "CamelCase": "Support",
+ "Final": "ManagedEntityMe_Support",
+ "Index": 8
+ }
+ }
+ },
+ "289": {
+ "Name": "Attribute ME",
+ "Filename": "attributeme.go",
+ "CamelCase": "AttributeMe",
+ "ClassID": 289,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Name",
+ "CamelCase": "Name",
+ "Final": "AttributeMe_Name",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Size",
+ "CamelCase": "Size",
+ "Final": "AttributeMe_Size",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Access",
+ "CamelCase": "Access",
+ "Final": "AttributeMe_Access",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Format",
+ "CamelCase": "Format",
+ "Final": "AttributeMe_Format",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Lower Limit",
+ "CamelCase": "LowerLimit",
+ "Final": "AttributeMe_LowerLimit",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Upper Limit",
+ "CamelCase": "UpperLimit",
+ "Final": "AttributeMe_UpperLimit",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Bit Field",
+ "CamelCase": "BitField",
+ "Final": "AttributeMe_BitField",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Code Points Table",
+ "CamelCase": "CodePointsTable",
+ "Final": "AttributeMe_CodePointsTable",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Support",
+ "CamelCase": "Support",
+ "Final": "AttributeMe_Support",
+ "Index": 9
+ }
+ }
+ },
+ "290": {
+ "Name": "Dot1X port extension package",
+ "Filename": "dot1xportextensionpackage.go",
+ "CamelCase": "Dot1XPortExtensionPackage",
+ "ClassID": 290,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Dot1X Enable",
+ "CamelCase": "Dot1XEnable",
+ "Final": "Dot1XPortExtensionPackage_Dot1XEnable",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Action Register",
+ "CamelCase": "ActionRegister",
+ "Final": "Dot1XPortExtensionPackage_ActionRegister",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Authenticator Pae State",
+ "CamelCase": "AuthenticatorPaeState",
+ "Final": "Dot1XPortExtensionPackage_AuthenticatorPaeState",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Backend Authentication State",
+ "CamelCase": "BackendAuthenticationState",
+ "Final": "Dot1XPortExtensionPackage_BackendAuthenticationState",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Admin Controlled Directions",
+ "CamelCase": "AdminControlledDirections",
+ "Final": "Dot1XPortExtensionPackage_AdminControlledDirections",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Operational Controlled Directions",
+ "CamelCase": "OperationalControlledDirections",
+ "Final": "Dot1XPortExtensionPackage_OperationalControlledDirections",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Authenticator Controlled Port Status",
+ "CamelCase": "AuthenticatorControlledPortStatus",
+ "Final": "Dot1XPortExtensionPackage_AuthenticatorControlledPortStatus",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Quiet Period",
+ "CamelCase": "QuietPeriod",
+ "Final": "Dot1XPortExtensionPackage_QuietPeriod",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Server Timeout Period",
+ "CamelCase": "ServerTimeoutPeriod",
+ "Final": "Dot1XPortExtensionPackage_ServerTimeoutPeriod",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Re_Authentication Period",
+ "CamelCase": "ReAuthenticationPeriod",
+ "Final": "Dot1XPortExtensionPackage_ReAuthenticationPeriod",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Re_Authentication Enabled",
+ "CamelCase": "ReAuthenticationEnabled",
+ "Final": "Dot1XPortExtensionPackage_ReAuthenticationEnabled",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Key Transmission Enabled",
+ "CamelCase": "KeyTransmissionEnabled",
+ "Final": "Dot1XPortExtensionPackage_KeyTransmissionEnabled",
+ "Index": 12
+ }
+ }
+ },
+ "291": {
+ "Name": "Dot1X configuration profile",
+ "Filename": "dot1xconfigurationprofile.go",
+ "CamelCase": "Dot1XConfigurationProfile",
+ "ClassID": 291,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Circuit Id Prefix",
+ "CamelCase": "CircuitIdPrefix",
+ "Final": "Dot1XConfigurationProfile_CircuitIdPrefix",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Fallback Policy",
+ "CamelCase": "FallbackPolicy",
+ "Final": "Dot1XConfigurationProfile_FallbackPolicy",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Auth Server 1",
+ "CamelCase": "AuthServer1",
+ "Final": "Dot1XConfigurationProfile_AuthServer1",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Shared Secret Auth1",
+ "CamelCase": "SharedSecretAuth1",
+ "Final": "Dot1XConfigurationProfile_SharedSecretAuth1",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Auth Server 2",
+ "CamelCase": "AuthServer2",
+ "Final": "Dot1XConfigurationProfile_AuthServer2",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Shared Secret Auth2",
+ "CamelCase": "SharedSecretAuth2",
+ "Final": "Dot1XConfigurationProfile_SharedSecretAuth2",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Auth Server 3",
+ "CamelCase": "AuthServer3",
+ "Final": "Dot1XConfigurationProfile_AuthServer3",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Shared Secret Auth3",
+ "CamelCase": "SharedSecretAuth3",
+ "Final": "Dot1XConfigurationProfile_SharedSecretAuth3",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Olt Proxy Address",
+ "CamelCase": "OltProxyAddress",
+ "Final": "Dot1XConfigurationProfile_OltProxyAddress",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Calling Station Id Format",
+ "CamelCase": "CallingStationIdFormat",
+ "Final": "Dot1XConfigurationProfile_CallingStationIdFormat",
+ "Index": 10
+ }
+ }
+ },
+ "292": {
+ "Name": "Dot1X performance monitoring history data",
+ "Filename": "dot1xperformancemonitoringhistorydata.go",
+ "CamelCase": "Dot1XPerformanceMonitoringHistoryData",
+ "ClassID": 292,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Eapol Frames Received",
+ "CamelCase": "EapolFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapolFramesReceived",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Eapol Frames Transmitted",
+ "CamelCase": "EapolFramesTransmitted",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapolFramesTransmitted",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Eapol Start Frames Received",
+ "CamelCase": "EapolStartFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapolStartFramesReceived",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Eapol Logoff Frames Received",
+ "CamelCase": "EapolLogoffFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapolLogoffFramesReceived",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Invalid Eapol Frames Received",
+ "CamelCase": "InvalidEapolFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_InvalidEapolFramesReceived",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Eap Resp_Id Frames Received",
+ "CamelCase": "EapRespIdFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapRespIdFramesReceived",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Eap Response Frames Received",
+ "CamelCase": "EapResponseFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapResponseFramesReceived",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Eap Initial Request Frames Transmitted",
+ "CamelCase": "EapInitialRequestFramesTransmitted",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapInitialRequestFramesTransmitted",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Eap Request Frames Transmitted",
+ "CamelCase": "EapRequestFramesTransmitted",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapRequestFramesTransmitted",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Eap Length Error Frames Received",
+ "CamelCase": "EapLengthErrorFramesReceived",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapLengthErrorFramesReceived",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Eap Success Frames Generated Autonomously",
+ "CamelCase": "EapSuccessFramesGeneratedAutonomously",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapSuccessFramesGeneratedAutonomously",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Eap Failure Frames Generated Autonomously",
+ "CamelCase": "EapFailureFramesGeneratedAutonomously",
+ "Final": "Dot1XPerformanceMonitoringHistoryData_EapFailureFramesGeneratedAutonomously",
+ "Index": 14
+ }
+ }
+ },
+ "293": {
+ "Name": "Radius performance monitoring history data",
+ "Filename": "radiusperformancemonitoringhistorydata.go",
+ "CamelCase": "RadiusPerformanceMonitoringHistoryData",
+ "ClassID": 293,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "RadiusPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "RadiusPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Access_Request Packets Transmitted",
+ "CamelCase": "AccessRequestPacketsTransmitted",
+ "Final": "RadiusPerformanceMonitoringHistoryData_AccessRequestPacketsTransmitted",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Access_Request Retransmission Count",
+ "CamelCase": "AccessRequestRetransmissionCount",
+ "Final": "RadiusPerformanceMonitoringHistoryData_AccessRequestRetransmissionCount",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Access_Challenge Packets Received",
+ "CamelCase": "AccessChallengePacketsReceived",
+ "Final": "RadiusPerformanceMonitoringHistoryData_AccessChallengePacketsReceived",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Access_Accept Packets Received",
+ "CamelCase": "AccessAcceptPacketsReceived",
+ "Final": "RadiusPerformanceMonitoringHistoryData_AccessAcceptPacketsReceived",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Access_Reject Packets Received",
+ "CamelCase": "AccessRejectPacketsReceived",
+ "Final": "RadiusPerformanceMonitoringHistoryData_AccessRejectPacketsReceived",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Invalid Radius Packets Received",
+ "CamelCase": "InvalidRadiusPacketsReceived",
+ "Final": "RadiusPerformanceMonitoringHistoryData_InvalidRadiusPacketsReceived",
+ "Index": 8
+ }
+ }
+ },
+ "296": {
+ "Name": "Ethernet performance monitoring history data 3",
+ "Filename": "ethernetperformancemonitoringhistorydata3.go",
+ "CamelCase": "EthernetPerformanceMonitoringHistoryData3",
+ "ClassID": 296,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Drop Events",
+ "CamelCase": "DropEvents",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_DropEvents",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Octets",
+ "CamelCase": "Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Octets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Packets",
+ "CamelCase": "Packets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Broadcast Packets",
+ "CamelCase": "BroadcastPackets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_BroadcastPackets",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Multicast Packets",
+ "CamelCase": "MulticastPackets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_MulticastPackets",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Undersize Packets",
+ "CamelCase": "UndersizePackets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_UndersizePackets",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Fragments",
+ "CamelCase": "Fragments",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Fragments",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Jabbers",
+ "CamelCase": "Jabbers",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Jabbers",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Packets 64 Octets",
+ "CamelCase": "Packets64Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets64Octets",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Packets 65 To 127 Octets",
+ "CamelCase": "Packets65To127Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets65To127Octets",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Packets 128 To 255 Octets",
+ "CamelCase": "Packets128To255Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets128To255Octets",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Packets 256 To 511 Octets",
+ "CamelCase": "Packets256To511Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets256To511Octets",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Packets 512 To 1023 Octets",
+ "CamelCase": "Packets512To1023Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets512To1023Octets",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Packets 1024 To 1518 Octets",
+ "CamelCase": "Packets1024To1518Octets",
+ "Final": "EthernetPerformanceMonitoringHistoryData3_Packets1024To1518Octets",
+ "Index": 16
+ }
+ }
+ },
+ "298": {
+ "Name": "Dot1 rate limiter",
+ "Filename": "dot1ratelimiter.go",
+ "CamelCase": "Dot1RateLimiter",
+ "ClassID": 298,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Parent Me Pointer",
+ "CamelCase": "ParentMePointer",
+ "Final": "Dot1RateLimiter_ParentMePointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Tp Type",
+ "CamelCase": "TpType",
+ "Final": "Dot1RateLimiter_TpType",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Upstream Unicast Flood Rate Pointer",
+ "CamelCase": "UpstreamUnicastFloodRatePointer",
+ "Final": "Dot1RateLimiter_UpstreamUnicastFloodRatePointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Upstream Broadcast Rate Pointer",
+ "CamelCase": "UpstreamBroadcastRatePointer",
+ "Final": "Dot1RateLimiter_UpstreamBroadcastRatePointer",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Upstream Multicast Payload Rate Pointer",
+ "CamelCase": "UpstreamMulticastPayloadRatePointer",
+ "Final": "Dot1RateLimiter_UpstreamMulticastPayloadRatePointer",
+ "Index": 5
+ }
+ }
+ },
+ "299": {
+ "Name": "Dot1ag maintenance domain",
+ "Filename": "dot1agmaintenancedomain.go",
+ "CamelCase": "Dot1AgMaintenanceDomain",
+ "ClassID": 299,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Md Level",
+ "CamelCase": "MdLevel",
+ "Final": "Dot1AgMaintenanceDomain_MdLevel",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Md Name Format",
+ "CamelCase": "MdNameFormat",
+ "Final": "Dot1AgMaintenanceDomain_MdNameFormat",
+ "Index": 2
+ },
+ "3": {
+ "Name": "MD Name 1",
+ "CamelCase": "MdName1",
+ "Final": "Dot1AgMaintenanceDomain_MdName1",
+ "Index": 3
+ },
+ "4": {
+ "Name": "MD Name 2",
+ "CamelCase": "MdName2",
+ "Final": "Dot1AgMaintenanceDomain_MdName2",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Maintenance Domain Intermediate Point Half Function Mhf Creation",
+ "CamelCase": "MaintenanceDomainIntermediatePointHalfFunctionMhfCreation",
+ "Final": "Dot1AgMaintenanceDomain_MaintenanceDomainIntermediatePointHalfFunctionMhfCreation",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Sender Id Permission",
+ "CamelCase": "SenderIdPermission",
+ "Final": "Dot1AgMaintenanceDomain_SenderIdPermission",
+ "Index": 6
+ }
+ }
+ },
+ "300": {
+ "Name": "Dot1ag maintenance association",
+ "Filename": "dot1agmaintenanceassociation.go",
+ "CamelCase": "Dot1AgMaintenanceAssociation",
+ "ClassID": 300,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Md Pointer",
+ "CamelCase": "MdPointer",
+ "Final": "Dot1AgMaintenanceAssociation_MdPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Short Ma Name Format",
+ "CamelCase": "ShortMaNameFormat",
+ "Final": "Dot1AgMaintenanceAssociation_ShortMaNameFormat",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Short MA Name 1",
+ "CamelCase": "ShortMaName1",
+ "Final": "Dot1AgMaintenanceAssociation_ShortMaName1",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Short MA Name 2",
+ "CamelCase": "ShortMaName2",
+ "Final": "Dot1AgMaintenanceAssociation_ShortMaName2",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Continuity Check Message Ccm Interval",
+ "CamelCase": "ContinuityCheckMessageCcmInterval",
+ "Final": "Dot1AgMaintenanceAssociation_ContinuityCheckMessageCcmInterval",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Associated Vlans",
+ "CamelCase": "AssociatedVlans",
+ "Final": "Dot1AgMaintenanceAssociation_AssociatedVlans",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Mhf Creation",
+ "CamelCase": "MhfCreation",
+ "Final": "Dot1AgMaintenanceAssociation_MhfCreation",
+ "Index": 7
+ }
+ }
+ },
+ "301": {
+ "Name": "Dot1ag default MD level",
+ "Filename": "dot1agdefaultmdlevel.go",
+ "CamelCase": "Dot1AgDefaultMdLevel",
+ "ClassID": 301,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Layer 2 Type",
+ "CamelCase": "Layer2Type",
+ "Final": "Dot1AgDefaultMdLevel_Layer2Type",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Catchall Level",
+ "CamelCase": "CatchallLevel",
+ "Final": "Dot1AgDefaultMdLevel_CatchallLevel",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Catchall Mhf Creation",
+ "CamelCase": "CatchallMhfCreation",
+ "Final": "Dot1AgDefaultMdLevel_CatchallMhfCreation",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Catchall Sender Id Permission",
+ "CamelCase": "CatchallSenderIdPermission",
+ "Final": "Dot1AgDefaultMdLevel_CatchallSenderIdPermission",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Default Md Level Table",
+ "CamelCase": "DefaultMdLevelTable",
+ "Final": "Dot1AgDefaultMdLevel_DefaultMdLevelTable",
+ "Index": 5
+ }
+ }
+ },
+ "302": {
+ "Name": "Dot1ag MEP",
+ "Filename": "dot1agmep.go",
+ "CamelCase": "Dot1AgMep",
+ "ClassID": 302,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Layer 2 Entity Pointer",
+ "CamelCase": "Layer2EntityPointer",
+ "Final": "Dot1AgMep_Layer2EntityPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Layer 2 Type",
+ "CamelCase": "Layer2Type",
+ "Final": "Dot1AgMep_Layer2Type",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Ma Pointer",
+ "CamelCase": "MaPointer",
+ "Final": "Dot1AgMep_MaPointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Mep Id",
+ "CamelCase": "MepId",
+ "Final": "Dot1AgMep_MepId",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Mep Control",
+ "CamelCase": "MepControl",
+ "Final": "Dot1AgMep_MepControl",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Primary Vlan",
+ "CamelCase": "PrimaryVlan",
+ "Final": "Dot1AgMep_PrimaryVlan",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "Dot1AgMep_AdministrativeState",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Ccm And Ltm Priority",
+ "CamelCase": "CcmAndLtmPriority",
+ "Final": "Dot1AgMep_CcmAndLtmPriority",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Egress Identifier",
+ "CamelCase": "EgressIdentifier",
+ "Final": "Dot1AgMep_EgressIdentifier",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Peer Mep Ids",
+ "CamelCase": "PeerMepIds",
+ "Final": "Dot1AgMep_PeerMepIds",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Eth Ais Control",
+ "CamelCase": "EthAisControl",
+ "Final": "Dot1AgMep_EthAisControl",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Fault Alarm Threshold",
+ "CamelCase": "FaultAlarmThreshold",
+ "Final": "Dot1AgMep_FaultAlarmThreshold",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Alarm Declaration Soak Time",
+ "CamelCase": "AlarmDeclarationSoakTime",
+ "Final": "Dot1AgMep_AlarmDeclarationSoakTime",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Alarm Clear Soak Time",
+ "CamelCase": "AlarmClearSoakTime",
+ "Final": "Dot1AgMep_AlarmClearSoakTime",
+ "Index": 14
+ }
+ }
+ },
+ "305": {
+ "Name": "Dot1ag CFM stack",
+ "Filename": "dot1agcfmstack.go",
+ "CamelCase": "Dot1AgCfmStack",
+ "ClassID": 305,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Layer 2 Type",
+ "CamelCase": "Layer2Type",
+ "Final": "Dot1AgCfmStack_Layer2Type",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Mp Status Table",
+ "CamelCase": "MpStatusTable",
+ "Final": "Dot1AgCfmStack_MpStatusTable",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Configuration Error List Table",
+ "CamelCase": "ConfigurationErrorListTable",
+ "Final": "Dot1AgCfmStack_ConfigurationErrorListTable",
+ "Index": 3
+ }
+ }
+ },
+ "306": {
+ "Name": "Dot1ag chassis-management info",
+ "Filename": "dot1agchassis-managementinfo.go",
+ "CamelCase": "Dot1AgChassisManagementInfo",
+ "ClassID": 306,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Chassis Id Length",
+ "CamelCase": "ChassisIdLength",
+ "Final": "Dot1AgChassisManagementInfo_ChassisIdLength",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Chassis Id Subtype",
+ "CamelCase": "ChassisIdSubtype",
+ "Final": "Dot1AgChassisManagementInfo_ChassisIdSubtype",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Chassis ID Part 1",
+ "CamelCase": "ChassisIdPart1",
+ "Final": "Dot1AgChassisManagementInfo_ChassisIdPart1",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Chassis ID Part 2",
+ "CamelCase": "ChassisIdPart2",
+ "Final": "Dot1AgChassisManagementInfo_ChassisIdPart2",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Management Address Domain Length",
+ "CamelCase": "ManagementAddressDomainLength",
+ "Final": "Dot1AgChassisManagementInfo_ManagementAddressDomainLength",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Management Address Domain 1",
+ "CamelCase": "ManagementAddressDomain1",
+ "Final": "Dot1AgChassisManagementInfo_ManagementAddressDomain1",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Management Address Domain 2",
+ "CamelCase": "ManagementAddressDomain2",
+ "Final": "Dot1AgChassisManagementInfo_ManagementAddressDomain2",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Management Address Length",
+ "CamelCase": "ManagementAddressLength",
+ "Final": "Dot1AgChassisManagementInfo_ManagementAddressLength",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Management Address 1",
+ "CamelCase": "ManagementAddress1",
+ "Final": "Dot1AgChassisManagementInfo_ManagementAddress1",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Management Address 2",
+ "CamelCase": "ManagementAddress2",
+ "Final": "Dot1AgChassisManagementInfo_ManagementAddress2",
+ "Index": 10
+ }
+ }
+ },
+ "307": {
+ "Name": "Octet string",
+ "Filename": "octetstring.go",
+ "CamelCase": "OctetString",
+ "ClassID": 307,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Length",
+ "CamelCase": "Length",
+ "Final": "OctetString_Length",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Part 1",
+ "CamelCase": "Part1",
+ "Final": "OctetString_Part1",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Part 2",
+ "CamelCase": "Part2",
+ "Final": "OctetString_Part2",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Part 3",
+ "CamelCase": "Part3",
+ "Final": "OctetString_Part3",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Part 4",
+ "CamelCase": "Part4",
+ "Final": "OctetString_Part4",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Part 5",
+ "CamelCase": "Part5",
+ "Final": "OctetString_Part5",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Part 6",
+ "CamelCase": "Part6",
+ "Final": "OctetString_Part6",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Part 7",
+ "CamelCase": "Part7",
+ "Final": "OctetString_Part7",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Part 8",
+ "CamelCase": "Part8",
+ "Final": "OctetString_Part8",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Part 9",
+ "CamelCase": "Part9",
+ "Final": "OctetString_Part9",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Part 10",
+ "CamelCase": "Part10",
+ "Final": "OctetString_Part10",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Part 11",
+ "CamelCase": "Part11",
+ "Final": "OctetString_Part11",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Part 12",
+ "CamelCase": "Part12",
+ "Final": "OctetString_Part12",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Part 13",
+ "CamelCase": "Part13",
+ "Final": "OctetString_Part13",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Part 14",
+ "CamelCase": "Part14",
+ "Final": "OctetString_Part14",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Part 15",
+ "CamelCase": "Part15",
+ "Final": "OctetString_Part15",
+ "Index": 16
+ }
+ }
+ },
+ "308": {
+ "Name": "General purpose buffer",
+ "Filename": "generalpurposebuffer.go",
+ "CamelCase": "GeneralPurposeBuffer",
+ "ClassID": 308,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Maximum Size",
+ "CamelCase": "MaximumSize",
+ "Final": "GeneralPurposeBuffer_MaximumSize",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Buffer Table",
+ "CamelCase": "BufferTable",
+ "Final": "GeneralPurposeBuffer_BufferTable",
+ "Index": 2
+ }
+ }
+ },
+ "309": {
+ "Name": "Multicast operations profile",
+ "Filename": "multicastoperationsprofile.go",
+ "CamelCase": "MulticastOperationsProfile",
+ "ClassID": 309,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Igmp Version",
+ "CamelCase": "IgmpVersion",
+ "Final": "MulticastOperationsProfile_IgmpVersion",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Igmp Function",
+ "CamelCase": "IgmpFunction",
+ "Final": "MulticastOperationsProfile_IgmpFunction",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Immediate Leave",
+ "CamelCase": "ImmediateLeave",
+ "Final": "MulticastOperationsProfile_ImmediateLeave",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Upstream Igmp Tci",
+ "CamelCase": "UpstreamIgmpTci",
+ "Final": "MulticastOperationsProfile_UpstreamIgmpTci",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Upstream Igmp Tag Control",
+ "CamelCase": "UpstreamIgmpTagControl",
+ "Final": "MulticastOperationsProfile_UpstreamIgmpTagControl",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Upstream Igmp Rate",
+ "CamelCase": "UpstreamIgmpRate",
+ "Final": "MulticastOperationsProfile_UpstreamIgmpRate",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Dynamic Access Control List Table",
+ "CamelCase": "DynamicAccessControlListTable",
+ "Final": "MulticastOperationsProfile_DynamicAccessControlListTable",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Static Access Control List Table",
+ "CamelCase": "StaticAccessControlListTable",
+ "Final": "MulticastOperationsProfile_StaticAccessControlListTable",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Lost Groups List Table",
+ "CamelCase": "LostGroupsListTable",
+ "Final": "MulticastOperationsProfile_LostGroupsListTable",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Robustness",
+ "CamelCase": "Robustness",
+ "Final": "MulticastOperationsProfile_Robustness",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Querier Ip Address",
+ "CamelCase": "QuerierIpAddress",
+ "Final": "MulticastOperationsProfile_QuerierIpAddress",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Query Interval",
+ "CamelCase": "QueryInterval",
+ "Final": "MulticastOperationsProfile_QueryInterval",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Query Max Response Time",
+ "CamelCase": "QueryMaxResponseTime",
+ "Final": "MulticastOperationsProfile_QueryMaxResponseTime",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Last Member Query Interval",
+ "CamelCase": "LastMemberQueryInterval",
+ "Final": "MulticastOperationsProfile_LastMemberQueryInterval",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Unauthorized Join Request Behaviour",
+ "CamelCase": "UnauthorizedJoinRequestBehaviour",
+ "Final": "MulticastOperationsProfile_UnauthorizedJoinRequestBehaviour",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Downstream IGMP and multicast TCI",
+ "CamelCase": "DownstreamIgmpAndMulticastTci",
+ "Final": "MulticastOperationsProfile_DownstreamIgmpAndMulticastTci",
+ "Index": 16
+ }
+ }
+ },
+ "310": {
+ "Name": "Multicast subscriber config info",
+ "Filename": "multicastsubscriberconfiginfo.go",
+ "CamelCase": "MulticastSubscriberConfigInfo",
+ "ClassID": 310,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Me Type",
+ "CamelCase": "MeType",
+ "Final": "MulticastSubscriberConfigInfo_MeType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Multicast Operations Profile Pointer",
+ "CamelCase": "MulticastOperationsProfilePointer",
+ "Final": "MulticastSubscriberConfigInfo_MulticastOperationsProfilePointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Max Simultaneous Groups",
+ "CamelCase": "MaxSimultaneousGroups",
+ "Final": "MulticastSubscriberConfigInfo_MaxSimultaneousGroups",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Max Multicast Bandwidth",
+ "CamelCase": "MaxMulticastBandwidth",
+ "Final": "MulticastSubscriberConfigInfo_MaxMulticastBandwidth",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Bandwidth Enforcement",
+ "CamelCase": "BandwidthEnforcement",
+ "Final": "MulticastSubscriberConfigInfo_BandwidthEnforcement",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Multicast Service Package Table",
+ "CamelCase": "MulticastServicePackageTable",
+ "Final": "MulticastSubscriberConfigInfo_MulticastServicePackageTable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Allowed Preview Groups Table",
+ "CamelCase": "AllowedPreviewGroupsTable",
+ "Final": "MulticastSubscriberConfigInfo_AllowedPreviewGroupsTable",
+ "Index": 7
+ }
+ }
+ },
+ "311": {
+ "Name": "Multicast subscriber monitor",
+ "Filename": "multicastsubscribermonitor.go",
+ "CamelCase": "MulticastSubscriberMonitor",
+ "ClassID": 311,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Me Type",
+ "CamelCase": "MeType",
+ "Final": "MulticastSubscriberMonitor_MeType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Current Multicast Bandwidth",
+ "CamelCase": "CurrentMulticastBandwidth",
+ "Final": "MulticastSubscriberMonitor_CurrentMulticastBandwidth",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Join Messages Counter",
+ "CamelCase": "JoinMessagesCounter",
+ "Final": "MulticastSubscriberMonitor_JoinMessagesCounter",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Bandwidth Exceeded Counter",
+ "CamelCase": "BandwidthExceededCounter",
+ "Final": "MulticastSubscriberMonitor_BandwidthExceededCounter",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Ipv4 Active Group List Table",
+ "CamelCase": "Ipv4ActiveGroupListTable",
+ "Final": "MulticastSubscriberMonitor_Ipv4ActiveGroupListTable",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Ipv6 Active Group List Table",
+ "CamelCase": "Ipv6ActiveGroupListTable",
+ "Final": "MulticastSubscriberMonitor_Ipv6ActiveGroupListTable",
+ "Index": 6
+ }
+ }
+ },
+ "312": {
+ "Name": "FEC performance monitoring history data",
+ "Filename": "fecperformancemonitoringhistorydata.go",
+ "CamelCase": "FecPerformanceMonitoringHistoryData",
+ "ClassID": 312,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "FecPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "FecPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Corrected Bytes",
+ "CamelCase": "CorrectedBytes",
+ "Final": "FecPerformanceMonitoringHistoryData_CorrectedBytes",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Corrected Code Words",
+ "CamelCase": "CorrectedCodeWords",
+ "Final": "FecPerformanceMonitoringHistoryData_CorrectedCodeWords",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Uncorrectable Code Words",
+ "CamelCase": "UncorrectableCodeWords",
+ "Final": "FecPerformanceMonitoringHistoryData_UncorrectableCodeWords",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Total Code Words",
+ "CamelCase": "TotalCodeWords",
+ "Final": "FecPerformanceMonitoringHistoryData_TotalCodeWords",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Fec Seconds",
+ "CamelCase": "FecSeconds",
+ "Final": "FecPerformanceMonitoringHistoryData_FecSeconds",
+ "Index": 7
+ }
+ }
+ },
+ "313": {
+ "Name": "RE ANI-G",
+ "Filename": "reani-g.go",
+ "CamelCase": "ReAniG",
+ "ClassID": 313,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "ReAniG_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "ReAniG_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "ReAniG_Arc",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "ReAniG_ArcInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Optical Signal Level",
+ "CamelCase": "OpticalSignalLevel",
+ "Final": "ReAniG_OpticalSignalLevel",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Lower Optical Threshold",
+ "CamelCase": "LowerOpticalThreshold",
+ "Final": "ReAniG_LowerOpticalThreshold",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Upper Optical Threshold",
+ "CamelCase": "UpperOpticalThreshold",
+ "Final": "ReAniG_UpperOpticalThreshold",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Transmit Optical Level",
+ "CamelCase": "TransmitOpticalLevel",
+ "Final": "ReAniG_TransmitOpticalLevel",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Lower Transmit Power Threshold",
+ "CamelCase": "LowerTransmitPowerThreshold",
+ "Final": "ReAniG_LowerTransmitPowerThreshold",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Upper Transmit Power Threshold",
+ "CamelCase": "UpperTransmitPowerThreshold",
+ "Final": "ReAniG_UpperTransmitPowerThreshold",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Usage Mode",
+ "CamelCase": "UsageMode",
+ "Final": "ReAniG_UsageMode",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Target Upstream Frequency",
+ "CamelCase": "TargetUpstreamFrequency",
+ "Final": "ReAniG_TargetUpstreamFrequency",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Target Downstream Frequency",
+ "CamelCase": "TargetDownstreamFrequency",
+ "Final": "ReAniG_TargetDownstreamFrequency",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Upstream Signal Transmission Mode",
+ "CamelCase": "UpstreamSignalTransmissionMode",
+ "Final": "ReAniG_UpstreamSignalTransmissionMode",
+ "Index": 14
+ }
+ }
+ },
+ "314": {
+ "Name": "Physical path termination point RE UNI",
+ "Filename": "physicalpathterminationpointreuni.go",
+ "CamelCase": "PhysicalPathTerminationPointReUni",
+ "ClassID": 314,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "PhysicalPathTerminationPointReUni_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "PhysicalPathTerminationPointReUni_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "PhysicalPathTerminationPointReUni_Arc",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "PhysicalPathTerminationPointReUni_ArcInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Re Ani_G Pointer",
+ "CamelCase": "ReAniGPointer",
+ "Final": "PhysicalPathTerminationPointReUni_ReAniGPointer",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Total Optical Receive Signal Level Table",
+ "CamelCase": "TotalOpticalReceiveSignalLevelTable",
+ "Final": "PhysicalPathTerminationPointReUni_TotalOpticalReceiveSignalLevelTable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Per Burst Receive Signal Level Table",
+ "CamelCase": "PerBurstReceiveSignalLevelTable",
+ "Final": "PhysicalPathTerminationPointReUni_PerBurstReceiveSignalLevelTable",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Lower Receive Optical Threshold",
+ "CamelCase": "LowerReceiveOpticalThreshold",
+ "Final": "PhysicalPathTerminationPointReUni_LowerReceiveOpticalThreshold",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Upper Receive Optical Threshold",
+ "CamelCase": "UpperReceiveOpticalThreshold",
+ "Final": "PhysicalPathTerminationPointReUni_UpperReceiveOpticalThreshold",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Transmit Optical Level",
+ "CamelCase": "TransmitOpticalLevel",
+ "Final": "PhysicalPathTerminationPointReUni_TransmitOpticalLevel",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Lower Transmit Power Threshold",
+ "CamelCase": "LowerTransmitPowerThreshold",
+ "Final": "PhysicalPathTerminationPointReUni_LowerTransmitPowerThreshold",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Upper Transmit Power Threshold",
+ "CamelCase": "UpperTransmitPowerThreshold",
+ "Final": "PhysicalPathTerminationPointReUni_UpperTransmitPowerThreshold",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Additional Preamble",
+ "CamelCase": "AdditionalPreamble",
+ "Final": "PhysicalPathTerminationPointReUni_AdditionalPreamble",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Additional Guard Time",
+ "CamelCase": "AdditionalGuardTime",
+ "Final": "PhysicalPathTerminationPointReUni_AdditionalGuardTime",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Connected Onus Table",
+ "CamelCase": "ConnectedOnusTable",
+ "Final": "PhysicalPathTerminationPointReUni_ConnectedOnusTable",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Clear Onu Table",
+ "CamelCase": "ClearOnuTable",
+ "Final": "PhysicalPathTerminationPointReUni_ClearOnuTable",
+ "Index": 16
+ }
+ }
+ },
+ "315": {
+ "Name": "RE upstream amplifier",
+ "Filename": "reupstreamamplifier.go",
+ "CamelCase": "ReUpstreamAmplifier",
+ "ClassID": 315,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "ReUpstreamAmplifier_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "ReUpstreamAmplifier_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Operational Mode",
+ "CamelCase": "OperationalMode",
+ "Final": "ReUpstreamAmplifier_OperationalMode",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "ReUpstreamAmplifier_Arc",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "ReUpstreamAmplifier_ArcInterval",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Re Downstream Amplifier Pointer",
+ "CamelCase": "ReDownstreamAmplifierPointer",
+ "Final": "ReUpstreamAmplifier_ReDownstreamAmplifierPointer",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Total Optical Receive Signal Level Table",
+ "CamelCase": "TotalOpticalReceiveSignalLevelTable",
+ "Final": "ReUpstreamAmplifier_TotalOpticalReceiveSignalLevelTable",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Per Burst Receive Signal Level Table",
+ "CamelCase": "PerBurstReceiveSignalLevelTable",
+ "Final": "ReUpstreamAmplifier_PerBurstReceiveSignalLevelTable",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Lower Receive Optical Threshold",
+ "CamelCase": "LowerReceiveOpticalThreshold",
+ "Final": "ReUpstreamAmplifier_LowerReceiveOpticalThreshold",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Upper Receive Optical Threshold",
+ "CamelCase": "UpperReceiveOpticalThreshold",
+ "Final": "ReUpstreamAmplifier_UpperReceiveOpticalThreshold",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Transmit Optical Signal Level",
+ "CamelCase": "TransmitOpticalSignalLevel",
+ "Final": "ReUpstreamAmplifier_TransmitOpticalSignalLevel",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Lower Transmit Optical Threshold",
+ "CamelCase": "LowerTransmitOpticalThreshold",
+ "Final": "ReUpstreamAmplifier_LowerTransmitOpticalThreshold",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Upper Transmit Optical Threshold",
+ "CamelCase": "UpperTransmitOpticalThreshold",
+ "Final": "ReUpstreamAmplifier_UpperTransmitOpticalThreshold",
+ "Index": 13
+ }
+ }
+ },
+ "316": {
+ "Name": "RE downstream amplifier",
+ "Filename": "redownstreamamplifier.go",
+ "CamelCase": "ReDownstreamAmplifier",
+ "ClassID": 316,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "ReDownstreamAmplifier_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "ReDownstreamAmplifier_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Arc",
+ "CamelCase": "Arc",
+ "Final": "ReDownstreamAmplifier_Arc",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Arc Interval",
+ "CamelCase": "ArcInterval",
+ "Final": "ReDownstreamAmplifier_ArcInterval",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Operational Mode",
+ "CamelCase": "OperationalMode",
+ "Final": "ReDownstreamAmplifier_OperationalMode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Input Optical Signal Level",
+ "CamelCase": "InputOpticalSignalLevel",
+ "Final": "ReDownstreamAmplifier_InputOpticalSignalLevel",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Lower Input Optical Threshold",
+ "CamelCase": "LowerInputOpticalThreshold",
+ "Final": "ReDownstreamAmplifier_LowerInputOpticalThreshold",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Upper Input Optical Threshold",
+ "CamelCase": "UpperInputOpticalThreshold",
+ "Final": "ReDownstreamAmplifier_UpperInputOpticalThreshold",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Output Optical Signal Level",
+ "CamelCase": "OutputOpticalSignalLevel",
+ "Final": "ReDownstreamAmplifier_OutputOpticalSignalLevel",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Lower Output Optical Threshold",
+ "CamelCase": "LowerOutputOpticalThreshold",
+ "Final": "ReDownstreamAmplifier_LowerOutputOpticalThreshold",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Upper Output Optical Threshold",
+ "CamelCase": "UpperOutputOpticalThreshold",
+ "Final": "ReDownstreamAmplifier_UpperOutputOpticalThreshold",
+ "Index": 11
+ },
+ "12": {
+ "Name": "R S Splitter Coupling Ratio",
+ "CamelCase": "RSSplitterCouplingRatio",
+ "Final": "ReDownstreamAmplifier_RSSplitterCouplingRatio",
+ "Index": 12
+ }
+ }
+ },
+ "321": {
+ "Name": "Ethernet frame performance monitoring history data downstream",
+ "Filename": "ethernetframeperformancemonitoringhistorydatadownstream.go",
+ "CamelCase": "EthernetFramePerformanceMonitoringHistoryDataDownstream",
+ "ClassID": 321,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Drop Events",
+ "CamelCase": "DropEvents",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_DropEvents",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Octets",
+ "CamelCase": "Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Octets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Packets",
+ "CamelCase": "Packets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Broadcast Packets",
+ "CamelCase": "BroadcastPackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_BroadcastPackets",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Multicast Packets",
+ "CamelCase": "MulticastPackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_MulticastPackets",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Crc Errored Packets",
+ "CamelCase": "CrcErroredPackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_CrcErroredPackets",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Undersize Packets",
+ "CamelCase": "UndersizePackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_UndersizePackets",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Oversize Packets",
+ "CamelCase": "OversizePackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_OversizePackets",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Packets 64 Octets",
+ "CamelCase": "Packets64Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets64Octets",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Packets 65 To 127 Octets",
+ "CamelCase": "Packets65To127Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets65To127Octets",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Packets 128 To 255 Octets",
+ "CamelCase": "Packets128To255Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets128To255Octets",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Packets 256 To 511 Octets",
+ "CamelCase": "Packets256To511Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets256To511Octets",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Packets 512 To 1023 Octets",
+ "CamelCase": "Packets512To1023Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets512To1023Octets",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Packets 1024 To 1518 Octets",
+ "CamelCase": "Packets1024To1518Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataDownstream_Packets1024To1518Octets",
+ "Index": 16
+ }
+ }
+ },
+ "322": {
+ "Name": "Ethernet frame performance monitoring history data upstream",
+ "Filename": "ethernetframeperformancemonitoringhistorydataupstream.go",
+ "CamelCase": "EthernetFramePerformanceMonitoringHistoryDataUpstream",
+ "ClassID": 322,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Drop Events",
+ "CamelCase": "DropEvents",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_DropEvents",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Octets",
+ "CamelCase": "Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Octets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Packets",
+ "CamelCase": "Packets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Broadcast Packets",
+ "CamelCase": "BroadcastPackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_BroadcastPackets",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Multicast Packets",
+ "CamelCase": "MulticastPackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_MulticastPackets",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Crc Errored Packets",
+ "CamelCase": "CrcErroredPackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_CrcErroredPackets",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Undersize Packets",
+ "CamelCase": "UndersizePackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_UndersizePackets",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Oversize Packets",
+ "CamelCase": "OversizePackets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_OversizePackets",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Packets 64 Octets",
+ "CamelCase": "Packets64Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets64Octets",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Packets 65 To 127 Octets",
+ "CamelCase": "Packets65To127Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets65To127Octets",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Packets 128 To 255 Octets",
+ "CamelCase": "Packets128To255Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets128To255Octets",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Packets 256 To 511 Octets",
+ "CamelCase": "Packets256To511Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets256To511Octets",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Packets 512 To 1023 Octets",
+ "CamelCase": "Packets512To1023Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets512To1023Octets",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Packets 1024 To 1518 Octets",
+ "CamelCase": "Packets1024To1518Octets",
+ "Final": "EthernetFramePerformanceMonitoringHistoryDataUpstream_Packets1024To1518Octets",
+ "Index": 16
+ }
+ }
+ },
+ "323": {
+ "Name": "VDSL2 line configuration extensions 2",
+ "Filename": "vdsl2lineconfigurationextensions2.go",
+ "CamelCase": "Vdsl2LineConfigurationExtensions2",
+ "ClassID": 323,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Sos Time Downstream",
+ "CamelCase": "SosTimeDownstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SosTimeDownstream",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Sos Time Upstream",
+ "CamelCase": "SosTimeUpstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SosTimeUpstream",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Sos Degraded Tones Threshold Downstream",
+ "CamelCase": "SosDegradedTonesThresholdDownstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SosDegradedTonesThresholdDownstream",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Sos Degraded Tones Threshold Upstream",
+ "CamelCase": "SosDegradedTonesThresholdUpstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SosDegradedTonesThresholdUpstream",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Sos Crc Threshold Downstream",
+ "CamelCase": "SosCrcThresholdDownstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SosCrcThresholdDownstream",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Sos Crc Threshold Upstream",
+ "CamelCase": "SosCrcThresholdUpstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SosCrcThresholdUpstream",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Max Sos Downstream",
+ "CamelCase": "MaxSosDownstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_MaxSosDownstream",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Max Sos Upstream",
+ "CamelCase": "MaxSosUpstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_MaxSosUpstream",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Snr Max Offset Downstream",
+ "CamelCase": "SnrMaxOffsetDownstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SnrMaxOffsetDownstream",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Snr Max Offset Upstream",
+ "CamelCase": "SnrMaxOffsetUpstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_SnrMaxOffsetUpstream",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Roc Minimum Impulse Noise Protection Downstream",
+ "CamelCase": "RocMinimumImpulseNoiseProtectionDownstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_RocMinimumImpulseNoiseProtectionDownstream",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Roc Minimum Impulse Noise Protection Upstream",
+ "CamelCase": "RocMinimumImpulseNoiseProtectionUpstream",
+ "Final": "Vdsl2LineConfigurationExtensions2_RocMinimumImpulseNoiseProtectionUpstream",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Fext Downstream Transmitter Referred Virtual Noise Table",
+ "CamelCase": "FextDownstreamTransmitterReferredVirtualNoiseTable",
+ "Final": "Vdsl2LineConfigurationExtensions2_FextDownstreamTransmitterReferredVirtualNoiseTable",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Next Downstream Transmitter Referred Virtual Noise Table",
+ "CamelCase": "NextDownstreamTransmitterReferredVirtualNoiseTable",
+ "Final": "Vdsl2LineConfigurationExtensions2_NextDownstreamTransmitterReferredVirtualNoiseTable",
+ "Index": 14
+ }
+ }
+ },
+ "324": {
+ "Name": "xDSL impulse noise monitor performance monitoring history data",
+ "Filename": "xdslimpulsenoisemonitorperformancemonitoringhistorydata.go",
+ "CamelCase": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData",
+ "ClassID": 324,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Inm Inpeq Histogram Table",
+ "CamelCase": "InmInpeqHistogramTable",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_InmInpeqHistogramTable",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Inm Total Measurement",
+ "CamelCase": "InmTotalMeasurement",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_InmTotalMeasurement",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Inm Iat Histogram",
+ "CamelCase": "InmIatHistogram",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_InmIatHistogram",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Inm Inpeq Histogram Lfe Table",
+ "CamelCase": "InmInpeqHistogramLfeTable",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_InmInpeqHistogramLfeTable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Inm Total Measurement Lfe",
+ "CamelCase": "InmTotalMeasurementLfe",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_InmTotalMeasurementLfe",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Inm Iat Histogram Lfe",
+ "CamelCase": "InmIatHistogramLfe",
+ "Final": "XdslImpulseNoiseMonitorPerformanceMonitoringHistoryData_InmIatHistogramLfe",
+ "Index": 8
+ }
+ }
+ },
+ "325": {
+ "Name": "xDSL line inventory and status data part 5",
+ "Filename": "xdsllineinventoryandstatusdatapart5.go",
+ "CamelCase": "XdslLineInventoryAndStatusDataPart5",
+ "ClassID": 325,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Fext Downstream Snr Margin",
+ "CamelCase": "FextDownstreamSnrMargin",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextDownstreamSnrMargin",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Next Downstream Snr Margin",
+ "CamelCase": "NextDownstreamSnrMargin",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextDownstreamSnrMargin",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Fext Upstream Snr Margin",
+ "CamelCase": "FextUpstreamSnrMargin",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextUpstreamSnrMargin",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Next Upstream Snr Margin",
+ "CamelCase": "NextUpstreamSnrMargin",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextUpstreamSnrMargin",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Fext Downstream Maximum Attainable Data Rate",
+ "CamelCase": "FextDownstreamMaximumAttainableDataRate",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextDownstreamMaximumAttainableDataRate",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Next Downstream Maximum Attainable Data Rate",
+ "CamelCase": "NextDownstreamMaximumAttainableDataRate",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextDownstreamMaximumAttainableDataRate",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Fext Upstream Maximum Attainable Data Rate",
+ "CamelCase": "FextUpstreamMaximumAttainableDataRate",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextUpstreamMaximumAttainableDataRate",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Next Upstream Maximum Attainable Data Rate",
+ "CamelCase": "NextUpstreamMaximumAttainableDataRate",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextUpstreamMaximumAttainableDataRate",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Fext Downstream Actual Power Spectral Density",
+ "CamelCase": "FextDownstreamActualPowerSpectralDensity",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextDownstreamActualPowerSpectralDensity",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Next Downstream Actual Power Spectral Density",
+ "CamelCase": "NextDownstreamActualPowerSpectralDensity",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextDownstreamActualPowerSpectralDensity",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Fext Upstream Actual Power Spectral Density",
+ "CamelCase": "FextUpstreamActualPowerSpectralDensity",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextUpstreamActualPowerSpectralDensity",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Next Upstream Actual Power Spectral Density",
+ "CamelCase": "NextUpstreamActualPowerSpectralDensity",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextUpstreamActualPowerSpectralDensity",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Fext Downstream Actual Aggregate Transmit Power",
+ "CamelCase": "FextDownstreamActualAggregateTransmitPower",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextDownstreamActualAggregateTransmitPower",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Next Downstream Actual Aggregate Transmit Power",
+ "CamelCase": "NextDownstreamActualAggregateTransmitPower",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextDownstreamActualAggregateTransmitPower",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Fext Upstream Actual Aggregate Transmit Power",
+ "CamelCase": "FextUpstreamActualAggregateTransmitPower",
+ "Final": "XdslLineInventoryAndStatusDataPart5_FextUpstreamActualAggregateTransmitPower",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Next Upstream Actual Aggregate Transmit Power",
+ "CamelCase": "NextUpstreamActualAggregateTransmitPower",
+ "Final": "XdslLineInventoryAndStatusDataPart5_NextUpstreamActualAggregateTransmitPower",
+ "Index": 16
+ }
+ }
+ },
+ "328": {
+ "Name": "RE common amplifier parameters",
+ "Filename": "recommonamplifierparameters.go",
+ "CamelCase": "ReCommonAmplifierParameters",
+ "ClassID": 328,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Gain",
+ "CamelCase": "Gain",
+ "Final": "ReCommonAmplifierParameters_Gain",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Lower Gain Threshold",
+ "CamelCase": "LowerGainThreshold",
+ "Final": "ReCommonAmplifierParameters_LowerGainThreshold",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Upper Gain Threshold",
+ "CamelCase": "UpperGainThreshold",
+ "Final": "ReCommonAmplifierParameters_UpperGainThreshold",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Target Gain",
+ "CamelCase": "TargetGain",
+ "Final": "ReCommonAmplifierParameters_TargetGain",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Device Temperature",
+ "CamelCase": "DeviceTemperature",
+ "Final": "ReCommonAmplifierParameters_DeviceTemperature",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Lower Device Temperature Threshold",
+ "CamelCase": "LowerDeviceTemperatureThreshold",
+ "Final": "ReCommonAmplifierParameters_LowerDeviceTemperatureThreshold",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Upper Device Temperature Threshold",
+ "CamelCase": "UpperDeviceTemperatureThreshold",
+ "Final": "ReCommonAmplifierParameters_UpperDeviceTemperatureThreshold",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Device Bias Current",
+ "CamelCase": "DeviceBiasCurrent",
+ "Final": "ReCommonAmplifierParameters_DeviceBiasCurrent",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Amplifier Saturation Output Power",
+ "CamelCase": "AmplifierSaturationOutputPower",
+ "Final": "ReCommonAmplifierParameters_AmplifierSaturationOutputPower",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Amplifier Noise Figure",
+ "CamelCase": "AmplifierNoiseFigure",
+ "Final": "ReCommonAmplifierParameters_AmplifierNoiseFigure",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Amplifier Saturation Gain",
+ "CamelCase": "AmplifierSaturationGain",
+ "Final": "ReCommonAmplifierParameters_AmplifierSaturationGain",
+ "Index": 11
+ }
+ }
+ },
+ "329": {
+ "Name": "Virtual Ethernet interface point",
+ "Filename": "virtualethernetinterfacepoint.go",
+ "CamelCase": "VirtualEthernetInterfacePoint",
+ "ClassID": 329,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "VirtualEthernetInterfacePoint_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "VirtualEthernetInterfacePoint_OperationalState",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Interdomain Name",
+ "CamelCase": "InterdomainName",
+ "Final": "VirtualEthernetInterfacePoint_InterdomainName",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Tcp_Udp Pointer",
+ "CamelCase": "TcpUdpPointer",
+ "Final": "VirtualEthernetInterfacePoint_TcpUdpPointer",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Iana Assigned Port",
+ "CamelCase": "IanaAssignedPort",
+ "Final": "VirtualEthernetInterfacePoint_IanaAssignedPort",
+ "Index": 5
+ }
+ }
+ },
+ "332": {
+ "Name": "Enhanced security control",
+ "Filename": "enhancedsecuritycontrol.go",
+ "CamelCase": "EnhancedSecurityControl",
+ "ClassID": 332,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Olt Crypto Capabilities",
+ "CamelCase": "OltCryptoCapabilities",
+ "Final": "EnhancedSecurityControl_OltCryptoCapabilities",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Olt Random Challenge Table",
+ "CamelCase": "OltRandomChallengeTable",
+ "Final": "EnhancedSecurityControl_OltRandomChallengeTable",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Olt Challenge Status",
+ "CamelCase": "OltChallengeStatus",
+ "Final": "EnhancedSecurityControl_OltChallengeStatus",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Onu Selected Crypto Capabilities",
+ "CamelCase": "OnuSelectedCryptoCapabilities",
+ "Final": "EnhancedSecurityControl_OnuSelectedCryptoCapabilities",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Onu Random Challenge Table",
+ "CamelCase": "OnuRandomChallengeTable",
+ "Final": "EnhancedSecurityControl_OnuRandomChallengeTable",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Onu Authentication Result Table",
+ "CamelCase": "OnuAuthenticationResultTable",
+ "Final": "EnhancedSecurityControl_OnuAuthenticationResultTable",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Olt Authentication Result Table",
+ "CamelCase": "OltAuthenticationResultTable",
+ "Final": "EnhancedSecurityControl_OltAuthenticationResultTable",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Olt Result Status",
+ "CamelCase": "OltResultStatus",
+ "Final": "EnhancedSecurityControl_OltResultStatus",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Onu Authentication Status",
+ "CamelCase": "OnuAuthenticationStatus",
+ "Final": "EnhancedSecurityControl_OnuAuthenticationStatus",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Master Session Key Name",
+ "CamelCase": "MasterSessionKeyName",
+ "Final": "EnhancedSecurityControl_MasterSessionKeyName",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Broadcast Key Table",
+ "CamelCase": "BroadcastKeyTable",
+ "Final": "EnhancedSecurityControl_BroadcastKeyTable",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Effective Key Length",
+ "CamelCase": "EffectiveKeyLength",
+ "Final": "EnhancedSecurityControl_EffectiveKeyLength",
+ "Index": 12
+ }
+ }
+ },
+ "333": {
+ "Name": "MPLS pseudowire termination point",
+ "Filename": "mplspseudowireterminationpoint.go",
+ "CamelCase": "MplsPseudowireTerminationPoint",
+ "ClassID": 333,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Tp Type",
+ "CamelCase": "TpType",
+ "Final": "MplsPseudowireTerminationPoint_TpType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Tp Pointer",
+ "CamelCase": "TpPointer",
+ "Final": "MplsPseudowireTerminationPoint_TpPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Mpls Label Indicator",
+ "CamelCase": "MplsLabelIndicator",
+ "Final": "MplsPseudowireTerminationPoint_MplsLabelIndicator",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Mpls Pw Direction",
+ "CamelCase": "MplsPwDirection",
+ "Final": "MplsPseudowireTerminationPoint_MplsPwDirection",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Mpls Pw Uplink Label",
+ "CamelCase": "MplsPwUplinkLabel",
+ "Final": "MplsPseudowireTerminationPoint_MplsPwUplinkLabel",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Mpls Pw Downlink Label",
+ "CamelCase": "MplsPwDownlinkLabel",
+ "Final": "MplsPseudowireTerminationPoint_MplsPwDownlinkLabel",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Mpls Pw Tc",
+ "CamelCase": "MplsPwTc",
+ "Final": "MplsPseudowireTerminationPoint_MplsPwTc",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Mpls Tunnel Direction",
+ "CamelCase": "MplsTunnelDirection",
+ "Final": "MplsPseudowireTerminationPoint_MplsTunnelDirection",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Mpls Tunnel Uplink Label",
+ "CamelCase": "MplsTunnelUplinkLabel",
+ "Final": "MplsPseudowireTerminationPoint_MplsTunnelUplinkLabel",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Mpls Tunnel Downlink Label",
+ "CamelCase": "MplsTunnelDownlinkLabel",
+ "Final": "MplsPseudowireTerminationPoint_MplsTunnelDownlinkLabel",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Mpls Tunnel Tc",
+ "CamelCase": "MplsTunnelTc",
+ "Final": "MplsPseudowireTerminationPoint_MplsTunnelTc",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Pseudowire Type",
+ "CamelCase": "PseudowireType",
+ "Final": "MplsPseudowireTerminationPoint_PseudowireType",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Pseudowire Control Word Preference",
+ "CamelCase": "PseudowireControlWordPreference",
+ "Final": "MplsPseudowireTerminationPoint_PseudowireControlWordPreference",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "MplsPseudowireTerminationPoint_AdministrativeState",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Operational State",
+ "CamelCase": "OperationalState",
+ "Final": "MplsPseudowireTerminationPoint_OperationalState",
+ "Index": 15
+ }
+ }
+ },
+ "334": {
+ "Name": "Ethernet frame extended PM",
+ "Filename": "ethernetframeextendedpm.go",
+ "CamelCase": "EthernetFrameExtendedPm",
+ "ClassID": 334,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EthernetFrameExtendedPm_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Control Block",
+ "CamelCase": "ControlBlock",
+ "Final": "EthernetFrameExtendedPm_ControlBlock",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Drop Events",
+ "CamelCase": "DropEvents",
+ "Final": "EthernetFrameExtendedPm_DropEvents",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Octets",
+ "CamelCase": "Octets",
+ "Final": "EthernetFrameExtendedPm_Octets",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Frames",
+ "CamelCase": "Frames",
+ "Final": "EthernetFrameExtendedPm_Frames",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Broadcast Frames",
+ "CamelCase": "BroadcastFrames",
+ "Final": "EthernetFrameExtendedPm_BroadcastFrames",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Multicast Frames",
+ "CamelCase": "MulticastFrames",
+ "Final": "EthernetFrameExtendedPm_MulticastFrames",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Crc Errored Frames",
+ "CamelCase": "CrcErroredFrames",
+ "Final": "EthernetFrameExtendedPm_CrcErroredFrames",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Undersize Frames",
+ "CamelCase": "UndersizeFrames",
+ "Final": "EthernetFrameExtendedPm_UndersizeFrames",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Oversize Frames",
+ "CamelCase": "OversizeFrames",
+ "Final": "EthernetFrameExtendedPm_OversizeFrames",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Frames 64 Octets",
+ "CamelCase": "Frames64Octets",
+ "Final": "EthernetFrameExtendedPm_Frames64Octets",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Frames 65 To 127 Octets",
+ "CamelCase": "Frames65To127Octets",
+ "Final": "EthernetFrameExtendedPm_Frames65To127Octets",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Frames 128 To 255 Octets",
+ "CamelCase": "Frames128To255Octets",
+ "Final": "EthernetFrameExtendedPm_Frames128To255Octets",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Frames 256 To 511 Octets",
+ "CamelCase": "Frames256To511Octets",
+ "Final": "EthernetFrameExtendedPm_Frames256To511Octets",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Frames 512 To 1 023 Octets",
+ "CamelCase": "Frames512To1023Octets",
+ "Final": "EthernetFrameExtendedPm_Frames512To1023Octets",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Frames 1024 To 1518 Octets",
+ "CamelCase": "Frames1024To1518Octets",
+ "Final": "EthernetFrameExtendedPm_Frames1024To1518Octets",
+ "Index": 16
+ }
+ }
+ },
+ "335": {
+ "Name": "SNMP configuration data",
+ "Filename": "snmpconfigurationdata.go",
+ "CamelCase": "SnmpConfigurationData",
+ "ClassID": 335,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Snmp Version",
+ "CamelCase": "SnmpVersion",
+ "Final": "SnmpConfigurationData_SnmpVersion",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Snmp Agent Address",
+ "CamelCase": "SnmpAgentAddress",
+ "Final": "SnmpConfigurationData_SnmpAgentAddress",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Snmp Server Address",
+ "CamelCase": "SnmpServerAddress",
+ "Final": "SnmpConfigurationData_SnmpServerAddress",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Snmp Server Port",
+ "CamelCase": "SnmpServerPort",
+ "Final": "SnmpConfigurationData_SnmpServerPort",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Security Name Pointer",
+ "CamelCase": "SecurityNamePointer",
+ "Final": "SnmpConfigurationData_SecurityNamePointer",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Community For Read",
+ "CamelCase": "CommunityForRead",
+ "Final": "SnmpConfigurationData_CommunityForRead",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Community For Write",
+ "CamelCase": "CommunityForWrite",
+ "Final": "SnmpConfigurationData_CommunityForWrite",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Sys Name Pointer",
+ "CamelCase": "SysNamePointer",
+ "Final": "SnmpConfigurationData_SysNamePointer",
+ "Index": 8
+ }
+ }
+ },
+ "336": {
+ "Name": "ONU dynamic power management control",
+ "Filename": "onudynamicpowermanagementcontrol.go",
+ "CamelCase": "OnuDynamicPowerManagementControl",
+ "ClassID": 336,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Power Reduction Management Capability",
+ "CamelCase": "PowerReductionManagementCapability",
+ "Final": "OnuDynamicPowerManagementControl_PowerReductionManagementCapability",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Power Reduction Management Mode",
+ "CamelCase": "PowerReductionManagementMode",
+ "Final": "OnuDynamicPowerManagementControl_PowerReductionManagementMode",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Itransinit",
+ "CamelCase": "Itransinit",
+ "Final": "OnuDynamicPowerManagementControl_Itransinit",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Itxinit",
+ "CamelCase": "Itxinit",
+ "Final": "OnuDynamicPowerManagementControl_Itxinit",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Maximum Sleep Interval",
+ "CamelCase": "MaximumSleepInterval",
+ "Final": "OnuDynamicPowerManagementControl_MaximumSleepInterval",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Maximum Receiver_Off Interval",
+ "CamelCase": "MaximumReceiverOffInterval",
+ "Final": "OnuDynamicPowerManagementControl_MaximumReceiverOffInterval",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Minimum Aware Interval",
+ "CamelCase": "MinimumAwareInterval",
+ "Final": "OnuDynamicPowerManagementControl_MinimumAwareInterval",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Minimum Active Held Interval",
+ "CamelCase": "MinimumActiveHeldInterval",
+ "Final": "OnuDynamicPowerManagementControl_MinimumActiveHeldInterval",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Maximum Sleep Interval Extension",
+ "CamelCase": "MaximumSleepIntervalExtension",
+ "Final": "OnuDynamicPowerManagementControl_MaximumSleepIntervalExtension",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Ethernet Passive Optical Network Epon Capability Extension",
+ "CamelCase": "EthernetPassiveOpticalNetworkEponCapabilityExtension",
+ "Final": "OnuDynamicPowerManagementControl_EthernetPassiveOpticalNetworkEponCapabilityExtension",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Epon Setup Extension",
+ "CamelCase": "EponSetupExtension",
+ "Final": "OnuDynamicPowerManagementControl_EponSetupExtension",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Missing Consecutive Bursts Threshold",
+ "CamelCase": "MissingConsecutiveBurstsThreshold",
+ "Final": "OnuDynamicPowerManagementControl_MissingConsecutiveBurstsThreshold",
+ "Index": 12
+ }
+ }
+ },
+ "337": {
+ "Name": "PW ATM configuration data",
+ "Filename": "pwatmconfigurationdata.go",
+ "CamelCase": "PwAtmConfigurationData",
+ "ClassID": 337,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Tp Type",
+ "CamelCase": "TpType",
+ "Final": "PwAtmConfigurationData_TpType",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Transport Tp Pointer",
+ "CamelCase": "TransportTpPointer",
+ "Final": "PwAtmConfigurationData_TransportTpPointer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Pptp Atm Uni Pointer",
+ "CamelCase": "PptpAtmUniPointer",
+ "Final": "PwAtmConfigurationData_PptpAtmUniPointer",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Max C Ell C Oncatenation",
+ "CamelCase": "MaxCEllCOncatenation",
+ "Final": "PwAtmConfigurationData_MaxCEllCOncatenation",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Far End M Ax C Ell C Oncatenation",
+ "CamelCase": "FarEndMAxCEllCOncatenation",
+ "Final": "PwAtmConfigurationData_FarEndMAxCEllCOncatenation",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Atm Cell Loss Priority Clp Qos Mapping",
+ "CamelCase": "AtmCellLossPriorityClpQosMapping",
+ "Final": "PwAtmConfigurationData_AtmCellLossPriorityClpQosMapping",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Timeout Mode",
+ "CamelCase": "TimeoutMode",
+ "Final": "PwAtmConfigurationData_TimeoutMode",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Pw Atm Mapping Table",
+ "CamelCase": "PwAtmMappingTable",
+ "Final": "PwAtmConfigurationData_PwAtmMappingTable",
+ "Index": 8
+ }
+ }
+ },
+ "338": {
+ "Name": "PW ATM performance monitoring history data",
+ "Filename": "pwatmperformancemonitoringhistorydata.go",
+ "CamelCase": "PwAtmPerformanceMonitoringHistoryData",
+ "ClassID": 338,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Downstream Missing Packets Counter",
+ "CamelCase": "DownstreamMissingPacketsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_DownstreamMissingPacketsCounter",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Downstream Reordered Packets Counter",
+ "CamelCase": "DownstreamReorderedPacketsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_DownstreamReorderedPacketsCounter",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Downstream Misordered Packets Counter",
+ "CamelCase": "DownstreamMisorderedPacketsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_DownstreamMisorderedPacketsCounter",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Upstream Timeout Packets Counter",
+ "CamelCase": "UpstreamTimeoutPacketsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_UpstreamTimeoutPacketsCounter",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Upstream Transmitted Cells Counter",
+ "CamelCase": "UpstreamTransmittedCellsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_UpstreamTransmittedCellsCounter",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Upstream Dropped Cells Counter",
+ "CamelCase": "UpstreamDroppedCellsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_UpstreamDroppedCellsCounter",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Upstream Received Cells Counter",
+ "CamelCase": "UpstreamReceivedCellsCounter",
+ "Final": "PwAtmPerformanceMonitoringHistoryData_UpstreamReceivedCellsCounter",
+ "Index": 9
+ }
+ }
+ },
+ "339": {
+ "Name": "PW Ethernet configuration data",
+ "Filename": "pwethernetconfigurationdata.go",
+ "CamelCase": "PwEthernetConfigurationData",
+ "ClassID": 339,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Mpls Pseudowire Tp Pointer",
+ "CamelCase": "MplsPseudowireTpPointer",
+ "Final": "PwEthernetConfigurationData_MplsPseudowireTpPointer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Tp Type",
+ "CamelCase": "TpType",
+ "Final": "PwEthernetConfigurationData_TpType",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Uni Pointer",
+ "CamelCase": "UniPointer",
+ "Final": "PwEthernetConfigurationData_UniPointer",
+ "Index": 3
+ }
+ }
+ },
+ "340": {
+ "Name": "BBF TR-069 management server",
+ "Filename": "bbftr-069managementserver.go",
+ "CamelCase": "BbfTr069ManagementServer",
+ "ClassID": 340,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Administrative State",
+ "CamelCase": "AdministrativeState",
+ "Final": "BbfTr069ManagementServer_AdministrativeState",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Acs Network Address",
+ "CamelCase": "AcsNetworkAddress",
+ "Final": "BbfTr069ManagementServer_AcsNetworkAddress",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Associated Tag",
+ "CamelCase": "AssociatedTag",
+ "Final": "BbfTr069ManagementServer_AssociatedTag",
+ "Index": 3
+ }
+ }
+ },
+ "341": {
+ "Name": "GEM port network CTP performance monitoring history data",
+ "Filename": "gemportnetworkctpperformancemonitoringhistorydata.go",
+ "CamelCase": "GemPortNetworkCtpPerformanceMonitoringHistoryData",
+ "ClassID": 341,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Transmitted Gem Frames",
+ "CamelCase": "TransmittedGemFrames",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedGemFrames",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Received Gem Frames",
+ "CamelCase": "ReceivedGemFrames",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedGemFrames",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Received Payload Bytes",
+ "CamelCase": "ReceivedPayloadBytes",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedPayloadBytes",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Transmitted Payload Bytes",
+ "CamelCase": "TransmittedPayloadBytes",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedPayloadBytes",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Encryption Key Errors",
+ "CamelCase": "EncryptionKeyErrors",
+ "Final": "GemPortNetworkCtpPerformanceMonitoringHistoryData_EncryptionKeyErrors",
+ "Index": 7
+ }
+ }
+ },
+ "342": {
+ "Name": "TCP/UDP performance monitoring history data",
+ "Filename": "tcpudpperformancemonitoringhistorydata.go",
+ "CamelCase": "TcpUdpPerformanceMonitoringHistoryData",
+ "ClassID": 342,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Socket Failed",
+ "CamelCase": "SocketFailed",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_SocketFailed",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Listen Failed",
+ "CamelCase": "ListenFailed",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_ListenFailed",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Bind Failed",
+ "CamelCase": "BindFailed",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_BindFailed",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Accept Failed",
+ "CamelCase": "AcceptFailed",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_AcceptFailed",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Select Failed",
+ "CamelCase": "SelectFailed",
+ "Final": "TcpUdpPerformanceMonitoringHistoryData_SelectFailed",
+ "Index": 7
+ }
+ }
+ },
+ "343": {
+ "Name": "Energy consumption performance monitoring history data",
+ "Filename": "energyconsumptionperformancemonitoringhistorydata.go",
+ "CamelCase": "EnergyConsumptionPerformanceMonitoringHistoryData",
+ "ClassID": 343,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "EnergyConsumptionPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "EnergyConsumptionPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Doze Time",
+ "CamelCase": "DozeTime",
+ "Final": "EnergyConsumptionPerformanceMonitoringHistoryData_DozeTime",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Cyclic Sleep Time",
+ "CamelCase": "CyclicSleepTime",
+ "Final": "EnergyConsumptionPerformanceMonitoringHistoryData_CyclicSleepTime",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Watchful Sleep Time",
+ "CamelCase": "WatchfulSleepTime",
+ "Final": "EnergyConsumptionPerformanceMonitoringHistoryData_WatchfulSleepTime",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Energy Consumed",
+ "CamelCase": "EnergyConsumed",
+ "Final": "EnergyConsumptionPerformanceMonitoringHistoryData_EnergyConsumed",
+ "Index": 6
+ }
+ }
+ },
+ "344": {
+ "Name": "XG-PON TC performance monitoring history data",
+ "Filename": "xg-pontcperformancemonitoringhistorydata.go",
+ "CamelCase": "XgPonTcPerformanceMonitoringHistoryData",
+ "ClassID": 344,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Psbd Hec Error Count",
+ "CamelCase": "PsbdHecErrorCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_PsbdHecErrorCount",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Xgtc Hec Error Count",
+ "CamelCase": "XgtcHecErrorCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_XgtcHecErrorCount",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Unknown Profile Count",
+ "CamelCase": "UnknownProfileCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_UnknownProfileCount",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Transmitted Xg_Pon Encapsulation Method Xgem Frames",
+ "CamelCase": "TransmittedXgPonEncapsulationMethodXgemFrames",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_TransmittedXgPonEncapsulationMethodXgemFrames",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Fragment Xgem Frames",
+ "CamelCase": "FragmentXgemFrames",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_FragmentXgemFrames",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Xgem Hec Lost Words Count",
+ "CamelCase": "XgemHecLostWordsCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_XgemHecLostWordsCount",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Xgem Key Errors",
+ "CamelCase": "XgemKeyErrors",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_XgemKeyErrors",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Xgem Hec Error Count",
+ "CamelCase": "XgemHecErrorCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_XgemHecErrorCount",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Transmitted Bytes In Non_Idle Xgem Frames",
+ "CamelCase": "TransmittedBytesInNonIdleXgemFrames",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_TransmittedBytesInNonIdleXgemFrames",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Received Bytes In Non_Idle Xgem Frames",
+ "CamelCase": "ReceivedBytesInNonIdleXgemFrames",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_ReceivedBytesInNonIdleXgemFrames",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Loss Of Downstream Synchronization Lods Event Count",
+ "CamelCase": "LossOfDownstreamSynchronizationLodsEventCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_LossOfDownstreamSynchronizationLodsEventCount",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Lods Event Restored Count",
+ "CamelCase": "LodsEventRestoredCount",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_LodsEventRestoredCount",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Onu Reactivation By Lods Events",
+ "CamelCase": "OnuReactivationByLodsEvents",
+ "Final": "XgPonTcPerformanceMonitoringHistoryData_OnuReactivationByLodsEvents",
+ "Index": 15
+ }
+ }
+ },
+ "345": {
+ "Name": "XG-PON downstream management performance monitoring history data",
+ "Filename": "xg-pondownstreammanagementperformancemonitoringhistorydata.go",
+ "CamelCase": "XgPonDownstreamManagementPerformanceMonitoringHistoryData",
+ "ClassID": 345,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Ploam Message Integrity Check Mic Error Count",
+ "CamelCase": "PloamMessageIntegrityCheckMicErrorCount",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_PloamMessageIntegrityCheckMicErrorCount",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Downstream Ploam Messages Count",
+ "CamelCase": "DownstreamPloamMessagesCount",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_DownstreamPloamMessagesCount",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Profile Messages Received",
+ "CamelCase": "ProfileMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_ProfileMessagesReceived",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Ranging_Time Messages Received",
+ "CamelCase": "RangingTimeMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_RangingTimeMessagesReceived",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Deactivate_Onu_Id Messages Received",
+ "CamelCase": "DeactivateOnuIdMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_DeactivateOnuIdMessagesReceived",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Disable_Serial_Number Messages Received",
+ "CamelCase": "DisableSerialNumberMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_DisableSerialNumberMessagesReceived",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Request_Registration Messages Received",
+ "CamelCase": "RequestRegistrationMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_RequestRegistrationMessagesReceived",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Assign_Alloc_Id Messages Received",
+ "CamelCase": "AssignAllocIdMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_AssignAllocIdMessagesReceived",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Key_Control Messages Received",
+ "CamelCase": "KeyControlMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_KeyControlMessagesReceived",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Sleep_Allow Messages Received",
+ "CamelCase": "SleepAllowMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_SleepAllowMessagesReceived",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Baseline Omci Messages Received Count",
+ "CamelCase": "BaselineOmciMessagesReceivedCount",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_BaselineOmciMessagesReceivedCount",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Extended Omci Messages Received Count",
+ "CamelCase": "ExtendedOmciMessagesReceivedCount",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_ExtendedOmciMessagesReceivedCount",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Assign_Onu_Id Messages Received",
+ "CamelCase": "AssignOnuIdMessagesReceived",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_AssignOnuIdMessagesReceived",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Omci Mic Error Count",
+ "CamelCase": "OmciMicErrorCount",
+ "Final": "XgPonDownstreamManagementPerformanceMonitoringHistoryData_OmciMicErrorCount",
+ "Index": 16
+ }
+ }
+ },
+ "346": {
+ "Name": "XG-PON upstream management performance monitoring history data",
+ "Filename": "xg-ponupstreammanagementperformancemonitoringhistorydata.go",
+ "CamelCase": "XgPonUpstreamManagementPerformanceMonitoringHistoryData",
+ "ClassID": 346,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Upstream Ploam Message Count",
+ "CamelCase": "UpstreamPloamMessageCount",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_UpstreamPloamMessageCount",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Serial_Number_Onu Message Count",
+ "CamelCase": "SerialNumberOnuMessageCount",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_SerialNumberOnuMessageCount",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Registration Message Count",
+ "CamelCase": "RegistrationMessageCount",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_RegistrationMessageCount",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Key_Report Message Count",
+ "CamelCase": "KeyReportMessageCount",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_KeyReportMessageCount",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Acknowledge Message Count",
+ "CamelCase": "AcknowledgeMessageCount",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_AcknowledgeMessageCount",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Sleep_Request Message Count",
+ "CamelCase": "SleepRequestMessageCount",
+ "Final": "XgPonUpstreamManagementPerformanceMonitoringHistoryData_SleepRequestMessageCount",
+ "Index": 8
+ }
+ }
+ },
+ "348": {
+ "Name": "MAC bridge port ICMPv6 process pre-assign table",
+ "Filename": "macbridgeporticmpv6processpre-assigntable.go",
+ "CamelCase": "MacBridgePortIcmpv6ProcessPreAssignTable",
+ "ClassID": 348,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Icmpv6 Error Messages Processing",
+ "CamelCase": "Icmpv6ErrorMessagesProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_Icmpv6ErrorMessagesProcessing",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Icmpv6 Informational Messages Processing",
+ "CamelCase": "Icmpv6InformationalMessagesProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_Icmpv6InformationalMessagesProcessing",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Router Solicitation Processing",
+ "CamelCase": "RouterSolicitationProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_RouterSolicitationProcessing",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Router Advertisement Processing",
+ "CamelCase": "RouterAdvertisementProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_RouterAdvertisementProcessing",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Neighbour Solicitation Processing",
+ "CamelCase": "NeighbourSolicitationProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_NeighbourSolicitationProcessing",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Neighbour Advertisement Processing",
+ "CamelCase": "NeighbourAdvertisementProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_NeighbourAdvertisementProcessing",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Redirect Processing",
+ "CamelCase": "RedirectProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_RedirectProcessing",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Multicast Listener Query Processing",
+ "CamelCase": "MulticastListenerQueryProcessing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_MulticastListenerQueryProcessing",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Unknown Icmpv6 Processing",
+ "CamelCase": "UnknownIcmpv6Processing",
+ "Final": "MacBridgePortIcmpv6ProcessPreAssignTable_UnknownIcmpv6Processing",
+ "Index": 9
+ }
+ }
+ },
+ "400": {
+ "Name": "Ethernet pseudowire parameters",
+ "Filename": "ethernetpseudowireparameters.go",
+ "CamelCase": "EthernetPseudowireParameters",
+ "ClassID": 400,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Mtu",
+ "CamelCase": "Mtu",
+ "Final": "EthernetPseudowireParameters_Mtu",
+ "Index": 1
+ }
+ }
+ },
+ "406": {
+ "Name": "EPON downstream performance monitoring configuration",
+ "Filename": "epondownstreamperformancemonitoringconfiguration.go",
+ "CamelCase": "EponDownstreamPerformanceMonitoringConfiguration",
+ "ClassID": 406,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Errored Symbol Period Window",
+ "CamelCase": "ErroredSymbolPeriodWindow",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredSymbolPeriodWindow",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Errored Symbol Period Threshold",
+ "CamelCase": "ErroredSymbolPeriodThreshold",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredSymbolPeriodThreshold",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Errored Frame Window",
+ "CamelCase": "ErroredFrameWindow",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredFrameWindow",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Errored Frame Threshold",
+ "CamelCase": "ErroredFrameThreshold",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredFrameThreshold",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Errored Frame Period Window",
+ "CamelCase": "ErroredFramePeriodWindow",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredFramePeriodWindow",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Errored Frame Period Threshold",
+ "CamelCase": "ErroredFramePeriodThreshold",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredFramePeriodThreshold",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Errored Frame Seconds Summary Window",
+ "CamelCase": "ErroredFrameSecondsSummaryWindow",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredFrameSecondsSummaryWindow",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Errored Frame Seconds Summary Threshold",
+ "CamelCase": "ErroredFrameSecondsSummaryThreshold",
+ "Final": "EponDownstreamPerformanceMonitoringConfiguration_ErroredFrameSecondsSummaryThreshold",
+ "Index": 8
+ }
+ }
+ },
+ "407": {
+ "Name": "SIP agent config data 2",
+ "Filename": "sipagentconfigdata2.go",
+ "CamelCase": "SipAgentConfigData2",
+ "ClassID": 407,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "In_Use_Options_Timer",
+ "CamelCase": "InUseOptionsTimer",
+ "Final": "SipAgentConfigData2_InUseOptionsTimer",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Alternate_Options_Timer",
+ "CamelCase": "AlternateOptionsTimer",
+ "Final": "SipAgentConfigData2_AlternateOptionsTimer",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Revertive",
+ "CamelCase": "Revertive",
+ "Final": "SipAgentConfigData2_Revertive",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Current Proxy Server Resolved Address",
+ "CamelCase": "CurrentProxyServerResolvedAddress",
+ "Final": "SipAgentConfigData2_CurrentProxyServerResolvedAddress",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Current Proxy Server Resolved Name",
+ "CamelCase": "CurrentProxyServerResolvedName",
+ "Final": "SipAgentConfigData2_CurrentProxyServerResolvedName",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Alternate Proxy Server Resolved Address",
+ "CamelCase": "AlternateProxyServerResolvedAddress",
+ "Final": "SipAgentConfigData2_AlternateProxyServerResolvedAddress",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Alternate Proxy Server Resolved Name",
+ "CamelCase": "AlternateProxyServerResolvedName",
+ "Final": "SipAgentConfigData2_AlternateProxyServerResolvedName",
+ "Index": 7
+ }
+ }
+ },
+ "408": {
+ "Name": "xDSL xTU-C performance monitoring history data part 2",
+ "Filename": "xdslxtu-cperformancemonitoringhistorydatapart2.go",
+ "CamelCase": "XdslXtuCPerformanceMonitoringHistoryDataPart2",
+ "ClassID": 408,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Interval End Time",
+ "CamelCase": "IntervalEndTime",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryDataPart2_IntervalEndTime",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Threshold Data 1_2 Id",
+ "CamelCase": "ThresholdData12Id",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryDataPart2_ThresholdData12Id",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Leftr Defect Seconds",
+ "CamelCase": "LeftrDefectSeconds",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryDataPart2_LeftrDefectSeconds",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Error_Free Bits Counter",
+ "CamelCase": "ErrorFreeBitsCounter",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryDataPart2_ErrorFreeBitsCounter",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Minimum Error_Free Throughput Mineftr",
+ "CamelCase": "MinimumErrorFreeThroughputMineftr",
+ "Final": "XdslXtuCPerformanceMonitoringHistoryDataPart2_MinimumErrorFreeThroughputMineftr",
+ "Index": 5
+ }
+ }
+ },
+ "410": {
+ "Name": "VDSL2 line configuration extensions 3",
+ "Filename": "vdsl2lineconfigurationextensions3.go",
+ "CamelCase": "Vdsl2LineConfigurationExtensions3",
+ "ClassID": 410,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Ripolicyds",
+ "CamelCase": "Ripolicyds",
+ "Final": "Vdsl2LineConfigurationExtensions3_Ripolicyds",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Ripolicyus",
+ "CamelCase": "Ripolicyus",
+ "Final": "Vdsl2LineConfigurationExtensions3_Ripolicyus",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Reinit_Time_Thresholdds",
+ "CamelCase": "ReinitTimeThresholdds",
+ "Final": "Vdsl2LineConfigurationExtensions3_ReinitTimeThresholdds",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Reinit_Time_Thresholdus",
+ "CamelCase": "ReinitTimeThresholdus",
+ "Final": "Vdsl2LineConfigurationExtensions3_ReinitTimeThresholdus",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Rxrefvnsfus",
+ "CamelCase": "Rxrefvnsfus",
+ "Final": "Vdsl2LineConfigurationExtensions3_Rxrefvnsfus",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Txrefvnsfds",
+ "CamelCase": "Txrefvnsfds",
+ "Final": "Vdsl2LineConfigurationExtensions3_Txrefvnsfds",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Rtx_Modeds",
+ "CamelCase": "RtxModeds",
+ "Final": "Vdsl2LineConfigurationExtensions3_RtxModeds",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Rtx_Modeus",
+ "CamelCase": "RtxModeus",
+ "Final": "Vdsl2LineConfigurationExtensions3_RtxModeus",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Leftr_Thresh",
+ "CamelCase": "LeftrThresh",
+ "Final": "Vdsl2LineConfigurationExtensions3_LeftrThresh",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Maxdelayoctet_Split Parameter Mdosplit",
+ "CamelCase": "MaxdelayoctetSplitParameterMdosplit",
+ "Final": "Vdsl2LineConfigurationExtensions3_MaxdelayoctetSplitParameterMdosplit",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Attndr Method Attndr_Method",
+ "CamelCase": "AttndrMethodAttndrMethod",
+ "Final": "Vdsl2LineConfigurationExtensions3_AttndrMethodAttndrMethod",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Attndr Maxdelayoctet_Split Parameter Attndr_Mdosplit",
+ "CamelCase": "AttndrMaxdelayoctetSplitParameterAttndrMdosplit",
+ "Final": "Vdsl2LineConfigurationExtensions3_AttndrMaxdelayoctetSplitParameterAttndrMdosplit",
+ "Index": 12
+ }
+ }
+ },
+ "412": {
+ "Name": "xDSL channel configuration profile part 2",
+ "Filename": "xdslchannelconfigurationprofilepart2.go",
+ "CamelCase": "XdslChannelConfigurationProfilePart2",
+ "ClassID": 412,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Minimum Expected Throughput For Retransmission Minetr_Rtx",
+ "CamelCase": "MinimumExpectedThroughputForRetransmissionMinetrRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MinimumExpectedThroughputForRetransmissionMinetrRtx",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Maximum Expected Throughput For Retransmission Maxetr_Rtx",
+ "CamelCase": "MaximumExpectedThroughputForRetransmissionMaxetrRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MaximumExpectedThroughputForRetransmissionMaxetrRtx",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Maximum Net Data Rate For Retransmission Maxndr_Rtx",
+ "CamelCase": "MaximumNetDataRateForRetransmissionMaxndrRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MaximumNetDataRateForRetransmissionMaxndrRtx",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Maximum Delay For Retransmission Delaymax_Rtx",
+ "CamelCase": "MaximumDelayForRetransmissionDelaymaxRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MaximumDelayForRetransmissionDelaymaxRtx",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Minimum Delay For Retransmission Delaymin_Rtx",
+ "CamelCase": "MinimumDelayForRetransmissionDelayminRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MinimumDelayForRetransmissionDelayminRtx",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Minimum Impulse Noise Protection Against Single High Impulse Noise Event Shine For Retransmission Inpmin_Shine_Rtx",
+ "CamelCase": "MinimumImpulseNoiseProtectionAgainstSingleHighImpulseNoiseEventShineForRetransmissionInpminShineRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MinimumImpulseNoiseProtectionAgainstSingleHighImpulseNoiseEventShineForRetransmissionInpminShineRtx",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Minimum Impulse Noise Protection Against Shine For Retransmission For Systems Using 8.625 Khz Subcarrier Spacing Inpmin8_Shine_Rtx",
+ "CamelCase": "MinimumImpulseNoiseProtectionAgainstShineForRetransmissionForSystemsUsing8625KhzSubcarrierSpacingInpmin8ShineRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MinimumImpulseNoiseProtectionAgainstShineForRetransmissionForSystemsUsing8625KhzSubcarrierSpacingInpmin8ShineRtx",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Shineratio_Rtx",
+ "CamelCase": "ShineratioRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_ShineratioRtx",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Minimum Impulse Noise Protection Against Rein For Retransmission Inpmin_Rein_Rtx",
+ "CamelCase": "MinimumImpulseNoiseProtectionAgainstReinForRetransmissionInpminReinRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MinimumImpulseNoiseProtectionAgainstReinForRetransmissionInpminReinRtx",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Minimum Impulse Noise Protection Against Rein For Retransmission For Systems Using 8.625_Khz Subcarrier Spacing Inpmin8_Rein_Rtx",
+ "CamelCase": "MinimumImpulseNoiseProtectionAgainstReinForRetransmissionForSystemsUsing8625KhzSubcarrierSpacingInpmin8ReinRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_MinimumImpulseNoiseProtectionAgainstReinForRetransmissionForSystemsUsing8625KhzSubcarrierSpacingInpmin8ReinRtx",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Rein Inter_Arrival Time For Retransmission Iat_Rein_Rtx",
+ "CamelCase": "ReinInterArrivalTimeForRetransmissionIatReinRtx",
+ "Final": "XdslChannelConfigurationProfilePart2_ReinInterArrivalTimeForRetransmissionIatReinRtx",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Target Net Data Rate Target_Ndr",
+ "CamelCase": "TargetNetDataRateTargetNdr",
+ "Final": "XdslChannelConfigurationProfilePart2_TargetNetDataRateTargetNdr",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Target Expected Throughput For Retransmission Target_Etr",
+ "CamelCase": "TargetExpectedThroughputForRetransmissionTargetEtr",
+ "Final": "XdslChannelConfigurationProfilePart2_TargetExpectedThroughputForRetransmissionTargetEtr",
+ "Index": 13
+ }
+ }
+ },
+ "413": {
+ "Name": "xTU data gathering configuration",
+ "Filename": "xtudatagatheringconfiguration.go",
+ "CamelCase": "XtuDataGatheringConfiguration",
+ "ClassID": 413,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Logging Depth Event Percentage Per Event _ Vtu_O Logging_Depth_Event_Percentage_Oi Table",
+ "CamelCase": "LoggingDepthEventPercentagePerEventVtuOLoggingDepthEventPercentageOiTable",
+ "Final": "XtuDataGatheringConfiguration_LoggingDepthEventPercentagePerEventVtuOLoggingDepthEventPercentageOiTable",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Logging Depth Event Percentage Per Event _ Vtu_R Logging_Depth_Event_Percentage_Ri Table",
+ "CamelCase": "LoggingDepthEventPercentagePerEventVtuRLoggingDepthEventPercentageRiTable",
+ "Final": "XtuDataGatheringConfiguration_LoggingDepthEventPercentagePerEventVtuRLoggingDepthEventPercentageRiTable",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Logging Depth For Vtu_O Reporting _ Vtu_R Logging_Depth_Reporting_O",
+ "CamelCase": "LoggingDepthForVtuOReportingVtuRLoggingDepthReportingO",
+ "Final": "XtuDataGatheringConfiguration_LoggingDepthForVtuOReportingVtuRLoggingDepthReportingO",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Logging Depth For Vtu_R Reporting _ Vtu_R Logging_Depth_Reporting_R",
+ "CamelCase": "LoggingDepthForVtuRReportingVtuRLoggingDepthReportingR",
+ "Final": "XtuDataGatheringConfiguration_LoggingDepthForVtuRReportingVtuRLoggingDepthReportingR",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Logging Data Report Newer Events First _ Vtu_R Logging_Report_Newer_First",
+ "CamelCase": "LoggingDataReportNewerEventsFirstVtuRLoggingReportNewerFirst",
+ "Final": "XtuDataGatheringConfiguration_LoggingDataReportNewerEventsFirstVtuRLoggingReportNewerFirst",
+ "Index": 5
+ }
+ }
+ },
+ "414": {
+ "Name": "xDSL line inventory and status data part 8",
+ "Filename": "xdsllineinventoryandstatusdatapart8.go",
+ "CamelCase": "XdslLineInventoryAndStatusDataPart8",
+ "ClassID": 414,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Retransmission Used Downstream Rtx_Usedds",
+ "CamelCase": "RetransmissionUsedDownstreamRtxUsedds",
+ "Final": "XdslLineInventoryAndStatusDataPart8_RetransmissionUsedDownstreamRtxUsedds",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Retransmission Used Upstream Rtx_Usedus",
+ "CamelCase": "RetransmissionUsedUpstreamRtxUsedus",
+ "Final": "XdslLineInventoryAndStatusDataPart8_RetransmissionUsedUpstreamRtxUsedus",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Date_Time_Stamping Of Near_End Test Parameters Stamp_Test_Ne",
+ "CamelCase": "DateTimeStampingOfNearEndTestParametersStampTestNe",
+ "Final": "XdslLineInventoryAndStatusDataPart8_DateTimeStampingOfNearEndTestParametersStampTestNe",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Date_Time_Stamping Of Far_End Test Parameters Stamp_Test_Fe",
+ "CamelCase": "DateTimeStampingOfFarEndTestParametersStampTestFe",
+ "Final": "XdslLineInventoryAndStatusDataPart8_DateTimeStampingOfFarEndTestParametersStampTestFe",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Date_Time_Stamping Of Last Successful Downstream Olr Operation Stamp_Olr_Ds",
+ "CamelCase": "DateTimeStampingOfLastSuccessfulDownstreamOlrOperationStampOlrDs",
+ "Final": "XdslLineInventoryAndStatusDataPart8_DateTimeStampingOfLastSuccessfulDownstreamOlrOperationStampOlrDs",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Date_Time_Stamping Of Last Successful Upstream Olr Operation Stamp_Olr_Us",
+ "CamelCase": "DateTimeStampingOfLastSuccessfulUpstreamOlrOperationStampOlrUs",
+ "Final": "XdslLineInventoryAndStatusDataPart8_DateTimeStampingOfLastSuccessfulUpstreamOlrOperationStampOlrUs",
+ "Index": 6
+ }
+ }
+ },
+ "415": {
+ "Name": "VDSL2 line inventory and status data part 4",
+ "Filename": "vdsl2lineinventoryandstatusdatapart4.go",
+ "CamelCase": "Vdsl2LineInventoryAndStatusDataPart4",
+ "ClassID": 415,
+ "Attributes": {
+ "0": {
+ "Name": "Managed Entity Id",
+ "CamelCase": "ManagedEntityId",
+ "Final": "ManagedEntityId",
+ "Index": 0
+ },
+ "1": {
+ "Name": "Vtu_O Estimated Upstream Power Back_Off Electrical Length Per Band Upbokle_Pb",
+ "CamelCase": "VtuOEstimatedUpstreamPowerBackOffElectricalLengthPerBandUpboklePb",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_VtuOEstimatedUpstreamPowerBackOffElectricalLengthPerBandUpboklePb",
+ "Index": 1
+ },
+ "2": {
+ "Name": "Vtu_R Estimated Upstream Power Back_Off Electrical Length Per Band Upbokle_R_Pb",
+ "CamelCase": "VtuREstimatedUpstreamPowerBackOffElectricalLengthPerBandUpbokleRPb",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_VtuREstimatedUpstreamPowerBackOffElectricalLengthPerBandUpbokleRPb",
+ "Index": 2
+ },
+ "3": {
+ "Name": "Upbo Downstream Receiver Signal Level Threshold Rxthrshds",
+ "CamelCase": "UpboDownstreamReceiverSignalLevelThresholdRxthrshds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_UpboDownstreamReceiverSignalLevelThresholdRxthrshds",
+ "Index": 3
+ },
+ "4": {
+ "Name": "Upbo Upstream Receiver Signal Level Threshold Rxthrshus",
+ "CamelCase": "UpboUpstreamReceiverSignalLevelThresholdRxthrshus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_UpboUpstreamReceiverSignalLevelThresholdRxthrshus",
+ "Index": 4
+ },
+ "5": {
+ "Name": "Actual Alternative Electrical Length Estimation Mod E Act_Aele_Mode",
+ "CamelCase": "ActualAlternativeElectricalLengthEstimationModEActAeleMode",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_ActualAlternativeElectricalLengthEstimationModEActAeleMode",
+ "Index": 5
+ },
+ "6": {
+ "Name": "Actual Downstream Ripolicy Actripolicyds",
+ "CamelCase": "ActualDownstreamRipolicyActripolicyds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_ActualDownstreamRipolicyActripolicyds",
+ "Index": 6
+ },
+ "7": {
+ "Name": "Actual Upstream Ripolicy Actripolicyus",
+ "CamelCase": "ActualUpstreamRipolicyActripolicyus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_ActualUpstreamRipolicyActripolicyus",
+ "Index": 7
+ },
+ "8": {
+ "Name": "Attndr Actual M Ethod Attndr_Actmethod",
+ "CamelCase": "AttndrActualMEthodAttndrActmethod",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrActualMEthodAttndrActmethod",
+ "Index": 8
+ },
+ "9": {
+ "Name": "Attndr Downstream A Ctual Impulse Noise Protection Attndr_Actinpds",
+ "CamelCase": "AttndrDownstreamACtualImpulseNoiseProtectionAttndrActinpds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrDownstreamACtualImpulseNoiseProtectionAttndrActinpds",
+ "Index": 9
+ },
+ "10": {
+ "Name": "Attndr Upstream A Ctual Impulse Noise Protection Attndr_Actinpus",
+ "CamelCase": "AttndrUpstreamACtualImpulseNoiseProtectionAttndrActinpus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrUpstreamACtualImpulseNoiseProtectionAttndrActinpus",
+ "Index": 10
+ },
+ "11": {
+ "Name": "Attndr Downstream A Ctual Impulse Noise Protection Against Rein Attndr_Actinp_Reinds",
+ "CamelCase": "AttndrDownstreamACtualImpulseNoiseProtectionAgainstReinAttndrActinpReinds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrDownstreamACtualImpulseNoiseProtectionAgainstReinAttndrActinpReinds",
+ "Index": 11
+ },
+ "12": {
+ "Name": "Attndr Upstream A Ctual Impulse Noise Protection Against Rein Attndr_Actinp_Reinus",
+ "CamelCase": "AttndrUpstreamACtualImpulseNoiseProtectionAgainstReinAttndrActinpReinus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrUpstreamACtualImpulseNoiseProtectionAgainstReinAttndrActinpReinus",
+ "Index": 12
+ },
+ "13": {
+ "Name": "Attndr Downstream Actual Delay Attndr_Actdelayds",
+ "CamelCase": "AttndrDownstreamActualDelayAttndrActdelayds",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrDownstreamActualDelayAttndrActdelayds",
+ "Index": 13
+ },
+ "14": {
+ "Name": "Attndr Upstream A Ctual Delay Attndr_Actdelayus",
+ "CamelCase": "AttndrUpstreamACtualDelayAttndrActdelayus",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_AttndrUpstreamACtualDelayAttndrActdelayus",
+ "Index": 14
+ },
+ "15": {
+ "Name": "Near_End A Ggregate Achievable Net Data Rate Aggachndr_Ne",
+ "CamelCase": "NearEndAGgregateAchievableNetDataRateAggachndrNe",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_NearEndAGgregateAchievableNetDataRateAggachndrNe",
+ "Index": 15
+ },
+ "16": {
+ "Name": "Far_End Aggregate Achievable Net Data Rate Aggachndr_Fe",
+ "CamelCase": "FarEndAggregateAchievableNetDataRateAggachndrFe",
+ "Final": "Vdsl2LineInventoryAndStatusDataPart4_FarEndAggregateAchievableNetDataRateAggachndrFe",
+ "Index": 16
+ }
+ }
+ },
+ "418": {
+ "Name": "EFM bonding group",
+ "Filename":