blob: 7502bf8f0c0a33abcd8e15268ae4167318f27c7a [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 */
14/*
15 * NOTE: This file was generated, manual edits will be overwritten!
16 *
17 * Generated by 'goCodeGenerator.py':
18 * https://github.com/cboling/OMCI-parser/README.md
19 */
20
21package generated
22
23import "github.com/deckarep/golang-set"
24
25// VlanTaggingOperationConfigurationDataClassID is the 16-bit ID for the OMCI
26// Managed entity VLAN tagging operation configuration data
27const VlanTaggingOperationConfigurationDataClassID ClassID = ClassID(78)
28
29var vlantaggingoperationconfigurationdataBME *ManagedEntityDefinition
30
31// VlanTaggingOperationConfigurationData (class ID #78)
32// This ME organizes data associated with VLAN tagging. Instances of this ME are created and
33// deleted by the OLT.
34//
35// NOTE 1 - The extended VLAN tagging operation configuration data of clause 9.3.13 is preferred
36// for new implementations.
37//
38// Relationships
39// Zero or one instance of this ME may exist for an instance of any ME that can terminate or modify
40// an Ethernet stream.//// When this ME is associated with a UNI-side TP, it performs its upstream classification and
41// tagging operations before offering the upstream frame to other filtering, bridging or switching
42// functions. In the downstream direction, the defined inverse operation is the last operation
43// performed on the frame before offering it to the UNI-side termination.//// When this ME is associated with an ANI-side TP, it performs its upstream classification and
44// tagging operations as the last step before queueing for transmission to the OLT, after having
45// received the upstream frame from other filtering, bridging or switching functions. In the
46// downstream direction, the defined inverse operation is the first operation performed on the
47// frame before offering it to possible filter, bridge or switch functions.
48//
49// Attributes
50// Managed Entity Id
51// Managed entity ID: This attribute uniquely identifies each instance of this ME. When the
52// optional association type attribute is 0 or undefined, this attribute's value is the same as the
53// ID of the ME with which this VLAN tagging operation configuration data instance is associated,
54// which may be either a PPTP Ethernet UNI or an IP host config data or an IPv6 host config data
55// ME. Otherwise, the value of the ME ID is unconstrained except by the need to be unique. (R, set-
56// by-create) (mandatory) (2 bytes)
57//
58// Upstream Vlan Tagging Operation Mode
59// (R,-W, setbycreate) (mandatory) (1-byte)
60//
61// Upstream Vlan Tag Tci Value
62// Upstream VLAN tag TCI value: This attribute specifies the TCI for upstream VLAN tagging. It is
63// used when the upstream VLAN tagging operation mode is 1 or 2. (R,-W, setbycreate) (mandatory)
64// (2-bytes)
65//
66// Downstream Vlan Tagging Operation Mode
67// (R,-W, setbycreate) (mandatory) (1-byte)
68//
69// Association Type
70// The associated ME instance is identified by the associated ME pointer. (R,-W, setbycreate)
71// (optional) (1-byte)
72//
73// Associated Me Pointer
74// NOTE 3 - When the association type is xDSL, the two MSBs may be used to indicate a bearer
75// channel.
76//
77type VlanTaggingOperationConfigurationData struct {
78 ManagedEntityDefinition
79 Attributes AttributeValueMap
80}
81
82func init() {
83 vlantaggingoperationconfigurationdataBME = &ManagedEntityDefinition{
84 Name: "VlanTaggingOperationConfigurationData",
85 ClassID: 78,
86 MessageTypes: mapset.NewSetWith(
87 Create,
88 Delete,
89 Get,
90 Set,
91 ),
92 AllowedAttributeMask: 0xf800,
93 AttributeDefinitions: AttributeDefinitionMap{
94 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
95 1: ByteField("UpstreamVlanTaggingOperationMode", EnumerationAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
96 2: Uint16Field("UpstreamVlanTagTciValue", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
97 3: ByteField("DownstreamVlanTaggingOperationMode", EnumerationAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
98 4: ByteField("AssociationType", EnumerationAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 4),
99 5: Uint16Field("AssociatedMePointer", PointerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 5),
100 },
101 Access: CreatedByOlt,
102 Support: UnknownSupport,
103 }
104}
105
106// NewVlanTaggingOperationConfigurationData (class ID 78) creates the basic
107// Managed Entity definition that is used to validate an ME of this type that
108// is received from or transmitted to the OMCC.
109func NewVlanTaggingOperationConfigurationData(params ...ParamData) (*ManagedEntity, OmciErrors) {
110 return NewManagedEntity(*vlantaggingoperationconfigurationdataBME, params...)
111}