virtuozzo 0.5.1

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