blob: f1508db632b2c5a67f0d9062c76f98547b223113 [file] [log] [blame]
/*
* 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.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* NOTE: This file was generated, manual edits will be overwritten!
*
* Generated by 'goCodeGenerator.py':
* https://github.com/cboling/OMCI-parser/README.md
*/
package generated
import "github.com/deckarep/golang-set"
// ThresholdData2ClassID is the 16-bit ID for the OMCI
// Managed entity Threshold data 2
const ThresholdData2ClassID = ClassID(274) // 0x0112
var thresholddata2BME *ManagedEntityDefinition
// ThresholdData2 (Class ID: #274 / 0x0112)
// Together with an instance of the threshold data 1 ME, an instance of this ME contains threshold
// values for counters maintained in one or more instances of PM history data MEs.
//
// For a complete discussion of generic PM architecture, refer to clause-I.4.
//
// Instances of this ME are created and deleted by the OLT.
//
// Relationships
// Refer to the relationships of the threshold data 1 ME.
//
// Attributes
// Managed Entity Id
// This attribute uniquely identifies each instance of this ME. Its value is the same as that of
// the paired threshold data-1-instance. (R, setbycreate) (mandatory) (2-bytes)
//
// The following seven attributes specify threshold values for seven thresholded counters in
// associated PM history data MEs. The definition of each PM history ME includes a table that links
// each thresholded counter to one of these threshold value attributes.
//
// Threshold Value_8
// Threshold value-8: (R,-W, setbycreate) (mandatory) (4-bytes)
//
// Threshold Value_9
// Threshold value-9: (R,-W, setbycreate) (mandatory) (4-bytes)
//
// Threshold Value_10
// Threshold value-10: (R,-W, setbycreate) (mandatory) (4-bytes)
//
// Threshold Value_11
// Threshold value-11: (R,-W, setbycreate) (mandatory) (4-bytes)
//
// Threshold Value_12
// Threshold value-12: (R,-W, setbycreate) (mandatory) (4-bytes)
//
// Threshold Value_13
// Threshold value-13: (R,-W, setbycreate) (mandatory) (4-bytes)
//
// Threshold Value_14
// Threshold value-14: (R,-W, setbycreate) (mandatory) (4-bytes)
//
type ThresholdData2 struct {
ManagedEntityDefinition
Attributes AttributeValueMap
}
// Attribute name constants
const ThresholdData2_ThresholdValue8 = "ThresholdValue8"
const ThresholdData2_ThresholdValue9 = "ThresholdValue9"
const ThresholdData2_ThresholdValue10 = "ThresholdValue10"
const ThresholdData2_ThresholdValue11 = "ThresholdValue11"
const ThresholdData2_ThresholdValue12 = "ThresholdValue12"
const ThresholdData2_ThresholdValue13 = "ThresholdValue13"
const ThresholdData2_ThresholdValue14 = "ThresholdValue14"
func init() {
thresholddata2BME = &ManagedEntityDefinition{
Name: "ThresholdData2",
ClassID: ThresholdData2ClassID,
MessageTypes: mapset.NewSetWith(
Create,
Delete,
Get,
Set,
),
AllowedAttributeMask: 0xfe00,
AttributeDefinitions: AttributeDefinitionMap{
0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
1: Uint32Field(ThresholdData2_ThresholdValue8, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
2: Uint32Field(ThresholdData2_ThresholdValue9, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
3: Uint32Field(ThresholdData2_ThresholdValue10, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
4: Uint32Field(ThresholdData2_ThresholdValue11, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
5: Uint32Field(ThresholdData2_ThresholdValue12, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 5),
6: Uint32Field(ThresholdData2_ThresholdValue13, UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 6),
7: Uint32Field(ThresholdData2_ThresholdValue14, UnsignedIntegerAttributeType, 0x0200, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 7),
},
Access: CreatedByOlt,
Support: UnknownSupport,
}
}
// NewThresholdData2 (class ID 274) creates the basic
// Managed Entity definition that is used to validate an ME of this type that
// is received from or transmitted to the OMCC.
func NewThresholdData2(params ...ParamData) (*ManagedEntity, OmciErrors) {
return NewManagedEntity(*thresholddata2BME, params...)
}