blob: 187b1955f517c6553978ed735f3b75cc0bc3a63d [file] [log] [blame]
Takahiro Suzuki241c10e2020-12-17 20:17:57 +09001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
4
5 * 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
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * 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 */
17 /*
18 * 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// PwEthernetConfigurationDataClassID is the 16-bit ID for the OMCI
29// Managed entity PW Ethernet configuration data
30const PwEthernetConfigurationDataClassID ClassID = ClassID(339)
31
32var pwethernetconfigurationdataBME *ManagedEntityDefinition
33
34// PwEthernetConfigurationData (class ID #339)
35// This ME contains the Ethernet pseudowire configuration data. Instances of this ME are created
36// and deleted by the OLT.
37//
38// Relationships
39// An instance of this ME is associated with an instance of the MPLS pseudowire TP ME with a
40// pseudowire type attribute equal to the following.//// 5 Ethernet
41//
42// Attributes
43// Managed Entity Id
44// Managed entity ID: This attribute uniquely identifies each instance of this ME. (R,
45// setbycreate)-(mandatory) (2 bytes)
46//
47// Mpls Pseudowire Tp Pointer
48// MPLS pseudowire TP pointer: This attribute points to an instance of the MPLS pseudowire TP ME
49// associated with this ME. (R, W, setbycreate) (mandatory) (2 bytes)
50//
51// Tp Type
52// (R,-W, setbycreate) (mandatory) (1-byte)
53//
54// Uni Pointer
55// UNI pointer: This attribute points to the associated instance of a UNI-side ME. The type of UNI
56// is determined by the TP type attribute. (R, W, setbycreate) (mandatory) (2 bytes)
57//
58type PwEthernetConfigurationData struct {
59 ManagedEntityDefinition
60 Attributes AttributeValueMap
61}
62
63func init() {
64 pwethernetconfigurationdataBME = &ManagedEntityDefinition{
65 Name: "PwEthernetConfigurationData",
66 ClassID: 339,
67 MessageTypes: mapset.NewSetWith(
68 Create,
69 Delete,
70 Get,
71 Set,
72 ),
73 AllowedAttributeMask: 0xe000,
74 AttributeDefinitions: AttributeDefinitionMap{
75 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
76 1: Uint16Field("MplsPseudowireTpPointer", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
77 2: ByteField("TpType", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
78 3: Uint16Field("UniPointer", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
79 },
80 Access: CreatedByOlt,
81 Support: UnknownSupport,
82 }
83}
84
85// NewPwEthernetConfigurationData (class ID 339) creates the basic
86// Managed Entity definition that is used to validate an ME of this type that
87// is received from or transmitted to the OMCC.
88func NewPwEthernetConfigurationData(params ...ParamData) (*ManagedEntity, OmciErrors) {
89 return NewManagedEntity(*pwethernetconfigurationdataBME, params...)
90}