plainprograms-virtuozzo 0.1.0

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