-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfJobScheduler.mib
312 lines (268 loc) · 12.5 KB
/
hpicfJobScheduler.mib
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
300
301
302
303
304
305
306
307
308
309
310
311
312
HP-ICF-JOB-SCHEDULER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
Unsigned32
FROM SNMPv2-SMI
DisplayString, RowStatus,TruthValue
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID
;
hpicfJobSchedulerMIB MODULE-IDENTITY
LAST-UPDATED "201310050000Z" -- October 5, 2013
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module contains HP proprietary objects used to
configure Job Scheduling."
REVISION "201310050000Z" -- October 5, 2013
DESCRIPTION "Initial version."
::= { hpSwitch 105 }
hpicfJobSchedulerObjects OBJECT IDENTIFIER ::= { hpicfJobSchedulerMIB 1 }
hpicfJobSchedulerConformance OBJECT IDENTIFIER ::= { hpicfJobSchedulerMIB 2 }
-- ****************************************************************************
-- JobSchedulerTable
-- ****************************************************************************
hpicfJobSchedulerTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIcfSwitchJobSchedulerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table defines a set of jobs which run as per
the schedule or when a particular event occurs."
::= { hpicfJobSchedulerObjects 1 }
hpicfJobSchedulerEntry OBJECT-TYPE
SYNTAX HpIcfSwitchJobSchedulerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table which provides information about
a scheduled job."
INDEX { hpicfJobSchedulerName }
::= { hpicfJobSchedulerTable 1 }
HpIcfSwitchJobSchedulerEntry ::=
SEQUENCE {
hpicfJobSchedulerName DisplayString,
hpicfJobSchedulerRowStatus RowStatus,
hpicfJobSchedulerCommand OCTET STRING,
hpicfJobSchedulerConfigSave TruthValue,
hpicfJobSchedulerRunCount Unsigned32,
hpicfJobSchedulerErrorCount Unsigned32,
hpicfJobSchedulerLastOutput OCTET STRING,
hpicfJobSchedulerEvent BITS,
hpicfJobSchedulerCalendarMonth BITS,
hpicfJobSchedulerCalendarDayOfMonth BITS,
hpicfJobSchedulerCalendarDayOfWeek BITS,
hpicfJobSchedulerCalendarHour BITS,
hpicfJobSchedulerCalendarMinute BITS
}
hpicfJobSchedulerName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..40))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A unique name for a scheduled job."
::= { hpicfJobSchedulerEntry 1 }
hpicfJobSchedulerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The Row Status of this entry.
To create a new entry, send an SNMP SET request with a
RowStatus of 'createAndGo'.
active - the job is ready to run as scheduled.
notInService - not valid for this table.
notReady - the job is not fully configured.
createAndGo - create a new entry.
createAndWait - not valid for this table.
delete - delete the entry."
::= { hpicfJobSchedulerEntry 2 }
hpicfJobSchedulerCommand OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The CLI command to execute when the job is run."
::= { hpicfJobSchedulerEntry 3 }
hpicfJobSchedulerConfigSave OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This flag causes any configuration changes made by the
job to be saved at completion."
::= { hpicfJobSchedulerEntry 4 }
hpicfJobSchedulerRunCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times since the device booted that the
job has run."
::= { hpicfJobSchedulerEntry 5 }
hpicfJobSchedulerErrorCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times since the device booted that the
job has resulted in an error."
::= { hpicfJobSchedulerEntry 6 }
hpicfJobSchedulerLastOutput OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The first 255 characters of output from the last job
execution."
::= { hpicfJobSchedulerEntry 7 }
hpicfJobSchedulerEvent OBJECT-TYPE
SYNTAX BITS {
reboot (0),
failover (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A set of events that will cause this job to run.
reboot - the job is run as soon as possible after the
device boots.
failover - the job is executed after failover to a
standby management module. This event only applies
to devices that have a standby module and is ignored
on other devices.
The Calendar schedule objects below are ignored when
any event bit is set in this object."
::= { hpicfJobSchedulerEntry 8 }
hpicfJobSchedulerCalendarMonth OBJECT-TYPE
SYNTAX BITS {
january(0),
february(1),
march(2),
april(3),
may(4),
june(5),
july(6),
august(7),
september(8),
october(9),
november(10),
december(11)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The set of months when this job should run. Some devices
may allow only a single month to be specified in the bitmap."
::= { hpicfJobSchedulerEntry 9 }
hpicfJobSchedulerCalendarDayOfMonth OBJECT-TYPE
SYNTAX BITS {
d1(0), d2(1), d3(2), d4(3), d5(4),
d6(5), d7(6), d8(7), d9(8), d10(9),
d11(10), d12(11), d13(12), d14(13), d15(14),
d16(15), d17(16), d18(17), d19(18), d20(19),
d21(20), d22(21), d23(22), d24(23), d25(24),
d26(25), d27(26), d28(27), d29(28), d30(29),
d31(30),
r1(31), r2(32), r3(33), r4(34), r5(35),
r6(36), r7(37), r8(38), r9(39), r10(40),
r11(41), r12(42), r13(43), r14(44), r15(45),
r16(46), r17(47), r18(48), r19(49), r20(50),
r21(51), r22(52), r23(53), r24(54), r25(55),
r26(56), r27(57), r28(58), r29(59), r30(60),
r31(61)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The set of days of the month when this job should run.
Bits beginning with 'd' specify a day relative to the
first day of the month. Bits beginning with 'r' specify
a day relative to the last day of the month. Bit 'r1'
is the last day of the month, bit 'r2' is the second to
last day of the month, etc.
Some devices may allow only a single day to be specified
in the bitmap."
::= { hpicfJobSchedulerEntry 10 }
hpicfJobSchedulerCalendarDayOfWeek OBJECT-TYPE
SYNTAX BITS {
sunday(0),
monday(1),
tuesday(2),
wednesday(3),
thursday(4),
friday(5),
saturday(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The days of the week when the job is scheduled to run.
The Month and DayOfMonth objects above are ignored when
any bit is set in this object."
::= { hpicfJobSchedulerEntry 11 }
hpicfJobSchedulerCalendarHour OBJECT-TYPE
SYNTAX BITS {
h0(0), h1(1), h2(2), h3(3), h4(4),
h5(5), h6(6), h7(7), h8(8), h9(9),
h10(10), h11(11), h12(12), h13(13), h14(14),
h15(15), h16(16), h17(17), h18(18), h19(19),
h20(20), h21(21), h22(22), h23(23)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A bitmap of hours of the day when the job is scheduled
to run. Times are local. Some devices may allow only
a single hour to be specified in the bitmap."
::= { hpicfJobSchedulerEntry 12 }
hpicfJobSchedulerCalendarMinute OBJECT-TYPE
SYNTAX BITS {
m0(0), m1(1), m2(2), m3(3), m4(4),
m5(5), m6(6), m7(7), m8(8), m9(9),
m10(10), m11(11), m12(12), m13(13), m14(14),
m15(15), m16(16), m17(17), m18(18), m19(19),
m20(20), m21(21), m22(22), m23(23), m24(24),
m25(25), m26(26), m27(27), m28(28), m29(29),
m30(30), m31(31), m32(32), m33(33), m34(34),
m35(35), m36(36), m37(37), m38(38), m39(39),
m40(40), m41(41), m42(42), m43(43), m44(44),
m45(45), m46(46), m47(47), m48(48), m49(49),
m50(50), m51(51), m52(52), m53(53), m54(54),
m55(55), m56(56), m57(57), m58(58), m59(59)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A bitmap of minutes of the hour when the job is scheduled
to run. Times are local. This value is combined with the
Hour bitmap to create a set of times for the job to run on
each scheduled day. Some devices may allow only a single
minute to be specified in the bitmap."
::= { hpicfJobSchedulerEntry 13 }
-- ****************************************************************************
-- Conformance Information
-- ****************************************************************************
-- units of conformance
hpicfJobSchedulerGroup OBJECT-GROUP
OBJECTS {
hpicfJobSchedulerRowStatus,
hpicfJobSchedulerCommand,
hpicfJobSchedulerConfigSave,
hpicfJobSchedulerRunCount,
hpicfJobSchedulerErrorCount,
hpicfJobSchedulerLastOutput,
hpicfJobSchedulerEvent,
hpicfJobSchedulerCalendarMonth,
hpicfJobSchedulerCalendarDayOfMonth,
hpicfJobSchedulerCalendarDayOfWeek,
hpicfJobSchedulerCalendarHour,
hpicfJobSchedulerCalendarMinute
}
STATUS current
DESCRIPTION "A collection of objects providing configuration
of scheduled jobs."
::= { hpicfJobSchedulerMIBGroups 1 }
hpicfJobSchedulerMIBCompliances OBJECT IDENTIFIER ::= { hpicfJobSchedulerConformance 1 }
hpicfJobSchedulerMIBGroups OBJECT IDENTIFIER ::= { hpicfJobSchedulerConformance 2 }
-- compliance statements
hpicfJobSchedulerMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for device support of
HP-ICF-JOB-SCHEDULER-MIB."
MODULE -- This Module
MANDATORY-GROUPS {
hpicfJobSchedulerGroup
}
::= { hpicfJobSchedulerMIBCompliances 1 }
END