1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
-- Module Notification-ASN1Module (X.721:02/1992)
Notification-ASN1Module {joint-iso-itu-t ms(9) smi(3) part2(2) asn1Module(2) 2}
DEFINITIONS IMPLICIT TAGS ::=
BEGIN
IMPORTS
ProbableCause, SpecificProblems, PerceivedSeverity, BackedUpStatus,
TrendIndication, ThresholdInfo, NotificationIdentifier,
CorrelatedNotifications, MonitoredAttributes, ProposedRepairActions,
AdditionalText, AdditionalInformation, SecurityAlarmCause,
SecurityAlarmSeverity, SecurityAlarmDetector,
AttributeValueChangeDefinition, SourceIndicator, AttributeIdentifierList,
AttributeList, ServiceUser, ServiceProvider
FROM Attribute-ASN1Module
ObjectClass, AttributeId, ObjectInstance
FROM CMIP-1 {joint-iso-itu-t ms(9) cmip(1) modules(0) protocol(3)};
--EXPORTS everything
smi2Notification OBJECT IDENTIFIER ::=
{joint-iso-itu-t ms(9) smi(3) part2(2) notification(10)}
AlarmInfo ::= SEQUENCE {
probableCause ProbableCause,
specificProblems [1] SpecificProblems OPTIONAL,
perceivedSeverity PerceivedSeverity,
backedUpStatus BackedUpStatus OPTIONAL,
backUpObject [2] ObjectInstance OPTIONAL,
trendIndication [3] TrendIndication OPTIONAL,
thresholdInfo [4] ThresholdInfo OPTIONAL,
notificationIdentifier [5] NotificationIdentifier OPTIONAL,
correlatedNotifications [6] CorrelatedNotifications OPTIONAL,
stateChangeDefinition [7] AttributeValueChangeDefinition OPTIONAL,
monitoredAttributes [8] MonitoredAttributes OPTIONAL,
proposedRepairActions [9] ProposedRepairActions OPTIONAL,
additionalText AdditionalText OPTIONAL,
additionalInformation [10] AdditionalInformation OPTIONAL
}
-- backUpObject attribute backedUpStatus backUpObject backUpObject attribute
-- (except in log record component component in log record
--==============================================================================================================================
-- ObjectInstance T ObjectInstance ObjectInstance
-- NULL F < absent > < absent >
-- < absent > < absent > < absent > < absent >
AttributeValueChangeInfo ::= SEQUENCE {
sourceIndicator SourceIndicator OPTIONAL,
attributeIdentifierList [1] AttributeIdentifierList OPTIONAL,
attributeValueChangeDefinition AttributeValueChangeDefinition,
notificationIdentifier NotificationIdentifier OPTIONAL,
correlatedNotifications [2] CorrelatedNotifications OPTIONAL,
additionalText AdditionalText OPTIONAL,
additionalInformation [3] AdditionalInformation OPTIONAL
}
ObjectInfo ::= SEQUENCE {
sourceIndicator SourceIndicator OPTIONAL,
attributeList AttributeList OPTIONAL,
notificationIdentifier NotificationIdentifier OPTIONAL,
correlatedNotifications [1] CorrelatedNotifications OPTIONAL,
additionalText AdditionalText OPTIONAL,
additionalInformation [2] AdditionalInformation OPTIONAL
}
RelationshipChangeInfo ::= SEQUENCE {
sourceIndicator SourceIndicator OPTIONAL,
attributeIdentifierList [1] AttributeIdentifierList OPTIONAL,
relationshipChangeDefinition AttributeValueChangeDefinition,
notificationIdentifier NotificationIdentifier OPTIONAL,
correlatedNotifications [2] CorrelatedNotifications OPTIONAL,
additionalText AdditionalText OPTIONAL,
additionalInformation [3] AdditionalInformation OPTIONAL
}
StateChangeInfo ::= SEQUENCE {
sourceIndicator SourceIndicator OPTIONAL,
attributeIdentifierList [1] AttributeIdentifierList OPTIONAL,
stateChangeDefinition AttributeValueChangeDefinition,
notificationIdentifier NotificationIdentifier OPTIONAL,
correlatedNotifications [2] CorrelatedNotifications OPTIONAL,
additionalText AdditionalText OPTIONAL,
additionalInformation [3] AdditionalInformation OPTIONAL
}
SecurityAlarmInfo ::= SEQUENCE {
securityAlarmCause SecurityAlarmCause,
securityAlarmSeverity SecurityAlarmSeverity,
securityAlarmDetector SecurityAlarmDetector,
serviceUser ServiceUser,
serviceProvider ServiceProvider,
notificationIdentifier NotificationIdentifier OPTIONAL,
correlatedNotifications [1] CorrelatedNotifications OPTIONAL,
additionalText AdditionalText OPTIONAL,
additionalInformation [2] AdditionalInformation OPTIONAL
}
END
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|