blob: 2b5c8ffefc9f316994a444a1686fcbc41e9b0041 [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
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
Matteo Scandolof9d43412021-01-12 11:11:34 -08005 * 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
Elia Battiston9bfe1102022-02-03 10:38:03 +01008 *
Matteo Scandolof9d43412021-01-12 11:11:34 -08009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
Matteo Scandolof9d43412021-01-12 11:11:34 -080011 * 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
Andrea Campanella10426e22021-10-15 17:58:04 +020030const RadiusPerformanceMonitoringHistoryDataClassID = ClassID(293) // 0x0125
Matteo Scandolof9d43412021-01-12 11:11:34 -080031
32var radiusperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// RadiusPerformanceMonitoringHistoryData (Class ID: #293 / 0x0125)
Matteo Scandolof9d43412021-01-12 11:11:34 -080035// 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
Andrea Campanella10426e22021-10-15 17:58:04 +020047// This attribute uniquely identifies each instance of this ME. Through an identical ID (namely 0),
48// this ME is implicitly linked to an instance of a dot1X configuration profile. (R, setbycreate)
49// (mandatory) (2-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080050//
51// Interval End Time
Andrea Campanella10426e22021-10-15 17:58:04 +020052// This attribute identifies the most recently finished 15-min interval. (R) (mandatory) (1-byte)
Matteo Scandolof9d43412021-01-12 11:11:34 -080053//
54// Threshold Data 1_2 Id
55// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 ME that
56// contains PM threshold values. Since no threshold value attribute number exceeds 7, a threshold
57// data 2 ME is optional. (R,-W, setbycreate) (mandatory) (2-bytes)
58//
59// Access_Request Packets Transmitted
60// Access-request packets transmitted: This attribute counts transmitted radius access-request
61// messages, including retransmissions. (R) (mandatory) (4-bytes)
62//
63// Access_Request Retransmission Count
64// Access-request retransmission count: This attribute counts radius access-request
65// retransmissions. (R) (mandatory) (4-bytes)
66//
67// Access_Challenge Packets Received
68// Access-challenge packets received: This attribute counts received radius access-challenge
69// messages. (R) (mandatory) (4-bytes)
70//
71// Access_Accept Packets Received
72// Access-accept packets received: This attribute counts received radius access-accept messages.
73// (R) (mandatory) (4-bytes)
74//
75// Access_Reject Packets Received
76// Access-reject packets received: This attribute counts received radius access-reject messages.
77// (R) (mandatory) (4-bytes)
78//
79// Invalid Radius Packets Received
Andrea Campanella10426e22021-10-15 17:58:04 +020080// This attribute counts received invalid radius messages. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080081//
82type RadiusPerformanceMonitoringHistoryData struct {
83 ManagedEntityDefinition
84 Attributes AttributeValueMap
85}
86
Elia Battiston9bfe1102022-02-03 10:38:03 +010087// Attribute name constants
88
89const RadiusPerformanceMonitoringHistoryData_IntervalEndTime = "IntervalEndTime"
90const RadiusPerformanceMonitoringHistoryData_ThresholdData12Id = "ThresholdData12Id"
91const RadiusPerformanceMonitoringHistoryData_AccessRequestPacketsTransmitted = "AccessRequestPacketsTransmitted"
92const RadiusPerformanceMonitoringHistoryData_AccessRequestRetransmissionCount = "AccessRequestRetransmissionCount"
93const RadiusPerformanceMonitoringHistoryData_AccessChallengePacketsReceived = "AccessChallengePacketsReceived"
94const RadiusPerformanceMonitoringHistoryData_AccessAcceptPacketsReceived = "AccessAcceptPacketsReceived"
95const RadiusPerformanceMonitoringHistoryData_AccessRejectPacketsReceived = "AccessRejectPacketsReceived"
96const RadiusPerformanceMonitoringHistoryData_InvalidRadiusPacketsReceived = "InvalidRadiusPacketsReceived"
97
Matteo Scandolof9d43412021-01-12 11:11:34 -080098func init() {
99 radiusperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
100 Name: "RadiusPerformanceMonitoringHistoryData",
Elia Battiston9bfe1102022-02-03 10:38:03 +0100101 ClassID: RadiusPerformanceMonitoringHistoryDataClassID,
Matteo Scandolof9d43412021-01-12 11:11:34 -0800102 MessageTypes: mapset.NewSetWith(
103 Create,
104 Delete,
105 Get,
106 Set,
Girish Gowdrae2683102021-03-05 08:24:26 -0800107 GetCurrentData,
Matteo Scandolof9d43412021-01-12 11:11:34 -0800108 ),
109 AllowedAttributeMask: 0xff00,
110 AttributeDefinitions: AttributeDefinitionMap{
Elia Battiston9bfe1102022-02-03 10:38:03 +0100111 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
112 1: ByteField(RadiusPerformanceMonitoringHistoryData_IntervalEndTime, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
113 2: Uint16Field(RadiusPerformanceMonitoringHistoryData_ThresholdData12Id, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
114 3: Uint32Field(RadiusPerformanceMonitoringHistoryData_AccessRequestPacketsTransmitted, CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
115 4: Uint32Field(RadiusPerformanceMonitoringHistoryData_AccessRequestRetransmissionCount, CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
116 5: Uint32Field(RadiusPerformanceMonitoringHistoryData_AccessChallengePacketsReceived, CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
117 6: Uint32Field(RadiusPerformanceMonitoringHistoryData_AccessAcceptPacketsReceived, CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
118 7: Uint32Field(RadiusPerformanceMonitoringHistoryData_AccessRejectPacketsReceived, CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
119 8: Uint32Field(RadiusPerformanceMonitoringHistoryData_InvalidRadiusPacketsReceived, CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, false, false, 8),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800120 },
121 Access: CreatedByOlt,
122 Support: UnknownSupport,
123 Alarms: AlarmMap{
124 1: "Retransmission count",
125 5: "Invalid radius packets received",
126 },
127 }
128}
129
130// NewRadiusPerformanceMonitoringHistoryData (class ID 293) creates the basic
131// Managed Entity definition that is used to validate an ME of this type that
132// is received from or transmitted to the OMCC.
133func NewRadiusPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
134 return NewManagedEntity(*radiusperformancemonitoringhistorydataBME, params...)
135}