blob: fd07bb6f3b41d88b2cf6d6c5ec42b48e40fda7ec [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Matteo Scandolof9d43412021-01-12 11:11:34 -08003 * Copyright 2020-present Open Networking Foundation
4
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07005 * 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
Matteo Scandolof9d43412021-01-12 11:11:34 -08008
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Matteo Scandolof9d43412021-01-12 11:11:34 -080010
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070011 * 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 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080023
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070024package generated
25
26import "github.com/deckarep/golang-set"
27
Matteo Scandolof9d43412021-01-12 11:11:34 -080028// EthernetPerformanceMonitoringHistoryData2ClassID is the 16-bit ID for the OMCI
29// Managed entity Ethernet performance monitoring history data 2
30const EthernetPerformanceMonitoringHistoryData2ClassID ClassID = ClassID(89)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var ethernetperformancemonitoringhistorydata2BME *ManagedEntityDefinition
33
34// EthernetPerformanceMonitoringHistoryData2 (class ID #89)
35// This ME collects additional PM data for a physical Ethernet interface. Instances of this ME are
36// created and deleted by the OLT.
37//
38// For a complete discussion of generic PM architecture, refer to clause I.4.
39//
40// Relationships
41// An instance of this Ethernet PM history data 2 ME is associated with an instance of the PPTP
42// Ethernet UNI.
43//
44// Attributes
45// Managed Entity Id
46// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
47// identical ID, this ME is implicitly linked to an instance of the PPTP Ethernet UNI. (R,
Matteo Scandolof9d43412021-01-12 11:11:34 -080048// setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070049//
50// Interval End Time
Matteo Scandolof9d43412021-01-12 11:11:34 -080051// Interval end time: This attribute identifies the most recently finished 15-min interval. (R)
52// (mandatory) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070053//
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
Matteo Scandolof9d43412021-01-12 11:11:34 -080057// data 2 ME is optional. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070058//
59// Pppoe Filtered Frame Counter
60// PPPoE filtered frame counter: This attribute counts the number of frames discarded due to PPPoE
Matteo Scandolof9d43412021-01-12 11:11:34 -080061// filtering. (R) (mandatory) (4-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070062//
63type EthernetPerformanceMonitoringHistoryData2 struct {
64 ManagedEntityDefinition
65 Attributes AttributeValueMap
66}
67
68func init() {
69 ethernetperformancemonitoringhistorydata2BME = &ManagedEntityDefinition{
70 Name: "EthernetPerformanceMonitoringHistoryData2",
71 ClassID: 89,
72 MessageTypes: mapset.NewSetWith(
73 Create,
74 Delete,
75 Get,
76 Set,
77 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -080078 AllowedAttributeMask: 0xe000,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070079 AttributeDefinitions: AttributeDefinitionMap{
Matteo Scandolof9d43412021-01-12 11:11:34 -080080 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
81 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
82 2: Uint16Field("ThresholdData12Id", PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
83 3: Uint32Field("PppoeFilteredFrameCounter", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
84 },
85 Access: CreatedByOlt,
86 Support: UnknownSupport,
87 Alarms: AlarmMap{
88 0: "PPPoE filtered frame counter",
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070089 },
90 }
91}
92
Matteo Scandolof9d43412021-01-12 11:11:34 -080093// NewEthernetPerformanceMonitoringHistoryData2 (class ID 89) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070094// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -080095// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070096func NewEthernetPerformanceMonitoringHistoryData2(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -080097 return NewManagedEntity(*ethernetperformancemonitoringhistorydata2BME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070098}