blob: 93f0c1bf8b9309330ca7597454f0a781c91958a1 [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +00001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +00004 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +00005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +00008 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +00009 * http://www.apache.org/licenses/LICENSE-2.0
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000010 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +000011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Himani Chawlaac1f5ad2021-02-04 21:21:54 +053017/*
Holger Hildebrandtfa074992020-03-27 15:42:06 +000018 * NOTE: This file was generated, manual edits will be overwritten!
19 *
20 * Generated by 'goCodeGenerator.py':
21 * https://github.com/cboling/OMCI-parser/README.md
22 */
23
24package generated
25
26import "github.com/deckarep/golang-set"
27
28// EfmBondingGroupClassID is the 16-bit ID for the OMCI
29// Managed entity EFM bonding group
mpagenko836a1fd2021-11-01 16:12:42 +000030const EfmBondingGroupClassID = ClassID(418) // 0x01a2
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var efmbondinggroupBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// EfmBondingGroup (Class ID: #418 / 0x01a2)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// The EFM bonding group represents a group of links that are bonded. In [IEEE 802.3], a bonding
36// group is known as a PAF [physical medium entity (PME) aggregation function] and a link is known
37// as a PME instance of this ME are created and deleted by the OLT.
38//
39// Relationships
40// An instance of this ME may be associated with zero or more instances of an EFM bonding link.
41//
42// Attributes
43// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000044// This attribute uniquely identifies each instance of this ME. The value 0 is reserved. (R,
45// setbycreate) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000046//
47// Group Id
mpagenko836a1fd2021-11-01 16:12:42 +000048// This attribute is the unique number representing this bonding group. See clause C.3.1.1 of
49// [ITU-T G.998.2]. (R,-W, setbycreate) (mandatory) (6-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000050//
51// Minimum Upstream Group Rate
mpagenko836a1fd2021-11-01 16:12:42 +000052// This attribute sets the minimum upstream group rate, in bits per second, for this EFM Group.
53// This attribute is used to determine the group US rate low alarm status. The group US rate low
54// alarm means that the aggregate upstream rate of all active links associated with this group is
55// less than the minimum upstream group rate. The default value for this rate is zero. (R,-W)
56// (mandatory, setbycreate) (4-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000057//
58// Minimum Downstream Group Rate
mpagenko836a1fd2021-11-01 16:12:42 +000059// This attribute sets the minimum downstream group rate, in bits per second, for this EFM Group.
60// This attribute is used to determine the group DS rate low alarm status. The group DS rate low
61// alarm means that the aggregate downstream rate of all active links associated with this group is
62// less than the minimum downstream group rate. The default value for this rate is zero. (R,-W)
63// (mandatory) (4-bytes, setbycreate)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000064//
65// Group Alarm Enable
mpagenko836a1fd2021-11-01 16:12:42 +000066// This bit mapped attribute enables the various group alarms. A bit value of 1 means "enable".
67//
68// Bit Meaning
69//
70// 1 (LSB) Group down
71//
72// 2 Group partial
73//
74// 3 Group US rate low
75//
76// 4 Group DS rate low
77//
78// 5 4x rate ratio
79//
80// 6-8 Reserved
81//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000082// (R,-W, setbycreate) (mandatory) (1-byte)
83//
84type EfmBondingGroup struct {
85 ManagedEntityDefinition
86 Attributes AttributeValueMap
87}
88
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000089// Attribute name constants
90
91const EfmBondingGroup_GroupId = "GroupId"
92const EfmBondingGroup_MinimumUpstreamGroupRate = "MinimumUpstreamGroupRate"
93const EfmBondingGroup_MinimumDownstreamGroupRate = "MinimumDownstreamGroupRate"
94const EfmBondingGroup_GroupAlarmEnable = "GroupAlarmEnable"
95
Holger Hildebrandtfa074992020-03-27 15:42:06 +000096func init() {
97 efmbondinggroupBME = &ManagedEntityDefinition{
98 Name: "EfmBondingGroup",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000099 ClassID: EfmBondingGroupClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000100 MessageTypes: mapset.NewSetWith(
101 Create,
102 Delete,
103 Get,
104 Set,
105 ),
106 AllowedAttributeMask: 0xf000,
107 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000108 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
109 1: MultiByteField(EfmBondingGroup_GroupId, OctetsAttributeType, 0x8000, 6, toOctets("AAAAAAAA"), mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
110 2: Uint32Field(EfmBondingGroup_MinimumUpstreamGroupRate, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, Write), false, false, false, 2),
111 3: Uint32Field(EfmBondingGroup_MinimumDownstreamGroupRate, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), false, false, false, 3),
112 4: ByteField(EfmBondingGroup_GroupAlarmEnable, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000113 },
114 Access: CreatedByOlt,
115 Support: UnknownSupport,
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530116 Alarms: AlarmMap{
117 0: "Group down",
118 1: "Group partial",
119 2: "Group US rate low",
120 3: "Group DS rate low",
121 4: "4x rate ratio",
122 },
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000123 }
124}
125
Girish Gowdra63c0c6d2021-07-19 15:32:10 -0700126// NewEfmBondingGroup (class ID 418) creates the basic
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000127// Managed Entity definition that is used to validate an ME of this type that
128// is received from or transmitted to the OMCC.
129func NewEfmBondingGroup(params ...ParamData) (*ManagedEntity, OmciErrors) {
130 return NewManagedEntity(*efmbondinggroupBME, params...)
131}