plainprograms-virtuozzo 0.5.3 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/CHANGELOG.rdoc +21 -0
  2. data/Rakefile +3 -3
  3. data/TODO.rdoc +20 -0
  4. data/lib/virtuozzo/soap.rb +216 -0
  5. data/lib/virtuozzo/soap/drivers/alertm.rb +78 -0
  6. data/lib/virtuozzo/soap/drivers/authm.rb +172 -0
  7. data/lib/virtuozzo/soap/drivers/backupm.rb +108 -0
  8. data/lib/virtuozzo/soap/drivers/computerm.rb +108 -0
  9. data/lib/virtuozzo/soap/drivers/env_samplem.rb +84 -0
  10. data/lib/virtuozzo/soap/drivers/event_log.rb +60 -0
  11. data/lib/virtuozzo/soap/drivers/filer.rb +156 -0
  12. data/lib/virtuozzo/soap/drivers/firewallm.rb +100 -0
  13. data/lib/virtuozzo/soap/drivers/licensem.rb +100 -0
  14. data/lib/virtuozzo/soap/drivers/mailer.rb +108 -0
  15. data/lib/virtuozzo/soap/drivers/op_log.rb +60 -0
  16. data/lib/virtuozzo/soap/drivers/perf_mon.rb +76 -0
  17. data/lib/virtuozzo/soap/drivers/res_log.rb +84 -0
  18. data/lib/virtuozzo/soap/drivers/resourcem.rb +100 -0
  19. data/lib/virtuozzo/soap/drivers/scheduler.rb +84 -0
  20. data/lib/virtuozzo/soap/drivers/server_group.rb +140 -0
  21. data/lib/virtuozzo/soap/drivers/servicem.rb +100 -0
  22. data/lib/virtuozzo/soap/drivers/userm.rb +156 -0
  23. data/lib/virtuozzo/soap/mapping_registries/alertm.rb +2799 -0
  24. data/lib/virtuozzo/soap/mapping_registries/authm.rb +3292 -0
  25. data/lib/virtuozzo/soap/mapping_registries/backupm.rb +3597 -0
  26. data/lib/virtuozzo/soap/mapping_registries/computerm.rb +2896 -0
  27. data/lib/virtuozzo/soap/mapping_registries/env_samplem.rb +2735 -0
  28. data/lib/virtuozzo/soap/mapping_registries/event_log.rb +2695 -0
  29. data/lib/virtuozzo/soap/mapping_registries/filer.rb +3211 -0
  30. data/lib/virtuozzo/soap/mapping_registries/firewallm.rb +2815 -0
  31. data/lib/virtuozzo/soap/mapping_registries/licensem.rb +2889 -0
  32. data/lib/virtuozzo/soap/mapping_registries/mailer.rb +2831 -0
  33. data/lib/virtuozzo/soap/mapping_registries/op_log.rb +2724 -0
  34. data/lib/virtuozzo/soap/mapping_registries/perf_mon.rb +2798 -0
  35. data/lib/virtuozzo/soap/mapping_registries/res_log.rb +2946 -0
  36. data/lib/virtuozzo/soap/mapping_registries/resourcem.rb +2837 -0
  37. data/lib/virtuozzo/soap/mapping_registries/scheduler.rb +2928 -0
  38. data/lib/virtuozzo/soap/mapping_registries/server_group.rb +3161 -0
  39. data/lib/virtuozzo/soap/mapping_registries/servicem.rb +2949 -0
  40. data/lib/virtuozzo/soap/mapping_registries/userm.rb +3173 -0
  41. data/lib/virtuozzo/soap/types/alertm.rb +2233 -0
  42. data/lib/virtuozzo/soap/types/authm.rb +2655 -0
  43. data/lib/virtuozzo/soap/types/backupm.rb +2773 -0
  44. data/lib/virtuozzo/soap/types/computerm.rb +2334 -0
  45. data/lib/virtuozzo/soap/types/env_samplem.rb +2159 -0
  46. data/lib/virtuozzo/soap/types/event_log.rb +2125 -0
  47. data/lib/virtuozzo/soap/types/filer.rb +2807 -0
  48. data/lib/virtuozzo/soap/types/firewallm.rb +2225 -0
  49. data/lib/virtuozzo/soap/types/licensem.rb +2266 -0
  50. data/lib/virtuozzo/soap/types/mailer.rb +2311 -0
  51. data/lib/virtuozzo/soap/types/op_log.rb +2156 -0
  52. data/lib/virtuozzo/soap/types/perf_mon.rb +2258 -0
  53. data/lib/virtuozzo/soap/types/res_log.rb +2340 -0
  54. data/lib/virtuozzo/soap/types/resourcem.rb +2213 -0
  55. data/lib/virtuozzo/soap/types/scheduler.rb +2307 -0
  56. data/lib/virtuozzo/soap/types/server_group.rb +2467 -0
  57. data/lib/virtuozzo/soap/types/servicem.rb +2292 -0
  58. data/lib/virtuozzo/soap/types/userm.rb +2599 -0
  59. data/virtuozzo.gemspec +10 -10
  60. metadata +116 -6
