virtuozzo 0.5.1

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