blob: 2e017e951e08974a4dc105dce05328672cad88c2 [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Andrea Campanella7167ebb2020-02-24 09:56:38 +01003 * Copyright 2020-present Open Networking Foundation
4
Chip Boling6e27b352020-02-14 09:10:01 -06005 * 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
Andrea Campanella7167ebb2020-02-24 09:56:38 +01008
Chip Boling6e27b352020-02-14 09:10:01 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Andrea Campanella7167ebb2020-02-24 09:56:38 +010010
Chip Boling6e27b352020-02-14 09:10:01 -060011 * 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 */
Chip Boling2d51f052021-02-09 09:04:15 -060017/*
Chip Boling6e27b352020-02-14 09:10:01 -060018 * 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,
Chip Boling2d51f052021-02-09 09:04:15 -060069 SetTable,
Chip Boling6e27b352020-02-14 09:10:01 -060070 ),
71 AllowedAttributeMask: 0xc000,
72 AttributeDefinitions: AttributeDefinitionMap{
73 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
74 1: TableField("DownstreamRfiBandsTable", TableAttributeType, 0x8000, TableInfo{nil, 5}, mapset.NewSetWith(Read, Write), false, false, false, 1),
75 2: ByteField("BandsValid", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, Write), false, false, false, 2),
76 },
77 Access: CreatedByOlt,
78 Support: UnknownSupport,
79 }
80}
81
82// NewXdslDownstreamRfiBandsProfile (class ID 111) creates the basic
83// Managed Entity definition that is used to validate an ME of this type that
84// is received from or transmitted to the OMCC.
85func NewXdslDownstreamRfiBandsProfile(params ...ParamData) (*ManagedEntity, OmciErrors) {
86 return NewManagedEntity(*xdsldownstreamrfibandsprofileBME, params...)
87}