blob: 96265e25690b844f57e3ebc16cc883e39fbc217e [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 */
14/*
15 * NOTE: This file was generated, manual edits will be overwritten!
16 *
17 * Generated by 'goCodeGenerator.py':
18 * https://github.com/cboling/OMCI-parser/README.md
19 */
20package generated
21
22import "github.com/deckarep/golang-set"
23
24const MacBridgePerformanceMonitoringHistoryDataClassId ClassID = ClassID(51)
25
26var macbridgeperformancemonitoringhistorydataBME *ManagedEntityDefinition
27
28// MacBridgePerformanceMonitoringHistoryData (class ID #51)
29// This ME collects PM data associated with a MAC bridge. Instances of this ME are created and
30// deleted by the OLT.
31//
32// For a complete discussion of generic PM architecture, refer to clause I.4.
33//
34// Relationships
35// This ME is associated with an instance of a MAC bridge service profile.
36//
37// Attributes
38// Managed Entity Id
39// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
40// identical ID, this ME is implicitly linked to an instance of the MAC bridge service profile. (R,
41// setbycreate) (mandatory) (2 bytes)
42//
43// Interval End Time
44// Interval end time: This attribute identifies the most recently finished 15 min interval. (R)
45// (mandatory) (1 byte)
46//
47// Threshold Data 1_2 Id
48// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 ME that
49// contains PM threshold values. Since no threshold value attribute number exceeds 7, a threshold
50// data 2 ME is optional. Since no threshold value attribute number exceeds 7, a threshold data 2
51// ME is optional. (R, W, setbycreate) (mandatory) (2 bytes)
52//
53// Bridge Learning Entry Discard Count
54// Bridge learning entry discard count: This attribute counts forwarding database entries that have
55// been or would have been learned, but were discarded or replaced due to a lack of space in the
56// database table. When used with the MAC learning depth attribute of the MAC bridge service
57// profile, the bridge learning entry discard count may be particularly useful in detecting MAC
58// spoofing attempts. (R) (mandatory) (4 bytes)
59//
60type MacBridgePerformanceMonitoringHistoryData struct {
61 ManagedEntityDefinition
62 Attributes AttributeValueMap
63}
64
65func init() {
66 macbridgeperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
67 Name: "MacBridgePerformanceMonitoringHistoryData",
68 ClassID: 51,
69 MessageTypes: mapset.NewSetWith(
70 Create,
71 Delete,
72 Get,
73 Set,
74 ),
75 AllowedAttributeMask: 0XE000,
76 AttributeDefinitions: AttributeDefinitionMap{
77 0: Uint16Field("ManagedEntityId", 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, false, 0),
78 1: ByteField("IntervalEndTime", 0, mapset.NewSetWith(Read), false, false, false, false, 1),
79 2: Uint16Field("ThresholdData12Id", 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, false, 2),
80 3: Uint32Field("BridgeLearningEntryDiscardCount", 0, mapset.NewSetWith(Read), false, false, false, false, 3),
81 },
82 }
83}
84
85// NewMacBridgePerformanceMonitoringHistoryData (class ID 51 creates the basic
86// Managed Entity definition that is used to validate an ME of this type that
87// is received from the wire, about to be sent on the wire.
88func NewMacBridgePerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
89 return NewManagedEntity(macbridgeperformancemonitoringhistorydataBME, params...)
90}