summaryrefslogtreecommitdiff
path: root/MIBS/vmware/VMWARE-SRM-EVENT-MIB
blob: 0b47c914d67478894a3cdb9d2f3d3d11ef17fd2b (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
-- **********************************************************
-- Copyright 2012 VMware, Inc.  All rights reserved.
-- **********************************************************

VMWARE-SRM-EVENT-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
        FROM SNMPv2-SMI
    MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
        FROM SNMPv2-CONF
    vmwSRM
       FROM VMWARE-ROOT-MIB       
    DisplayString
        FROM SNMPv2-TC;

    vmwSRMMIB MODULE-IDENTITY
    LAST-UPDATED "201202070000Z"
    ORGANIZATION "VMware, Inc"
    CONTACT-INFO
    "VMware, Inc
    3401 Hillview Ave
    Palo Alto, CA 94304
    Tel: 1-877-486-9273 or 650-427-5000
    Fax: 650-427-5001
    Web: http://communities.vmware.com/community/developer/forums/managementapi
    "
DESCRIPTION
     "This MIB module identifies Site Recovery Maager notifications (traps or inform)."

REVISION      "201202070000Z"
DESCRIPTION
    "This is the first revision in SMIv2 format. Prior version was published as SMIv1.
     Notifications were formerly in the VMWARE-SRM-TRAPS-1-0.MIB."
::= { vmwSRM 10 }

vmwSrmNotification OBJECT IDENTIFIER ::= { vmwSRM 1 }

vmwSRMevents OBJECT IDENTIFIER ::= {vmwSRM 0 }

vmwSrmVmName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the name of the affected VM generating the trap."
    ::= { vmwSrmNotification 1 }

vmwSrmRecoveryName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the name of the Recovery Plan generating the trap."
    ::= { vmwSrmNotification 2 }

vmwSrmPromptString OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the text of the prompt generating the trap."
    ::= { vmwSrmNotification 3 }

vmwSrmRecoveryType OBJECT-TYPE
    SYNTAX      INTEGER { test(1), recovery(2), reprotect(3), cleanup(4) }
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the mode of execution for the the Recovery Plan."
    ::= { vmwSrmNotification 4 }

vmwSrmRecoveryState OBJECT-TYPE
    SYNTAX      INTEGER { uninitialized(1), running(2), paused(3), 
                    cancelled(4), completed(5) }
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the state of execution for the the Recovery Plan."
    ::= { vmwSrmNotification 5 }

vmwSrmSiteString OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the name of the DR site that is causing the trap."
    ::= { vmwSrmNotification 6 }

vmwSrmVmUuid OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the UUID of the affected VM generating the trap."
    ::= { vmwSrmNotification 7 }

vmwSrmResult OBJECT-TYPE
    SYNTAX      INTEGER { success(1), failure(2), warning(3), 
                    cancelled(4) }
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the result of running a Recovery Plan."
    ::= { vmwSrmNotification 8 }

vmwSrmCommandName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION 
        "This is the name of a callout command executed during Recovery Plan execution."
    ::= { vmwSrmNotification 9 }

vmwareSrmRecoveryPlanExecuteTestBeginTrap NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan starts a test."
    ::= { vmwSRMevents 1 }

vmwareSrmRecoveryPlanExecuteTestEndEvent NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan ends a test."
    ::= { vmwSRMevents 2 }

vmwareSrmRecoveryPlanExecuteBeginEvent NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan starts a recovery."
    ::= { vmwSRMevents 3 }

vmwareVmwSrmRecoveryPlanExecuteEndEvent NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan ends a recovery."
    ::= { vmwSRMevents 4 }

vmwareVmwSrmRecoveryVmBeginEvent NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmVmName, vmwSrmVmUuid }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan starts recovering a VM."
    ::= { vmwSRMevents 5 }

vmwareSrmRecoveryVmEndEvent NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmVmName, vmwSrmVmUuid, vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan has finished recovering a VM."
    ::= { vmwSRMevents 6 }

vmwareSrmRecoveryPlanPromptDisplay NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmPromptString }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan requires user input before continuing."
    ::= { vmwSRMevents 7 }

vmwareSrmRecoveryPlanPromptResponse NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan no longer requires user input before continuing."
    ::= { vmwSRMevents 8 }

vmwareVmwSrmRecoveryPlanServerCommandBegin NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmCommandName }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan starts the execution of a command callout on SRM server's machine."
    ::= { vmwSRMevents 9 }

