blob: 148af8d86dbddf6dc55a81d48c822193096a3ead [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/*
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 */
Chip Boling6e27b352020-02-14 09:10:01 -060023
24package generated
25
26import "github.com/deckarep/golang-set"
27
28// XgPonUpstreamManagementPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI
29// Managed entity XG-PON upstream management performance monitoring history data
30const XgPonUpstreamManagementPerformanceMonitoringHistoryDataClassID ClassID = ClassID(346)
31
32var xgponupstreammanagementperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
34// XgPonUpstreamManagementPerformanceMonitoringHistoryData (class ID #346)
35// This ME collects PM data associated with the XG-PON TC layer. It counts upstream PLOAM messages
36// transmitted by the ONU.
37//
38// For a complete discussion of generic PM architecture, refer to clause I.4.
39//
40// Relationships
41// An instance of this ME is associated with an ANI-G.
42//
43// Attributes
44// Managed Entity Id
45// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
46// identical ID, this ME is implicitly linked to an instance of the ANI-G. (R, set-by-create)
47// (mandatory) (2-bytes)
48//
49// Interval End Time
50// Interval end time: This attribute identifies the most recently finished 15-min interval. (R)
51// (mandatory) (1-byte)
52//
53// Threshold Data 1_2 Id
54// Threshold data 1/2 ID: No thresholds are defined for this ME. For uniformity with other PM, the
55// attribute is retained and shown as mandatory, but it should be set to a null pointer. (R,-W,
56// set-by-create) (mandatory) (2-bytes)
57//
58// Upstream Ploam Message Count
59// Upstream PLOAM message count: This attribute counts PLOAM messages transmitted upstream,
60// excluding acknowledge messages. (R) (optional) (4-bytes)
61//
62// Serial_Number_Onu Message Count
63// Serial_number_ONU message count: This attribute counts Serial_number_ONU PLOAM messages
64// transmitted. (R) (optional) (4-bytes)
65//
66// Registration Message Count
67// Registration message count: This attribute counts Registration PLOAM messages transmitted. (R)
68// (optional) (4-bytes)
69//
70// Key_Report Message Count
71// Key_report message count: This attribute counts key_report PLOAM messages transmitted. (R)
72// (optional) (4-bytes)
73//
74// Acknowledge Message Count
75// Acknowledge message count: This attribute counts acknowledge PLOAM messages transmitted. It
76// includes all forms of acknowledgement (AK), including those transmitted in response to a PLOAM
77// grant when the ONU has nothing to send. (R) (optional) (4-bytes)
78//
79// Sleep_Request Message Count
80// Sleep_request message count: This attribute counts sleep_request PLOAM messages transmitted. (R)
81// (optional) (4-bytes)
82//
83type XgPonUpstreamManagementPerformanceMonitoringHistoryData struct {
84 ManagedEntityDefinition
85 Attributes AttributeValueMap
86}
87
88func init() {
89 xgponupstreammanagementperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
90 Name: "XgPonUpstreamManagementPerformanceMonitoringHistoryData",
91 ClassID: 346,
92 MessageTypes: mapset.NewSetWith(
93 Create,
94 Delete,
95 Get,
96 Set,
Chip Boling2d51f052021-02-09 09:04:15 -060097 GetCurrentData,
Chip Boling6e27b352020-02-14 09:10:01 -060098 ),
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", PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
104 3: Uint32Field("UpstreamPloamMessageCount", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, true, false, 3),
105 4: Uint32Field("SerialNumberOnuMessageCount", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, true, false, 4),
106 5: Uint32Field("RegistrationMessageCount", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, true, false, 5),
107 6: Uint32Field("KeyReportMessageCount", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, true, false, 6),
108 7: Uint32Field("AcknowledgeMessageCount", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, true, false, 7),
109 8: Uint32Field("SleepRequestMessageCount", CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, true, false, 8),
110 },
111 Access: CreatedByOlt,
112 Support: UnknownSupport,
113 }
114}
115
116// NewXgPonUpstreamManagementPerformanceMonitoringHistoryData (class ID 346) creates the basic
117// Managed Entity definition that is used to validate an ME of this type that
118// is received from or transmitted to the OMCC.
119func NewXgPonUpstreamManagementPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
120 return NewManagedEntity(*xgponupstreammanagementperformancemonitoringhistorydataBME, params...)
121}