blob: e5a1916a4c2612457bf26e8c018f1a633f22403d [file] [log] [blame]
Matteo Scandolof9d43412021-01-12 11:11:34 -08001/*
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// XdslDownstreamRfiBandsProfileClassID is the 16-bit ID for the OMCI
29// Managed entity xDSL downstream RFI bands profile
30const XdslDownstreamRfiBandsProfileClassID ClassID = ClassID(111)
31
32var xdsldownstreamrfibandsprofileBME *ManagedEntityDefinition
33
34// XdslDownstreamRfiBandsProfile (class ID #111)
35// This ME contains the downstream RFI bands profile for an xDSL UNI. Instances of this ME are
36// created and deleted by the OLT.
37//
38// Relationships
39// An instance of this ME may be associated with zero or more instances of the PPTP xDSL UNI part
40// 1.
41//
42// Attributes
43// Managed Entity Id
44// Managed entity ID: This attribute uniquely identifies each instance of this ME. The value 0 is
45// reserved. (R, setbycreate) (mandatory) (2-bytes)
46//
47// Downstream Rfi Bands Table
48// (R,-W) (mandatory for [ITU-T G.992.5], [ITU-T G.993.2]) (5 * N bytes where N is the number of
49// RFI bands)
50//
51// Bands Valid
52// (R,-W) (mandatory) (1-byte)
53//
54type XdslDownstreamRfiBandsProfile struct {
55 ManagedEntityDefinition
56 Attributes AttributeValueMap
57}
58
59func init() {
60 xdsldownstreamrfibandsprofileBME = &ManagedEntityDefinition{
61 Name: "XdslDownstreamRfiBandsProfile",
62 ClassID: 111,
63 MessageTypes: mapset.NewSetWith(
64 Create,
65 Delete,
66 Get,
67 GetNext,
68 Set,
69 ),
70 AllowedAttributeMask: 0xc000,
71 AttributeDefinitions: AttributeDefinitionMap{
72 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
73 1: TableField("DownstreamRfiBandsTable", TableAttributeType, 0x8000, TableInfo{nil, 5}, mapset.NewSetWith(Read, Write), false, false, false, 1),
74 2: ByteField("BandsValid", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, Write), false, false, false, 2),
75 },
76 Access: CreatedByOlt,
77 Support: UnknownSupport,
78 }
79}
80
81// NewXdslDownstreamRfiBandsProfile (class ID 111) creates the basic
82// Managed Entity definition that is used to validate an ME of this type that
83// is received from or transmitted to the OMCC.
84func NewXdslDownstreamRfiBandsProfile(params ...ParamData) (*ManagedEntity, OmciErrors) {
85 return NewManagedEntity(*xdsldownstreamrfibandsprofileBME, params...)
86}