blob: 778ea9f5aa3db655b610bbc4675450b423643ce2 [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// RadiusPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI
29// Managed entity Radius performance monitoring history data
30const RadiusPerformanceMonitoringHistoryDataClassID ClassID = ClassID(293)
31
32var radiusperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
34// RadiusPerformanceMonitoringHistoryData (class ID #293)
35// This ME collects performance statistics on an ONU's radius client, particularly as related to
36// its IEEE-802.1X operation.
37//
38// Instances of this ME are created and deleted by the OLT.
39//
40// For a complete discussion of generic PM architecture, refer to clause I.4.
41//
42// Relationships
43// An instance of this ME is associated with an ONU.
44//
45// Attributes
46// Managed Entity Id
47// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
48// identical ID (namely 0), this ME is implicitly linked to an instance of a dot1X configuration
49// profile. (R, setbycreate) (mandatory) (2-bytes)
50//
51// Interval End Time
52// Interval end time: This attribute identifies the most recently finished 15-min interval. (R)
53// (mandatory) (1-byte)
54//
55// Threshold Data 1_2 Id
56// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 ME that
57// contains PM threshold values. Since no threshold value attribute number exceeds 7, a threshold
58// data 2 ME is optional. (R,-W, setbycreate) (mandatory) (2-bytes)
59//
60// Access_Request Packets Transmitted
61// Access-request packets transmitted: This attribute counts transmitted radius access-request
62// messages, including retransmissions. (R) (mandatory) (4-bytes)
63//
64// Access_Request Retransmission Count
65// Access-request retransmission count: This attribute counts radius access-request
66// retransmissions. (R) (mandatory) (4-bytes)
67//
68// Access_Challenge Packets Received
69// Access-challenge packets received: This attribute counts received radius access-challenge
70// messages. (R) (mandatory) (4-bytes)
71//
72// Access_Accept Packets Received
73// Access-accept packets received: This attribute counts received radius access-accept messages.
74// (R) (mandatory) (4-bytes)
75//
76// Access_Reject Packets Received
77// Access-reject packets received: This attribute counts received radius access-reject messages.
78// (R) (mandatory) (4-bytes)
79//
80// Invalid Radius Packets Received
81// Invalid radius packets received: This attribute counts received invalid radius messages. (R)
82// (mandatory) (4-bytes)
83//
84type RadiusPerformanceMonitoringHistoryData struct {
85 ManagedEntityDefinition
86 Attributes AttributeValueMap
87}
88
89func init() {
90 radiusperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
91 Name: "RadiusPerformanceMonitoringHistoryData",
92 ClassID: 293,
93 MessageTypes: mapset.NewSetWith(
94 Create,
95 Delete,
96 Get,
97 Set,
98 ),
99 AllowedAttributeMask: 0xff00,
100 AttributeDefinitions: AttributeDefinitionMap{
101 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
102 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
103 2: Uint16Field("ThresholdData12Id", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
104 3: Uint32Field("AccessRequestPacketsTransmitted", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
105 4: Uint32Field("AccessRequestRetransmissionCount", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
106 5: Uint32Field("AccessChallengePacketsReceived", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
107 6: Uint32Field("AccessAcceptPacketsReceived", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
108 7: Uint32Field("AccessRejectPacketsReceived", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
109 8: Uint32Field("InvalidRadiusPacketsReceived", CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, false, false, 8),
110 },
111 Access: CreatedByOlt,
112 Support: UnknownSupport,
113 Alarms: AlarmMap{
114 1: "Retransmission count",
115 5: "Invalid radius packets received",
116 },
117 }
118}
119
120// NewRadiusPerformanceMonitoringHistoryData (class ID 293) creates the basic
121// Managed Entity definition that is used to validate an ME of this type that
122// is received from or transmitted to the OMCC.
123func NewRadiusPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
124 return NewManagedEntity(*radiusperformancemonitoringhistorydataBME, params...)
125}