plainprograms-virtuozzo 0.1.0

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