@@ -0,0 +1,2695 @@
1
+ require 'virtuozzo/soap/types/event_log'
2
+ require 'soap/mapping'
3
+
4
+ module Virtuozzo
5
+ module SOAP
6
+ module MappingRegistries
7
+ module EventLog
8
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
9
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
10
+ NsEvent_log = "http://www.swsoft.com/webservices/vzl/4.0.0/event_log"
11
+ NsEvent_log_0 = "http://www.swsoft.com/webservices/vzl/WSDL/4.0.0/event_log"
12
+ NsProtocol = "http://www.swsoft.com/webservices/vzl/4.0.0/protocol"
13
+ NsTypes = "http://www.swsoft.com/webservices/vzl/4.0.0/types"
14
+ NsXMLSchema = "http://www.w3.org/2001/XMLSchema"
15
+
16
+ EncodedRegistry.register(
17
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType,
18
+ :schema_type => XSD::QName.new(NsEvent_log, "event_logType"),
19
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
20
+ :schema_element => [ :choice,
21
+ ["configuration", ["Virtuozzo::SOAP::Types::EventLog::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
22
+ ["ok", ["Virtuozzo::SOAP::Types::EventLog::Event_logType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
23
+ ["error", ["Virtuozzo::SOAP::Types::EventLog::Event_logType::Error[]", XSD::QName.new(NsProtocol, "error")]],
24
+ [
25
+ ["get_events", "Virtuozzo::SOAP::Types::EventLog::Get_events[]"]
26
+ ],
27
+ [
28
+ ["event", "Virtuozzo::SOAP::Types::EventLog::EventType[]", [0, nil]]
29
+ ]
30
+ ]
31
+ )
32
+
33
+ EncodedRegistry.register(
34
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType::Ok,
35
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
36
+ :is_anonymous => true,
37
+ :schema_qualified => true,
38
+ :schema_element => []
39
+ )
40
+
41
+ EncodedRegistry.register(
42
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType::Error,
43
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
44
+ :is_anonymous => true,
45
+ :schema_qualified => true,
46
+ :schema_element => [
47
+ ["code", "SOAP::SOAPInt"],
48
+ ["message", "SOAP::SOAPString", [0, 1]]
49
+ ]
50
+ )
51
+
52
+ EncodedRegistry.register(
53
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_log_configurationType,
54
+ :schema_type => XSD::QName.new(NsEvent_log, "event_log_configurationType"),
55
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
56
+ :schema_element => [
57
+ ["events", "SOAP::SOAPInt"]
58
+ ]
59
+ )
60
+
61
+ EncodedRegistry.register(
62
+ :class => Virtuozzo::SOAP::Types::EventLog::OsType,
63
+ :schema_type => XSD::QName.new(NsTypes, "osType"),
64
+ :schema_element => [
65
+ ["platform", "SOAP::SOAPString", [0, 1]],
66
+ ["name", "SOAP::SOAPString"],
67
+ ["version", "SOAP::SOAPString", [0, 1]],
68
+ ["kernel", "SOAP::SOAPString", [0, 1]]
69
+ ]
70
+ )
71
+
72
+ EncodedRegistry.register(
73
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_statusType,
74
+ :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
75
+ :schema_element => [
76
+ ["state", "SOAP::SOAPInt", [0, 1]],
77
+ ["transition", "SOAP::SOAPInt", [0, 1]]
78
+ ]
79
+ )
80
+
81
+ EncodedRegistry.register(
82
+ :class => Virtuozzo::SOAP::Types::EventLog::QosType,
83
+ :schema_type => XSD::QName.new(NsTypes, "qosType"),
84
+ :schema_element => [
85
+ ["id", "SOAP::SOAPString"],
86
+ ["soft", "SOAP::SOAPLong", [0, 1]],
87
+ ["hard", "SOAP::SOAPLong", [0, 1]],
88
+ ["cur", "SOAP::SOAPLong", [0, 1]]
89
+ ]
90
+ )
91
+
92
+ EncodedRegistry.register(
93
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_configType,
94
+ :schema_type => XSD::QName.new(NsTypes, "env_configType"),
95
+ :schema_element => [
96
+ ["name", "SOAP::SOAPString", [0, 1]],
97
+ ["description", "SOAP::SOAPBase64", [0, 1]],
98
+ ["domain", "SOAP::SOAPString", [0, 1]],
99
+ ["hostname", "SOAP::SOAPString", [0, 1]],
100
+ ["address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
101
+ ["architecture", "SOAP::SOAPString", [0, 1]],
102
+ ["os", "Virtuozzo::SOAP::Types::EventLog::OsType", [0, 1]],
103
+ ["type", "SOAP::SOAPString", [0, 1]],
104
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
105
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
106
+ ["base_sample_id", nil, [0, 1]],
107
+ ["base_snapshot_id", nil, [0, 1]],
108
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
109
+ ]
110
+ )
111
+
112
+ EncodedRegistry.register(
113
+ :class => Virtuozzo::SOAP::Types::EventLog::Venv_configType,
114
+ :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
115
+ :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
116
+ :schema_element => [
117
+ ["name", "SOAP::SOAPString", [0, 1]],
118
+ ["description", "SOAP::SOAPBase64", [0, 1]],
119
+ ["domain", "SOAP::SOAPString", [0, 1]],
120
+ ["hostname", "SOAP::SOAPString", [0, 1]],
121
+ ["address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
122
+ ["architecture", "SOAP::SOAPString", [0, 1]],
123
+ ["os", "Virtuozzo::SOAP::Types::EventLog::OsType", [0, 1]],
124
+ ["type", "SOAP::SOAPString", [0, 1]],
125
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
126
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
127
+ ["base_sample_id", nil, [0, 1]],
128
+ ["base_snapshot_id", nil, [0, 1]],
129
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
130
+ ["qos", "Virtuozzo::SOAP::Types::EventLog::QosType[]", [0, nil]]
131
+ ]
132
+ )
133
+
134
+ EncodedRegistry.register(
135
+ :class => Virtuozzo::SOAP::Types::EventLog::Native_configType,
136
+ :schema_type => XSD::QName.new(NsTypes, "native_configType"),
137
+ :schema_element => []
138
+ )
139
+
140
+ EncodedRegistry.register(
141
+ :class => Virtuozzo::SOAP::Types::EventLog::EnvType,
142
+ :schema_type => XSD::QName.new(NsTypes, "envType"),
143
+ :schema_element => [
144
+ ["parent_eid", nil],
145
+ ["eid", nil],
146
+ ["status", "Virtuozzo::SOAP::Types::EventLog::Env_statusType", [0, 1]],
147
+ ["alert", "SOAP::SOAPInt", [0, 1]],
148
+ ["config", "Virtuozzo::SOAP::Types::EventLog::Env_configType", [0, 1]],
149
+ ["virtual_config", "Virtuozzo::SOAP::Types::EventLog::Venv_configType", [0, 1]]
150
+ ]
151
+ )
152
+
153
+ EncodedRegistry.register(
154
+ :class => Virtuozzo::SOAP::Types::EventLog::ProcessesType,
155
+ :schema_type => XSD::QName.new(NsTypes, "processesType"),
156
+ :schema_element => [
157
+ ["run", "SOAP::SOAPInt"],
158
+ ["zombie", "SOAP::SOAPInt"],
159
+ ["sleep", "SOAP::SOAPInt"],
160
+ ["uninterrupt", "SOAP::SOAPInt"],
161
+ ["stopped", "SOAP::SOAPInt"],
162
+ ["total", "SOAP::SOAPInt"]
163
+ ]
164
+ )
165
+
166
+ EncodedRegistry.register(
167
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avgType,
168
+ :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
169
+ :schema_element => [
170
+ ["l1", "SOAP::SOAPDouble"],
171
+ ["l2", "SOAP::SOAPDouble", [0, 1]],
172
+ ["l3", "SOAP::SOAPDouble", [0, 1]]
173
+ ]
174
+ )
175
+
176
+ EncodedRegistry.register(
177
+ :class => Virtuozzo::SOAP::Types::EventLog::Cpu_loadType,
178
+ :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
179
+ :schema_element => [
180
+ ["system", "SOAP::SOAPLong"],
181
+ ["user", "SOAP::SOAPLong"],
182
+ ["nice", "SOAP::SOAPLong"],
183
+ ["idle", "SOAP::SOAPLong"]
184
+ ]
185
+ )
186
+
187
+ EncodedRegistry.register(
188
+ :class => Virtuozzo::SOAP::Types::EventLog::CpuType,
189
+ :schema_type => XSD::QName.new(NsTypes, "cpuType"),
190
+ :schema_element => [
191
+ ["mhz", "SOAP::SOAPInt"],
192
+ ["name", "SOAP::SOAPString"],
193
+ ["number", "SOAP::SOAPInt"],
194
+ ["cores", "SOAP::SOAPInt"],
195
+ ["hyperthreads", "SOAP::SOAPInt"],
196
+ ["units", "SOAP::SOAPInt"],
197
+ ["family", "SOAP::SOAPString"],
198
+ ["model", "SOAP::SOAPString"],
199
+ ["bogomips", "SOAP::SOAPInt"]
200
+ ]
201
+ )
202
+
203
+ EncodedRegistry.register(
204
+ :class => Virtuozzo::SOAP::Types::EventLog::TransferType,
205
+ :schema_type => XSD::QName.new(NsTypes, "transferType"),
206
+ :schema_element => [
207
+ ["input", "Virtuozzo::SOAP::Types::EventLog::TransferType::Input"],
208
+ ["output", "Virtuozzo::SOAP::Types::EventLog::TransferType::Output"]
209
+ ]
210
+ )
211
+
212
+ EncodedRegistry.register(
213
+ :class => Virtuozzo::SOAP::Types::EventLog::TransferType::Input,
214
+ :schema_name => XSD::QName.new(NsTypes, "input"),
215
+ :is_anonymous => true,
216
+ :schema_qualified => true,
217
+ :schema_element => [
218
+ ["bytes", "SOAP::SOAPLong"],
219
+ ["packets", "SOAP::SOAPLong", [0, 1]]
220
+ ]
221
+ )
222
+
223
+ EncodedRegistry.register(
224
+ :class => Virtuozzo::SOAP::Types::EventLog::TransferType::Output,
225
+ :schema_name => XSD::QName.new(NsTypes, "output"),
226
+ :is_anonymous => true,
227
+ :schema_qualified => true,
228
+ :schema_element => [
229
+ ["bytes", "SOAP::SOAPLong"],
230
+ ["packets", "SOAP::SOAPLong", [0, 1]]
231
+ ]
232
+ )
233
+
234
+ EncodedRegistry.register(
235
+ :class => Virtuozzo::SOAP::Types::EventLog::System_nodeType,
236
+ :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
237
+ :schema_element => [
238
+ ["address", "Virtuozzo::SOAP::Types::EventLog::System_nodeType::Address"],
239
+ ["login", "Virtuozzo::SOAP::Types::EventLog::System_nodeType::Login", [0, 1]]
240
+ ]
241
+ )
242
+
243
+ EncodedRegistry.register(
244
+ :class => Virtuozzo::SOAP::Types::EventLog::System_nodeType::Address,
245
+ :schema_name => XSD::QName.new(NsTypes, "address"),
246
+ :is_anonymous => true,
247
+ :schema_qualified => true,
248
+ :schema_element => [
249
+ ["ip", nil]
250
+ ]
251
+ )
252
+
253
+ EncodedRegistry.register(
254
+ :class => Virtuozzo::SOAP::Types::EventLog::System_nodeType::Login,
255
+ :schema_name => XSD::QName.new(NsTypes, "login"),
256
+ :is_anonymous => true,
257
+ :schema_qualified => true,
258
+ :schema_element => [
259
+ ["user", "SOAP::SOAPString"],
260
+ ["password", "SOAP::SOAPBase64"]
261
+ ]
262
+ )
263
+
264
+ EncodedRegistry.register(
265
+ :class => Virtuozzo::SOAP::Types::EventLog::ResourceType,
266
+ :schema_type => XSD::QName.new(NsTypes, "resourceType"),
267
+ :schema_element => [
268
+ ["total", "SOAP::SOAPLong", [0, 1]],
269
+ ["used", "SOAP::SOAPLong", [0, 1]],
270
+ ["free", "SOAP::SOAPLong", [0, 1]],
271
+ ["avg", "SOAP::SOAPLong", [0, 1]],
272
+ ["min", "SOAP::SOAPLong", [0, 1]],
273
+ ["max", "SOAP::SOAPLong", [0, 1]]
274
+ ]
275
+ )
276
+
277
+ EncodedRegistry.register(
278
+ :class => Virtuozzo::SOAP::Types::EventLog::IntervalType,
279
+ :schema_type => XSD::QName.new(NsTypes, "intervalType"),
280
+ :schema_element => [
281
+ ["start_time", nil],
282
+ ["end_time", nil]
283
+ ]
284
+ )
285
+
286
+ EncodedRegistry.register(
287
+ :class => Virtuozzo::SOAP::Types::EventLog::StatsType,
288
+ :schema_type => XSD::QName.new(NsTypes, "statsType"),
289
+ :schema_element => [
290
+ ["avg", "SOAP::SOAPLong", [0, 1]],
291
+ ["min", "SOAP::SOAPLong", [0, 1]],
292
+ ["max", "SOAP::SOAPLong", [0, 1]],
293
+ ["total", "SOAP::SOAPLong", [0, 1]],
294
+ ["cur", "SOAP::SOAPLong", [0, 1]],
295
+ ["soft", "SOAP::SOAPLong", [0, 1]],
296
+ ["hard", "SOAP::SOAPLong", [0, 1]]
297
+ ]
298
+ )
299
+
300
+ EncodedRegistry.register(
301
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_addressType,
302
+ :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
303
+ :schema_element => [
304
+ ["host", nil],
305
+ ["mask", nil, [0, 1]]
306
+ ]
307
+ )
308
+
309
+ EncodedRegistry.register(
310
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_classType,
311
+ :schema_type => XSD::QName.new(NsTypes, "net_classType"),
312
+ :schema_element => [
313
+ ["id", "SOAP::SOAPString", [0, 1]],
314
+ ["transfer", "Virtuozzo::SOAP::Types::EventLog::TransferType", [0, 1]]
315
+ ]
316
+ )
317
+
318
+ EncodedRegistry.register(
319
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_rangeType,
320
+ :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
321
+ :schema_element => [
322
+ ["id", "SOAP::SOAPString", [0, 1]],
323
+ ["start_ip", nil, [0, 1]],
324
+ ["subnet_mask", "SOAP::SOAPInt", [0, 1]],
325
+ ["comment", "SOAP::SOAPString", [0, 1]]
326
+ ]
327
+ )
328
+
329
+ EncodedRegistry.register(
330
+ :class => Virtuozzo::SOAP::Types::EventLog::Sample_confType,
331
+ :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
332
+ :schema_element => [
333
+ ["env_config", "Virtuozzo::SOAP::Types::EventLog::Env_configType"],
334
+ ["id", "SOAP::SOAPString", [0, 1]],
335
+ ["name", "SOAP::SOAPString"],
336
+ ["comment", "SOAP::SOAPBase64", [0, 1]],
337
+ ["vt_version", "Virtuozzo::SOAP::Types::EventLog::Sample_confType::Vt_version", [0, 1]]
338
+ ]
339
+ )
340
+
341
+ EncodedRegistry.register(
342
+ :class => Virtuozzo::SOAP::Types::EventLog::Sample_confType::Vt_version,
343
+ :schema_name => XSD::QName.new(NsTypes, "vt_version"),
344
+ :is_anonymous => true,
345
+ :schema_qualified => true,
346
+ :schema_element => [
347
+ ["platform", "SOAP::SOAPString"],
348
+ ["architecture", "SOAP::SOAPString"],
349
+ ["vt_technology", "SOAP::SOAPString"]
350
+ ]
351
+ )
352
+
353
+ EncodedRegistry.register(
354
+ :class => Virtuozzo::SOAP::Types::EventLog::InterfaceType,
355
+ :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
356
+ :schema_element => [
357
+ ["name", "SOAP::SOAPString"],
358
+ ["bandwidth", "SOAP::SOAPInt", [0, 1]],
359
+ ["transfer", "Virtuozzo::SOAP::Types::EventLog::TransferType", [0, 1]],
360
+ ["ipaddress", nil, [0, 1]],
361
+ ["flags", "SOAP::SOAPInt", [0, 1]]
362
+ ]
363
+ )
364
+
365
+ EncodedRegistry.register(
366
+ :class => Virtuozzo::SOAP::Types::EventLog::Sys_infoType,
367
+ :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
368
+ :schema_element => [
369
+ ["load_avg", "Virtuozzo::SOAP::Types::EventLog::Load_avgType"],
370
+ ["processes", "Virtuozzo::SOAP::Types::EventLog::ProcessesType"],
371
+ ["cpu_load", "Virtuozzo::SOAP::Types::EventLog::Cpu_loadType"],
372
+ ["cpu_states", "Virtuozzo::SOAP::Types::EventLog::Cpu_loadType"],
373
+ ["users", "SOAP::SOAPInt"],
374
+ ["uptime", "SOAP::SOAPLong"],
375
+ ["memory", "Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Memory", [0, 1]],
376
+ ["swap", "Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Swap", [0, 1]]
377
+ ]
378
+ )
379
+
380
+ EncodedRegistry.register(
381
+ :class => Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Memory,
382
+ :schema_name => XSD::QName.new(NsTypes, "memory"),
383
+ :is_anonymous => true,
384
+ :schema_qualified => true,
385
+ :schema_element => [
386
+ ["total", "SOAP::SOAPLong", [0, 1]],
387
+ ["used", "SOAP::SOAPLong"]
388
+ ]
389
+ )
390
+
391
+ EncodedRegistry.register(
392
+ :class => Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Swap,
393
+ :schema_name => XSD::QName.new(NsTypes, "swap"),
394
+ :is_anonymous => true,
395
+ :schema_qualified => true,
396
+ :schema_element => [
397
+ ["total", "SOAP::SOAPLong", [0, 1]],
398
+ ["used", "SOAP::SOAPLong"]
399
+ ]
400
+ )
401
+
402
+ EncodedRegistry.register(
403
+ :class => Virtuozzo::SOAP::Types::EventLog::Ps_infoType,
404
+ :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
405
+ :schema_element => [
406
+ ["process", "Virtuozzo::SOAP::Types::EventLog::Ps_infoType::C_Process[]", [1, nil]],
407
+ ["param_id", "SOAP::SOAPString[]", [1, nil]],
408
+ ["run", "SOAP::SOAPInt"],
409
+ ["idle", "SOAP::SOAPInt"],
410
+ ["zombie", "SOAP::SOAPInt"],
411
+ ["sleep", "SOAP::SOAPInt"],
412
+ ["uninterrupt", "SOAP::SOAPInt"],
413
+ ["stopped", "SOAP::SOAPInt"],
414
+ ["total", "SOAP::SOAPInt"]
415
+ ]
416
+ )
417
+
418
+ EncodedRegistry.register(
419
+ :class => Virtuozzo::SOAP::Types::EventLog::Ps_infoType::C_Process,
420
+ :schema_name => XSD::QName.new(NsTypes, "process"),
421
+ :is_anonymous => true,
422
+ :schema_qualified => true,
423
+ :schema_element => [
424
+ ["pid", "SOAP::SOAPInt"],
425
+ ["param", "SOAP::SOAPBase64[]", [0, nil]]
426
+ ]
427
+ )
428
+
429
+ EncodedRegistry.register(
430
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType,
431
+ :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
432
+ :schema_element => [
433
+ ["l1", "Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L1"],
434
+ ["l2", "Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L2", [0, 1]],
435
+ ["l3", "Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L3", [0, 1]]
436
+ ]
437
+ )
438
+
439
+ EncodedRegistry.register(
440
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L1,
441
+ :schema_name => XSD::QName.new(NsTypes, "l1"),
442
+ :is_anonymous => true,
443
+ :schema_qualified => true,
444
+ :schema_element => [
445
+ ["avg", "SOAP::SOAPLong", [0, 1]],
446
+ ["min", "SOAP::SOAPLong", [0, 1]],
447
+ ["max", "SOAP::SOAPLong", [0, 1]],
448
+ ["cur", "SOAP::SOAPLong", [0, 1]]
449
+ ]
450
+ )
451
+
452
+ EncodedRegistry.register(
453
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L2,
454
+ :schema_name => XSD::QName.new(NsTypes, "l2"),
455
+ :is_anonymous => true,
456
+ :schema_qualified => true,
457
+ :schema_element => [
458
+ ["avg", "SOAP::SOAPLong", [0, 1]],
459
+ ["min", "SOAP::SOAPLong", [0, 1]],
460
+ ["max", "SOAP::SOAPLong", [0, 1]],
461
+ ["cur", "SOAP::SOAPLong", [0, 1]]
462
+ ]
463
+ )
464
+
465
+ EncodedRegistry.register(
466
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L3,
467
+ :schema_name => XSD::QName.new(NsTypes, "l3"),
468
+ :is_anonymous => true,
469
+ :schema_qualified => true,
470
+ :schema_element => [
471
+ ["avg", "SOAP::SOAPLong", [0, 1]],
472
+ ["min", "SOAP::SOAPLong", [0, 1]],
473
+ ["max", "SOAP::SOAPLong", [0, 1]],
474
+ ["cur", "SOAP::SOAPLong", [0, 1]]
475
+ ]
476
+ )
477
+
478
+ EncodedRegistry.register(
479
+ :class => Virtuozzo::SOAP::Types::EventLog::Alert_dataType,
480
+ :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
481
+ :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
482
+ :schema_element => [
483
+ ["type", "SOAP::SOAPInt"]
484
+ ]
485
+ )
486
+
487
+ EncodedRegistry.register(
488
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_addressType,
489
+ :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
490
+ :schema_element => [
491
+ ["ip", nil],
492
+ ["netmask", nil, [0, 1]]
493
+ ]
494
+ )
495
+
496
+ EncodedRegistry.register(
497
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_resourceType,
498
+ :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
499
+ :schema_element => [
500
+ ["eid", nil],
501
+ ["ip_pool", "Virtuozzo::SOAP::Types::EventLog::Ip_poolType", [0, 1]]
502
+ ]
503
+ )
504
+
505
+ EncodedRegistry.register(
506
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_poolType,
507
+ :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
508
+ :schema_element => [ :choice,
509
+ ["ip_range", "Virtuozzo::SOAP::Types::EventLog::Ip_poolType::Ip_range[]"],
510
+ ["ip", "[]"]
511
+ ]
512
+ )
513
+
514
+ EncodedRegistry.register(
515
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_poolType::Ip_range,
516
+ :schema_name => XSD::QName.new(NsTypes, "ip_range"),
517
+ :is_anonymous => true,
518
+ :schema_qualified => true,
519
+ :schema_element => [
520
+ ["start_ip", nil],
521
+ ["end_ip", nil]
522
+ ]
523
+ )
524
+
525
+ EncodedRegistry.register(
526
+ :class => Virtuozzo::SOAP::Types::EventLog::UsageType,
527
+ :schema_type => XSD::QName.new(NsTypes, "usageType"),
528
+ :schema_element => [
529
+ ["total", "SOAP::SOAPLong", [0, 1]],
530
+ ["used", "SOAP::SOAPLong", [0, 1]],
531
+ ["free", "SOAP::SOAPLong", [0, 1]]
532
+ ]
533
+ )
534
+
535
+ EncodedRegistry.register(
536
+ :class => Virtuozzo::SOAP::Types::EventLog::Root_credentialType,
537
+ :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
538
+ :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
539
+ :schema_element => [
540
+ ["id", "SOAP::SOAPString"],
541
+ ["policy", "SOAP::SOAPInt", [0, 1]],
542
+ ["description", "SOAP::SOAPBase64", [0, 1]],
543
+ ["cred", "Virtuozzo::SOAP::Types::EventLog::CredentialType[]", [0, nil]],
544
+ ["objects", "Virtuozzo::SOAP::Types::EventLog::Root_credentialType::Objects", [0, 1]]
545
+ ]
546
+ )
547
+
548
+ EncodedRegistry.register(
549
+ :class => Virtuozzo::SOAP::Types::EventLog::Root_credentialType::Objects,
550
+ :schema_name => XSD::QName.new(NsTypes, "objects"),
551
+ :is_anonymous => true,
552
+ :schema_qualified => true,
553
+ :schema_element => [
554
+ ["eid", "SOAP::SOAPString[]", [0, nil]]
555
+ ]
556
+ )
557
+
558
+ EncodedRegistry.register(
559
+ :class => Virtuozzo::SOAP::Types::EventLog::CredentialType,
560
+ :schema_type => XSD::QName.new(NsTypes, "credentialType"),
561
+ :schema_element => [
562
+ ["id", "SOAP::SOAPString"],
563
+ ["policy", "SOAP::SOAPInt", [0, 1]],
564
+ ["description", "SOAP::SOAPBase64", [0, 1]],
565
+ ["cred", "Virtuozzo::SOAP::Types::EventLog::CredentialType[]", [0, nil]]
566
+ ]
567
+ )
568
+
569
+ EncodedRegistry.register(
570
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType,
571
+ :schema_type => XSD::QName.new(NsTypes, "tokenType"),
572
+ :schema_element => [
573
+ ["user", nil],
574
+ ["groups", "Virtuozzo::SOAP::Types::EventLog::TokenType::Groups", [0, 1]],
575
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::EventLog::TokenType::Deny_only_sids", [0, 1]],
576
+ ["privileges", "Virtuozzo::SOAP::Types::EventLog::TokenType::Privileges", [0, 1]],
577
+ ["source", "Virtuozzo::SOAP::Types::EventLog::TokenType::Source", [0, 1]]
578
+ ]
579
+ )
580
+
581
+ EncodedRegistry.register(
582
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Groups,
583
+ :schema_name => XSD::QName.new(NsTypes, "groups"),
584
+ :is_anonymous => true,
585
+ :schema_qualified => true,
586
+ :schema_element => [
587
+ ["sid", "[]", [1, nil]]
588
+ ]
589
+ )
590
+
591
+ EncodedRegistry.register(
592
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Deny_only_sids,
593
+ :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
594
+ :is_anonymous => true,
595
+ :schema_qualified => true,
596
+ :schema_element => [
597
+ ["sid", "[]", [0, nil]]
598
+ ]
599
+ )
600
+
601
+ EncodedRegistry.register(
602
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Privileges,
603
+ :schema_name => XSD::QName.new(NsTypes, "privileges"),
604
+ :is_anonymous => true,
605
+ :schema_qualified => true,
606
+ :schema_element => [
607
+ ["privilege", "[]", [0, nil]]
608
+ ]
609
+ )
610
+
611
+ EncodedRegistry.register(
612
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Source,
613
+ :schema_name => XSD::QName.new(NsTypes, "source"),
614
+ :is_anonymous => true,
615
+ :schema_qualified => true,
616
+ :schema_element => [
617
+ ["name", "SOAP::SOAPString"],
618
+ ["id", nil]
619
+ ]
620
+ )
621
+
622
+ EncodedRegistry.register(
623
+ :class => Virtuozzo::SOAP::Types::EventLog::Connectivity_infoType,
624
+ :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
625
+ :schema_element => [
626
+ ["protocol", "SOAP::SOAPString", [0, 1]],
627
+ ["address", "SOAP::SOAPString"],
628
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]]
629
+ ]
630
+ )
631
+
632
+ EncodedRegistry.register(
633
+ :class => Virtuozzo::SOAP::Types::EventLog::Auth_nameType,
634
+ :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
635
+ :schema_element => [
636
+ ["name", "SOAP::SOAPBase64", [0, 1]],
637
+ ["domain", "SOAP::SOAPBase64", [0, 1]],
638
+ ["realm", nil]
639
+ ]
640
+ )
641
+
642
+ EncodedRegistry.register(
643
+ :class => Virtuozzo::SOAP::Types::EventLog::Connection_infoType,
644
+ :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
645
+ :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
646
+ :schema_element => [
647
+ ["protocol", "SOAP::SOAPString", [0, 1]],
648
+ ["address", "SOAP::SOAPString"],
649
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
650
+ ["login", "Virtuozzo::SOAP::Types::EventLog::Auth_nameType", [0, 1]],
651
+ ["password", "SOAP::SOAPBase64", [0, 1]]
652
+ ]
653
+ )
654
+
655
+ EncodedRegistry.register(
656
+ :class => Virtuozzo::SOAP::Types::EventLog::Eid_listType,
657
+ :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
658
+ :schema_element => [
659
+ ["eid", "[]", [0, nil]]
660
+ ]
661
+ )
662
+
663
+ EncodedRegistry.register(
664
+ :class => Virtuozzo::SOAP::Types::EventLog::Vt_infoType,
665
+ :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
666
+ :schema_element => [
667
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
668
+ ]
669
+ )
670
+
671
+ EncodedRegistry.register(
672
+ :class => Virtuozzo::SOAP::Types::EventLog::Vt_settingsType,
673
+ :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
674
+ :schema_element => [
675
+ ["default_sample_id", nil, [0, 1]]
676
+ ]
677
+ )
678
+
679
+ EncodedRegistry.register(
680
+ :class => Virtuozzo::SOAP::Types::EventLog::UserType,
681
+ :schema_type => XSD::QName.new(NsTypes, "userType"),
682
+ :schema_element => [
683
+ ["initial_group", "Virtuozzo::SOAP::Types::EventLog::UserType::Initial_group", [0, 1]],
684
+ ["group", "Virtuozzo::SOAP::Types::EventLog::UserType::Group[]", [0, nil]],
685
+ ["uid", "SOAP::SOAPInt", [0, 1]],
686
+ ["shell", "SOAP::SOAPString", [0, 1]],
687
+ ["password", "SOAP::SOAPBase64", [0, 1]],
688
+ ["home_dir", "SOAP::SOAPString", [0, 1]],
689
+ ["name", "SOAP::SOAPString", [0, 1]],
690
+ ["comment", "SOAP::SOAPString", [0, 1]]
691
+ ]
692
+ )
693
+
694
+ EncodedRegistry.register(
695
+ :class => Virtuozzo::SOAP::Types::EventLog::UserType::Initial_group,
696
+ :schema_name => XSD::QName.new(NsTypes, "initial_group"),
697
+ :is_anonymous => true,
698
+ :schema_qualified => true,
699
+ :schema_element => [
700
+ ["name", "SOAP::SOAPString", [0, 1]],
701
+ ["gid", "SOAP::SOAPInt", [0, 1]]
702
+ ]
703
+ )
704
+
705
+ EncodedRegistry.register(
706
+ :class => Virtuozzo::SOAP::Types::EventLog::UserType::Group,
707
+ :schema_name => XSD::QName.new(NsTypes, "group"),
708
+ :is_anonymous => true,
709
+ :schema_qualified => true,
710
+ :schema_element => [
711
+ ["name", "SOAP::SOAPString", [0, 1]],
712
+ ["gid", "SOAP::SOAPInt", [0, 1]]
713
+ ]
714
+ )
715
+
716
+ EncodedRegistry.register(
717
+ :class => Virtuozzo::SOAP::Types::EventLog::GroupType,
718
+ :schema_type => XSD::QName.new(NsTypes, "groupType"),
719
+ :schema_element => [
720
+ ["user", "Virtuozzo::SOAP::Types::EventLog::GroupType::User[]", [0, nil]],
721
+ ["member_group", "Virtuozzo::SOAP::Types::EventLog::GroupType::Member_group[]", [0, nil]],
722
+ ["name", "SOAP::SOAPString", [0, 1]],
723
+ ["gid", "SOAP::SOAPInt", [0, 1]]
724
+ ]
725
+ )
726
+
727
+ EncodedRegistry.register(
728
+ :class => Virtuozzo::SOAP::Types::EventLog::GroupType::User,
729
+ :schema_name => XSD::QName.new(NsTypes, "user"),
730
+ :is_anonymous => true,
731
+ :schema_qualified => true,
732
+ :schema_element => [
733
+ ["name", "SOAP::SOAPString"]
734
+ ]
735
+ )
736
+
737
+ EncodedRegistry.register(
738
+ :class => Virtuozzo::SOAP::Types::EventLog::GroupType::Member_group,
739
+ :schema_name => XSD::QName.new(NsTypes, "member_group"),
740
+ :is_anonymous => true,
741
+ :schema_qualified => true,
742
+ :schema_element => [
743
+ ["name", "SOAP::SOAPString", [0, 1]]
744
+ ]
745
+ )
746
+
747
+ EncodedRegistry.register(
748
+ :class => Virtuozzo::SOAP::Types::EventLog::PackageType,
749
+ :schema_type => XSD::QName.new(NsTypes, "packageType"),
750
+ :schema_element => [
751
+ ["name", "SOAP::SOAPString"],
752
+ ["summary", "SOAP::SOAPString", [0, 1]],
753
+ ["os", "Virtuozzo::SOAP::Types::EventLog::OsType", [0, 1]],
754
+ ["description", "SOAP::SOAPString", [0, 1]],
755
+ ["arch", "SOAP::SOAPString", [0, 1]],
756
+ ["version", "SOAP::SOAPString", [0, 1]]
757
+ ]
758
+ )
759
+
760
+ EncodedRegistry.register(
761
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_dataType,
762
+ :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
763
+ :schema_element => []
764
+ )
765
+
766
+ EncodedRegistry.register(
767
+ :class => Virtuozzo::SOAP::Types::EventLog::Named_listType,
768
+ :schema_type => XSD::QName.new(NsTypes, "named_listType"),
769
+ :schema_element => [
770
+ ["name", "SOAP::SOAPString"],
771
+ ["value", "SOAP::SOAPBase64[]", [0, nil]]
772
+ ]
773
+ )
774
+
775
+ EncodedRegistry.register(
776
+ :class => Virtuozzo::SOAP::Types::EventLog::ModType,
777
+ :schema_type => XSD::QName.new(NsTypes, "modType"),
778
+ :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
779
+ :schema_element => [
780
+ ["name", "SOAP::SOAPString"],
781
+ ["value", "SOAP::SOAPBase64[]", [0, nil]],
782
+ ["op", "SOAP::SOAPInt", [0, 1]]
783
+ ]
784
+ )
785
+
786
+ EncodedRegistry.register(
787
+ :class => Virtuozzo::SOAP::Types::EventLog::RealmType,
788
+ :schema_type => XSD::QName.new(NsTypes, "realmType"),
789
+ :schema_element => [
790
+ ["id", nil, [0, 1]],
791
+ ["type", "SOAP::SOAPInt"],
792
+ ["name", "SOAP::SOAPString"],
793
+ ["builtin", nil, [0, 1]]
794
+ ]
795
+ )
796
+
797
+ EncodedRegistry.register(
798
+ :class => Virtuozzo::SOAP::Types::EventLog::EventType,
799
+ :schema_type => XSD::QName.new(NsTypes, "eventType"),
800
+ :schema_element => [
801
+ ["eid", nil],
802
+ ["time", nil],
803
+ ["source", "SOAP::SOAPString"],
804
+ ["category", "SOAP::SOAPString"],
805
+ ["sid", nil, [0, 1]],
806
+ ["count", "SOAP::SOAPInt"],
807
+ ["id", nil],
808
+ ["info", "Virtuozzo::SOAP::Types::EventLog::InfoType"],
809
+ ["data", "Virtuozzo::SOAP::Types::EventLog::EventType::C_Data", [0, 1]]
810
+ ]
811
+ )
812
+
813
+ EncodedRegistry.register(
814
+ :class => Virtuozzo::SOAP::Types::EventLog::EventType::C_Data,
815
+ :schema_name => XSD::QName.new(NsTypes, "data"),
816
+ :is_anonymous => true,
817
+ :schema_qualified => true,
818
+ :schema_element => [
819
+ ["event_data", "Virtuozzo::SOAP::Types::EventLog::Event_dataType"]
820
+ ]
821
+ )
822
+
823
+ EncodedRegistry.register(
824
+ :class => Virtuozzo::SOAP::Types::EventLog::InfoType,
825
+ :schema_type => XSD::QName.new(NsTypes, "infoType"),
826
+ :schema_element => [
827
+ ["message", "SOAP::SOAPBase64"],
828
+ ["translate", nil, [0, 1]],
829
+ ["parameter", "Virtuozzo::SOAP::Types::EventLog::InfoType[]", [0, nil]],
830
+ ["name", "SOAP::SOAPString"]
831
+ ]
832
+ )
833
+
834
+ EncodedRegistry.register(
835
+ :class => Virtuozzo::SOAP::Types::EventLog::AceType,
836
+ :schema_type => XSD::QName.new(NsTypes, "aceType"),
837
+ :schema_element => [
838
+ ["type", "SOAP::SOAPInt"],
839
+ ["sid", nil],
840
+ ["rights", "SOAP::SOAPBase64"]
841
+ ]
842
+ )
843
+
844
+ EncodedRegistry.register(
845
+ :class => Virtuozzo::SOAP::Types::EventLog::Security_descriptorType,
846
+ :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
847
+ :schema_element => [
848
+ ["owner", nil],
849
+ ["group", nil],
850
+ ["dacl", "Virtuozzo::SOAP::Types::EventLog::Security_descriptorType::Dacl", [0, 1]]
851
+ ]
852
+ )
853
+
854
+ EncodedRegistry.register(
855
+ :class => Virtuozzo::SOAP::Types::EventLog::Security_descriptorType::Dacl,
856
+ :schema_name => XSD::QName.new(NsTypes, "dacl"),
857
+ :is_anonymous => true,
858
+ :schema_qualified => true,
859
+ :schema_element => [
860
+ ["ace", "Virtuozzo::SOAP::Types::EventLog::AceType[]", [0, nil]]
861
+ ]
862
+ )
863
+
864
+ EncodedRegistry.register(
865
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_security_objectType,
866
+ :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
867
+ :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
868
+ :schema_element => [
869
+ ["eid", nil]
870
+ ]
871
+ )
872
+
873
+ EncodedRegistry.register(
874
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_deviceType,
875
+ :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
876
+ :schema_element => [
877
+ ["id", "SOAP::SOAPString", [0, 1]],
878
+ ["ip_address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
879
+ ["dhcp", nil, [0, 1]],
880
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
881
+ ["status", "Virtuozzo::SOAP::Types::EventLog::Net_deviceType::Status", [0, 1]]
882
+ ]
883
+ )
884
+
885
+ EncodedRegistry.register(
886
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_deviceType::Status,
887
+ :schema_name => XSD::QName.new(NsTypes, "status"),
888
+ :is_anonymous => true,
889
+ :schema_qualified => true,
890
+ :schema_element => [ :choice,
891
+ ["up", nil],
892
+ ["down", nil]
893
+ ]
894
+ )
895
+
896
+ EncodedRegistry.register(
897
+ :class => Virtuozzo::SOAP::Types::EventLog::Voc_parameterType,
898
+ :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
899
+ :schema_element => [
900
+ ["id", "SOAP::SOAPString"],
901
+ ["type", "SOAP::SOAPString", [0, 1]],
902
+ ["min", "SOAP::SOAPString", [0, 1]],
903
+ ["max", "SOAP::SOAPString", [0, 1]],
904
+ ["long", "SOAP::SOAPString", [0, 1]],
905
+ ["short", "SOAP::SOAPString", [0, 1]],
906
+ ["category", "SOAP::SOAPString[]", [0, nil]],
907
+ ["complex", "SOAP::SOAPString", [0, 1]],
908
+ ["default", "SOAP::SOAPString", [0, 1]],
909
+ ["measure", "SOAP::SOAPString", [0, 1]],
910
+ ["data", nil, [0, 1]],
911
+ ["name", nil, [0, 1]]
912
+ ]
913
+ )
914
+
915
+ EncodedRegistry.register(
916
+ :class => Virtuozzo::SOAP::Types::EventLog::VocabularyType,
917
+ :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
918
+ :schema_element => [
919
+ ["name", "SOAP::SOAPString"],
920
+ ["parameter", "Virtuozzo::SOAP::Types::EventLog::Voc_parameterType[]", [0, nil]],
921
+ ["category", "Virtuozzo::SOAP::Types::EventLog::Voc_parameterType[]", [0, nil]]
922
+ ]
923
+ )
924
+
925
+ EncodedRegistry.register(
926
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_nicType,
927
+ :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
928
+ :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
929
+ :schema_element => [
930
+ ["id", "SOAP::SOAPString", [0, 1]],
931
+ ["ip_address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
932
+ ["dhcp", nil, [0, 1]],
933
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
934
+ ["status", "Virtuozzo::SOAP::Types::EventLog::Net_nicType::Status", [0, 1]],
935
+ ["mac_address", "SOAP::SOAPString", [0, 1]]
936
+ ]
937
+ )
938
+
939
+ EncodedRegistry.register(
940
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_nicType::Status,
941
+ :schema_name => XSD::QName.new(NsTypes, "status"),
942
+ :is_anonymous => true,
943
+ :schema_qualified => true,
944
+ :schema_element => [ :choice,
945
+ ["up", nil],
946
+ ["down", nil]
947
+ ]
948
+ )
949
+
950
+ EncodedRegistry.register(
951
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_statType,
952
+ :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
953
+ :schema_element => [
954
+ ["cur", "SOAP::SOAPAnySimpleType"],
955
+ ["avg", "SOAP::SOAPAnySimpleType"],
956
+ ["max", "SOAP::SOAPAnySimpleType"],
957
+ ["min", "SOAP::SOAPAnySimpleType"]
958
+ ]
959
+ )
960
+
961
+ EncodedRegistry.register(
962
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType,
963
+ :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
964
+ :schema_element => [
965
+ ["eid", nil],
966
+ ["v_class", ["Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
967
+ ["interval", "Virtuozzo::SOAP::Types::EventLog::IntervalType"]
968
+ ]
969
+ )
970
+
971
+ EncodedRegistry.register(
972
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance::Counter,
973
+ :schema_name => XSD::QName.new(NsTypes, "counter"),
974
+ :is_anonymous => true,
975
+ :schema_qualified => true,
976
+ :schema_element => [
977
+ ["name", "SOAP::SOAPString"],
978
+ ["value", "Virtuozzo::SOAP::Types::EventLog::Perf_statType"]
979
+ ]
980
+ )
981
+
982
+ EncodedRegistry.register(
983
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance,
984
+ :schema_name => XSD::QName.new(NsTypes, "instance"),
985
+ :is_anonymous => true,
986
+ :schema_qualified => true,
987
+ :schema_element => [
988
+ ["name", "SOAP::SOAPString", [0, 1]],
989
+ ["counter", "Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
990
+ ]
991
+ )
992
+
993
+ EncodedRegistry.register(
994
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class,
995
+ :schema_name => XSD::QName.new(NsTypes, "class"),
996
+ :is_anonymous => true,
997
+ :schema_qualified => true,
998
+ :schema_element => [
999
+ ["name", "SOAP::SOAPString"],
1000
+ ["instance", "Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance[]", [1, nil]]
1001
+ ]
1002
+ )
1003
+
1004
+ EncodedRegistry.register(
1005
+ :class => Virtuozzo::SOAP::Types::EventLog::Log_options_baseType,
1006
+ :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
1007
+ :schema_element => []
1008
+ )
1009
+
1010
+ EncodedRegistry.register(
1011
+ :class => Virtuozzo::SOAP::Types::EventLog::Log_optionsType,
1012
+ :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
1013
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1014
+ :schema_element => []
1015
+ )
1016
+
1017
+ EncodedRegistry.register(
1018
+ :class => Virtuozzo::SOAP::Types::EventLog::Packet_headerType,
1019
+ :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
1020
+ :schema_element => [
1021
+ ["auth", "Virtuozzo::SOAP::Types::EventLog::AuthType", [0, 1]],
1022
+ ["cookie", "SOAP::SOAPString", [0, 1]],
1023
+ ["target", "SOAP::SOAPString[]", [0, nil]],
1024
+ ["origin", "SOAP::SOAPString", [0, 1]],
1025
+ ["src", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
1026
+ ["dst", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
1027
+ ["session", "SOAP::SOAPString", [0, 1]]
1028
+ ],
1029
+ :schema_attribute => {
1030
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
1031
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
1032
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
1033
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
1034
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
1035
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
1036
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
1037
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
1038
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
1039
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
1040
+ }
1041
+ )
1042
+
1043
+ EncodedRegistry.register(
1044
+ :class => Virtuozzo::SOAP::Types::EventLog::OperatorType,
1045
+ :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
1046
+ :schema_element => [ :choice,
1047
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"]
1048
+ ]
1049
+ )
1050
+
1051
+ EncodedRegistry.register(
1052
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType,
1053
+ :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
1054
+ :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
1055
+ :schema_element => [ :choice,
1056
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"],
1057
+ ["ok", "Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Ok[]"],
1058
+ ["error", "Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Error[]"]
1059
+ ]
1060
+ )
1061
+
1062
+ EncodedRegistry.register(
1063
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Ok,
1064
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1065
+ :is_anonymous => true,
1066
+ :schema_qualified => true,
1067
+ :schema_element => []
1068
+ )
1069
+
1070
+ EncodedRegistry.register(
1071
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Error,
1072
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1073
+ :is_anonymous => true,
1074
+ :schema_qualified => true,
1075
+ :schema_element => [
1076
+ ["code", "SOAP::SOAPInt"],
1077
+ ["message", "SOAP::SOAPString", [0, 1]]
1078
+ ]
1079
+ )
1080
+
1081
+ EncodedRegistry.register(
1082
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType,
1083
+ :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
1084
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1085
+ :schema_element => [ :choice,
1086
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"],
1087
+ ["ok", "Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Ok[]"],
1088
+ ["error", "Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Error[]"],
1089
+ [ :choice,
1090
+ ["start_monitor", "Virtuozzo::SOAP::Types::EventLog::Start_monitorType"],
1091
+ ["stop_monitor", "Virtuozzo::SOAP::Types::EventLog::Stop_monitorType"],
1092
+ ["set_period", "Virtuozzo::SOAP::Types::EventLog::Set_periodType", [0, 1]],
1093
+ ["report", nil, [0, 1]]
1094
+ ]
1095
+ ]
1096
+ )
1097
+
1098
+ EncodedRegistry.register(
1099
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Ok,
1100
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1101
+ :is_anonymous => true,
1102
+ :schema_qualified => true,
1103
+ :schema_element => []
1104
+ )
1105
+
1106
+ EncodedRegistry.register(
1107
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Error,
1108
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1109
+ :is_anonymous => true,
1110
+ :schema_qualified => true,
1111
+ :schema_element => [
1112
+ ["code", "SOAP::SOAPInt"],
1113
+ ["message", "SOAP::SOAPString", [0, 1]]
1114
+ ]
1115
+ )
1116
+
1117
+ EncodedRegistry.register(
1118
+ :class => Virtuozzo::SOAP::Types::EventLog::Set_periodType,
1119
+ :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
1120
+ :schema_element => [
1121
+ ["collect", "SOAP::SOAPInt"],
1122
+ ["log", "SOAP::SOAPInt"],
1123
+ ["report", "SOAP::SOAPInt"]
1124
+ ]
1125
+ )
1126
+
1127
+ EncodedRegistry.register(
1128
+ :class => Virtuozzo::SOAP::Types::EventLog::Start_monitorType,
1129
+ :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
1130
+ :schema_element => [
1131
+ ["period", "SOAP::SOAPInt"],
1132
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1133
+ ]
1134
+ )
1135
+
1136
+ EncodedRegistry.register(
1137
+ :class => Virtuozzo::SOAP::Types::EventLog::Stop_monitorType,
1138
+ :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
1139
+ :schema_element => [
1140
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1141
+ ]
1142
+ )
1143
+
1144
+ EncodedRegistry.register(
1145
+ :class => Virtuozzo::SOAP::Types::EventLog::AuthType,
1146
+ :schema_type => XSD::QName.new(NsProtocol, "authType"),
1147
+ :schema_element => [
1148
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1149
+ ]
1150
+ )
1151
+
1152
+ EncodedRegistry.register(
1153
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_configurationType,
1154
+ :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
1155
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1156
+ :schema_element => [
1157
+ ["period", "SOAP::SOAPInt"]
1158
+ ]
1159
+ )
1160
+
1161
+ EncodedRegistry.register(
1162
+ :class => Virtuozzo::SOAP::Types::EventLog::Periodic_configurationType,
1163
+ :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
1164
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1165
+ :schema_element => [
1166
+ ["log_priority", "SOAP::SOAPInt"],
1167
+ ["monitor_priority", "SOAP::SOAPInt"],
1168
+ ["min_monitor_period", "SOAP::SOAPInt"],
1169
+ ["min_monitor_period_root", "SOAP::SOAPInt"]
1170
+ ]
1171
+ )
1172
+
1173
+ EncodedRegistry.register(
1174
+ :class => Virtuozzo::SOAP::Types::EventLog::RouteType,
1175
+ :schema_type => XSD::QName.new(NsProtocol, "routeType"),
1176
+ :schema_element => [
1177
+ ["director", "SOAP::SOAPString", [0, 1]],
1178
+ ["host", "SOAP::SOAPString", [0, 1]],
1179
+ ["index", "SOAP::SOAPString", [0, 1]],
1180
+ ["target", "SOAP::SOAPString", [0, 1]]
1181
+ ]
1182
+ )
1183
+
1184
+ EncodedRegistry.register(
1185
+ :class => Virtuozzo::SOAP::Types::EventLog::DataType,
1186
+ :schema_type => XSD::QName.new(NsProtocol, "dataType"),
1187
+ :schema_element => [
1188
+ ["operator", "Virtuozzo::SOAP::Types::EventLog::OperatorType[]"]
1189
+ ]
1190
+ )
1191
+
1192
+ EncodedRegistry.register(
1193
+ :class => Virtuozzo::SOAP::Types::EventLog::ConfigurationType,
1194
+ :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
1195
+ :schema_element => []
1196
+ )
1197
+
1198
+ EncodedRegistry.register(
1199
+ :class => Virtuozzo::SOAP::Types::EventLog::Transport_type,
1200
+ :schema_type => XSD::QName.new(NsTypes, "transport_type")
1201
+ )
1202
+
1203
+ EncodedRegistry.register(
1204
+ :class => Virtuozzo::SOAP::Types::EventLog::Yes_no_type,
1205
+ :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
1206
+ )
1207
+
1208
+ LiteralRegistry.register(
1209
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType,
1210
+ :schema_type => XSD::QName.new(NsEvent_log, "event_logType"),
1211
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1212
+ :schema_element => [ :choice,
1213
+ ["configuration", ["Virtuozzo::SOAP::Types::EventLog::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1214
+ ["ok", ["Virtuozzo::SOAP::Types::EventLog::Event_logType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1215
+ ["error", ["Virtuozzo::SOAP::Types::EventLog::Event_logType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1216
+ [
1217
+ ["get_events", "Virtuozzo::SOAP::Types::EventLog::Get_events[]"]
1218
+ ],
1219
+ [
1220
+ ["event", "Virtuozzo::SOAP::Types::EventLog::EventType[]", [0, nil]]
1221
+ ]
1222
+ ]
1223
+ )
1224
+
1225
+ LiteralRegistry.register(
1226
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType::Ok,
1227
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1228
+ :is_anonymous => true,
1229
+ :schema_qualified => true,
1230
+ :schema_element => []
1231
+ )
1232
+
1233
+ LiteralRegistry.register(
1234
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType::Error,
1235
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1236
+ :is_anonymous => true,
1237
+ :schema_qualified => true,
1238
+ :schema_element => [
1239
+ ["code", "SOAP::SOAPInt"],
1240
+ ["message", "SOAP::SOAPString", [0, 1]]
1241
+ ]
1242
+ )
1243
+
1244
+ LiteralRegistry.register(
1245
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_log_configurationType,
1246
+ :schema_type => XSD::QName.new(NsEvent_log, "event_log_configurationType"),
1247
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1248
+ :schema_element => [
1249
+ ["events", "SOAP::SOAPInt"]
1250
+ ]
1251
+ )
1252
+
1253
+ LiteralRegistry.register(
1254
+ :class => Virtuozzo::SOAP::Types::EventLog::OsType,
1255
+ :schema_type => XSD::QName.new(NsTypes, "osType"),
1256
+ :schema_element => [
1257
+ ["platform", "SOAP::SOAPString", [0, 1]],
1258
+ ["name", "SOAP::SOAPString"],
1259
+ ["version", "SOAP::SOAPString", [0, 1]],
1260
+ ["kernel", "SOAP::SOAPString", [0, 1]]
1261
+ ]
1262
+ )
1263
+
1264
+ LiteralRegistry.register(
1265
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_statusType,
1266
+ :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
1267
+ :schema_element => [
1268
+ ["state", "SOAP::SOAPInt", [0, 1]],
1269
+ ["transition", "SOAP::SOAPInt", [0, 1]]
1270
+ ]
1271
+ )
1272
+
1273
+ LiteralRegistry.register(
1274
+ :class => Virtuozzo::SOAP::Types::EventLog::QosType,
1275
+ :schema_type => XSD::QName.new(NsTypes, "qosType"),
1276
+ :schema_element => [
1277
+ ["id", "SOAP::SOAPString"],
1278
+ ["soft", "SOAP::SOAPLong", [0, 1]],
1279
+ ["hard", "SOAP::SOAPLong", [0, 1]],
1280
+ ["cur", "SOAP::SOAPLong", [0, 1]]
1281
+ ]
1282
+ )
1283
+
1284
+ LiteralRegistry.register(
1285
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_configType,
1286
+ :schema_type => XSD::QName.new(NsTypes, "env_configType"),
1287
+ :schema_element => [
1288
+ ["name", "SOAP::SOAPString", [0, 1]],
1289
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1290
+ ["domain", "SOAP::SOAPString", [0, 1]],
1291
+ ["hostname", "SOAP::SOAPString", [0, 1]],
1292
+ ["address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
1293
+ ["architecture", "SOAP::SOAPString", [0, 1]],
1294
+ ["os", "Virtuozzo::SOAP::Types::EventLog::OsType", [0, 1]],
1295
+ ["type", "SOAP::SOAPString", [0, 1]],
1296
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1297
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1298
+ ["base_sample_id", nil, [0, 1]],
1299
+ ["base_snapshot_id", nil, [0, 1]],
1300
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
1301
+ ]
1302
+ )
1303
+
1304
+ LiteralRegistry.register(
1305
+ :class => Virtuozzo::SOAP::Types::EventLog::Venv_configType,
1306
+ :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
1307
+ :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
1308
+ :schema_element => [
1309
+ ["name", "SOAP::SOAPString", [0, 1]],
1310
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1311
+ ["domain", "SOAP::SOAPString", [0, 1]],
1312
+ ["hostname", "SOAP::SOAPString", [0, 1]],
1313
+ ["address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
1314
+ ["architecture", "SOAP::SOAPString", [0, 1]],
1315
+ ["os", "Virtuozzo::SOAP::Types::EventLog::OsType", [0, 1]],
1316
+ ["type", "SOAP::SOAPString", [0, 1]],
1317
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1318
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1319
+ ["base_sample_id", nil, [0, 1]],
1320
+ ["base_snapshot_id", nil, [0, 1]],
1321
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
1322
+ ["qos", "Virtuozzo::SOAP::Types::EventLog::QosType[]", [0, nil]]
1323
+ ]
1324
+ )
1325
+
1326
+ LiteralRegistry.register(
1327
+ :class => Virtuozzo::SOAP::Types::EventLog::Native_configType,
1328
+ :schema_type => XSD::QName.new(NsTypes, "native_configType"),
1329
+ :schema_element => []
1330
+ )
1331
+
1332
+ LiteralRegistry.register(
1333
+ :class => Virtuozzo::SOAP::Types::EventLog::EnvType,
1334
+ :schema_type => XSD::QName.new(NsTypes, "envType"),
1335
+ :schema_element => [
1336
+ ["parent_eid", nil],
1337
+ ["eid", nil],
1338
+ ["status", "Virtuozzo::SOAP::Types::EventLog::Env_statusType", [0, 1]],
1339
+ ["alert", "SOAP::SOAPInt", [0, 1]],
1340
+ ["config", "Virtuozzo::SOAP::Types::EventLog::Env_configType", [0, 1]],
1341
+ ["virtual_config", "Virtuozzo::SOAP::Types::EventLog::Venv_configType", [0, 1]]
1342
+ ]
1343
+ )
1344
+
1345
+ LiteralRegistry.register(
1346
+ :class => Virtuozzo::SOAP::Types::EventLog::ProcessesType,
1347
+ :schema_type => XSD::QName.new(NsTypes, "processesType"),
1348
+ :schema_element => [
1349
+ ["run", "SOAP::SOAPInt"],
1350
+ ["zombie", "SOAP::SOAPInt"],
1351
+ ["sleep", "SOAP::SOAPInt"],
1352
+ ["uninterrupt", "SOAP::SOAPInt"],
1353
+ ["stopped", "SOAP::SOAPInt"],
1354
+ ["total", "SOAP::SOAPInt"]
1355
+ ]
1356
+ )
1357
+
1358
+ LiteralRegistry.register(
1359
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avgType,
1360
+ :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
1361
+ :schema_element => [
1362
+ ["l1", "SOAP::SOAPDouble"],
1363
+ ["l2", "SOAP::SOAPDouble", [0, 1]],
1364
+ ["l3", "SOAP::SOAPDouble", [0, 1]]
1365
+ ]
1366
+ )
1367
+
1368
+ LiteralRegistry.register(
1369
+ :class => Virtuozzo::SOAP::Types::EventLog::Cpu_loadType,
1370
+ :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
1371
+ :schema_element => [
1372
+ ["system", "SOAP::SOAPLong"],
1373
+ ["user", "SOAP::SOAPLong"],
1374
+ ["nice", "SOAP::SOAPLong"],
1375
+ ["idle", "SOAP::SOAPLong"]
1376
+ ]
1377
+ )
1378
+
1379
+ LiteralRegistry.register(
1380
+ :class => Virtuozzo::SOAP::Types::EventLog::CpuType,
1381
+ :schema_type => XSD::QName.new(NsTypes, "cpuType"),
1382
+ :schema_element => [
1383
+ ["mhz", "SOAP::SOAPInt"],
1384
+ ["name", "SOAP::SOAPString"],
1385
+ ["number", "SOAP::SOAPInt"],
1386
+ ["cores", "SOAP::SOAPInt"],
1387
+ ["hyperthreads", "SOAP::SOAPInt"],
1388
+ ["units", "SOAP::SOAPInt"],
1389
+ ["family", "SOAP::SOAPString"],
1390
+ ["model", "SOAP::SOAPString"],
1391
+ ["bogomips", "SOAP::SOAPInt"]
1392
+ ]
1393
+ )
1394
+
1395
+ LiteralRegistry.register(
1396
+ :class => Virtuozzo::SOAP::Types::EventLog::TransferType,
1397
+ :schema_type => XSD::QName.new(NsTypes, "transferType"),
1398
+ :schema_element => [
1399
+ ["input", "Virtuozzo::SOAP::Types::EventLog::TransferType::Input"],
1400
+ ["output", "Virtuozzo::SOAP::Types::EventLog::TransferType::Output"]
1401
+ ]
1402
+ )
1403
+
1404
+ LiteralRegistry.register(
1405
+ :class => Virtuozzo::SOAP::Types::EventLog::TransferType::Input,
1406
+ :schema_name => XSD::QName.new(NsTypes, "input"),
1407
+ :is_anonymous => true,
1408
+ :schema_qualified => true,
1409
+ :schema_element => [
1410
+ ["bytes", "SOAP::SOAPLong"],
1411
+ ["packets", "SOAP::SOAPLong", [0, 1]]
1412
+ ]
1413
+ )
1414
+
1415
+ LiteralRegistry.register(
1416
+ :class => Virtuozzo::SOAP::Types::EventLog::TransferType::Output,
1417
+ :schema_name => XSD::QName.new(NsTypes, "output"),
1418
+ :is_anonymous => true,
1419
+ :schema_qualified => true,
1420
+ :schema_element => [
1421
+ ["bytes", "SOAP::SOAPLong"],
1422
+ ["packets", "SOAP::SOAPLong", [0, 1]]
1423
+ ]
1424
+ )
1425
+
1426
+ LiteralRegistry.register(
1427
+ :class => Virtuozzo::SOAP::Types::EventLog::System_nodeType,
1428
+ :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
1429
+ :schema_element => [
1430
+ ["address", "Virtuozzo::SOAP::Types::EventLog::System_nodeType::Address"],
1431
+ ["login", "Virtuozzo::SOAP::Types::EventLog::System_nodeType::Login", [0, 1]]
1432
+ ]
1433
+ )
1434
+
1435
+ LiteralRegistry.register(
1436
+ :class => Virtuozzo::SOAP::Types::EventLog::System_nodeType::Address,
1437
+ :schema_name => XSD::QName.new(NsTypes, "address"),
1438
+ :is_anonymous => true,
1439
+ :schema_qualified => true,
1440
+ :schema_element => [
1441
+ ["ip", nil]
1442
+ ]
1443
+ )
1444
+
1445
+ LiteralRegistry.register(
1446
+ :class => Virtuozzo::SOAP::Types::EventLog::System_nodeType::Login,
1447
+ :schema_name => XSD::QName.new(NsTypes, "login"),
1448
+ :is_anonymous => true,
1449
+ :schema_qualified => true,
1450
+ :schema_element => [
1451
+ ["user", "SOAP::SOAPString"],
1452
+ ["password", "SOAP::SOAPBase64"]
1453
+ ]
1454
+ )
1455
+
1456
+ LiteralRegistry.register(
1457
+ :class => Virtuozzo::SOAP::Types::EventLog::ResourceType,
1458
+ :schema_type => XSD::QName.new(NsTypes, "resourceType"),
1459
+ :schema_element => [
1460
+ ["total", "SOAP::SOAPLong", [0, 1]],
1461
+ ["used", "SOAP::SOAPLong", [0, 1]],
1462
+ ["free", "SOAP::SOAPLong", [0, 1]],
1463
+ ["avg", "SOAP::SOAPLong", [0, 1]],
1464
+ ["min", "SOAP::SOAPLong", [0, 1]],
1465
+ ["max", "SOAP::SOAPLong", [0, 1]]
1466
+ ]
1467
+ )
1468
+
1469
+ LiteralRegistry.register(
1470
+ :class => Virtuozzo::SOAP::Types::EventLog::IntervalType,
1471
+ :schema_type => XSD::QName.new(NsTypes, "intervalType"),
1472
+ :schema_element => [
1473
+ ["start_time", nil],
1474
+ ["end_time", nil]
1475
+ ]
1476
+ )
1477
+
1478
+ LiteralRegistry.register(
1479
+ :class => Virtuozzo::SOAP::Types::EventLog::StatsType,
1480
+ :schema_type => XSD::QName.new(NsTypes, "statsType"),
1481
+ :schema_element => [
1482
+ ["avg", "SOAP::SOAPLong", [0, 1]],
1483
+ ["min", "SOAP::SOAPLong", [0, 1]],
1484
+ ["max", "SOAP::SOAPLong", [0, 1]],
1485
+ ["total", "SOAP::SOAPLong", [0, 1]],
1486
+ ["cur", "SOAP::SOAPLong", [0, 1]],
1487
+ ["soft", "SOAP::SOAPLong", [0, 1]],
1488
+ ["hard", "SOAP::SOAPLong", [0, 1]]
1489
+ ]
1490
+ )
1491
+
1492
+ LiteralRegistry.register(
1493
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_addressType,
1494
+ :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
1495
+ :schema_element => [
1496
+ ["host", nil],
1497
+ ["mask", nil, [0, 1]]
1498
+ ]
1499
+ )
1500
+
1501
+ LiteralRegistry.register(
1502
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_classType,
1503
+ :schema_type => XSD::QName.new(NsTypes, "net_classType"),
1504
+ :schema_element => [
1505
+ ["id", "SOAP::SOAPString", [0, 1]],
1506
+ ["transfer", "Virtuozzo::SOAP::Types::EventLog::TransferType", [0, 1]]
1507
+ ]
1508
+ )
1509
+
1510
+ LiteralRegistry.register(
1511
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_rangeType,
1512
+ :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
1513
+ :schema_element => [
1514
+ ["id", "SOAP::SOAPString", [0, 1]],
1515
+ ["start_ip", nil, [0, 1]],
1516
+ ["subnet_mask", "SOAP::SOAPInt", [0, 1]],
1517
+ ["comment", "SOAP::SOAPString", [0, 1]]
1518
+ ]
1519
+ )
1520
+
1521
+ LiteralRegistry.register(
1522
+ :class => Virtuozzo::SOAP::Types::EventLog::Sample_confType,
1523
+ :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
1524
+ :schema_element => [
1525
+ ["env_config", "Virtuozzo::SOAP::Types::EventLog::Env_configType"],
1526
+ ["id", "SOAP::SOAPString", [0, 1]],
1527
+ ["name", "SOAP::SOAPString"],
1528
+ ["comment", "SOAP::SOAPBase64", [0, 1]],
1529
+ ["vt_version", "Virtuozzo::SOAP::Types::EventLog::Sample_confType::Vt_version", [0, 1]]
1530
+ ]
1531
+ )
1532
+
1533
+ LiteralRegistry.register(
1534
+ :class => Virtuozzo::SOAP::Types::EventLog::Sample_confType::Vt_version,
1535
+ :schema_name => XSD::QName.new(NsTypes, "vt_version"),
1536
+ :is_anonymous => true,
1537
+ :schema_qualified => true,
1538
+ :schema_element => [
1539
+ ["platform", "SOAP::SOAPString"],
1540
+ ["architecture", "SOAP::SOAPString"],
1541
+ ["vt_technology", "SOAP::SOAPString"]
1542
+ ]
1543
+ )
1544
+
1545
+ LiteralRegistry.register(
1546
+ :class => Virtuozzo::SOAP::Types::EventLog::InterfaceType,
1547
+ :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
1548
+ :schema_element => [
1549
+ ["name", "SOAP::SOAPString"],
1550
+ ["bandwidth", "SOAP::SOAPInt", [0, 1]],
1551
+ ["transfer", "Virtuozzo::SOAP::Types::EventLog::TransferType", [0, 1]],
1552
+ ["ipaddress", nil, [0, 1]],
1553
+ ["flags", "SOAP::SOAPInt", [0, 1]]
1554
+ ]
1555
+ )
1556
+
1557
+ LiteralRegistry.register(
1558
+ :class => Virtuozzo::SOAP::Types::EventLog::Sys_infoType,
1559
+ :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
1560
+ :schema_element => [
1561
+ ["load_avg", "Virtuozzo::SOAP::Types::EventLog::Load_avgType"],
1562
+ ["processes", "Virtuozzo::SOAP::Types::EventLog::ProcessesType"],
1563
+ ["cpu_load", "Virtuozzo::SOAP::Types::EventLog::Cpu_loadType"],
1564
+ ["cpu_states", "Virtuozzo::SOAP::Types::EventLog::Cpu_loadType"],
1565
+ ["users", "SOAP::SOAPInt"],
1566
+ ["uptime", "SOAP::SOAPLong"],
1567
+ ["memory", "Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Memory", [0, 1]],
1568
+ ["swap", "Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Swap", [0, 1]]
1569
+ ]
1570
+ )
1571
+
1572
+ LiteralRegistry.register(
1573
+ :class => Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Memory,
1574
+ :schema_name => XSD::QName.new(NsTypes, "memory"),
1575
+ :is_anonymous => true,
1576
+ :schema_qualified => true,
1577
+ :schema_element => [
1578
+ ["total", "SOAP::SOAPLong", [0, 1]],
1579
+ ["used", "SOAP::SOAPLong"]
1580
+ ]
1581
+ )
1582
+
1583
+ LiteralRegistry.register(
1584
+ :class => Virtuozzo::SOAP::Types::EventLog::Sys_infoType::Swap,
1585
+ :schema_name => XSD::QName.new(NsTypes, "swap"),
1586
+ :is_anonymous => true,
1587
+ :schema_qualified => true,
1588
+ :schema_element => [
1589
+ ["total", "SOAP::SOAPLong", [0, 1]],
1590
+ ["used", "SOAP::SOAPLong"]
1591
+ ]
1592
+ )
1593
+
1594
+ LiteralRegistry.register(
1595
+ :class => Virtuozzo::SOAP::Types::EventLog::Ps_infoType,
1596
+ :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
1597
+ :schema_element => [
1598
+ ["process", "Virtuozzo::SOAP::Types::EventLog::Ps_infoType::C_Process[]", [1, nil]],
1599
+ ["param_id", "SOAP::SOAPString[]", [1, nil]],
1600
+ ["run", "SOAP::SOAPInt"],
1601
+ ["idle", "SOAP::SOAPInt"],
1602
+ ["zombie", "SOAP::SOAPInt"],
1603
+ ["sleep", "SOAP::SOAPInt"],
1604
+ ["uninterrupt", "SOAP::SOAPInt"],
1605
+ ["stopped", "SOAP::SOAPInt"],
1606
+ ["total", "SOAP::SOAPInt"]
1607
+ ]
1608
+ )
1609
+
1610
+ LiteralRegistry.register(
1611
+ :class => Virtuozzo::SOAP::Types::EventLog::Ps_infoType::C_Process,
1612
+ :schema_name => XSD::QName.new(NsTypes, "process"),
1613
+ :is_anonymous => true,
1614
+ :schema_qualified => true,
1615
+ :schema_element => [
1616
+ ["pid", "SOAP::SOAPInt"],
1617
+ ["param", "SOAP::SOAPBase64[]", [0, nil]]
1618
+ ]
1619
+ )
1620
+
1621
+ LiteralRegistry.register(
1622
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType,
1623
+ :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
1624
+ :schema_element => [
1625
+ ["l1", "Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L1"],
1626
+ ["l2", "Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L2", [0, 1]],
1627
+ ["l3", "Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L3", [0, 1]]
1628
+ ]
1629
+ )
1630
+
1631
+ LiteralRegistry.register(
1632
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L1,
1633
+ :schema_name => XSD::QName.new(NsTypes, "l1"),
1634
+ :is_anonymous => true,
1635
+ :schema_qualified => true,
1636
+ :schema_element => [
1637
+ ["avg", "SOAP::SOAPLong", [0, 1]],
1638
+ ["min", "SOAP::SOAPLong", [0, 1]],
1639
+ ["max", "SOAP::SOAPLong", [0, 1]],
1640
+ ["cur", "SOAP::SOAPLong", [0, 1]]
1641
+ ]
1642
+ )
1643
+
1644
+ LiteralRegistry.register(
1645
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L2,
1646
+ :schema_name => XSD::QName.new(NsTypes, "l2"),
1647
+ :is_anonymous => true,
1648
+ :schema_qualified => true,
1649
+ :schema_element => [
1650
+ ["avg", "SOAP::SOAPLong", [0, 1]],
1651
+ ["min", "SOAP::SOAPLong", [0, 1]],
1652
+ ["max", "SOAP::SOAPLong", [0, 1]],
1653
+ ["cur", "SOAP::SOAPLong", [0, 1]]
1654
+ ]
1655
+ )
1656
+
1657
+ LiteralRegistry.register(
1658
+ :class => Virtuozzo::SOAP::Types::EventLog::Load_avg_statsType::L3,
1659
+ :schema_name => XSD::QName.new(NsTypes, "l3"),
1660
+ :is_anonymous => true,
1661
+ :schema_qualified => true,
1662
+ :schema_element => [
1663
+ ["avg", "SOAP::SOAPLong", [0, 1]],
1664
+ ["min", "SOAP::SOAPLong", [0, 1]],
1665
+ ["max", "SOAP::SOAPLong", [0, 1]],
1666
+ ["cur", "SOAP::SOAPLong", [0, 1]]
1667
+ ]
1668
+ )
1669
+
1670
+ LiteralRegistry.register(
1671
+ :class => Virtuozzo::SOAP::Types::EventLog::Alert_dataType,
1672
+ :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
1673
+ :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
1674
+ :schema_element => [
1675
+ ["type", "SOAP::SOAPInt"]
1676
+ ]
1677
+ )
1678
+
1679
+ LiteralRegistry.register(
1680
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_addressType,
1681
+ :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
1682
+ :schema_element => [
1683
+ ["ip", nil],
1684
+ ["netmask", nil, [0, 1]]
1685
+ ]
1686
+ )
1687
+
1688
+ LiteralRegistry.register(
1689
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_resourceType,
1690
+ :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
1691
+ :schema_element => [
1692
+ ["eid", nil],
1693
+ ["ip_pool", "Virtuozzo::SOAP::Types::EventLog::Ip_poolType", [0, 1]]
1694
+ ]
1695
+ )
1696
+
1697
+ LiteralRegistry.register(
1698
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_poolType,
1699
+ :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
1700
+ :schema_element => [ :choice,
1701
+ ["ip_range", "Virtuozzo::SOAP::Types::EventLog::Ip_poolType::Ip_range[]"],
1702
+ ["ip", "[]"]
1703
+ ]
1704
+ )
1705
+
1706
+ LiteralRegistry.register(
1707
+ :class => Virtuozzo::SOAP::Types::EventLog::Ip_poolType::Ip_range,
1708
+ :schema_name => XSD::QName.new(NsTypes, "ip_range"),
1709
+ :is_anonymous => true,
1710
+ :schema_qualified => true,
1711
+ :schema_element => [
1712
+ ["start_ip", nil],
1713
+ ["end_ip", nil]
1714
+ ]
1715
+ )
1716
+
1717
+ LiteralRegistry.register(
1718
+ :class => Virtuozzo::SOAP::Types::EventLog::UsageType,
1719
+ :schema_type => XSD::QName.new(NsTypes, "usageType"),
1720
+ :schema_element => [
1721
+ ["total", "SOAP::SOAPLong", [0, 1]],
1722
+ ["used", "SOAP::SOAPLong", [0, 1]],
1723
+ ["free", "SOAP::SOAPLong", [0, 1]]
1724
+ ]
1725
+ )
1726
+
1727
+ LiteralRegistry.register(
1728
+ :class => Virtuozzo::SOAP::Types::EventLog::Root_credentialType,
1729
+ :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
1730
+ :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
1731
+ :schema_element => [
1732
+ ["id", "SOAP::SOAPString"],
1733
+ ["policy", "SOAP::SOAPInt", [0, 1]],
1734
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1735
+ ["cred", "Virtuozzo::SOAP::Types::EventLog::CredentialType[]", [0, nil]],
1736
+ ["objects", "Virtuozzo::SOAP::Types::EventLog::Root_credentialType::Objects", [0, 1]]
1737
+ ]
1738
+ )
1739
+
1740
+ LiteralRegistry.register(
1741
+ :class => Virtuozzo::SOAP::Types::EventLog::Root_credentialType::Objects,
1742
+ :schema_name => XSD::QName.new(NsTypes, "objects"),
1743
+ :is_anonymous => true,
1744
+ :schema_qualified => true,
1745
+ :schema_element => [
1746
+ ["eid", "SOAP::SOAPString[]", [0, nil]]
1747
+ ]
1748
+ )
1749
+
1750
+ LiteralRegistry.register(
1751
+ :class => Virtuozzo::SOAP::Types::EventLog::CredentialType,
1752
+ :schema_type => XSD::QName.new(NsTypes, "credentialType"),
1753
+ :schema_element => [
1754
+ ["id", "SOAP::SOAPString"],
1755
+ ["policy", "SOAP::SOAPInt", [0, 1]],
1756
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1757
+ ["cred", "Virtuozzo::SOAP::Types::EventLog::CredentialType[]", [0, nil]]
1758
+ ]
1759
+ )
1760
+
1761
+ LiteralRegistry.register(
1762
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType,
1763
+ :schema_type => XSD::QName.new(NsTypes, "tokenType"),
1764
+ :schema_element => [
1765
+ ["user", nil],
1766
+ ["groups", "Virtuozzo::SOAP::Types::EventLog::TokenType::Groups", [0, 1]],
1767
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::EventLog::TokenType::Deny_only_sids", [0, 1]],
1768
+ ["privileges", "Virtuozzo::SOAP::Types::EventLog::TokenType::Privileges", [0, 1]],
1769
+ ["source", "Virtuozzo::SOAP::Types::EventLog::TokenType::Source", [0, 1]]
1770
+ ]
1771
+ )
1772
+
1773
+ LiteralRegistry.register(
1774
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Groups,
1775
+ :schema_name => XSD::QName.new(NsTypes, "groups"),
1776
+ :is_anonymous => true,
1777
+ :schema_qualified => true,
1778
+ :schema_element => [
1779
+ ["sid", "[]", [1, nil]]
1780
+ ]
1781
+ )
1782
+
1783
+ LiteralRegistry.register(
1784
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Deny_only_sids,
1785
+ :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
1786
+ :is_anonymous => true,
1787
+ :schema_qualified => true,
1788
+ :schema_element => [
1789
+ ["sid", "[]", [0, nil]]
1790
+ ]
1791
+ )
1792
+
1793
+ LiteralRegistry.register(
1794
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Privileges,
1795
+ :schema_name => XSD::QName.new(NsTypes, "privileges"),
1796
+ :is_anonymous => true,
1797
+ :schema_qualified => true,
1798
+ :schema_element => [
1799
+ ["privilege", "[]", [0, nil]]
1800
+ ]
1801
+ )
1802
+
1803
+ LiteralRegistry.register(
1804
+ :class => Virtuozzo::SOAP::Types::EventLog::TokenType::Source,
1805
+ :schema_name => XSD::QName.new(NsTypes, "source"),
1806
+ :is_anonymous => true,
1807
+ :schema_qualified => true,
1808
+ :schema_element => [
1809
+ ["name", "SOAP::SOAPString"],
1810
+ ["id", nil]
1811
+ ]
1812
+ )
1813
+
1814
+ LiteralRegistry.register(
1815
+ :class => Virtuozzo::SOAP::Types::EventLog::Connectivity_infoType,
1816
+ :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
1817
+ :schema_element => [
1818
+ ["protocol", "SOAP::SOAPString", [0, 1]],
1819
+ ["address", "SOAP::SOAPString"],
1820
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]]
1821
+ ]
1822
+ )
1823
+
1824
+ LiteralRegistry.register(
1825
+ :class => Virtuozzo::SOAP::Types::EventLog::Auth_nameType,
1826
+ :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
1827
+ :schema_element => [
1828
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1829
+ ["domain", "SOAP::SOAPBase64", [0, 1]],
1830
+ ["realm", nil]
1831
+ ]
1832
+ )
1833
+
1834
+ LiteralRegistry.register(
1835
+ :class => Virtuozzo::SOAP::Types::EventLog::Connection_infoType,
1836
+ :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
1837
+ :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
1838
+ :schema_element => [
1839
+ ["protocol", "SOAP::SOAPString", [0, 1]],
1840
+ ["address", "SOAP::SOAPString"],
1841
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
1842
+ ["login", "Virtuozzo::SOAP::Types::EventLog::Auth_nameType", [0, 1]],
1843
+ ["password", "SOAP::SOAPBase64", [0, 1]]
1844
+ ]
1845
+ )
1846
+
1847
+ LiteralRegistry.register(
1848
+ :class => Virtuozzo::SOAP::Types::EventLog::Eid_listType,
1849
+ :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
1850
+ :schema_element => [
1851
+ ["eid", "[]", [0, nil]]
1852
+ ]
1853
+ )
1854
+
1855
+ LiteralRegistry.register(
1856
+ :class => Virtuozzo::SOAP::Types::EventLog::Vt_infoType,
1857
+ :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
1858
+ :schema_element => [
1859
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1860
+ ]
1861
+ )
1862
+
1863
+ LiteralRegistry.register(
1864
+ :class => Virtuozzo::SOAP::Types::EventLog::Vt_settingsType,
1865
+ :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
1866
+ :schema_element => [
1867
+ ["default_sample_id", nil, [0, 1]]
1868
+ ]
1869
+ )
1870
+
1871
+ LiteralRegistry.register(
1872
+ :class => Virtuozzo::SOAP::Types::EventLog::UserType,
1873
+ :schema_type => XSD::QName.new(NsTypes, "userType"),
1874
+ :schema_element => [
1875
+ ["initial_group", "Virtuozzo::SOAP::Types::EventLog::UserType::Initial_group", [0, 1]],
1876
+ ["group", "Virtuozzo::SOAP::Types::EventLog::UserType::Group[]", [0, nil]],
1877
+ ["uid", "SOAP::SOAPInt", [0, 1]],
1878
+ ["shell", "SOAP::SOAPString", [0, 1]],
1879
+ ["password", "SOAP::SOAPBase64", [0, 1]],
1880
+ ["home_dir", "SOAP::SOAPString", [0, 1]],
1881
+ ["name", "SOAP::SOAPString", [0, 1]],
1882
+ ["comment", "SOAP::SOAPString", [0, 1]]
1883
+ ]
1884
+ )
1885
+
1886
+ LiteralRegistry.register(
1887
+ :class => Virtuozzo::SOAP::Types::EventLog::UserType::Initial_group,
1888
+ :schema_name => XSD::QName.new(NsTypes, "initial_group"),
1889
+ :is_anonymous => true,
1890
+ :schema_qualified => true,
1891
+ :schema_element => [
1892
+ ["name", "SOAP::SOAPString", [0, 1]],
1893
+ ["gid", "SOAP::SOAPInt", [0, 1]]
1894
+ ]
1895
+ )
1896
+
1897
+ LiteralRegistry.register(
1898
+ :class => Virtuozzo::SOAP::Types::EventLog::UserType::Group,
1899
+ :schema_name => XSD::QName.new(NsTypes, "group"),
1900
+ :is_anonymous => true,
1901
+ :schema_qualified => true,
1902
+ :schema_element => [
1903
+ ["name", "SOAP::SOAPString", [0, 1]],
1904
+ ["gid", "SOAP::SOAPInt", [0, 1]]
1905
+ ]
1906
+ )
1907
+
1908
+ LiteralRegistry.register(
1909
+ :class => Virtuozzo::SOAP::Types::EventLog::GroupType,
1910
+ :schema_type => XSD::QName.new(NsTypes, "groupType"),
1911
+ :schema_element => [
1912
+ ["user", "Virtuozzo::SOAP::Types::EventLog::GroupType::User[]", [0, nil]],
1913
+ ["member_group", "Virtuozzo::SOAP::Types::EventLog::GroupType::Member_group[]", [0, nil]],
1914
+ ["name", "SOAP::SOAPString", [0, 1]],
1915
+ ["gid", "SOAP::SOAPInt", [0, 1]]
1916
+ ]
1917
+ )
1918
+
1919
+ LiteralRegistry.register(
1920
+ :class => Virtuozzo::SOAP::Types::EventLog::GroupType::User,
1921
+ :schema_name => XSD::QName.new(NsTypes, "user"),
1922
+ :is_anonymous => true,
1923
+ :schema_qualified => true,
1924
+ :schema_element => [
1925
+ ["name", "SOAP::SOAPString"]
1926
+ ]
1927
+ )
1928
+
1929
+ LiteralRegistry.register(
1930
+ :class => Virtuozzo::SOAP::Types::EventLog::GroupType::Member_group,
1931
+ :schema_name => XSD::QName.new(NsTypes, "member_group"),
1932
+ :is_anonymous => true,
1933
+ :schema_qualified => true,
1934
+ :schema_element => [
1935
+ ["name", "SOAP::SOAPString", [0, 1]]
1936
+ ]
1937
+ )
1938
+
1939
+ LiteralRegistry.register(
1940
+ :class => Virtuozzo::SOAP::Types::EventLog::PackageType,
1941
+ :schema_type => XSD::QName.new(NsTypes, "packageType"),
1942
+ :schema_element => [
1943
+ ["name", "SOAP::SOAPString"],
1944
+ ["summary", "SOAP::SOAPString", [0, 1]],
1945
+ ["os", "Virtuozzo::SOAP::Types::EventLog::OsType", [0, 1]],
1946
+ ["description", "SOAP::SOAPString", [0, 1]],
1947
+ ["arch", "SOAP::SOAPString", [0, 1]],
1948
+ ["version", "SOAP::SOAPString", [0, 1]]
1949
+ ]
1950
+ )
1951
+
1952
+ LiteralRegistry.register(
1953
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_dataType,
1954
+ :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
1955
+ :schema_element => []
1956
+ )
1957
+
1958
+ LiteralRegistry.register(
1959
+ :class => Virtuozzo::SOAP::Types::EventLog::Named_listType,
1960
+ :schema_type => XSD::QName.new(NsTypes, "named_listType"),
1961
+ :schema_element => [
1962
+ ["name", "SOAP::SOAPString"],
1963
+ ["value", "SOAP::SOAPBase64[]", [0, nil]]
1964
+ ]
1965
+ )
1966
+
1967
+ LiteralRegistry.register(
1968
+ :class => Virtuozzo::SOAP::Types::EventLog::ModType,
1969
+ :schema_type => XSD::QName.new(NsTypes, "modType"),
1970
+ :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
1971
+ :schema_element => [
1972
+ ["name", "SOAP::SOAPString"],
1973
+ ["value", "SOAP::SOAPBase64[]", [0, nil]],
1974
+ ["op", "SOAP::SOAPInt", [0, 1]]
1975
+ ]
1976
+ )
1977
+
1978
+ LiteralRegistry.register(
1979
+ :class => Virtuozzo::SOAP::Types::EventLog::RealmType,
1980
+ :schema_type => XSD::QName.new(NsTypes, "realmType"),
1981
+ :schema_element => [
1982
+ ["id", nil, [0, 1]],
1983
+ ["type", "SOAP::SOAPInt"],
1984
+ ["name", "SOAP::SOAPString"],
1985
+ ["builtin", nil, [0, 1]]
1986
+ ]
1987
+ )
1988
+
1989
+ LiteralRegistry.register(
1990
+ :class => Virtuozzo::SOAP::Types::EventLog::EventType,
1991
+ :schema_type => XSD::QName.new(NsTypes, "eventType"),
1992
+ :schema_element => [
1993
+ ["eid", nil],
1994
+ ["time", nil],
1995
+ ["source", "SOAP::SOAPString"],
1996
+ ["category", "SOAP::SOAPString"],
1997
+ ["sid", nil, [0, 1]],
1998
+ ["count", "SOAP::SOAPInt"],
1999
+ ["id", nil],
2000
+ ["info", "Virtuozzo::SOAP::Types::EventLog::InfoType"],
2001
+ ["data", "Virtuozzo::SOAP::Types::EventLog::EventType::C_Data", [0, 1]]
2002
+ ]
2003
+ )
2004
+
2005
+ LiteralRegistry.register(
2006
+ :class => Virtuozzo::SOAP::Types::EventLog::EventType::C_Data,
2007
+ :schema_name => XSD::QName.new(NsTypes, "data"),
2008
+ :is_anonymous => true,
2009
+ :schema_qualified => true,
2010
+ :schema_element => [
2011
+ ["event_data", "Virtuozzo::SOAP::Types::EventLog::Event_dataType"]
2012
+ ]
2013
+ )
2014
+
2015
+ LiteralRegistry.register(
2016
+ :class => Virtuozzo::SOAP::Types::EventLog::InfoType,
2017
+ :schema_type => XSD::QName.new(NsTypes, "infoType"),
2018
+ :schema_element => [
2019
+ ["message", "SOAP::SOAPBase64"],
2020
+ ["translate", nil, [0, 1]],
2021
+ ["parameter", "Virtuozzo::SOAP::Types::EventLog::InfoType[]", [0, nil]],
2022
+ ["name", "SOAP::SOAPString"]
2023
+ ]
2024
+ )
2025
+
2026
+ LiteralRegistry.register(
2027
+ :class => Virtuozzo::SOAP::Types::EventLog::AceType,
2028
+ :schema_type => XSD::QName.new(NsTypes, "aceType"),
2029
+ :schema_element => [
2030
+ ["type", "SOAP::SOAPInt"],
2031
+ ["sid", nil],
2032
+ ["rights", "SOAP::SOAPBase64"]
2033
+ ]
2034
+ )
2035
+
2036
+ LiteralRegistry.register(
2037
+ :class => Virtuozzo::SOAP::Types::EventLog::Security_descriptorType,
2038
+ :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
2039
+ :schema_element => [
2040
+ ["owner", nil],
2041
+ ["group", nil],
2042
+ ["dacl", "Virtuozzo::SOAP::Types::EventLog::Security_descriptorType::Dacl", [0, 1]]
2043
+ ]
2044
+ )
2045
+
2046
+ LiteralRegistry.register(
2047
+ :class => Virtuozzo::SOAP::Types::EventLog::Security_descriptorType::Dacl,
2048
+ :schema_name => XSD::QName.new(NsTypes, "dacl"),
2049
+ :is_anonymous => true,
2050
+ :schema_qualified => true,
2051
+ :schema_element => [
2052
+ ["ace", "Virtuozzo::SOAP::Types::EventLog::AceType[]", [0, nil]]
2053
+ ]
2054
+ )
2055
+
2056
+ LiteralRegistry.register(
2057
+ :class => Virtuozzo::SOAP::Types::EventLog::Env_security_objectType,
2058
+ :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
2059
+ :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
2060
+ :schema_element => [
2061
+ ["eid", nil]
2062
+ ]
2063
+ )
2064
+
2065
+ LiteralRegistry.register(
2066
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_deviceType,
2067
+ :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
2068
+ :schema_element => [
2069
+ ["id", "SOAP::SOAPString", [0, 1]],
2070
+ ["ip_address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
2071
+ ["dhcp", nil, [0, 1]],
2072
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
2073
+ ["status", "Virtuozzo::SOAP::Types::EventLog::Net_deviceType::Status", [0, 1]]
2074
+ ]
2075
+ )
2076
+
2077
+ LiteralRegistry.register(
2078
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_deviceType::Status,
2079
+ :schema_name => XSD::QName.new(NsTypes, "status"),
2080
+ :is_anonymous => true,
2081
+ :schema_qualified => true,
2082
+ :schema_element => [ :choice,
2083
+ ["up", nil],
2084
+ ["down", nil]
2085
+ ]
2086
+ )
2087
+
2088
+ LiteralRegistry.register(
2089
+ :class => Virtuozzo::SOAP::Types::EventLog::Voc_parameterType,
2090
+ :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
2091
+ :schema_element => [
2092
+ ["id", "SOAP::SOAPString"],
2093
+ ["type", "SOAP::SOAPString", [0, 1]],
2094
+ ["min", "SOAP::SOAPString", [0, 1]],
2095
+ ["max", "SOAP::SOAPString", [0, 1]],
2096
+ ["long", "SOAP::SOAPString", [0, 1]],
2097
+ ["short", "SOAP::SOAPString", [0, 1]],
2098
+ ["category", "SOAP::SOAPString[]", [0, nil]],
2099
+ ["complex", "SOAP::SOAPString", [0, 1]],
2100
+ ["default", "SOAP::SOAPString", [0, 1]],
2101
+ ["measure", "SOAP::SOAPString", [0, 1]],
2102
+ ["data", nil, [0, 1]],
2103
+ ["name", nil, [0, 1]]
2104
+ ]
2105
+ )
2106
+
2107
+ LiteralRegistry.register(
2108
+ :class => Virtuozzo::SOAP::Types::EventLog::VocabularyType,
2109
+ :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
2110
+ :schema_element => [
2111
+ ["name", "SOAP::SOAPString"],
2112
+ ["parameter", "Virtuozzo::SOAP::Types::EventLog::Voc_parameterType[]", [0, nil]],
2113
+ ["category", "Virtuozzo::SOAP::Types::EventLog::Voc_parameterType[]", [0, nil]]
2114
+ ]
2115
+ )
2116
+
2117
+ LiteralRegistry.register(
2118
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_nicType,
2119
+ :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
2120
+ :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
2121
+ :schema_element => [
2122
+ ["id", "SOAP::SOAPString", [0, 1]],
2123
+ ["ip_address", "Virtuozzo::SOAP::Types::EventLog::Ip_addressType[]", [0, nil]],
2124
+ ["dhcp", nil, [0, 1]],
2125
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
2126
+ ["status", "Virtuozzo::SOAP::Types::EventLog::Net_nicType::Status", [0, 1]],
2127
+ ["mac_address", "SOAP::SOAPString", [0, 1]]
2128
+ ]
2129
+ )
2130
+
2131
+ LiteralRegistry.register(
2132
+ :class => Virtuozzo::SOAP::Types::EventLog::Net_nicType::Status,
2133
+ :schema_name => XSD::QName.new(NsTypes, "status"),
2134
+ :is_anonymous => true,
2135
+ :schema_qualified => true,
2136
+ :schema_element => [ :choice,
2137
+ ["up", nil],
2138
+ ["down", nil]
2139
+ ]
2140
+ )
2141
+
2142
+ LiteralRegistry.register(
2143
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_statType,
2144
+ :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
2145
+ :schema_element => [
2146
+ ["cur", "SOAP::SOAPAnySimpleType"],
2147
+ ["avg", "SOAP::SOAPAnySimpleType"],
2148
+ ["max", "SOAP::SOAPAnySimpleType"],
2149
+ ["min", "SOAP::SOAPAnySimpleType"]
2150
+ ]
2151
+ )
2152
+
2153
+ LiteralRegistry.register(
2154
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType,
2155
+ :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
2156
+ :schema_element => [
2157
+ ["eid", nil],
2158
+ ["v_class", ["Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2159
+ ["interval", "Virtuozzo::SOAP::Types::EventLog::IntervalType"]
2160
+ ]
2161
+ )
2162
+
2163
+ LiteralRegistry.register(
2164
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance::Counter,
2165
+ :schema_name => XSD::QName.new(NsTypes, "counter"),
2166
+ :is_anonymous => true,
2167
+ :schema_qualified => true,
2168
+ :schema_element => [
2169
+ ["name", "SOAP::SOAPString"],
2170
+ ["value", "Virtuozzo::SOAP::Types::EventLog::Perf_statType"]
2171
+ ]
2172
+ )
2173
+
2174
+ LiteralRegistry.register(
2175
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance,
2176
+ :schema_name => XSD::QName.new(NsTypes, "instance"),
2177
+ :is_anonymous => true,
2178
+ :schema_qualified => true,
2179
+ :schema_element => [
2180
+ ["name", "SOAP::SOAPString", [0, 1]],
2181
+ ["counter", "Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2182
+ ]
2183
+ )
2184
+
2185
+ LiteralRegistry.register(
2186
+ :class => Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class,
2187
+ :schema_name => XSD::QName.new(NsTypes, "class"),
2188
+ :is_anonymous => true,
2189
+ :schema_qualified => true,
2190
+ :schema_element => [
2191
+ ["name", "SOAP::SOAPString"],
2192
+ ["instance", "Virtuozzo::SOAP::Types::EventLog::Perf_dataType::C_Class::Instance[]", [1, nil]]
2193
+ ]
2194
+ )
2195
+
2196
+ LiteralRegistry.register(
2197
+ :class => Virtuozzo::SOAP::Types::EventLog::Log_options_baseType,
2198
+ :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
2199
+ :schema_element => []
2200
+ )
2201
+
2202
+ LiteralRegistry.register(
2203
+ :class => Virtuozzo::SOAP::Types::EventLog::Log_optionsType,
2204
+ :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
2205
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2206
+ :schema_element => []
2207
+ )
2208
+
2209
+ LiteralRegistry.register(
2210
+ :class => Virtuozzo::SOAP::Types::EventLog::Packet_headerType,
2211
+ :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
2212
+ :schema_element => [
2213
+ ["auth", "Virtuozzo::SOAP::Types::EventLog::AuthType", [0, 1]],
2214
+ ["cookie", "SOAP::SOAPString", [0, 1]],
2215
+ ["target", "SOAP::SOAPString[]", [0, nil]],
2216
+ ["origin", "SOAP::SOAPString", [0, 1]],
2217
+ ["src", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2218
+ ["dst", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2219
+ ["session", "SOAP::SOAPString", [0, 1]]
2220
+ ],
2221
+ :schema_attribute => {
2222
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
2223
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
2224
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
2225
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
2226
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
2227
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
2228
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
2229
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
2230
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
2231
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
2232
+ }
2233
+ )
2234
+
2235
+ LiteralRegistry.register(
2236
+ :class => Virtuozzo::SOAP::Types::EventLog::OperatorType,
2237
+ :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
2238
+ :schema_element => [ :choice,
2239
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"]
2240
+ ]
2241
+ )
2242
+
2243
+ LiteralRegistry.register(
2244
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType,
2245
+ :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
2246
+ :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
2247
+ :schema_element => [ :choice,
2248
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"],
2249
+ ["ok", "Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Ok[]"],
2250
+ ["error", "Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Error[]"]
2251
+ ]
2252
+ )
2253
+
2254
+ LiteralRegistry.register(
2255
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Ok,
2256
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2257
+ :is_anonymous => true,
2258
+ :schema_qualified => true,
2259
+ :schema_element => []
2260
+ )
2261
+
2262
+ LiteralRegistry.register(
2263
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Error,
2264
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2265
+ :is_anonymous => true,
2266
+ :schema_qualified => true,
2267
+ :schema_element => [
2268
+ ["code", "SOAP::SOAPInt"],
2269
+ ["message", "SOAP::SOAPString", [0, 1]]
2270
+ ]
2271
+ )
2272
+
2273
+ LiteralRegistry.register(
2274
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType,
2275
+ :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
2276
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
2277
+ :schema_element => [ :choice,
2278
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"],
2279
+ ["ok", "Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Ok[]"],
2280
+ ["error", "Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Error[]"],
2281
+ [ :choice,
2282
+ ["start_monitor", "Virtuozzo::SOAP::Types::EventLog::Start_monitorType"],
2283
+ ["stop_monitor", "Virtuozzo::SOAP::Types::EventLog::Stop_monitorType"],
2284
+ ["set_period", "Virtuozzo::SOAP::Types::EventLog::Set_periodType", [0, 1]],
2285
+ ["report", nil, [0, 1]]
2286
+ ]
2287
+ ]
2288
+ )
2289
+
2290
+ LiteralRegistry.register(
2291
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Ok,
2292
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2293
+ :is_anonymous => true,
2294
+ :schema_qualified => true,
2295
+ :schema_element => []
2296
+ )
2297
+
2298
+ LiteralRegistry.register(
2299
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Error,
2300
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2301
+ :is_anonymous => true,
2302
+ :schema_qualified => true,
2303
+ :schema_element => [
2304
+ ["code", "SOAP::SOAPInt"],
2305
+ ["message", "SOAP::SOAPString", [0, 1]]
2306
+ ]
2307
+ )
2308
+
2309
+ LiteralRegistry.register(
2310
+ :class => Virtuozzo::SOAP::Types::EventLog::Set_periodType,
2311
+ :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
2312
+ :schema_element => [
2313
+ ["collect", "SOAP::SOAPInt"],
2314
+ ["log", "SOAP::SOAPInt"],
2315
+ ["report", "SOAP::SOAPInt"]
2316
+ ]
2317
+ )
2318
+
2319
+ LiteralRegistry.register(
2320
+ :class => Virtuozzo::SOAP::Types::EventLog::Start_monitorType,
2321
+ :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
2322
+ :schema_element => [
2323
+ ["period", "SOAP::SOAPInt"],
2324
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2325
+ ]
2326
+ )
2327
+
2328
+ LiteralRegistry.register(
2329
+ :class => Virtuozzo::SOAP::Types::EventLog::Stop_monitorType,
2330
+ :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
2331
+ :schema_element => [
2332
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2333
+ ]
2334
+ )
2335
+
2336
+ LiteralRegistry.register(
2337
+ :class => Virtuozzo::SOAP::Types::EventLog::AuthType,
2338
+ :schema_type => XSD::QName.new(NsProtocol, "authType"),
2339
+ :schema_element => [
2340
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2341
+ ]
2342
+ )
2343
+
2344
+ LiteralRegistry.register(
2345
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_configurationType,
2346
+ :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
2347
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
2348
+ :schema_element => [
2349
+ ["period", "SOAP::SOAPInt"]
2350
+ ]
2351
+ )
2352
+
2353
+ LiteralRegistry.register(
2354
+ :class => Virtuozzo::SOAP::Types::EventLog::Periodic_configurationType,
2355
+ :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
2356
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
2357
+ :schema_element => [
2358
+ ["log_priority", "SOAP::SOAPInt"],
2359
+ ["monitor_priority", "SOAP::SOAPInt"],
2360
+ ["min_monitor_period", "SOAP::SOAPInt"],
2361
+ ["min_monitor_period_root", "SOAP::SOAPInt"]
2362
+ ]
2363
+ )
2364
+
2365
+ LiteralRegistry.register(
2366
+ :class => Virtuozzo::SOAP::Types::EventLog::RouteType,
2367
+ :schema_type => XSD::QName.new(NsProtocol, "routeType"),
2368
+ :schema_element => [
2369
+ ["director", "SOAP::SOAPString", [0, 1]],
2370
+ ["host", "SOAP::SOAPString", [0, 1]],
2371
+ ["index", "SOAP::SOAPString", [0, 1]],
2372
+ ["target", "SOAP::SOAPString", [0, 1]]
2373
+ ]
2374
+ )
2375
+
2376
+ LiteralRegistry.register(
2377
+ :class => Virtuozzo::SOAP::Types::EventLog::DataType,
2378
+ :schema_type => XSD::QName.new(NsProtocol, "dataType"),
2379
+ :schema_element => [
2380
+ ["operator", "Virtuozzo::SOAP::Types::EventLog::OperatorType[]"]
2381
+ ]
2382
+ )
2383
+
2384
+ LiteralRegistry.register(
2385
+ :class => Virtuozzo::SOAP::Types::EventLog::ConfigurationType,
2386
+ :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
2387
+ :schema_element => []
2388
+ )
2389
+
2390
+ LiteralRegistry.register(
2391
+ :class => Virtuozzo::SOAP::Types::EventLog::Transport_type,
2392
+ :schema_type => XSD::QName.new(NsTypes, "transport_type")
2393
+ )
2394
+
2395
+ LiteralRegistry.register(
2396
+ :class => Virtuozzo::SOAP::Types::EventLog::Yes_no_type,
2397
+ :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
2398
+ )
2399
+
2400
+ LiteralRegistry.register(
2401
+ :class => Virtuozzo::SOAP::Types::EventLog::Packet_headerType,
2402
+ :schema_name => XSD::QName.new(NsEvent_log_0, "packet_header"),
2403
+ :schema_element => [
2404
+ ["auth", "Virtuozzo::SOAP::Types::EventLog::AuthType", [0, 1]],
2405
+ ["cookie", "SOAP::SOAPString", [0, 1]],
2406
+ ["target", "SOAP::SOAPString[]", [0, nil]],
2407
+ ["origin", "SOAP::SOAPString", [0, 1]],
2408
+ ["src", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2409
+ ["dst", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2410
+ ["session", "SOAP::SOAPString", [0, 1]]
2411
+ ],
2412
+ :schema_attribute => {
2413
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
2414
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
2415
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
2416
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
2417
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
2418
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
2419
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
2420
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
2421
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
2422
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
2423
+ }
2424
+ )
2425
+
2426
+ LiteralRegistry.register(
2427
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType,
2428
+ :schema_name => XSD::QName.new(NsEvent_log, "event_log"),
2429
+ :schema_element => [ :choice,
2430
+ ["configuration", ["Virtuozzo::SOAP::Types::EventLog::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
2431
+ ["ok", ["Virtuozzo::SOAP::Types::EventLog::Event_logType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
2432
+ ["error", ["Virtuozzo::SOAP::Types::EventLog::Event_logType::Error[]", XSD::QName.new(NsProtocol, "error")]],
2433
+ [
2434
+ ["get_events", "Virtuozzo::SOAP::Types::EventLog::Get_events[]"]
2435
+ ],
2436
+ [
2437
+ ["event", "Virtuozzo::SOAP::Types::EventLog::EventType[]", [0, nil]]
2438
+ ]
2439
+ ]
2440
+ )
2441
+
2442
+ LiteralRegistry.register(
2443
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType::Ok,
2444
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2445
+ :is_anonymous => true,
2446
+ :schema_qualified => true,
2447
+ :schema_element => []
2448
+ )
2449
+
2450
+ LiteralRegistry.register(
2451
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_logType::Error,
2452
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2453
+ :is_anonymous => true,
2454
+ :schema_qualified => true,
2455
+ :schema_element => [
2456
+ ["code", "SOAP::SOAPInt"],
2457
+ ["message", "SOAP::SOAPString", [0, 1]]
2458
+ ]
2459
+ )
2460
+
2461
+ LiteralRegistry.register(
2462
+ :class => Virtuozzo::SOAP::Types::EventLog::Get_events,
2463
+ :schema_name => XSD::QName.new(NsEvent_log, "get_events"),
2464
+ :schema_element => [
2465
+ [ :choice,
2466
+ ["eid", nil],
2467
+ ["subject", nil]
2468
+ ],
2469
+ ["start_time", nil, [0, 1]],
2470
+ ["end_time", nil, [0, 1]],
2471
+ ["records", "SOAP::SOAPInt", [0, 1]],
2472
+ ["sid", nil, [0, 1]],
2473
+ ["source", "SOAP::SOAPString", [0, 1]],
2474
+ ["category", "SOAP::SOAPString", [0, 1]],
2475
+ ["data", nil, [0, 1]]
2476
+ ]
2477
+ )
2478
+
2479
+ LiteralRegistry.register(
2480
+ :class => Virtuozzo::SOAP::Types::EventLog::EventType,
2481
+ :schema_name => XSD::QName.new(NsEvent_log, "event"),
2482
+ :schema_element => [
2483
+ ["eid", nil],
2484
+ ["time", nil],
2485
+ ["source", "SOAP::SOAPString"],
2486
+ ["category", "SOAP::SOAPString"],
2487
+ ["sid", nil, [0, 1]],
2488
+ ["count", "SOAP::SOAPInt"],
2489
+ ["id", nil],
2490
+ ["info", "Virtuozzo::SOAP::Types::EventLog::InfoType"],
2491
+ ["data", "Virtuozzo::SOAP::Types::EventLog::EventType::C_Data", [0, 1]]
2492
+ ]
2493
+ )
2494
+
2495
+ LiteralRegistry.register(
2496
+ :class => Virtuozzo::SOAP::Types::EventLog::EventType::C_Data,
2497
+ :schema_name => XSD::QName.new(NsTypes, "data"),
2498
+ :is_anonymous => true,
2499
+ :schema_qualified => true,
2500
+ :schema_element => [
2501
+ ["event_data", "Virtuozzo::SOAP::Types::EventLog::Event_dataType"]
2502
+ ]
2503
+ )
2504
+
2505
+ LiteralRegistry.register(
2506
+ :class => Virtuozzo::SOAP::Types::EventLog::Get_eventsResponse,
2507
+ :schema_name => XSD::QName.new(NsEvent_log, "get_eventsResponse"),
2508
+ :schema_element => [
2509
+ ["event", "Virtuozzo::SOAP::Types::EventLog::EventType"]
2510
+ ]
2511
+ )
2512
+
2513
+ LiteralRegistry.register(
2514
+ :class => Virtuozzo::SOAP::Types::EventLog::Event_dataType,
2515
+ :schema_name => XSD::QName.new(NsTypes, "event_data"),
2516
+ :schema_element => []
2517
+ )
2518
+
2519
+ LiteralRegistry.register(
2520
+ :class => Virtuozzo::SOAP::Types::EventLog::Voc_parameterType,
2521
+ :schema_name => XSD::QName.new(NsTypes, "parameter"),
2522
+ :schema_element => [
2523
+ ["id", "SOAP::SOAPString"],
2524
+ ["type", "SOAP::SOAPString", [0, 1]],
2525
+ ["min", "SOAP::SOAPString", [0, 1]],
2526
+ ["max", "SOAP::SOAPString", [0, 1]],
2527
+ ["long", "SOAP::SOAPString", [0, 1]],
2528
+ ["short", "SOAP::SOAPString", [0, 1]],
2529
+ ["category", "SOAP::SOAPString[]", [0, nil]],
2530
+ ["complex", "SOAP::SOAPString", [0, 1]],
2531
+ ["default", "SOAP::SOAPString", [0, 1]],
2532
+ ["measure", "SOAP::SOAPString", [0, 1]],
2533
+ ["data", nil, [0, 1]],
2534
+ ["name", nil, [0, 1]]
2535
+ ]
2536
+ )
2537
+
2538
+ LiteralRegistry.register(
2539
+ :class => Virtuozzo::SOAP::Types::EventLog::Voc_parameterType,
2540
+ :schema_name => XSD::QName.new(NsTypes, "category"),
2541
+ :schema_element => [
2542
+ ["id", "SOAP::SOAPString"],
2543
+ ["type", "SOAP::SOAPString", [0, 1]],
2544
+ ["min", "SOAP::SOAPString", [0, 1]],
2545
+ ["max", "SOAP::SOAPString", [0, 1]],
2546
+ ["long", "SOAP::SOAPString", [0, 1]],
2547
+ ["short", "SOAP::SOAPString", [0, 1]],
2548
+ ["category", "SOAP::SOAPString[]", [0, nil]],
2549
+ ["complex", "SOAP::SOAPString", [0, 1]],
2550
+ ["default", "SOAP::SOAPString", [0, 1]],
2551
+ ["measure", "SOAP::SOAPString", [0, 1]],
2552
+ ["data", nil, [0, 1]],
2553
+ ["name", nil, [0, 1]]
2554
+ ]
2555
+ )
2556
+
2557
+ LiteralRegistry.register(
2558
+ :class => Virtuozzo::SOAP::Types::EventLog::Packet,
2559
+ :schema_name => XSD::QName.new(NsProtocol, "packet"),
2560
+ :schema_element => [
2561
+ ["auth", "Virtuozzo::SOAP::Types::EventLog::AuthType", [0, 1]],
2562
+ ["cookie", "SOAP::SOAPString", [0, 1]],
2563
+ ["target", "SOAP::SOAPString[]", [0, nil]],
2564
+ ["origin", "SOAP::SOAPString", [0, 1]],
2565
+ ["src", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2566
+ ["dst", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2567
+ ["session", "SOAP::SOAPString", [0, 1]],
2568
+ ["data", "Virtuozzo::SOAP::Types::EventLog::Packet::C_Data"]
2569
+ ],
2570
+ :schema_attribute => {
2571
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
2572
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
2573
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
2574
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
2575
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
2576
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
2577
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
2578
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
2579
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
2580
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
2581
+ }
2582
+ )
2583
+
2584
+ LiteralRegistry.register(
2585
+ :class => Virtuozzo::SOAP::Types::EventLog::Packet::C_Data,
2586
+ :schema_name => XSD::QName.new(NsProtocol, "data"),
2587
+ :is_anonymous => true,
2588
+ :schema_qualified => true,
2589
+ :schema_element => [
2590
+ ["operator", "Virtuozzo::SOAP::Types::EventLog::OperatorType[]"]
2591
+ ]
2592
+ )
2593
+
2594
+ LiteralRegistry.register(
2595
+ :class => Virtuozzo::SOAP::Types::EventLog::Packet_headerType,
2596
+ :schema_name => XSD::QName.new(NsProtocol, "packet_header"),
2597
+ :schema_element => [
2598
+ ["auth", "Virtuozzo::SOAP::Types::EventLog::AuthType", [0, 1]],
2599
+ ["cookie", "SOAP::SOAPString", [0, 1]],
2600
+ ["target", "SOAP::SOAPString[]", [0, nil]],
2601
+ ["origin", "SOAP::SOAPString", [0, 1]],
2602
+ ["src", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2603
+ ["dst", "Virtuozzo::SOAP::Types::EventLog::RouteType", [0, 1]],
2604
+ ["session", "SOAP::SOAPString", [0, 1]]
2605
+ ],
2606
+ :schema_attribute => {
2607
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
2608
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
2609
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
2610
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
2611
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
2612
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
2613
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
2614
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
2615
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
2616
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
2617
+ }
2618
+ )
2619
+
2620
+ LiteralRegistry.register(
2621
+ :class => Virtuozzo::SOAP::Types::EventLog::OperatorType,
2622
+ :schema_name => XSD::QName.new(NsProtocol, "operator"),
2623
+ :schema_element => [ :choice,
2624
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"]
2625
+ ]
2626
+ )
2627
+
2628
+ LiteralRegistry.register(
2629
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType,
2630
+ :schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
2631
+ :schema_element => [ :choice,
2632
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"],
2633
+ ["ok", "Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Ok[]"],
2634
+ ["error", "Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Error[]"],
2635
+ [ :choice,
2636
+ ["start_monitor", "Virtuozzo::SOAP::Types::EventLog::Start_monitorType"],
2637
+ ["stop_monitor", "Virtuozzo::SOAP::Types::EventLog::Stop_monitorType"],
2638
+ ["set_period", "Virtuozzo::SOAP::Types::EventLog::Set_periodType", [0, 1]],
2639
+ ["report", nil, [0, 1]]
2640
+ ]
2641
+ ]
2642
+ )
2643
+
2644
+ LiteralRegistry.register(
2645
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Ok,
2646
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2647
+ :is_anonymous => true,
2648
+ :schema_qualified => true,
2649
+ :schema_element => []
2650
+ )
2651
+
2652
+ LiteralRegistry.register(
2653
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_periodicType::Error,
2654
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2655
+ :is_anonymous => true,
2656
+ :schema_qualified => true,
2657
+ :schema_element => [
2658
+ ["code", "SOAP::SOAPInt"],
2659
+ ["message", "SOAP::SOAPString", [0, 1]]
2660
+ ]
2661
+ )
2662
+
2663
+ LiteralRegistry.register(
2664
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType,
2665
+ :schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
2666
+ :schema_element => [ :choice,
2667
+ ["configuration", "Virtuozzo::SOAP::Types::EventLog::ConfigurationType"],
2668
+ ["ok", "Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Ok[]"],
2669
+ ["error", "Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Error[]"]
2670
+ ]
2671
+ )
2672
+
2673
+ LiteralRegistry.register(
2674
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Ok,
2675
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2676
+ :is_anonymous => true,
2677
+ :schema_qualified => true,
2678
+ :schema_element => []
2679
+ )
2680
+
2681
+ LiteralRegistry.register(
2682
+ :class => Virtuozzo::SOAP::Types::EventLog::Operator_functionalType::Error,
2683
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2684
+ :is_anonymous => true,
2685
+ :schema_qualified => true,
2686
+ :schema_element => [
2687
+ ["code", "SOAP::SOAPInt"],
2688
+ ["message", "SOAP::SOAPString", [0, 1]]
2689
+ ]
2690
+ )
2691
+ end
2692
+
2693
+ end
2694
+ end
2695
+ end