vmwareSrmRecoveryPlanServerCommandEnd NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmCommandName, vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan has finished the execution of a command callout on SRM server's machine."
    ::= { vmwSRMevents 10 }

vmwareSrmRecoveryPlanVmCommandBegin NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmCommandName, vmwSrmVmName, vmwSrmVmUuid }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan starts the execution of a command callout on a recovered VM."
    ::= { vmwSRMevents 11 }

vmwareSrmRecoveryPlanVmCommandEnd NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmCommandName, vmwSrmVmName, vmwSrmVmUuid, 
                  vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan has finished the execution of a command callout on a recovered VM."
    ::= { vmwSRMevents 12 }

vmwareSrmRecoveryPlanExecuteReprotectBegin NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when SRM starts the reprotect workflow for a Recovery Plan."
    ::= { vmwSRMevents 13 }

vmwareSrmRecoveryPlanExecuteReprotectEnd NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when SRM has finished the reprotect workflow for a Recovery Plan."
    ::= { vmwSRMevents 14 }

vmwareVmwSrmRecoveryPlanExecuteCleanupBegin NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState }
    STATUS      current
    DESCRIPTION 
        "This trap is sent when a Recovery Plan starts a test cleanup."
    ::= { vmwSRMevents 15 }

vmwSrmRecoveryPlanExecuteCleanupEnd NOTIFICATION-TYPE
    OBJECTS     { vmwSrmSiteString, vmwSrmRecoveryName, vmwSrmRecoveryType, 
                  vmwSrmRecoveryState, vmwSrmResult }
    STATUS      current
    DESCRIPTION 
        "This trap is sent a Recovery Plan ends a test cleanup."
    ::= { vmwSRMevents 16 }

-- conformance information
vmwSRMMIBConformance OBJECT IDENTIFIER ::= { vmwSRMMIB 2 }
vmwSRMMIBCompliances OBJECT IDENTIFIER ::= { vmwSRMMIBConformance 1 }
vmwSRMMIBGroups OBJECT IDENTIFIER ::= { vmwSRMMIBConformance 2 }

-- compliance statements
vmwSRMMIBBasicCompliance MODULE-COMPLIANCE
    STATUS     current
    DESCRIPTION
        "The compliance statement for entities which implement VMWARE-SRM-EVENT-MIB."
    MODULE -- this module
    MANDATORY-GROUPS { vmwSRMNotificationInfoGroup, vmwSRMNotificationGroup }
    ::= { vmwSRMMIBCompliances 2 }

vmwSRMNotificationInfoGroup OBJECT-GROUP
    OBJECTS {
         vmwSrmVmName,
         vmwSrmRecoveryName,
         vmwSrmPromptString,
         vmwSrmRecoveryType,
         vmwSrmRecoveryState,
         vmwSrmSiteString,
         vmwSrmVmUuid,
         vmwSrmResult,
         vmwSrmCommandName
    }
    STATUS current
    DESCRIPTION
	"These objects provide details in SRM notifications."
    ::= { vmwSRMMIBGroups 1 }

vmwSRMNotificationGroup NOTIFICATION-GROUP
       NOTIFICATIONS {
          vmwareSrmRecoveryPlanExecuteTestBeginTrap,
          vmwareSrmRecoveryPlanExecuteTestEndEvent,
          vmwareSrmRecoveryPlanExecuteBeginEvent,
          vmwareVmwSrmRecoveryPlanExecuteEndEvent,
          vmwareVmwSrmRecoveryVmBeginEvent,
          vmwareSrmRecoveryVmEndEvent,
          vmwareSrmRecoveryPlanPromptDisplay,
          vmwareSrmRecoveryPlanPromptResponse,
          vmwareVmwSrmRecoveryPlanServerCommandBegin,
          vmwareSrmRecoveryPlanServerCommandEnd,
          vmwareSrmRecoveryPlanVmCommandBegin,
          vmwareSrmRecoveryPlanVmCommandEnd,
          vmwareSrmRecoveryPlanExecuteReprotectBegin,
          vmwareSrmRecoveryPlanExecuteReprotectEnd,
          vmwareVmwSrmRecoveryPlanExecuteCleanupBegin,
          vmwSrmRecoveryPlanExecuteCleanupEnd
       }
       STATUS current
       DESCRIPTION
           "Group of objects describing notifications (traps)."
       ::= { vmwSRMMIBGroups 2 }

END