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,4466 @@
1
+ require 'virtuozzo/soap/types/environment'
2
+ require 'soap/mapping'
3
+
4
+ module Virtuozzo # :nodoc:
5
+ module SOAP # :nodoc:
6
+ module MappingRegistries # :nodoc:
7
+ # = Environment
8
+ #
9
+ module Environment
10
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
11
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
12
+ NsEnvm = "http://www.swsoft.com/webservices/vzl/4.0.0/envm"
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
+ NsVzaenvm = "http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm"
16
+ NsVzaenvm_0 = "http://www.swsoft.com/webservices/vza/WSDL/4.0.0/vzaenvm"
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::Environment::VzaenvmType,
22
+ :schema_type => XSD::QName.new(NsVzaenvm, "vzaenvmType"),
23
+ :schema_basetype => XSD::QName.new(NsEnvm, "envmType"),
24
+ :schema_element => [ :choice,
25
+ ["configuration", ["Virtuozzo::SOAP::Types::Environment::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
26
+ ["ok", ["Virtuozzo::SOAP::Types::Environment::VzaenvmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
27
+ ["error", ["Virtuozzo::SOAP::Types::Environment::VzaenvmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
28
+ [
29
+ ["create", ["Virtuozzo::SOAP::Types::Environment::Create[]", XSD::QName.new(NsEnvm, "create")]],
30
+ ["repair", ["Virtuozzo::SOAP::Types::Environment::Repair[]", XSD::QName.new(NsEnvm, "repair")]],
31
+ ["stop_repair", ["Virtuozzo::SOAP::Types::Environment::Stop_repair[]", XSD::QName.new(NsEnvm, "stop_repair")]],
32
+ ["start", ["Virtuozzo::SOAP::Types::Environment::Start[]", XSD::QName.new(NsEnvm, "start")]],
33
+ ["stop", ["Virtuozzo::SOAP::Types::Environment::Stop[]", XSD::QName.new(NsEnvm, "stop")]],
34
+ ["restart", ["Virtuozzo::SOAP::Types::Environment::Restart[]", XSD::QName.new(NsEnvm, "restart")]],
35
+ ["destroy", ["Virtuozzo::SOAP::Types::Environment::Destroy[]", XSD::QName.new(NsEnvm, "destroy")]],
36
+ ["suspend", ["Virtuozzo::SOAP::Types::Environment::Suspend[]", XSD::QName.new(NsEnvm, "suspend")]],
37
+ ["resume", ["Virtuozzo::SOAP::Types::Environment::Resume[]", XSD::QName.new(NsEnvm, "resume")]],
38
+ ["get_info", ["Virtuozzo::SOAP::Types::Environment::Get_info[]", XSD::QName.new(NsEnvm, "get_info")]],
39
+ ["get_list", ["Virtuozzo::SOAP::Types::Environment::Get_list[]", XSD::QName.new(NsEnvm, "get_list")]],
40
+ ["set", ["Virtuozzo::SOAP::Types::Environment::Set[]", XSD::QName.new(NsEnvm, "set")]],
41
+ ["put_private", ["Virtuozzo::SOAP::Types::Environment::Put_private[]", XSD::QName.new(NsEnvm, "put_private")]],
42
+ ["get_private", ["Virtuozzo::SOAP::Types::Environment::Get_private[]", XSD::QName.new(NsEnvm, "get_private")]],
43
+ ["get_vt_settings", ["Virtuozzo::SOAP::Types::Environment::Get_vt_settings[]", XSD::QName.new(NsEnvm, "get_vt_settings")]],
44
+ ["set_vt_settings", ["Virtuozzo::SOAP::Types::Environment::Set_vt_settings[]", XSD::QName.new(NsEnvm, "set_vt_settings")]],
45
+ ["get_vt_info", ["Virtuozzo::SOAP::Types::Environment::Get_vt_info[]", XSD::QName.new(NsEnvm, "get_vt_info")]],
46
+ ["get_log", ["Virtuozzo::SOAP::Types::Environment::Get_log[]", XSD::QName.new(NsEnvm, "get_log")]],
47
+ ["get_native_config", ["Virtuozzo::SOAP::Types::Environment::Get_native_config[]", XSD::QName.new(NsEnvm, "get_native_config")]],
48
+ ["get_virtual_config", ["Virtuozzo::SOAP::Types::Environment::Get_virtual_config[]", XSD::QName.new(NsEnvm, "get_virtual_config")]]
49
+ ],
50
+ [
51
+ ["env", ["Virtuozzo::SOAP::Types::Environment::EnvType[]", XSD::QName.new(NsEnvm, "env")], [0, nil]],
52
+ ["eid", ["[]", XSD::QName.new(NsEnvm, "eid")], [0, nil]],
53
+ ["value", ["SOAP::SOAPBase64[]", XSD::QName.new(NsEnvm, "value")]],
54
+ ["vt_settings", ["Virtuozzo::SOAP::Types::Environment::Vt_settingsType[]", XSD::QName.new(NsEnvm, "vt_settings")], [0, 1]],
55
+ ["vt_info", ["Virtuozzo::SOAP::Types::Environment::Vt_infoType[]", XSD::QName.new(NsEnvm, "vt_info")], [0, 1]],
56
+ ["env_config", ["Virtuozzo::SOAP::Types::Environment::Env_configType[]", XSD::QName.new(NsEnvm, "env_config")], [0, 1]],
57
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Environment::Venv_configType[]", XSD::QName.new(NsEnvm, "virtual_config")], [0, nil]],
58
+ ["native_config", ["Virtuozzo::SOAP::Types::Environment::Native_configType[]", XSD::QName.new(NsEnvm, "native_config")], [0, nil]],
59
+ ["log", ["SOAP::SOAPBase64[]", XSD::QName.new(NsEnvm, "log")], [0, 1]]
60
+ ],
61
+ [
62
+ ["mount", "Virtuozzo::SOAP::Types::Environment::Mount[]"],
63
+ ["umount", "Virtuozzo::SOAP::Types::Environment::Umount[]"],
64
+ ["set_user_password", "Virtuozzo::SOAP::Types::Environment::Set_user_password[]"],
65
+ ["upgrade", "Virtuozzo::SOAP::Types::Environment::Upgrade[]"],
66
+ ["determine_env", "Virtuozzo::SOAP::Types::Environment::Determine_env[]"],
67
+ ["set_ugid_quota", "Virtuozzo::SOAP::Types::Environment::Set_ugid_quota[]"],
68
+ ["get_ugid_quota", "Virtuozzo::SOAP::Types::Environment::Get_ugid_quota[]"],
69
+ ["get_split_conf", "Virtuozzo::SOAP::Types::Environment::Get_split_conf[]"],
70
+ ["validate", "Virtuozzo::SOAP::Types::Environment::Validate[]"],
71
+ ["get_script", "Virtuozzo::SOAP::Types::Environment::Get_script[]"],
72
+ ["set_script", "Virtuozzo::SOAP::Types::Environment::Set_script[]"],
73
+ ["del_script", "Virtuozzo::SOAP::Types::Environment::Del_script[]"],
74
+ ["recover_template", "Virtuozzo::SOAP::Types::Environment::Recover_template[]"]
75
+ ],
76
+ [ :choice,
77
+ ["veid", nil],
78
+ ["ugid_quota", "Virtuozzo::SOAP::Types::Environment::Ugid_quota_info"],
79
+ ["config", "Virtuozzo::SOAP::Types::Environment::Venv_configType_"],
80
+ ["validation", "Virtuozzo::SOAP::Types::Environment::ValidationType[]", [0, nil]],
81
+ ["script", "Virtuozzo::SOAP::Types::Environment::Script"]
82
+ ]
83
+ ]
84
+ )
85
+
86
+ EncodedRegistry.register(
87
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType::Ok,
88
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
89
+ :is_anonymous => true,
90
+ :schema_qualified => true,
91
+ :schema_element => []
92
+ )
93
+
94
+ EncodedRegistry.register(
95
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType::Error,
96
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
97
+ :is_anonymous => true,
98
+ :schema_qualified => true,
99
+ :schema_element => [
100
+ ["code", "SOAP::SOAPInt"],
101
+ ["message", "SOAP::SOAPString", [0, 1]]
102
+ ]
103
+ )
104
+
105
+ EncodedRegistry.register(
106
+ :class => Virtuozzo::SOAP::Types::Environment::Ugid_quota_info,
107
+ :schema_type => XSD::QName.new(NsVzaenvm, "ugid_quota_info"),
108
+ :schema_element => [
109
+ ["type", "SOAP::SOAPInt"],
110
+ ["quota", "Virtuozzo::SOAP::Types::Environment::Quota_type[]", [0, nil]],
111
+ ["grace_period", "Virtuozzo::SOAP::Types::Environment::Ugid_quota_info::Grace_period", [0, 1]]
112
+ ]
113
+ )
114
+
115
+ EncodedRegistry.register(
116
+ :class => Virtuozzo::SOAP::Types::Environment::Ugid_quota_info::Grace_period,
117
+ :schema_name => XSD::QName.new(NsVzaenvm, "grace_period"),
118
+ :is_anonymous => true,
119
+ :schema_qualified => true,
120
+ :schema_element => [
121
+ ["inodes", "SOAP::SOAPInt"],
122
+ ["space", "SOAP::SOAPInt"]
123
+ ]
124
+ )
125
+
126
+ EncodedRegistry.register(
127
+ :class => Virtuozzo::SOAP::Types::Environment::Quota_type,
128
+ :schema_type => XSD::QName.new(NsVzaenvm, "quota_type"),
129
+ :schema_element => [
130
+ ["id", "SOAP::SOAPInt"],
131
+ ["diskspace", "Virtuozzo::SOAP::Types::Environment::Quota_limit"],
132
+ ["diskinodes", "Virtuozzo::SOAP::Types::Environment::Quota_limit"]
133
+ ]
134
+ )
135
+
136
+ EncodedRegistry.register(
137
+ :class => Virtuozzo::SOAP::Types::Environment::Quota_limit,
138
+ :schema_type => XSD::QName.new(NsVzaenvm, "quota_limit"),
139
+ :schema_element => [
140
+ ["cur", "SOAP::SOAPLong"],
141
+ ["soft", "SOAP::SOAPLong"],
142
+ ["hard", "SOAP::SOAPLong"]
143
+ ]
144
+ )
145
+
146
+ EncodedRegistry.register(
147
+ :class => Virtuozzo::SOAP::Types::Environment::ValidationType,
148
+ :schema_type => XSD::QName.new(NsVzaenvm, "validationType"),
149
+ :schema_element => [
150
+ ["type", "SOAP::SOAPInt"],
151
+ ["warning", "SOAP::SOAPString"],
152
+ ["formula", "SOAP::SOAPString"],
153
+ ["qosID", "SOAP::SOAPString[]", [1, nil]]
154
+ ]
155
+ )
156
+
157
+ EncodedRegistry.register(
158
+ :class => Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType,
159
+ :schema_type => XSD::QName.new(NsVzaenvm, "vzaenvm_configurationType"),
160
+ :schema_basetype => XSD::QName.new(NsEnvm, "envm_configurationType"),
161
+ :schema_element => [
162
+ ["timeouts", ["Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts", XSD::QName.new(NsEnvm, "timeouts")]],
163
+ ["start_veid", "SOAP::SOAPInt"],
164
+ ["end_veid", "SOAP::SOAPInt"],
165
+ ["sve_visible", "SOAP::SOAPInt"],
166
+ ["timeouts", "Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts_"]
167
+ ]
168
+ )
169
+
170
+ EncodedRegistry.register(
171
+ :class => Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts,
172
+ :schema_name => XSD::QName.new(NsEnvm, "timeouts"),
173
+ :is_anonymous => true,
174
+ :schema_qualified => true,
175
+ :schema_element => [
176
+ ["create", "SOAP::SOAPInt"],
177
+ ["operate", "SOAP::SOAPInt"]
178
+ ]
179
+ )
180
+
181
+ EncodedRegistry.register(
182
+ :class => Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts_,
183
+ :schema_name => XSD::QName.new(NsVzaenvm, "timeouts"),
184
+ :is_anonymous => true,
185
+ :schema_qualified => true,
186
+ :schema_element => [
187
+ ["create", "SOAP::SOAPInt"],
188
+ ["operate", "SOAP::SOAPInt"],
189
+ ["init", "SOAP::SOAPInt"],
190
+ ["clone", "SOAP::SOAPInt"],
191
+ ["move", "SOAP::SOAPInt"]
192
+ ]
193
+ )
194
+
195
+ EncodedRegistry.register(
196
+ :class => Virtuozzo::SOAP::Types::Environment::OsType,
197
+ :schema_type => XSD::QName.new(NsTypes, "osType"),
198
+ :schema_element => [
199
+ ["platform", "SOAP::SOAPString", [0, 1]],
200
+ ["name", "SOAP::SOAPString"],
201
+ ["version", "SOAP::SOAPString", [0, 1]],
202
+ ["kernel", "SOAP::SOAPString", [0, 1]]
203
+ ]
204
+ )
205
+
206
+ EncodedRegistry.register(
207
+ :class => Virtuozzo::SOAP::Types::Environment::Env_statusType,
208
+ :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
209
+ :schema_element => [
210
+ ["state", "SOAP::SOAPInt", [0, 1]],
211
+ ["transition", "SOAP::SOAPInt", [0, 1]]
212
+ ]
213
+ )
214
+
215
+ EncodedRegistry.register(
216
+ :class => Virtuozzo::SOAP::Types::Environment::QosType,
217
+ :schema_type => XSD::QName.new(NsTypes, "qosType"),
218
+ :schema_element => [
219
+ ["id", "SOAP::SOAPString"],
220
+ ["soft", "SOAP::SOAPLong", [0, 1]],
221
+ ["hard", "SOAP::SOAPLong", [0, 1]],
222
+ ["cur", "SOAP::SOAPLong", [0, 1]]
223
+ ]
224
+ )
225
+
226
+ EncodedRegistry.register(
227
+ :class => Virtuozzo::SOAP::Types::Environment::Env_configType,
228
+ :schema_type => XSD::QName.new(NsTypes, "env_configType"),
229
+ :schema_element => [
230
+ ["name", "SOAP::SOAPString", [0, 1]],
231
+ ["description", "SOAP::SOAPBase64", [0, 1]],
232
+ ["domain", "SOAP::SOAPString", [0, 1]],
233
+ ["hostname", "SOAP::SOAPString", [0, 1]],
234
+ ["address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
235
+ ["architecture", "SOAP::SOAPString", [0, 1]],
236
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
237
+ ["type", "SOAP::SOAPString", [0, 1]],
238
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
239
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
240
+ ["base_sample_id", nil, [0, 1]],
241
+ ["base_snapshot_id", nil, [0, 1]],
242
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
243
+ ]
244
+ )
245
+
246
+ EncodedRegistry.register(
247
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType,
248
+ :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
249
+ :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
250
+ :schema_element => [
251
+ ["name", "SOAP::SOAPString", [0, 1]],
252
+ ["description", "SOAP::SOAPBase64", [0, 1]],
253
+ ["domain", "SOAP::SOAPString", [0, 1]],
254
+ ["hostname", "SOAP::SOAPString", [0, 1]],
255
+ ["address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
256
+ ["architecture", "SOAP::SOAPString", [0, 1]],
257
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
258
+ ["type", "SOAP::SOAPString", [0, 1]],
259
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
260
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
261
+ ["base_sample_id", nil, [0, 1]],
262
+ ["base_snapshot_id", nil, [0, 1]],
263
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
264
+ ["qos", "Virtuozzo::SOAP::Types::Environment::QosType[]", [0, nil]]
265
+ ]
266
+ )
267
+
268
+ EncodedRegistry.register(
269
+ :class => Virtuozzo::SOAP::Types::Environment::Native_configType,
270
+ :schema_type => XSD::QName.new(NsTypes, "native_configType"),
271
+ :schema_element => []
272
+ )
273
+
274
+ EncodedRegistry.register(
275
+ :class => Virtuozzo::SOAP::Types::Environment::EnvType,
276
+ :schema_type => XSD::QName.new(NsTypes, "envType"),
277
+ :schema_element => [
278
+ ["parent_eid", nil],
279
+ ["eid", nil],
280
+ ["status", "Virtuozzo::SOAP::Types::Environment::Env_statusType", [0, 1]],
281
+ ["alert", "SOAP::SOAPInt", [0, 1]],
282
+ ["config", "Virtuozzo::SOAP::Types::Environment::Env_configType", [0, 1]],
283
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType", [0, 1]]
284
+ ]
285
+ )
286
+
287
+ EncodedRegistry.register(
288
+ :class => Virtuozzo::SOAP::Types::Environment::ProcessesType,
289
+ :schema_type => XSD::QName.new(NsTypes, "processesType"),
290
+ :schema_element => [
291
+ ["run", "SOAP::SOAPInt"],
292
+ ["zombie", "SOAP::SOAPInt"],
293
+ ["sleep", "SOAP::SOAPInt"],
294
+ ["uninterrupt", "SOAP::SOAPInt"],
295
+ ["stopped", "SOAP::SOAPInt"],
296
+ ["total", "SOAP::SOAPInt"]
297
+ ]
298
+ )
299
+
300
+ EncodedRegistry.register(
301
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avgType,
302
+ :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
303
+ :schema_element => [
304
+ ["l1", "SOAP::SOAPDouble"],
305
+ ["l2", "SOAP::SOAPDouble", [0, 1]],
306
+ ["l3", "SOAP::SOAPDouble", [0, 1]]
307
+ ]
308
+ )
309
+
310
+ EncodedRegistry.register(
311
+ :class => Virtuozzo::SOAP::Types::Environment::Cpu_loadType,
312
+ :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
313
+ :schema_element => [
314
+ ["system", "SOAP::SOAPLong"],
315
+ ["user", "SOAP::SOAPLong"],
316
+ ["nice", "SOAP::SOAPLong"],
317
+ ["idle", "SOAP::SOAPLong"]
318
+ ]
319
+ )
320
+
321
+ EncodedRegistry.register(
322
+ :class => Virtuozzo::SOAP::Types::Environment::CpuType,
323
+ :schema_type => XSD::QName.new(NsTypes, "cpuType"),
324
+ :schema_element => [
325
+ ["mhz", "SOAP::SOAPInt"],
326
+ ["name", "SOAP::SOAPString"],
327
+ ["number", "SOAP::SOAPInt"],
328
+ ["cores", "SOAP::SOAPInt"],
329
+ ["hyperthreads", "SOAP::SOAPInt"],
330
+ ["units", "SOAP::SOAPInt"],
331
+ ["family", "SOAP::SOAPString"],
332
+ ["model", "SOAP::SOAPString"],
333
+ ["bogomips", "SOAP::SOAPInt"]
334
+ ]
335
+ )
336
+
337
+ EncodedRegistry.register(
338
+ :class => Virtuozzo::SOAP::Types::Environment::TransferType,
339
+ :schema_type => XSD::QName.new(NsTypes, "transferType"),
340
+ :schema_element => [
341
+ ["input", "Virtuozzo::SOAP::Types::Environment::TransferType::Input"],
342
+ ["output", "Virtuozzo::SOAP::Types::Environment::TransferType::Output"]
343
+ ]
344
+ )
345
+
346
+ EncodedRegistry.register(
347
+ :class => Virtuozzo::SOAP::Types::Environment::TransferType::Input,
348
+ :schema_name => XSD::QName.new(NsTypes, "input"),
349
+ :is_anonymous => true,
350
+ :schema_qualified => true,
351
+ :schema_element => [
352
+ ["bytes", "SOAP::SOAPLong"],
353
+ ["packets", "SOAP::SOAPLong", [0, 1]]
354
+ ]
355
+ )
356
+
357
+ EncodedRegistry.register(
358
+ :class => Virtuozzo::SOAP::Types::Environment::TransferType::Output,
359
+ :schema_name => XSD::QName.new(NsTypes, "output"),
360
+ :is_anonymous => true,
361
+ :schema_qualified => true,
362
+ :schema_element => [
363
+ ["bytes", "SOAP::SOAPLong"],
364
+ ["packets", "SOAP::SOAPLong", [0, 1]]
365
+ ]
366
+ )
367
+
368
+ EncodedRegistry.register(
369
+ :class => Virtuozzo::SOAP::Types::Environment::System_nodeType,
370
+ :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
371
+ :schema_element => [
372
+ ["address", "Virtuozzo::SOAP::Types::Environment::System_nodeType::Address"],
373
+ ["login", "Virtuozzo::SOAP::Types::Environment::System_nodeType::Login", [0, 1]]
374
+ ]
375
+ )
376
+
377
+ EncodedRegistry.register(
378
+ :class => Virtuozzo::SOAP::Types::Environment::System_nodeType::Address,
379
+ :schema_name => XSD::QName.new(NsTypes, "address"),
380
+ :is_anonymous => true,
381
+ :schema_qualified => true,
382
+ :schema_element => [
383
+ ["ip", nil]
384
+ ]
385
+ )
386
+
387
+ EncodedRegistry.register(
388
+ :class => Virtuozzo::SOAP::Types::Environment::System_nodeType::Login,
389
+ :schema_name => XSD::QName.new(NsTypes, "login"),
390
+ :is_anonymous => true,
391
+ :schema_qualified => true,
392
+ :schema_element => [
393
+ ["user", "SOAP::SOAPString"],
394
+ ["password", "SOAP::SOAPBase64"]
395
+ ]
396
+ )
397
+
398
+ EncodedRegistry.register(
399
+ :class => Virtuozzo::SOAP::Types::Environment::ResourceType,
400
+ :schema_type => XSD::QName.new(NsTypes, "resourceType"),
401
+ :schema_element => [
402
+ ["total", "SOAP::SOAPLong", [0, 1]],
403
+ ["used", "SOAP::SOAPLong", [0, 1]],
404
+ ["free", "SOAP::SOAPLong", [0, 1]],
405
+ ["avg", "SOAP::SOAPLong", [0, 1]],
406
+ ["min", "SOAP::SOAPLong", [0, 1]],
407
+ ["max", "SOAP::SOAPLong", [0, 1]]
408
+ ]
409
+ )
410
+
411
+ EncodedRegistry.register(
412
+ :class => Virtuozzo::SOAP::Types::Environment::IntervalType,
413
+ :schema_type => XSD::QName.new(NsTypes, "intervalType"),
414
+ :schema_element => [
415
+ ["start_time", nil],
416
+ ["end_time", nil]
417
+ ]
418
+ )
419
+
420
+ EncodedRegistry.register(
421
+ :class => Virtuozzo::SOAP::Types::Environment::StatsType,
422
+ :schema_type => XSD::QName.new(NsTypes, "statsType"),
423
+ :schema_element => [
424
+ ["avg", "SOAP::SOAPLong", [0, 1]],
425
+ ["min", "SOAP::SOAPLong", [0, 1]],
426
+ ["max", "SOAP::SOAPLong", [0, 1]],
427
+ ["total", "SOAP::SOAPLong", [0, 1]],
428
+ ["cur", "SOAP::SOAPLong", [0, 1]],
429
+ ["soft", "SOAP::SOAPLong", [0, 1]],
430
+ ["hard", "SOAP::SOAPLong", [0, 1]]
431
+ ]
432
+ )
433
+
434
+ EncodedRegistry.register(
435
+ :class => Virtuozzo::SOAP::Types::Environment::Net_addressType,
436
+ :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
437
+ :schema_element => [
438
+ ["host", nil],
439
+ ["mask", nil, [0, 1]]
440
+ ]
441
+ )
442
+
443
+ EncodedRegistry.register(
444
+ :class => Virtuozzo::SOAP::Types::Environment::Net_classType,
445
+ :schema_type => XSD::QName.new(NsTypes, "net_classType"),
446
+ :schema_element => [
447
+ ["id", "SOAP::SOAPString", [0, 1]],
448
+ ["transfer", "Virtuozzo::SOAP::Types::Environment::TransferType", [0, 1]]
449
+ ]
450
+ )
451
+
452
+ EncodedRegistry.register(
453
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_rangeType,
454
+ :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
455
+ :schema_element => [
456
+ ["id", "SOAP::SOAPString", [0, 1]],
457
+ ["start_ip", nil, [0, 1]],
458
+ ["subnet_mask", "SOAP::SOAPInt", [0, 1]],
459
+ ["comment", "SOAP::SOAPString", [0, 1]]
460
+ ]
461
+ )
462
+
463
+ EncodedRegistry.register(
464
+ :class => Virtuozzo::SOAP::Types::Environment::Sample_confType,
465
+ :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
466
+ :schema_element => [
467
+ ["env_config", "Virtuozzo::SOAP::Types::Environment::Env_configType"],
468
+ ["id", "SOAP::SOAPString", [0, 1]],
469
+ ["name", "SOAP::SOAPString"],
470
+ ["comment", "SOAP::SOAPBase64", [0, 1]],
471
+ ["vt_version", "Virtuozzo::SOAP::Types::Environment::Sample_confType::Vt_version", [0, 1]]
472
+ ]
473
+ )
474
+
475
+ EncodedRegistry.register(
476
+ :class => Virtuozzo::SOAP::Types::Environment::Sample_confType::Vt_version,
477
+ :schema_name => XSD::QName.new(NsTypes, "vt_version"),
478
+ :is_anonymous => true,
479
+ :schema_qualified => true,
480
+ :schema_element => [
481
+ ["platform", "SOAP::SOAPString"],
482
+ ["architecture", "SOAP::SOAPString"],
483
+ ["vt_technology", "SOAP::SOAPString"]
484
+ ]
485
+ )
486
+
487
+ EncodedRegistry.register(
488
+ :class => Virtuozzo::SOAP::Types::Environment::InterfaceType,
489
+ :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
490
+ :schema_element => [
491
+ ["name", "SOAP::SOAPString"],
492
+ ["bandwidth", "SOAP::SOAPInt", [0, 1]],
493
+ ["transfer", "Virtuozzo::SOAP::Types::Environment::TransferType", [0, 1]],
494
+ ["ipaddress", nil, [0, 1]],
495
+ ["flags", "SOAP::SOAPInt", [0, 1]]
496
+ ]
497
+ )
498
+
499
+ EncodedRegistry.register(
500
+ :class => Virtuozzo::SOAP::Types::Environment::Sys_infoType,
501
+ :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
502
+ :schema_element => [
503
+ ["load_avg", "Virtuozzo::SOAP::Types::Environment::Load_avgType"],
504
+ ["processes", "Virtuozzo::SOAP::Types::Environment::ProcessesType"],
505
+ ["cpu_load", "Virtuozzo::SOAP::Types::Environment::Cpu_loadType"],
506
+ ["cpu_states", "Virtuozzo::SOAP::Types::Environment::Cpu_loadType"],
507
+ ["users", "SOAP::SOAPInt"],
508
+ ["uptime", "SOAP::SOAPLong"],
509
+ ["memory", "Virtuozzo::SOAP::Types::Environment::Sys_infoType::Memory", [0, 1]],
510
+ ["swap", "Virtuozzo::SOAP::Types::Environment::Sys_infoType::Swap", [0, 1]]
511
+ ]
512
+ )
513
+
514
+ EncodedRegistry.register(
515
+ :class => Virtuozzo::SOAP::Types::Environment::Sys_infoType::Memory,
516
+ :schema_name => XSD::QName.new(NsTypes, "memory"),
517
+ :is_anonymous => true,
518
+ :schema_qualified => true,
519
+ :schema_element => [
520
+ ["total", "SOAP::SOAPLong", [0, 1]],
521
+ ["used", "SOAP::SOAPLong"]
522
+ ]
523
+ )
524
+
525
+ EncodedRegistry.register(
526
+ :class => Virtuozzo::SOAP::Types::Environment::Sys_infoType::Swap,
527
+ :schema_name => XSD::QName.new(NsTypes, "swap"),
528
+ :is_anonymous => true,
529
+ :schema_qualified => true,
530
+ :schema_element => [
531
+ ["total", "SOAP::SOAPLong", [0, 1]],
532
+ ["used", "SOAP::SOAPLong"]
533
+ ]
534
+ )
535
+
536
+ EncodedRegistry.register(
537
+ :class => Virtuozzo::SOAP::Types::Environment::Ps_infoType,
538
+ :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
539
+ :schema_element => [
540
+ ["process", "Virtuozzo::SOAP::Types::Environment::Ps_infoType::C_Process[]", [1, nil]],
541
+ ["param_id", "SOAP::SOAPString[]", [1, nil]],
542
+ ["run", "SOAP::SOAPInt"],
543
+ ["idle", "SOAP::SOAPInt"],
544
+ ["zombie", "SOAP::SOAPInt"],
545
+ ["sleep", "SOAP::SOAPInt"],
546
+ ["uninterrupt", "SOAP::SOAPInt"],
547
+ ["stopped", "SOAP::SOAPInt"],
548
+ ["total", "SOAP::SOAPInt"]
549
+ ]
550
+ )
551
+
552
+ EncodedRegistry.register(
553
+ :class => Virtuozzo::SOAP::Types::Environment::Ps_infoType::C_Process,
554
+ :schema_name => XSD::QName.new(NsTypes, "process"),
555
+ :is_anonymous => true,
556
+ :schema_qualified => true,
557
+ :schema_element => [
558
+ ["pid", "SOAP::SOAPInt"],
559
+ ["param", "SOAP::SOAPBase64[]", [0, nil]]
560
+ ]
561
+ )
562
+
563
+ EncodedRegistry.register(
564
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType,
565
+ :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
566
+ :schema_element => [
567
+ ["l1", "Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L1"],
568
+ ["l2", "Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L2", [0, 1]],
569
+ ["l3", "Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L3", [0, 1]]
570
+ ]
571
+ )
572
+
573
+ EncodedRegistry.register(
574
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L1,
575
+ :schema_name => XSD::QName.new(NsTypes, "l1"),
576
+ :is_anonymous => true,
577
+ :schema_qualified => true,
578
+ :schema_element => [
579
+ ["avg", "SOAP::SOAPLong", [0, 1]],
580
+ ["min", "SOAP::SOAPLong", [0, 1]],
581
+ ["max", "SOAP::SOAPLong", [0, 1]],
582
+ ["cur", "SOAP::SOAPLong", [0, 1]]
583
+ ]
584
+ )
585
+
586
+ EncodedRegistry.register(
587
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L2,
588
+ :schema_name => XSD::QName.new(NsTypes, "l2"),
589
+ :is_anonymous => true,
590
+ :schema_qualified => true,
591
+ :schema_element => [
592
+ ["avg", "SOAP::SOAPLong", [0, 1]],
593
+ ["min", "SOAP::SOAPLong", [0, 1]],
594
+ ["max", "SOAP::SOAPLong", [0, 1]],
595
+ ["cur", "SOAP::SOAPLong", [0, 1]]
596
+ ]
597
+ )
598
+
599
+ EncodedRegistry.register(
600
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L3,
601
+ :schema_name => XSD::QName.new(NsTypes, "l3"),
602
+ :is_anonymous => true,
603
+ :schema_qualified => true,
604
+ :schema_element => [
605
+ ["avg", "SOAP::SOAPLong", [0, 1]],
606
+ ["min", "SOAP::SOAPLong", [0, 1]],
607
+ ["max", "SOAP::SOAPLong", [0, 1]],
608
+ ["cur", "SOAP::SOAPLong", [0, 1]]
609
+ ]
610
+ )
611
+
612
+ EncodedRegistry.register(
613
+ :class => Virtuozzo::SOAP::Types::Environment::Alert_dataType,
614
+ :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
615
+ :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
616
+ :schema_element => [
617
+ ["type", "SOAP::SOAPInt"]
618
+ ]
619
+ )
620
+
621
+ EncodedRegistry.register(
622
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_addressType,
623
+ :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
624
+ :schema_element => [
625
+ ["ip", nil],
626
+ ["netmask", nil, [0, 1]]
627
+ ]
628
+ )
629
+
630
+ EncodedRegistry.register(
631
+ :class => Virtuozzo::SOAP::Types::Environment::Env_resourceType,
632
+ :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
633
+ :schema_element => [
634
+ ["eid", nil],
635
+ ["ip_pool", "Virtuozzo::SOAP::Types::Environment::Ip_poolType", [0, 1]]
636
+ ]
637
+ )
638
+
639
+ EncodedRegistry.register(
640
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_poolType,
641
+ :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
642
+ :schema_element => [ :choice,
643
+ ["ip_range", "Virtuozzo::SOAP::Types::Environment::Ip_poolType::Ip_range[]"],
644
+ ["ip", "[]"]
645
+ ]
646
+ )
647
+
648
+ EncodedRegistry.register(
649
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_poolType::Ip_range,
650
+ :schema_name => XSD::QName.new(NsTypes, "ip_range"),
651
+ :is_anonymous => true,
652
+ :schema_qualified => true,
653
+ :schema_element => [
654
+ ["start_ip", nil],
655
+ ["end_ip", nil]
656
+ ]
657
+ )
658
+
659
+ EncodedRegistry.register(
660
+ :class => Virtuozzo::SOAP::Types::Environment::UsageType,
661
+ :schema_type => XSD::QName.new(NsTypes, "usageType"),
662
+ :schema_element => [
663
+ ["total", "SOAP::SOAPLong", [0, 1]],
664
+ ["used", "SOAP::SOAPLong", [0, 1]],
665
+ ["free", "SOAP::SOAPLong", [0, 1]]
666
+ ]
667
+ )
668
+
669
+ EncodedRegistry.register(
670
+ :class => Virtuozzo::SOAP::Types::Environment::Root_credentialType,
671
+ :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
672
+ :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
673
+ :schema_element => [
674
+ ["id", "SOAP::SOAPString"],
675
+ ["policy", "SOAP::SOAPInt", [0, 1]],
676
+ ["description", "SOAP::SOAPBase64", [0, 1]],
677
+ ["cred", "Virtuozzo::SOAP::Types::Environment::CredentialType[]", [0, nil]],
678
+ ["objects", "Virtuozzo::SOAP::Types::Environment::Root_credentialType::Objects", [0, 1]]
679
+ ]
680
+ )
681
+
682
+ EncodedRegistry.register(
683
+ :class => Virtuozzo::SOAP::Types::Environment::Root_credentialType::Objects,
684
+ :schema_name => XSD::QName.new(NsTypes, "objects"),
685
+ :is_anonymous => true,
686
+ :schema_qualified => true,
687
+ :schema_element => [
688
+ ["eid", "SOAP::SOAPString[]", [0, nil]]
689
+ ]
690
+ )
691
+
692
+ EncodedRegistry.register(
693
+ :class => Virtuozzo::SOAP::Types::Environment::CredentialType,
694
+ :schema_type => XSD::QName.new(NsTypes, "credentialType"),
695
+ :schema_element => [
696
+ ["id", "SOAP::SOAPString"],
697
+ ["policy", "SOAP::SOAPInt", [0, 1]],
698
+ ["description", "SOAP::SOAPBase64", [0, 1]],
699
+ ["cred", "Virtuozzo::SOAP::Types::Environment::CredentialType[]", [0, nil]]
700
+ ]
701
+ )
702
+
703
+ EncodedRegistry.register(
704
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType,
705
+ :schema_type => XSD::QName.new(NsTypes, "tokenType"),
706
+ :schema_element => [
707
+ ["user", nil],
708
+ ["groups", "Virtuozzo::SOAP::Types::Environment::TokenType::Groups", [0, 1]],
709
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Environment::TokenType::Deny_only_sids", [0, 1]],
710
+ ["privileges", "Virtuozzo::SOAP::Types::Environment::TokenType::Privileges", [0, 1]],
711
+ ["source", "Virtuozzo::SOAP::Types::Environment::TokenType::Source", [0, 1]]
712
+ ]
713
+ )
714
+
715
+ EncodedRegistry.register(
716
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Groups,
717
+ :schema_name => XSD::QName.new(NsTypes, "groups"),
718
+ :is_anonymous => true,
719
+ :schema_qualified => true,
720
+ :schema_element => [
721
+ ["sid", "[]", [1, nil]]
722
+ ]
723
+ )
724
+
725
+ EncodedRegistry.register(
726
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Deny_only_sids,
727
+ :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
728
+ :is_anonymous => true,
729
+ :schema_qualified => true,
730
+ :schema_element => [
731
+ ["sid", "[]", [0, nil]]
732
+ ]
733
+ )
734
+
735
+ EncodedRegistry.register(
736
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Privileges,
737
+ :schema_name => XSD::QName.new(NsTypes, "privileges"),
738
+ :is_anonymous => true,
739
+ :schema_qualified => true,
740
+ :schema_element => [
741
+ ["privilege", "[]", [0, nil]]
742
+ ]
743
+ )
744
+
745
+ EncodedRegistry.register(
746
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Source,
747
+ :schema_name => XSD::QName.new(NsTypes, "source"),
748
+ :is_anonymous => true,
749
+ :schema_qualified => true,
750
+ :schema_element => [
751
+ ["name", "SOAP::SOAPString"],
752
+ ["id", nil]
753
+ ]
754
+ )
755
+
756
+ EncodedRegistry.register(
757
+ :class => Virtuozzo::SOAP::Types::Environment::Connectivity_infoType,
758
+ :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
759
+ :schema_element => [
760
+ ["protocol", "SOAP::SOAPString", [0, 1]],
761
+ ["address", "SOAP::SOAPString"],
762
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]]
763
+ ]
764
+ )
765
+
766
+ EncodedRegistry.register(
767
+ :class => Virtuozzo::SOAP::Types::Environment::Auth_nameType,
768
+ :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
769
+ :schema_element => [
770
+ ["name", "SOAP::SOAPBase64", [0, 1]],
771
+ ["domain", "SOAP::SOAPBase64", [0, 1]],
772
+ ["realm", nil]
773
+ ]
774
+ )
775
+
776
+ EncodedRegistry.register(
777
+ :class => Virtuozzo::SOAP::Types::Environment::Connection_infoType,
778
+ :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
779
+ :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
780
+ :schema_element => [
781
+ ["protocol", "SOAP::SOAPString", [0, 1]],
782
+ ["address", "SOAP::SOAPString"],
783
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
784
+ ["login", "Virtuozzo::SOAP::Types::Environment::Auth_nameType", [0, 1]],
785
+ ["password", "SOAP::SOAPBase64", [0, 1]]
786
+ ]
787
+ )
788
+
789
+ EncodedRegistry.register(
790
+ :class => Virtuozzo::SOAP::Types::Environment::Eid_listType,
791
+ :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
792
+ :schema_element => [
793
+ ["eid", "[]", [0, nil]]
794
+ ]
795
+ )
796
+
797
+ EncodedRegistry.register(
798
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_infoType,
799
+ :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
800
+ :schema_element => [
801
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
802
+ ]
803
+ )
804
+
805
+ EncodedRegistry.register(
806
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType,
807
+ :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
808
+ :schema_element => [
809
+ ["default_sample_id", nil, [0, 1]]
810
+ ]
811
+ )
812
+
813
+ EncodedRegistry.register(
814
+ :class => Virtuozzo::SOAP::Types::Environment::UserType,
815
+ :schema_type => XSD::QName.new(NsTypes, "userType"),
816
+ :schema_element => [
817
+ ["initial_group", "Virtuozzo::SOAP::Types::Environment::UserType::Initial_group", [0, 1]],
818
+ ["group", "Virtuozzo::SOAP::Types::Environment::UserType::Group[]", [0, nil]],
819
+ ["uid", "SOAP::SOAPInt", [0, 1]],
820
+ ["shell", "SOAP::SOAPString", [0, 1]],
821
+ ["password", "SOAP::SOAPBase64", [0, 1]],
822
+ ["home_dir", "SOAP::SOAPString", [0, 1]],
823
+ ["name", "SOAP::SOAPString", [0, 1]],
824
+ ["comment", "SOAP::SOAPString", [0, 1]]
825
+ ]
826
+ )
827
+
828
+ EncodedRegistry.register(
829
+ :class => Virtuozzo::SOAP::Types::Environment::UserType::Initial_group,
830
+ :schema_name => XSD::QName.new(NsTypes, "initial_group"),
831
+ :is_anonymous => true,
832
+ :schema_qualified => true,
833
+ :schema_element => [
834
+ ["name", "SOAP::SOAPString", [0, 1]],
835
+ ["gid", "SOAP::SOAPInt", [0, 1]]
836
+ ]
837
+ )
838
+
839
+ EncodedRegistry.register(
840
+ :class => Virtuozzo::SOAP::Types::Environment::UserType::Group,
841
+ :schema_name => XSD::QName.new(NsTypes, "group"),
842
+ :is_anonymous => true,
843
+ :schema_qualified => true,
844
+ :schema_element => [
845
+ ["name", "SOAP::SOAPString", [0, 1]],
846
+ ["gid", "SOAP::SOAPInt", [0, 1]]
847
+ ]
848
+ )
849
+
850
+ EncodedRegistry.register(
851
+ :class => Virtuozzo::SOAP::Types::Environment::GroupType,
852
+ :schema_type => XSD::QName.new(NsTypes, "groupType"),
853
+ :schema_element => [
854
+ ["user", "Virtuozzo::SOAP::Types::Environment::GroupType::User[]", [0, nil]],
855
+ ["member_group", "Virtuozzo::SOAP::Types::Environment::GroupType::Member_group[]", [0, nil]],
856
+ ["name", "SOAP::SOAPString", [0, 1]],
857
+ ["gid", "SOAP::SOAPInt", [0, 1]]
858
+ ]
859
+ )
860
+
861
+ EncodedRegistry.register(
862
+ :class => Virtuozzo::SOAP::Types::Environment::GroupType::User,
863
+ :schema_name => XSD::QName.new(NsTypes, "user"),
864
+ :is_anonymous => true,
865
+ :schema_qualified => true,
866
+ :schema_element => [
867
+ ["name", "SOAP::SOAPString"]
868
+ ]
869
+ )
870
+
871
+ EncodedRegistry.register(
872
+ :class => Virtuozzo::SOAP::Types::Environment::GroupType::Member_group,
873
+ :schema_name => XSD::QName.new(NsTypes, "member_group"),
874
+ :is_anonymous => true,
875
+ :schema_qualified => true,
876
+ :schema_element => [
877
+ ["name", "SOAP::SOAPString", [0, 1]]
878
+ ]
879
+ )
880
+
881
+ EncodedRegistry.register(
882
+ :class => Virtuozzo::SOAP::Types::Environment::PackageType,
883
+ :schema_type => XSD::QName.new(NsTypes, "packageType"),
884
+ :schema_element => [
885
+ ["name", "SOAP::SOAPString"],
886
+ ["summary", "SOAP::SOAPString", [0, 1]],
887
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
888
+ ["description", "SOAP::SOAPString", [0, 1]],
889
+ ["arch", "SOAP::SOAPString", [0, 1]],
890
+ ["version", "SOAP::SOAPString", [0, 1]]
891
+ ]
892
+ )
893
+
894
+ EncodedRegistry.register(
895
+ :class => Virtuozzo::SOAP::Types::Environment::Event_dataType,
896
+ :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
897
+ :schema_element => []
898
+ )
899
+
900
+ EncodedRegistry.register(
901
+ :class => Virtuozzo::SOAP::Types::Environment::Named_listType,
902
+ :schema_type => XSD::QName.new(NsTypes, "named_listType"),
903
+ :schema_element => [
904
+ ["name", "SOAP::SOAPString"],
905
+ ["value", "SOAP::SOAPBase64[]", [0, nil]]
906
+ ]
907
+ )
908
+
909
+ EncodedRegistry.register(
910
+ :class => Virtuozzo::SOAP::Types::Environment::ModType,
911
+ :schema_type => XSD::QName.new(NsTypes, "modType"),
912
+ :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
913
+ :schema_element => [
914
+ ["name", "SOAP::SOAPString"],
915
+ ["value", "SOAP::SOAPBase64[]", [0, nil]],
916
+ ["op", "SOAP::SOAPInt", [0, 1]]
917
+ ]
918
+ )
919
+
920
+ EncodedRegistry.register(
921
+ :class => Virtuozzo::SOAP::Types::Environment::RealmType,
922
+ :schema_type => XSD::QName.new(NsTypes, "realmType"),
923
+ :schema_element => [
924
+ ["id", nil, [0, 1]],
925
+ ["type", "SOAP::SOAPInt"],
926
+ ["name", "SOAP::SOAPString"],
927
+ ["builtin", nil, [0, 1]]
928
+ ]
929
+ )
930
+
931
+ EncodedRegistry.register(
932
+ :class => Virtuozzo::SOAP::Types::Environment::EventType,
933
+ :schema_type => XSD::QName.new(NsTypes, "eventType"),
934
+ :schema_element => [
935
+ ["eid", nil],
936
+ ["time", nil],
937
+ ["source", "SOAP::SOAPString"],
938
+ ["category", "SOAP::SOAPString"],
939
+ ["sid", nil, [0, 1]],
940
+ ["count", "SOAP::SOAPInt"],
941
+ ["id", nil],
942
+ ["info", "Virtuozzo::SOAP::Types::Environment::InfoType"],
943
+ ["data", "Virtuozzo::SOAP::Types::Environment::EventType::C_Data", [0, 1]]
944
+ ]
945
+ )
946
+
947
+ EncodedRegistry.register(
948
+ :class => Virtuozzo::SOAP::Types::Environment::EventType::C_Data,
949
+ :schema_name => XSD::QName.new(NsTypes, "data"),
950
+ :is_anonymous => true,
951
+ :schema_qualified => true,
952
+ :schema_element => [
953
+ ["event_data", "Virtuozzo::SOAP::Types::Environment::Event_dataType"]
954
+ ]
955
+ )
956
+
957
+ EncodedRegistry.register(
958
+ :class => Virtuozzo::SOAP::Types::Environment::InfoType,
959
+ :schema_type => XSD::QName.new(NsTypes, "infoType"),
960
+ :schema_element => [
961
+ ["message", "SOAP::SOAPBase64"],
962
+ ["translate", nil, [0, 1]],
963
+ ["parameter", "Virtuozzo::SOAP::Types::Environment::InfoType[]", [0, nil]],
964
+ ["name", "SOAP::SOAPString"]
965
+ ]
966
+ )
967
+
968
+ EncodedRegistry.register(
969
+ :class => Virtuozzo::SOAP::Types::Environment::AceType,
970
+ :schema_type => XSD::QName.new(NsTypes, "aceType"),
971
+ :schema_element => [
972
+ ["type", "SOAP::SOAPInt"],
973
+ ["sid", nil],
974
+ ["rights", "SOAP::SOAPBase64"]
975
+ ]
976
+ )
977
+
978
+ EncodedRegistry.register(
979
+ :class => Virtuozzo::SOAP::Types::Environment::Security_descriptorType,
980
+ :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
981
+ :schema_element => [
982
+ ["owner", nil],
983
+ ["group", nil],
984
+ ["dacl", "Virtuozzo::SOAP::Types::Environment::Security_descriptorType::Dacl", [0, 1]]
985
+ ]
986
+ )
987
+
988
+ EncodedRegistry.register(
989
+ :class => Virtuozzo::SOAP::Types::Environment::Security_descriptorType::Dacl,
990
+ :schema_name => XSD::QName.new(NsTypes, "dacl"),
991
+ :is_anonymous => true,
992
+ :schema_qualified => true,
993
+ :schema_element => [
994
+ ["ace", "Virtuozzo::SOAP::Types::Environment::AceType[]", [0, nil]]
995
+ ]
996
+ )
997
+
998
+ EncodedRegistry.register(
999
+ :class => Virtuozzo::SOAP::Types::Environment::Env_security_objectType,
1000
+ :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
1001
+ :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
1002
+ :schema_element => [
1003
+ ["eid", nil]
1004
+ ]
1005
+ )
1006
+
1007
+ EncodedRegistry.register(
1008
+ :class => Virtuozzo::SOAP::Types::Environment::Net_deviceType,
1009
+ :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
1010
+ :schema_element => [
1011
+ ["id", "SOAP::SOAPString", [0, 1]],
1012
+ ["ip_address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
1013
+ ["dhcp", nil, [0, 1]],
1014
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
1015
+ ["status", "Virtuozzo::SOAP::Types::Environment::Net_deviceType::Status", [0, 1]]
1016
+ ]
1017
+ )
1018
+
1019
+ EncodedRegistry.register(
1020
+ :class => Virtuozzo::SOAP::Types::Environment::Net_deviceType::Status,
1021
+ :schema_name => XSD::QName.new(NsTypes, "status"),
1022
+ :is_anonymous => true,
1023
+ :schema_qualified => true,
1024
+ :schema_element => [ :choice,
1025
+ ["up", nil],
1026
+ ["down", nil]
1027
+ ]
1028
+ )
1029
+
1030
+ EncodedRegistry.register(
1031
+ :class => Virtuozzo::SOAP::Types::Environment::Voc_parameterType,
1032
+ :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
1033
+ :schema_element => [
1034
+ ["id", "SOAP::SOAPString"],
1035
+ ["type", "SOAP::SOAPString", [0, 1]],
1036
+ ["min", "SOAP::SOAPString", [0, 1]],
1037
+ ["max", "SOAP::SOAPString", [0, 1]],
1038
+ ["long", "SOAP::SOAPString", [0, 1]],
1039
+ ["short", "SOAP::SOAPString", [0, 1]],
1040
+ ["category", "SOAP::SOAPString[]", [0, nil]],
1041
+ ["complex", "SOAP::SOAPString", [0, 1]],
1042
+ ["default", "SOAP::SOAPString", [0, 1]],
1043
+ ["measure", "SOAP::SOAPString", [0, 1]],
1044
+ ["data", nil, [0, 1]],
1045
+ ["name", nil, [0, 1]]
1046
+ ]
1047
+ )
1048
+
1049
+ EncodedRegistry.register(
1050
+ :class => Virtuozzo::SOAP::Types::Environment::VocabularyType,
1051
+ :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
1052
+ :schema_element => [
1053
+ ["name", "SOAP::SOAPString"],
1054
+ ["parameter", "Virtuozzo::SOAP::Types::Environment::Voc_parameterType[]", [0, nil]],
1055
+ ["category", "Virtuozzo::SOAP::Types::Environment::Voc_parameterType[]", [0, nil]]
1056
+ ]
1057
+ )
1058
+
1059
+ EncodedRegistry.register(
1060
+ :class => Virtuozzo::SOAP::Types::Environment::Net_nicType,
1061
+ :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
1062
+ :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
1063
+ :schema_element => [
1064
+ ["id", "SOAP::SOAPString", [0, 1]],
1065
+ ["ip_address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
1066
+ ["dhcp", nil, [0, 1]],
1067
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
1068
+ ["status", "Virtuozzo::SOAP::Types::Environment::Net_nicType::Status", [0, 1]],
1069
+ ["mac_address", "SOAP::SOAPString", [0, 1]]
1070
+ ]
1071
+ )
1072
+
1073
+ EncodedRegistry.register(
1074
+ :class => Virtuozzo::SOAP::Types::Environment::Net_nicType::Status,
1075
+ :schema_name => XSD::QName.new(NsTypes, "status"),
1076
+ :is_anonymous => true,
1077
+ :schema_qualified => true,
1078
+ :schema_element => [ :choice,
1079
+ ["up", nil],
1080
+ ["down", nil]
1081
+ ]
1082
+ )
1083
+
1084
+ EncodedRegistry.register(
1085
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_statType,
1086
+ :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
1087
+ :schema_element => [
1088
+ ["cur", "SOAP::SOAPAnySimpleType"],
1089
+ ["avg", "SOAP::SOAPAnySimpleType"],
1090
+ ["max", "SOAP::SOAPAnySimpleType"],
1091
+ ["min", "SOAP::SOAPAnySimpleType"]
1092
+ ]
1093
+ )
1094
+
1095
+ EncodedRegistry.register(
1096
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType,
1097
+ :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
1098
+ :schema_element => [
1099
+ ["eid", nil],
1100
+ ["v_class", ["Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
1101
+ ["interval", "Virtuozzo::SOAP::Types::Environment::IntervalType"]
1102
+ ]
1103
+ )
1104
+
1105
+ EncodedRegistry.register(
1106
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance::Counter,
1107
+ :schema_name => XSD::QName.new(NsTypes, "counter"),
1108
+ :is_anonymous => true,
1109
+ :schema_qualified => true,
1110
+ :schema_element => [
1111
+ ["name", "SOAP::SOAPString"],
1112
+ ["value", "Virtuozzo::SOAP::Types::Environment::Perf_statType"]
1113
+ ]
1114
+ )
1115
+
1116
+ EncodedRegistry.register(
1117
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance,
1118
+ :schema_name => XSD::QName.new(NsTypes, "instance"),
1119
+ :is_anonymous => true,
1120
+ :schema_qualified => true,
1121
+ :schema_element => [
1122
+ ["name", "SOAP::SOAPString", [0, 1]],
1123
+ ["counter", "Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
1124
+ ]
1125
+ )
1126
+
1127
+ EncodedRegistry.register(
1128
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class,
1129
+ :schema_name => XSD::QName.new(NsTypes, "class"),
1130
+ :is_anonymous => true,
1131
+ :schema_qualified => true,
1132
+ :schema_element => [
1133
+ ["name", "SOAP::SOAPString"],
1134
+ ["instance", "Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance[]", [1, nil]]
1135
+ ]
1136
+ )
1137
+
1138
+ EncodedRegistry.register(
1139
+ :class => Virtuozzo::SOAP::Types::Environment::Log_options_baseType,
1140
+ :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
1141
+ :schema_element => []
1142
+ )
1143
+
1144
+ EncodedRegistry.register(
1145
+ :class => Virtuozzo::SOAP::Types::Environment::Log_optionsType,
1146
+ :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
1147
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1148
+ :schema_element => []
1149
+ )
1150
+
1151
+ EncodedRegistry.register(
1152
+ :class => Virtuozzo::SOAP::Types::Environment::Packet_headerType,
1153
+ :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
1154
+ :schema_element => [
1155
+ ["auth", "Virtuozzo::SOAP::Types::Environment::AuthType", [0, 1]],
1156
+ ["cookie", "SOAP::SOAPString", [0, 1]],
1157
+ ["target", "SOAP::SOAPString[]", [0, nil]],
1158
+ ["origin", "SOAP::SOAPString", [0, 1]],
1159
+ ["src", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
1160
+ ["dst", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
1161
+ ["session", "SOAP::SOAPString", [0, 1]]
1162
+ ],
1163
+ :schema_attribute => {
1164
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
1165
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
1166
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
1167
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
1168
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
1169
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
1170
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
1171
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
1172
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
1173
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
1174
+ }
1175
+ )
1176
+
1177
+ EncodedRegistry.register(
1178
+ :class => Virtuozzo::SOAP::Types::Environment::OperatorType,
1179
+ :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
1180
+ :schema_element => [ :choice,
1181
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"]
1182
+ ]
1183
+ )
1184
+
1185
+ EncodedRegistry.register(
1186
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType,
1187
+ :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
1188
+ :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
1189
+ :schema_element => [ :choice,
1190
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"],
1191
+ ["ok", "Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Ok[]"],
1192
+ ["error", "Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Error[]"]
1193
+ ]
1194
+ )
1195
+
1196
+ EncodedRegistry.register(
1197
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Ok,
1198
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1199
+ :is_anonymous => true,
1200
+ :schema_qualified => true,
1201
+ :schema_element => []
1202
+ )
1203
+
1204
+ EncodedRegistry.register(
1205
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Error,
1206
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1207
+ :is_anonymous => true,
1208
+ :schema_qualified => true,
1209
+ :schema_element => [
1210
+ ["code", "SOAP::SOAPInt"],
1211
+ ["message", "SOAP::SOAPString", [0, 1]]
1212
+ ]
1213
+ )
1214
+
1215
+ EncodedRegistry.register(
1216
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType,
1217
+ :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
1218
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1219
+ :schema_element => [ :choice,
1220
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"],
1221
+ ["ok", "Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Ok[]"],
1222
+ ["error", "Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Error[]"],
1223
+ [ :choice,
1224
+ ["start_monitor", "Virtuozzo::SOAP::Types::Environment::Start_monitorType"],
1225
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Environment::Stop_monitorType"],
1226
+ ["set_period", "Virtuozzo::SOAP::Types::Environment::Set_periodType", [0, 1]],
1227
+ ["report", nil, [0, 1]]
1228
+ ]
1229
+ ]
1230
+ )
1231
+
1232
+ EncodedRegistry.register(
1233
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Ok,
1234
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1235
+ :is_anonymous => true,
1236
+ :schema_qualified => true,
1237
+ :schema_element => []
1238
+ )
1239
+
1240
+ EncodedRegistry.register(
1241
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Error,
1242
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1243
+ :is_anonymous => true,
1244
+ :schema_qualified => true,
1245
+ :schema_element => [
1246
+ ["code", "SOAP::SOAPInt"],
1247
+ ["message", "SOAP::SOAPString", [0, 1]]
1248
+ ]
1249
+ )
1250
+
1251
+ EncodedRegistry.register(
1252
+ :class => Virtuozzo::SOAP::Types::Environment::Set_periodType,
1253
+ :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
1254
+ :schema_element => [
1255
+ ["collect", "SOAP::SOAPInt"],
1256
+ ["log", "SOAP::SOAPInt"],
1257
+ ["report", "SOAP::SOAPInt"]
1258
+ ]
1259
+ )
1260
+
1261
+ EncodedRegistry.register(
1262
+ :class => Virtuozzo::SOAP::Types::Environment::Start_monitorType,
1263
+ :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
1264
+ :schema_element => [
1265
+ ["period", "SOAP::SOAPInt"],
1266
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1267
+ ]
1268
+ )
1269
+
1270
+ EncodedRegistry.register(
1271
+ :class => Virtuozzo::SOAP::Types::Environment::Stop_monitorType,
1272
+ :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
1273
+ :schema_element => [
1274
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1275
+ ]
1276
+ )
1277
+
1278
+ EncodedRegistry.register(
1279
+ :class => Virtuozzo::SOAP::Types::Environment::AuthType,
1280
+ :schema_type => XSD::QName.new(NsProtocol, "authType"),
1281
+ :schema_element => [
1282
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1283
+ ]
1284
+ )
1285
+
1286
+ EncodedRegistry.register(
1287
+ :class => Virtuozzo::SOAP::Types::Environment::Event_configurationType,
1288
+ :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
1289
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1290
+ :schema_element => [
1291
+ ["period", "SOAP::SOAPInt"]
1292
+ ]
1293
+ )
1294
+
1295
+ EncodedRegistry.register(
1296
+ :class => Virtuozzo::SOAP::Types::Environment::Periodic_configurationType,
1297
+ :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
1298
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1299
+ :schema_element => [
1300
+ ["log_priority", "SOAP::SOAPInt"],
1301
+ ["monitor_priority", "SOAP::SOAPInt"],
1302
+ ["min_monitor_period", "SOAP::SOAPInt"],
1303
+ ["min_monitor_period_root", "SOAP::SOAPInt"]
1304
+ ]
1305
+ )
1306
+
1307
+ EncodedRegistry.register(
1308
+ :class => Virtuozzo::SOAP::Types::Environment::RouteType,
1309
+ :schema_type => XSD::QName.new(NsProtocol, "routeType"),
1310
+ :schema_element => [
1311
+ ["director", "SOAP::SOAPString", [0, 1]],
1312
+ ["host", "SOAP::SOAPString", [0, 1]],
1313
+ ["index", "SOAP::SOAPString", [0, 1]],
1314
+ ["target", "SOAP::SOAPString", [0, 1]]
1315
+ ]
1316
+ )
1317
+
1318
+ EncodedRegistry.register(
1319
+ :class => Virtuozzo::SOAP::Types::Environment::DataType,
1320
+ :schema_type => XSD::QName.new(NsProtocol, "dataType"),
1321
+ :schema_element => [
1322
+ ["operator", "Virtuozzo::SOAP::Types::Environment::OperatorType[]"]
1323
+ ]
1324
+ )
1325
+
1326
+ EncodedRegistry.register(
1327
+ :class => Virtuozzo::SOAP::Types::Environment::ConfigurationType,
1328
+ :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
1329
+ :schema_element => []
1330
+ )
1331
+
1332
+ EncodedRegistry.register(
1333
+ :class => Virtuozzo::SOAP::Types::Environment::Virtuozzo_configType,
1334
+ :schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
1335
+ :schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
1336
+ :schema_element => [
1337
+ ["body", "SOAP::SOAPBase64"]
1338
+ ]
1339
+ )
1340
+
1341
+ EncodedRegistry.register(
1342
+ :class => Virtuozzo::SOAP::Types::Environment::Log_optionsType_,
1343
+ :schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
1344
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1345
+ :schema_element => [
1346
+ ["type", "SOAP::SOAPInt", [0, 1]]
1347
+ ]
1348
+ )
1349
+
1350
+ EncodedRegistry.register(
1351
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_,
1352
+ :schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
1353
+ :schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
1354
+ :schema_element => [
1355
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")], [0, 1]],
1356
+ ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
1357
+ ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
1358
+ ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
1359
+ ["address", ["Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
1360
+ ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
1361
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1362
+ ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
1363
+ ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
1364
+ ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
1365
+ ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
1366
+ ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
1367
+ ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
1368
+ ["qos", ["Virtuozzo::SOAP::Types::Environment::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
1369
+ ["veid", nil, [0, 1]],
1370
+ ["ve_root", "SOAP::SOAPString", [0, 1]],
1371
+ ["ve_private", "SOAP::SOAPString", [0, 1]],
1372
+ ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
1373
+ ["template", "Virtuozzo::SOAP::Types::Environment::TemplateType[]", [0, nil]],
1374
+ ["disabled", "SOAP::SOAPBoolean", [0, 1]],
1375
+ ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
1376
+ ["os_template", "Virtuozzo::SOAP::Types::Environment::TemplateType", [0, 1]],
1377
+ ["distribution", "Virtuozzo::SOAP::Types::Environment::TemplateType", [0, 1]],
1378
+ ["capability", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Capability[]", [0, nil]],
1379
+ ["iptables", "SOAP::SOAPString[]", [0, nil]],
1380
+ ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
1381
+ ["class_id", "SOAP::SOAPString", [0, 1]],
1382
+ ["ve_type", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Ve_type", [0, 1]],
1383
+ ["offline_service", "SOAP::SOAPString[]", [0, nil]],
1384
+ ["wins_server", "SOAP::SOAPString[]", [0, nil]],
1385
+ ["net_device", "Virtuozzo::SOAP::Types::Environment::Net_vethType[]", [0, nil]],
1386
+ ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
1387
+ ["ts_mode", "SOAP::SOAPInt", [0, 1]],
1388
+ ["uuid", "SOAP::SOAPString", [0, 1]],
1389
+ ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
1390
+ ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
1391
+ ["interface_rate", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Interface_rate[]", [0, nil]],
1392
+ ["slm_mode", "SOAP::SOAPString", [0, 1]],
1393
+ ["origin_sample", "SOAP::SOAPString", [0, 1]]
1394
+ ]
1395
+ )
1396
+
1397
+ EncodedRegistry.register(
1398
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Capability,
1399
+ :schema_name => XSD::QName.new(NsVzatypes, "capability"),
1400
+ :is_anonymous => true,
1401
+ :schema_qualified => true,
1402
+ :schema_element => [
1403
+ ["id", "SOAP::SOAPString"],
1404
+ ["value", "SOAP::SOAPBoolean"]
1405
+ ]
1406
+ )
1407
+
1408
+ EncodedRegistry.register(
1409
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Ve_type,
1410
+ :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
1411
+ :is_anonymous => true,
1412
+ :schema_qualified => true,
1413
+ :schema_element => [
1414
+ ["veid", nil, [0, 1]],
1415
+ ["type", "SOAP::SOAPInt"]
1416
+ ]
1417
+ )
1418
+
1419
+ EncodedRegistry.register(
1420
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Interface_rate,
1421
+ :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
1422
+ :is_anonymous => true,
1423
+ :schema_qualified => true,
1424
+ :schema_element => [
1425
+ ["class_id", "SOAP::SOAPString"],
1426
+ ["rate", "SOAP::SOAPLong"]
1427
+ ]
1428
+ )
1429
+
1430
+ EncodedRegistry.register(
1431
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType_,
1432
+ :schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
1433
+ :schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
1434
+ :schema_element => [
1435
+ ["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
1436
+ ["parameter", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType_::Parameter[]", [0, nil]],
1437
+ ["service", "Virtuozzo::SOAP::Types::Environment::Redirect_serviceType[]", [0, nil]],
1438
+ ["qos", "Virtuozzo::SOAP::Types::Environment::QosType[]", [0, nil]]
1439
+ ]
1440
+ )
1441
+
1442
+ EncodedRegistry.register(
1443
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType_::Parameter,
1444
+ :schema_name => XSD::QName.new(NsVzatypes, "parameter"),
1445
+ :is_anonymous => true,
1446
+ :schema_qualified => true,
1447
+ :schema_element => [
1448
+ ["id", "SOAP::SOAPString"],
1449
+ ["value", "SOAP::SOAPString"]
1450
+ ]
1451
+ )
1452
+
1453
+ EncodedRegistry.register(
1454
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_infoType_,
1455
+ :schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
1456
+ :schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
1457
+ :schema_element => [
1458
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]],
1459
+ ["sve_eid", nil],
1460
+ ["version", "SOAP::SOAPString"],
1461
+ ["release", "SOAP::SOAPString"]
1462
+ ]
1463
+ )
1464
+
1465
+ EncodedRegistry.register(
1466
+ :class => Virtuozzo::SOAP::Types::Environment::Redirect_serviceType,
1467
+ :schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
1468
+ :schema_element => [
1469
+ ["id", "SOAP::SOAPString"],
1470
+ ["port", "SOAP::SOAPInt"],
1471
+ ["dst", nil],
1472
+ ["default", nil, [0, 1]]
1473
+ ]
1474
+ )
1475
+
1476
+ EncodedRegistry.register(
1477
+ :class => Virtuozzo::SOAP::Types::Environment::TemplateType,
1478
+ :schema_type => XSD::QName.new(NsVzatypes, "templateType"),
1479
+ :schema_element => [
1480
+ ["name", "SOAP::SOAPString"],
1481
+ ["version", "SOAP::SOAPString", [0, 1]]
1482
+ ]
1483
+ )
1484
+
1485
+ EncodedRegistry.register(
1486
+ :class => Virtuozzo::SOAP::Types::Environment::Package_std_vztemplateType,
1487
+ :schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
1488
+ :schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
1489
+ :schema_element => [
1490
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
1491
+ ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
1492
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1493
+ ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
1494
+ ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
1495
+ ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
1496
+ ["technology", "SOAP::SOAPString[]", [0, nil]],
1497
+ ["os_template", "SOAP::SOAPBoolean"],
1498
+ ["cached", "SOAP::SOAPBoolean"],
1499
+ ["path", "SOAP::SOAPBase64", [0, 1]],
1500
+ ["uptodate", "SOAP::SOAPBoolean"],
1501
+ ["base", "SOAP::SOAPBoolean", [0, 1]]
1502
+ ]
1503
+ )
1504
+
1505
+ EncodedRegistry.register(
1506
+ :class => Virtuozzo::SOAP::Types::Environment::Package_vztemplateType,
1507
+ :schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
1508
+ :schema_basetype => XSD::QName.new(NsTypes, "packageType"),
1509
+ :schema_element => [
1510
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
1511
+ ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
1512
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1513
+ ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
1514
+ ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
1515
+ ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
1516
+ ["technology", "SOAP::SOAPString[]", [0, nil]],
1517
+ ["os_template", "SOAP::SOAPBoolean"],
1518
+ ["cached", "SOAP::SOAPBoolean"],
1519
+ ["path", "SOAP::SOAPBase64", [0, 1]],
1520
+ ["uptodate", "SOAP::SOAPBoolean"]
1521
+ ]
1522
+ )
1523
+
1524
+ EncodedRegistry.register(
1525
+ :class => Virtuozzo::SOAP::Types::Environment::Env_security_objectType_,
1526
+ :schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
1527
+ :schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
1528
+ :schema_element => [
1529
+ ["eid", [nil, XSD::QName.new(NsTypes, "eid")]]
1530
+ ]
1531
+ )
1532
+
1533
+ EncodedRegistry.register(
1534
+ :class => Virtuozzo::SOAP::Types::Environment::Net_vethType,
1535
+ :schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
1536
+ :schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
1537
+ :schema_element => [
1538
+ ["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
1539
+ ["ip_address", ["Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
1540
+ ["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
1541
+ ["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
1542
+ ["status", ["Virtuozzo::SOAP::Types::Environment::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
1543
+ ["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
1544
+ ["wins_server", "SOAP::SOAPString[]", [0, nil]],
1545
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1546
+ ["default_gateway", "SOAP::SOAPString", [0, 1]],
1547
+ ["host_routed", nil, [0, 1]]
1548
+ ]
1549
+ )
1550
+
1551
+ EncodedRegistry.register(
1552
+ :class => Virtuozzo::SOAP::Types::Environment::Net_vethType::Status,
1553
+ :schema_name => XSD::QName.new(NsTypes, "status"),
1554
+ :is_anonymous => true,
1555
+ :schema_qualified => true,
1556
+ :schema_element => [ :choice,
1557
+ ["up", nil],
1558
+ ["down", nil]
1559
+ ]
1560
+ )
1561
+
1562
+ EncodedRegistry.register(
1563
+ :class => Virtuozzo::SOAP::Types::Environment::EnvType_,
1564
+ :schema_type => XSD::QName.new(NsVzatypes, "envType"),
1565
+ :schema_basetype => XSD::QName.new(NsTypes, "envType"),
1566
+ :schema_element => [
1567
+ ["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
1568
+ ["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
1569
+ ["status", ["Virtuozzo::SOAP::Types::Environment::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
1570
+ ["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
1571
+ ["config", ["Virtuozzo::SOAP::Types::Environment::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
1572
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Environment::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
1573
+ ]
1574
+ )
1575
+
1576
+ EncodedRegistry.register(
1577
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType,
1578
+ :schema_type => XSD::QName.new(NsEnvm, "envmType"),
1579
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1580
+ :schema_element => [ :choice,
1581
+ ["configuration", ["Virtuozzo::SOAP::Types::Environment::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1582
+ ["ok", ["Virtuozzo::SOAP::Types::Environment::EnvmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1583
+ ["error", ["Virtuozzo::SOAP::Types::Environment::EnvmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1584
+ [
1585
+ ["create", "Virtuozzo::SOAP::Types::Environment::Create[]"],
1586
+ ["repair", "Virtuozzo::SOAP::Types::Environment::Repair[]"],
1587
+ ["stop_repair", "Virtuozzo::SOAP::Types::Environment::Stop_repair[]"],
1588
+ ["start", "Virtuozzo::SOAP::Types::Environment::Start[]"],
1589
+ ["stop", "Virtuozzo::SOAP::Types::Environment::Stop[]"],
1590
+ ["restart", "Virtuozzo::SOAP::Types::Environment::Restart[]"],
1591
+ ["destroy", "Virtuozzo::SOAP::Types::Environment::Destroy[]"],
1592
+ ["suspend", "Virtuozzo::SOAP::Types::Environment::Suspend[]"],
1593
+ ["resume", "Virtuozzo::SOAP::Types::Environment::Resume[]"],
1594
+ ["get_info", "Virtuozzo::SOAP::Types::Environment::Get_info[]"],
1595
+ ["get_list", "Virtuozzo::SOAP::Types::Environment::Get_list[]"],
1596
+ ["set", "Virtuozzo::SOAP::Types::Environment::Set[]"],
1597
+ ["put_private", "Virtuozzo::SOAP::Types::Environment::Put_private[]"],
1598
+ ["get_private", "Virtuozzo::SOAP::Types::Environment::Get_private[]"],
1599
+ ["get_vt_settings", "Virtuozzo::SOAP::Types::Environment::Get_vt_settings[]"],
1600
+ ["set_vt_settings", "Virtuozzo::SOAP::Types::Environment::Set_vt_settings[]"],
1601
+ ["get_vt_info", "Virtuozzo::SOAP::Types::Environment::Get_vt_info[]"],
1602
+ ["get_log", "Virtuozzo::SOAP::Types::Environment::Get_log[]"],
1603
+ ["get_native_config", "Virtuozzo::SOAP::Types::Environment::Get_native_config[]"],
1604
+ ["get_virtual_config", "Virtuozzo::SOAP::Types::Environment::Get_virtual_config[]"]
1605
+ ],
1606
+ [
1607
+ ["env", "Virtuozzo::SOAP::Types::Environment::EnvType[]", [0, nil]],
1608
+ ["eid", "[]", [0, nil]],
1609
+ ["value", "SOAP::SOAPBase64[]"],
1610
+ ["vt_settings", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType[]", [0, 1]],
1611
+ ["vt_info", "Virtuozzo::SOAP::Types::Environment::Vt_infoType[]", [0, 1]],
1612
+ ["env_config", "Virtuozzo::SOAP::Types::Environment::Env_configType[]", [0, 1]],
1613
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType[]", [0, nil]],
1614
+ ["native_config", "Virtuozzo::SOAP::Types::Environment::Native_configType[]", [0, nil]],
1615
+ ["log", "SOAP::SOAPBase64[]", [0, 1]]
1616
+ ]
1617
+ ]
1618
+ )
1619
+
1620
+ EncodedRegistry.register(
1621
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType::Ok,
1622
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1623
+ :is_anonymous => true,
1624
+ :schema_qualified => true,
1625
+ :schema_element => []
1626
+ )
1627
+
1628
+ EncodedRegistry.register(
1629
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType::Error,
1630
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1631
+ :is_anonymous => true,
1632
+ :schema_qualified => true,
1633
+ :schema_element => [
1634
+ ["code", "SOAP::SOAPInt"],
1635
+ ["message", "SOAP::SOAPString", [0, 1]]
1636
+ ]
1637
+ )
1638
+
1639
+ EncodedRegistry.register(
1640
+ :class => Virtuozzo::SOAP::Types::Environment::Envm_configurationType,
1641
+ :schema_type => XSD::QName.new(NsEnvm, "envm_configurationType"),
1642
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1643
+ :schema_element => [
1644
+ ["timeouts", "Virtuozzo::SOAP::Types::Environment::Envm_configurationType::Timeouts"]
1645
+ ]
1646
+ )
1647
+
1648
+ EncodedRegistry.register(
1649
+ :class => Virtuozzo::SOAP::Types::Environment::Envm_configurationType::Timeouts,
1650
+ :schema_name => XSD::QName.new(NsEnvm, "timeouts"),
1651
+ :is_anonymous => true,
1652
+ :schema_qualified => true,
1653
+ :schema_element => [
1654
+ ["create", "SOAP::SOAPInt"],
1655
+ ["operate", "SOAP::SOAPInt"]
1656
+ ]
1657
+ )
1658
+
1659
+ EncodedRegistry.register(
1660
+ :class => Virtuozzo::SOAP::Types::Environment::Transport_type,
1661
+ :schema_type => XSD::QName.new(NsTypes, "transport_type")
1662
+ )
1663
+
1664
+ EncodedRegistry.register(
1665
+ :class => Virtuozzo::SOAP::Types::Environment::Yes_no_type,
1666
+ :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
1667
+ )
1668
+
1669
+ LiteralRegistry.register(
1670
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType,
1671
+ :schema_type => XSD::QName.new(NsVzaenvm, "vzaenvmType"),
1672
+ :schema_basetype => XSD::QName.new(NsEnvm, "envmType"),
1673
+ :schema_element => [ :choice,
1674
+ ["configuration", ["Virtuozzo::SOAP::Types::Environment::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1675
+ ["ok", ["Virtuozzo::SOAP::Types::Environment::VzaenvmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1676
+ ["error", ["Virtuozzo::SOAP::Types::Environment::VzaenvmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1677
+ [
1678
+ ["create", ["Virtuozzo::SOAP::Types::Environment::Create[]", XSD::QName.new(NsEnvm, "create")]],
1679
+ ["repair", ["Virtuozzo::SOAP::Types::Environment::Repair[]", XSD::QName.new(NsEnvm, "repair")]],
1680
+ ["stop_repair", ["Virtuozzo::SOAP::Types::Environment::Stop_repair[]", XSD::QName.new(NsEnvm, "stop_repair")]],
1681
+ ["start", ["Virtuozzo::SOAP::Types::Environment::Start[]", XSD::QName.new(NsEnvm, "start")]],
1682
+ ["stop", ["Virtuozzo::SOAP::Types::Environment::Stop[]", XSD::QName.new(NsEnvm, "stop")]],
1683
+ ["restart", ["Virtuozzo::SOAP::Types::Environment::Restart[]", XSD::QName.new(NsEnvm, "restart")]],
1684
+ ["destroy", ["Virtuozzo::SOAP::Types::Environment::Destroy[]", XSD::QName.new(NsEnvm, "destroy")]],
1685
+ ["suspend", ["Virtuozzo::SOAP::Types::Environment::Suspend[]", XSD::QName.new(NsEnvm, "suspend")]],
1686
+ ["resume", ["Virtuozzo::SOAP::Types::Environment::Resume[]", XSD::QName.new(NsEnvm, "resume")]],
1687
+ ["get_info", ["Virtuozzo::SOAP::Types::Environment::Get_info[]", XSD::QName.new(NsEnvm, "get_info")]],
1688
+ ["get_list", ["Virtuozzo::SOAP::Types::Environment::Get_list[]", XSD::QName.new(NsEnvm, "get_list")]],
1689
+ ["set", ["Virtuozzo::SOAP::Types::Environment::Set[]", XSD::QName.new(NsEnvm, "set")]],
1690
+ ["put_private", ["Virtuozzo::SOAP::Types::Environment::Put_private[]", XSD::QName.new(NsEnvm, "put_private")]],
1691
+ ["get_private", ["Virtuozzo::SOAP::Types::Environment::Get_private[]", XSD::QName.new(NsEnvm, "get_private")]],
1692
+ ["get_vt_settings", ["Virtuozzo::SOAP::Types::Environment::Get_vt_settings[]", XSD::QName.new(NsEnvm, "get_vt_settings")]],
1693
+ ["set_vt_settings", ["Virtuozzo::SOAP::Types::Environment::Set_vt_settings[]", XSD::QName.new(NsEnvm, "set_vt_settings")]],
1694
+ ["get_vt_info", ["Virtuozzo::SOAP::Types::Environment::Get_vt_info[]", XSD::QName.new(NsEnvm, "get_vt_info")]],
1695
+ ["get_log", ["Virtuozzo::SOAP::Types::Environment::Get_log[]", XSD::QName.new(NsEnvm, "get_log")]],
1696
+ ["get_native_config", ["Virtuozzo::SOAP::Types::Environment::Get_native_config[]", XSD::QName.new(NsEnvm, "get_native_config")]],
1697
+ ["get_virtual_config", ["Virtuozzo::SOAP::Types::Environment::Get_virtual_config[]", XSD::QName.new(NsEnvm, "get_virtual_config")]]
1698
+ ],
1699
+ [
1700
+ ["env", ["Virtuozzo::SOAP::Types::Environment::EnvType[]", XSD::QName.new(NsEnvm, "env")], [0, nil]],
1701
+ ["eid", ["[]", XSD::QName.new(NsEnvm, "eid")], [0, nil]],
1702
+ ["value", ["SOAP::SOAPBase64[]", XSD::QName.new(NsEnvm, "value")]],
1703
+ ["vt_settings", ["Virtuozzo::SOAP::Types::Environment::Vt_settingsType[]", XSD::QName.new(NsEnvm, "vt_settings")], [0, 1]],
1704
+ ["vt_info", ["Virtuozzo::SOAP::Types::Environment::Vt_infoType[]", XSD::QName.new(NsEnvm, "vt_info")], [0, 1]],
1705
+ ["env_config", ["Virtuozzo::SOAP::Types::Environment::Env_configType[]", XSD::QName.new(NsEnvm, "env_config")], [0, 1]],
1706
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Environment::Venv_configType[]", XSD::QName.new(NsEnvm, "virtual_config")], [0, nil]],
1707
+ ["native_config", ["Virtuozzo::SOAP::Types::Environment::Native_configType[]", XSD::QName.new(NsEnvm, "native_config")], [0, nil]],
1708
+ ["log", ["SOAP::SOAPBase64[]", XSD::QName.new(NsEnvm, "log")], [0, 1]]
1709
+ ],
1710
+ [
1711
+ ["mount", "Virtuozzo::SOAP::Types::Environment::Mount[]"],
1712
+ ["umount", "Virtuozzo::SOAP::Types::Environment::Umount[]"],
1713
+ ["set_user_password", "Virtuozzo::SOAP::Types::Environment::Set_user_password[]"],
1714
+ ["upgrade", "Virtuozzo::SOAP::Types::Environment::Upgrade[]"],
1715
+ ["determine_env", "Virtuozzo::SOAP::Types::Environment::Determine_env[]"],
1716
+ ["set_ugid_quota", "Virtuozzo::SOAP::Types::Environment::Set_ugid_quota[]"],
1717
+ ["get_ugid_quota", "Virtuozzo::SOAP::Types::Environment::Get_ugid_quota[]"],
1718
+ ["get_split_conf", "Virtuozzo::SOAP::Types::Environment::Get_split_conf[]"],
1719
+ ["validate", "Virtuozzo::SOAP::Types::Environment::Validate[]"],
1720
+ ["get_script", "Virtuozzo::SOAP::Types::Environment::Get_script[]"],
1721
+ ["set_script", "Virtuozzo::SOAP::Types::Environment::Set_script[]"],
1722
+ ["del_script", "Virtuozzo::SOAP::Types::Environment::Del_script[]"],
1723
+ ["recover_template", "Virtuozzo::SOAP::Types::Environment::Recover_template[]"]
1724
+ ],
1725
+ [ :choice,
1726
+ ["veid", nil],
1727
+ ["ugid_quota", "Virtuozzo::SOAP::Types::Environment::Ugid_quota_info"],
1728
+ ["config", "Virtuozzo::SOAP::Types::Environment::Venv_configType_"],
1729
+ ["validation", "Virtuozzo::SOAP::Types::Environment::ValidationType[]", [0, nil]],
1730
+ ["script", "Virtuozzo::SOAP::Types::Environment::Script"]
1731
+ ]
1732
+ ]
1733
+ )
1734
+
1735
+ LiteralRegistry.register(
1736
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType::Ok,
1737
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1738
+ :is_anonymous => true,
1739
+ :schema_qualified => true,
1740
+ :schema_element => []
1741
+ )
1742
+
1743
+ LiteralRegistry.register(
1744
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType::Error,
1745
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1746
+ :is_anonymous => true,
1747
+ :schema_qualified => true,
1748
+ :schema_element => [
1749
+ ["code", "SOAP::SOAPInt"],
1750
+ ["message", "SOAP::SOAPString", [0, 1]]
1751
+ ]
1752
+ )
1753
+
1754
+ LiteralRegistry.register(
1755
+ :class => Virtuozzo::SOAP::Types::Environment::Ugid_quota_info,
1756
+ :schema_type => XSD::QName.new(NsVzaenvm, "ugid_quota_info"),
1757
+ :schema_element => [
1758
+ ["type", "SOAP::SOAPInt"],
1759
+ ["quota", "Virtuozzo::SOAP::Types::Environment::Quota_type[]", [0, nil]],
1760
+ ["grace_period", "Virtuozzo::SOAP::Types::Environment::Ugid_quota_info::Grace_period", [0, 1]]
1761
+ ]
1762
+ )
1763
+
1764
+ LiteralRegistry.register(
1765
+ :class => Virtuozzo::SOAP::Types::Environment::Ugid_quota_info::Grace_period,
1766
+ :schema_name => XSD::QName.new(NsVzaenvm, "grace_period"),
1767
+ :is_anonymous => true,
1768
+ :schema_qualified => true,
1769
+ :schema_element => [
1770
+ ["inodes", "SOAP::SOAPInt"],
1771
+ ["space", "SOAP::SOAPInt"]
1772
+ ]
1773
+ )
1774
+
1775
+ LiteralRegistry.register(
1776
+ :class => Virtuozzo::SOAP::Types::Environment::Quota_type,
1777
+ :schema_type => XSD::QName.new(NsVzaenvm, "quota_type"),
1778
+ :schema_element => [
1779
+ ["id", "SOAP::SOAPInt"],
1780
+ ["diskspace", "Virtuozzo::SOAP::Types::Environment::Quota_limit"],
1781
+ ["diskinodes", "Virtuozzo::SOAP::Types::Environment::Quota_limit"]
1782
+ ]
1783
+ )
1784
+
1785
+ LiteralRegistry.register(
1786
+ :class => Virtuozzo::SOAP::Types::Environment::Quota_limit,
1787
+ :schema_type => XSD::QName.new(NsVzaenvm, "quota_limit"),
1788
+ :schema_element => [
1789
+ ["cur", "SOAP::SOAPLong"],
1790
+ ["soft", "SOAP::SOAPLong"],
1791
+ ["hard", "SOAP::SOAPLong"]
1792
+ ]
1793
+ )
1794
+
1795
+ LiteralRegistry.register(
1796
+ :class => Virtuozzo::SOAP::Types::Environment::ValidationType,
1797
+ :schema_type => XSD::QName.new(NsVzaenvm, "validationType"),
1798
+ :schema_element => [
1799
+ ["type", "SOAP::SOAPInt"],
1800
+ ["warning", "SOAP::SOAPString"],
1801
+ ["formula", "SOAP::SOAPString"],
1802
+ ["qosID", "SOAP::SOAPString[]", [1, nil]]
1803
+ ]
1804
+ )
1805
+
1806
+ LiteralRegistry.register(
1807
+ :class => Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType,
1808
+ :schema_type => XSD::QName.new(NsVzaenvm, "vzaenvm_configurationType"),
1809
+ :schema_basetype => XSD::QName.new(NsEnvm, "envm_configurationType"),
1810
+ :schema_element => [
1811
+ ["timeouts", ["Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts", XSD::QName.new(NsEnvm, "timeouts")]],
1812
+ ["start_veid", "SOAP::SOAPInt"],
1813
+ ["end_veid", "SOAP::SOAPInt"],
1814
+ ["sve_visible", "SOAP::SOAPInt"],
1815
+ ["timeouts", "Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts_"]
1816
+ ]
1817
+ )
1818
+
1819
+ LiteralRegistry.register(
1820
+ :class => Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts,
1821
+ :schema_name => XSD::QName.new(NsEnvm, "timeouts"),
1822
+ :is_anonymous => true,
1823
+ :schema_qualified => true,
1824
+ :schema_element => [
1825
+ ["create", "SOAP::SOAPInt"],
1826
+ ["operate", "SOAP::SOAPInt"]
1827
+ ]
1828
+ )
1829
+
1830
+ LiteralRegistry.register(
1831
+ :class => Virtuozzo::SOAP::Types::Environment::Vzaenvm_configurationType::Timeouts_,
1832
+ :schema_name => XSD::QName.new(NsVzaenvm, "timeouts"),
1833
+ :is_anonymous => true,
1834
+ :schema_qualified => true,
1835
+ :schema_element => [
1836
+ ["create", "SOAP::SOAPInt"],
1837
+ ["operate", "SOAP::SOAPInt"],
1838
+ ["init", "SOAP::SOAPInt"],
1839
+ ["clone", "SOAP::SOAPInt"],
1840
+ ["move", "SOAP::SOAPInt"]
1841
+ ]
1842
+ )
1843
+
1844
+ LiteralRegistry.register(
1845
+ :class => Virtuozzo::SOAP::Types::Environment::OsType,
1846
+ :schema_type => XSD::QName.new(NsTypes, "osType"),
1847
+ :schema_element => [
1848
+ ["platform", "SOAP::SOAPString", [0, 1]],
1849
+ ["name", "SOAP::SOAPString"],
1850
+ ["version", "SOAP::SOAPString", [0, 1]],
1851
+ ["kernel", "SOAP::SOAPString", [0, 1]]
1852
+ ]
1853
+ )
1854
+
1855
+ LiteralRegistry.register(
1856
+ :class => Virtuozzo::SOAP::Types::Environment::Env_statusType,
1857
+ :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
1858
+ :schema_element => [
1859
+ ["state", "SOAP::SOAPInt", [0, 1]],
1860
+ ["transition", "SOAP::SOAPInt", [0, 1]]
1861
+ ]
1862
+ )
1863
+
1864
+ LiteralRegistry.register(
1865
+ :class => Virtuozzo::SOAP::Types::Environment::QosType,
1866
+ :schema_type => XSD::QName.new(NsTypes, "qosType"),
1867
+ :schema_element => [
1868
+ ["id", "SOAP::SOAPString"],
1869
+ ["soft", "SOAP::SOAPLong", [0, 1]],
1870
+ ["hard", "SOAP::SOAPLong", [0, 1]],
1871
+ ["cur", "SOAP::SOAPLong", [0, 1]]
1872
+ ]
1873
+ )
1874
+
1875
+ LiteralRegistry.register(
1876
+ :class => Virtuozzo::SOAP::Types::Environment::Env_configType,
1877
+ :schema_type => XSD::QName.new(NsTypes, "env_configType"),
1878
+ :schema_element => [
1879
+ ["name", "SOAP::SOAPString", [0, 1]],
1880
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1881
+ ["domain", "SOAP::SOAPString", [0, 1]],
1882
+ ["hostname", "SOAP::SOAPString", [0, 1]],
1883
+ ["address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
1884
+ ["architecture", "SOAP::SOAPString", [0, 1]],
1885
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
1886
+ ["type", "SOAP::SOAPString", [0, 1]],
1887
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1888
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1889
+ ["base_sample_id", nil, [0, 1]],
1890
+ ["base_snapshot_id", nil, [0, 1]],
1891
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
1892
+ ]
1893
+ )
1894
+
1895
+ LiteralRegistry.register(
1896
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType,
1897
+ :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
1898
+ :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
1899
+ :schema_element => [
1900
+ ["name", "SOAP::SOAPString", [0, 1]],
1901
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1902
+ ["domain", "SOAP::SOAPString", [0, 1]],
1903
+ ["hostname", "SOAP::SOAPString", [0, 1]],
1904
+ ["address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
1905
+ ["architecture", "SOAP::SOAPString", [0, 1]],
1906
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
1907
+ ["type", "SOAP::SOAPString", [0, 1]],
1908
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1909
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1910
+ ["base_sample_id", nil, [0, 1]],
1911
+ ["base_snapshot_id", nil, [0, 1]],
1912
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
1913
+ ["qos", "Virtuozzo::SOAP::Types::Environment::QosType[]", [0, nil]]
1914
+ ]
1915
+ )
1916
+
1917
+ LiteralRegistry.register(
1918
+ :class => Virtuozzo::SOAP::Types::Environment::Native_configType,
1919
+ :schema_type => XSD::QName.new(NsTypes, "native_configType"),
1920
+ :schema_element => []
1921
+ )
1922
+
1923
+ LiteralRegistry.register(
1924
+ :class => Virtuozzo::SOAP::Types::Environment::EnvType,
1925
+ :schema_type => XSD::QName.new(NsTypes, "envType"),
1926
+ :schema_element => [
1927
+ ["parent_eid", nil],
1928
+ ["eid", nil],
1929
+ ["status", "Virtuozzo::SOAP::Types::Environment::Env_statusType", [0, 1]],
1930
+ ["alert", "SOAP::SOAPInt", [0, 1]],
1931
+ ["config", "Virtuozzo::SOAP::Types::Environment::Env_configType", [0, 1]],
1932
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType", [0, 1]]
1933
+ ]
1934
+ )
1935
+
1936
+ LiteralRegistry.register(
1937
+ :class => Virtuozzo::SOAP::Types::Environment::ProcessesType,
1938
+ :schema_type => XSD::QName.new(NsTypes, "processesType"),
1939
+ :schema_element => [
1940
+ ["run", "SOAP::SOAPInt"],
1941
+ ["zombie", "SOAP::SOAPInt"],
1942
+ ["sleep", "SOAP::SOAPInt"],
1943
+ ["uninterrupt", "SOAP::SOAPInt"],
1944
+ ["stopped", "SOAP::SOAPInt"],
1945
+ ["total", "SOAP::SOAPInt"]
1946
+ ]
1947
+ )
1948
+
1949
+ LiteralRegistry.register(
1950
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avgType,
1951
+ :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
1952
+ :schema_element => [
1953
+ ["l1", "SOAP::SOAPDouble"],
1954
+ ["l2", "SOAP::SOAPDouble", [0, 1]],
1955
+ ["l3", "SOAP::SOAPDouble", [0, 1]]
1956
+ ]
1957
+ )
1958
+
1959
+ LiteralRegistry.register(
1960
+ :class => Virtuozzo::SOAP::Types::Environment::Cpu_loadType,
1961
+ :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
1962
+ :schema_element => [
1963
+ ["system", "SOAP::SOAPLong"],
1964
+ ["user", "SOAP::SOAPLong"],
1965
+ ["nice", "SOAP::SOAPLong"],
1966
+ ["idle", "SOAP::SOAPLong"]
1967
+ ]
1968
+ )
1969
+
1970
+ LiteralRegistry.register(
1971
+ :class => Virtuozzo::SOAP::Types::Environment::CpuType,
1972
+ :schema_type => XSD::QName.new(NsTypes, "cpuType"),
1973
+ :schema_element => [
1974
+ ["mhz", "SOAP::SOAPInt"],
1975
+ ["name", "SOAP::SOAPString"],
1976
+ ["number", "SOAP::SOAPInt"],
1977
+ ["cores", "SOAP::SOAPInt"],
1978
+ ["hyperthreads", "SOAP::SOAPInt"],
1979
+ ["units", "SOAP::SOAPInt"],
1980
+ ["family", "SOAP::SOAPString"],
1981
+ ["model", "SOAP::SOAPString"],
1982
+ ["bogomips", "SOAP::SOAPInt"]
1983
+ ]
1984
+ )
1985
+
1986
+ LiteralRegistry.register(
1987
+ :class => Virtuozzo::SOAP::Types::Environment::TransferType,
1988
+ :schema_type => XSD::QName.new(NsTypes, "transferType"),
1989
+ :schema_element => [
1990
+ ["input", "Virtuozzo::SOAP::Types::Environment::TransferType::Input"],
1991
+ ["output", "Virtuozzo::SOAP::Types::Environment::TransferType::Output"]
1992
+ ]
1993
+ )
1994
+
1995
+ LiteralRegistry.register(
1996
+ :class => Virtuozzo::SOAP::Types::Environment::TransferType::Input,
1997
+ :schema_name => XSD::QName.new(NsTypes, "input"),
1998
+ :is_anonymous => true,
1999
+ :schema_qualified => true,
2000
+ :schema_element => [
2001
+ ["bytes", "SOAP::SOAPLong"],
2002
+ ["packets", "SOAP::SOAPLong", [0, 1]]
2003
+ ]
2004
+ )
2005
+
2006
+ LiteralRegistry.register(
2007
+ :class => Virtuozzo::SOAP::Types::Environment::TransferType::Output,
2008
+ :schema_name => XSD::QName.new(NsTypes, "output"),
2009
+ :is_anonymous => true,
2010
+ :schema_qualified => true,
2011
+ :schema_element => [
2012
+ ["bytes", "SOAP::SOAPLong"],
2013
+ ["packets", "SOAP::SOAPLong", [0, 1]]
2014
+ ]
2015
+ )
2016
+
2017
+ LiteralRegistry.register(
2018
+ :class => Virtuozzo::SOAP::Types::Environment::System_nodeType,
2019
+ :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
2020
+ :schema_element => [
2021
+ ["address", "Virtuozzo::SOAP::Types::Environment::System_nodeType::Address"],
2022
+ ["login", "Virtuozzo::SOAP::Types::Environment::System_nodeType::Login", [0, 1]]
2023
+ ]
2024
+ )
2025
+
2026
+ LiteralRegistry.register(
2027
+ :class => Virtuozzo::SOAP::Types::Environment::System_nodeType::Address,
2028
+ :schema_name => XSD::QName.new(NsTypes, "address"),
2029
+ :is_anonymous => true,
2030
+ :schema_qualified => true,
2031
+ :schema_element => [
2032
+ ["ip", nil]
2033
+ ]
2034
+ )
2035
+
2036
+ LiteralRegistry.register(
2037
+ :class => Virtuozzo::SOAP::Types::Environment::System_nodeType::Login,
2038
+ :schema_name => XSD::QName.new(NsTypes, "login"),
2039
+ :is_anonymous => true,
2040
+ :schema_qualified => true,
2041
+ :schema_element => [
2042
+ ["user", "SOAP::SOAPString"],
2043
+ ["password", "SOAP::SOAPBase64"]
2044
+ ]
2045
+ )
2046
+
2047
+ LiteralRegistry.register(
2048
+ :class => Virtuozzo::SOAP::Types::Environment::ResourceType,
2049
+ :schema_type => XSD::QName.new(NsTypes, "resourceType"),
2050
+ :schema_element => [
2051
+ ["total", "SOAP::SOAPLong", [0, 1]],
2052
+ ["used", "SOAP::SOAPLong", [0, 1]],
2053
+ ["free", "SOAP::SOAPLong", [0, 1]],
2054
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2055
+ ["min", "SOAP::SOAPLong", [0, 1]],
2056
+ ["max", "SOAP::SOAPLong", [0, 1]]
2057
+ ]
2058
+ )
2059
+
2060
+ LiteralRegistry.register(
2061
+ :class => Virtuozzo::SOAP::Types::Environment::IntervalType,
2062
+ :schema_type => XSD::QName.new(NsTypes, "intervalType"),
2063
+ :schema_element => [
2064
+ ["start_time", nil],
2065
+ ["end_time", nil]
2066
+ ]
2067
+ )
2068
+
2069
+ LiteralRegistry.register(
2070
+ :class => Virtuozzo::SOAP::Types::Environment::StatsType,
2071
+ :schema_type => XSD::QName.new(NsTypes, "statsType"),
2072
+ :schema_element => [
2073
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2074
+ ["min", "SOAP::SOAPLong", [0, 1]],
2075
+ ["max", "SOAP::SOAPLong", [0, 1]],
2076
+ ["total", "SOAP::SOAPLong", [0, 1]],
2077
+ ["cur", "SOAP::SOAPLong", [0, 1]],
2078
+ ["soft", "SOAP::SOAPLong", [0, 1]],
2079
+ ["hard", "SOAP::SOAPLong", [0, 1]]
2080
+ ]
2081
+ )
2082
+
2083
+ LiteralRegistry.register(
2084
+ :class => Virtuozzo::SOAP::Types::Environment::Net_addressType,
2085
+ :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
2086
+ :schema_element => [
2087
+ ["host", nil],
2088
+ ["mask", nil, [0, 1]]
2089
+ ]
2090
+ )
2091
+
2092
+ LiteralRegistry.register(
2093
+ :class => Virtuozzo::SOAP::Types::Environment::Net_classType,
2094
+ :schema_type => XSD::QName.new(NsTypes, "net_classType"),
2095
+ :schema_element => [
2096
+ ["id", "SOAP::SOAPString", [0, 1]],
2097
+ ["transfer", "Virtuozzo::SOAP::Types::Environment::TransferType", [0, 1]]
2098
+ ]
2099
+ )
2100
+
2101
+ LiteralRegistry.register(
2102
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_rangeType,
2103
+ :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
2104
+ :schema_element => [
2105
+ ["id", "SOAP::SOAPString", [0, 1]],
2106
+ ["start_ip", nil, [0, 1]],
2107
+ ["subnet_mask", "SOAP::SOAPInt", [0, 1]],
2108
+ ["comment", "SOAP::SOAPString", [0, 1]]
2109
+ ]
2110
+ )
2111
+
2112
+ LiteralRegistry.register(
2113
+ :class => Virtuozzo::SOAP::Types::Environment::Sample_confType,
2114
+ :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
2115
+ :schema_element => [
2116
+ ["env_config", "Virtuozzo::SOAP::Types::Environment::Env_configType"],
2117
+ ["id", "SOAP::SOAPString", [0, 1]],
2118
+ ["name", "SOAP::SOAPString"],
2119
+ ["comment", "SOAP::SOAPBase64", [0, 1]],
2120
+ ["vt_version", "Virtuozzo::SOAP::Types::Environment::Sample_confType::Vt_version", [0, 1]]
2121
+ ]
2122
+ )
2123
+
2124
+ LiteralRegistry.register(
2125
+ :class => Virtuozzo::SOAP::Types::Environment::Sample_confType::Vt_version,
2126
+ :schema_name => XSD::QName.new(NsTypes, "vt_version"),
2127
+ :is_anonymous => true,
2128
+ :schema_qualified => true,
2129
+ :schema_element => [
2130
+ ["platform", "SOAP::SOAPString"],
2131
+ ["architecture", "SOAP::SOAPString"],
2132
+ ["vt_technology", "SOAP::SOAPString"]
2133
+ ]
2134
+ )
2135
+
2136
+ LiteralRegistry.register(
2137
+ :class => Virtuozzo::SOAP::Types::Environment::InterfaceType,
2138
+ :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
2139
+ :schema_element => [
2140
+ ["name", "SOAP::SOAPString"],
2141
+ ["bandwidth", "SOAP::SOAPInt", [0, 1]],
2142
+ ["transfer", "Virtuozzo::SOAP::Types::Environment::TransferType", [0, 1]],
2143
+ ["ipaddress", nil, [0, 1]],
2144
+ ["flags", "SOAP::SOAPInt", [0, 1]]
2145
+ ]
2146
+ )
2147
+
2148
+ LiteralRegistry.register(
2149
+ :class => Virtuozzo::SOAP::Types::Environment::Sys_infoType,
2150
+ :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
2151
+ :schema_element => [
2152
+ ["load_avg", "Virtuozzo::SOAP::Types::Environment::Load_avgType"],
2153
+ ["processes", "Virtuozzo::SOAP::Types::Environment::ProcessesType"],
2154
+ ["cpu_load", "Virtuozzo::SOAP::Types::Environment::Cpu_loadType"],
2155
+ ["cpu_states", "Virtuozzo::SOAP::Types::Environment::Cpu_loadType"],
2156
+ ["users", "SOAP::SOAPInt"],
2157
+ ["uptime", "SOAP::SOAPLong"],
2158
+ ["memory", "Virtuozzo::SOAP::Types::Environment::Sys_infoType::Memory", [0, 1]],
2159
+ ["swap", "Virtuozzo::SOAP::Types::Environment::Sys_infoType::Swap", [0, 1]]
2160
+ ]
2161
+ )
2162
+
2163
+ LiteralRegistry.register(
2164
+ :class => Virtuozzo::SOAP::Types::Environment::Sys_infoType::Memory,
2165
+ :schema_name => XSD::QName.new(NsTypes, "memory"),
2166
+ :is_anonymous => true,
2167
+ :schema_qualified => true,
2168
+ :schema_element => [
2169
+ ["total", "SOAP::SOAPLong", [0, 1]],
2170
+ ["used", "SOAP::SOAPLong"]
2171
+ ]
2172
+ )
2173
+
2174
+ LiteralRegistry.register(
2175
+ :class => Virtuozzo::SOAP::Types::Environment::Sys_infoType::Swap,
2176
+ :schema_name => XSD::QName.new(NsTypes, "swap"),
2177
+ :is_anonymous => true,
2178
+ :schema_qualified => true,
2179
+ :schema_element => [
2180
+ ["total", "SOAP::SOAPLong", [0, 1]],
2181
+ ["used", "SOAP::SOAPLong"]
2182
+ ]
2183
+ )
2184
+
2185
+ LiteralRegistry.register(
2186
+ :class => Virtuozzo::SOAP::Types::Environment::Ps_infoType,
2187
+ :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
2188
+ :schema_element => [
2189
+ ["process", "Virtuozzo::SOAP::Types::Environment::Ps_infoType::C_Process[]", [1, nil]],
2190
+ ["param_id", "SOAP::SOAPString[]", [1, nil]],
2191
+ ["run", "SOAP::SOAPInt"],
2192
+ ["idle", "SOAP::SOAPInt"],
2193
+ ["zombie", "SOAP::SOAPInt"],
2194
+ ["sleep", "SOAP::SOAPInt"],
2195
+ ["uninterrupt", "SOAP::SOAPInt"],
2196
+ ["stopped", "SOAP::SOAPInt"],
2197
+ ["total", "SOAP::SOAPInt"]
2198
+ ]
2199
+ )
2200
+
2201
+ LiteralRegistry.register(
2202
+ :class => Virtuozzo::SOAP::Types::Environment::Ps_infoType::C_Process,
2203
+ :schema_name => XSD::QName.new(NsTypes, "process"),
2204
+ :is_anonymous => true,
2205
+ :schema_qualified => true,
2206
+ :schema_element => [
2207
+ ["pid", "SOAP::SOAPInt"],
2208
+ ["param", "SOAP::SOAPBase64[]", [0, nil]]
2209
+ ]
2210
+ )
2211
+
2212
+ LiteralRegistry.register(
2213
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType,
2214
+ :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
2215
+ :schema_element => [
2216
+ ["l1", "Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L1"],
2217
+ ["l2", "Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L2", [0, 1]],
2218
+ ["l3", "Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L3", [0, 1]]
2219
+ ]
2220
+ )
2221
+
2222
+ LiteralRegistry.register(
2223
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L1,
2224
+ :schema_name => XSD::QName.new(NsTypes, "l1"),
2225
+ :is_anonymous => true,
2226
+ :schema_qualified => true,
2227
+ :schema_element => [
2228
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2229
+ ["min", "SOAP::SOAPLong", [0, 1]],
2230
+ ["max", "SOAP::SOAPLong", [0, 1]],
2231
+ ["cur", "SOAP::SOAPLong", [0, 1]]
2232
+ ]
2233
+ )
2234
+
2235
+ LiteralRegistry.register(
2236
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L2,
2237
+ :schema_name => XSD::QName.new(NsTypes, "l2"),
2238
+ :is_anonymous => true,
2239
+ :schema_qualified => true,
2240
+ :schema_element => [
2241
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2242
+ ["min", "SOAP::SOAPLong", [0, 1]],
2243
+ ["max", "SOAP::SOAPLong", [0, 1]],
2244
+ ["cur", "SOAP::SOAPLong", [0, 1]]
2245
+ ]
2246
+ )
2247
+
2248
+ LiteralRegistry.register(
2249
+ :class => Virtuozzo::SOAP::Types::Environment::Load_avg_statsType::L3,
2250
+ :schema_name => XSD::QName.new(NsTypes, "l3"),
2251
+ :is_anonymous => true,
2252
+ :schema_qualified => true,
2253
+ :schema_element => [
2254
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2255
+ ["min", "SOAP::SOAPLong", [0, 1]],
2256
+ ["max", "SOAP::SOAPLong", [0, 1]],
2257
+ ["cur", "SOAP::SOAPLong", [0, 1]]
2258
+ ]
2259
+ )
2260
+
2261
+ LiteralRegistry.register(
2262
+ :class => Virtuozzo::SOAP::Types::Environment::Alert_dataType,
2263
+ :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
2264
+ :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
2265
+ :schema_element => [
2266
+ ["type", "SOAP::SOAPInt"]
2267
+ ]
2268
+ )
2269
+
2270
+ LiteralRegistry.register(
2271
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_addressType,
2272
+ :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
2273
+ :schema_element => [
2274
+ ["ip", nil],
2275
+ ["netmask", nil, [0, 1]]
2276
+ ]
2277
+ )
2278
+
2279
+ LiteralRegistry.register(
2280
+ :class => Virtuozzo::SOAP::Types::Environment::Env_resourceType,
2281
+ :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
2282
+ :schema_element => [
2283
+ ["eid", nil],
2284
+ ["ip_pool", "Virtuozzo::SOAP::Types::Environment::Ip_poolType", [0, 1]]
2285
+ ]
2286
+ )
2287
+
2288
+ LiteralRegistry.register(
2289
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_poolType,
2290
+ :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
2291
+ :schema_element => [ :choice,
2292
+ ["ip_range", "Virtuozzo::SOAP::Types::Environment::Ip_poolType::Ip_range[]"],
2293
+ ["ip", "[]"]
2294
+ ]
2295
+ )
2296
+
2297
+ LiteralRegistry.register(
2298
+ :class => Virtuozzo::SOAP::Types::Environment::Ip_poolType::Ip_range,
2299
+ :schema_name => XSD::QName.new(NsTypes, "ip_range"),
2300
+ :is_anonymous => true,
2301
+ :schema_qualified => true,
2302
+ :schema_element => [
2303
+ ["start_ip", nil],
2304
+ ["end_ip", nil]
2305
+ ]
2306
+ )
2307
+
2308
+ LiteralRegistry.register(
2309
+ :class => Virtuozzo::SOAP::Types::Environment::UsageType,
2310
+ :schema_type => XSD::QName.new(NsTypes, "usageType"),
2311
+ :schema_element => [
2312
+ ["total", "SOAP::SOAPLong", [0, 1]],
2313
+ ["used", "SOAP::SOAPLong", [0, 1]],
2314
+ ["free", "SOAP::SOAPLong", [0, 1]]
2315
+ ]
2316
+ )
2317
+
2318
+ LiteralRegistry.register(
2319
+ :class => Virtuozzo::SOAP::Types::Environment::Root_credentialType,
2320
+ :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
2321
+ :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
2322
+ :schema_element => [
2323
+ ["id", "SOAP::SOAPString"],
2324
+ ["policy", "SOAP::SOAPInt", [0, 1]],
2325
+ ["description", "SOAP::SOAPBase64", [0, 1]],
2326
+ ["cred", "Virtuozzo::SOAP::Types::Environment::CredentialType[]", [0, nil]],
2327
+ ["objects", "Virtuozzo::SOAP::Types::Environment::Root_credentialType::Objects", [0, 1]]
2328
+ ]
2329
+ )
2330
+
2331
+ LiteralRegistry.register(
2332
+ :class => Virtuozzo::SOAP::Types::Environment::Root_credentialType::Objects,
2333
+ :schema_name => XSD::QName.new(NsTypes, "objects"),
2334
+ :is_anonymous => true,
2335
+ :schema_qualified => true,
2336
+ :schema_element => [
2337
+ ["eid", "SOAP::SOAPString[]", [0, nil]]
2338
+ ]
2339
+ )
2340
+
2341
+ LiteralRegistry.register(
2342
+ :class => Virtuozzo::SOAP::Types::Environment::CredentialType,
2343
+ :schema_type => XSD::QName.new(NsTypes, "credentialType"),
2344
+ :schema_element => [
2345
+ ["id", "SOAP::SOAPString"],
2346
+ ["policy", "SOAP::SOAPInt", [0, 1]],
2347
+ ["description", "SOAP::SOAPBase64", [0, 1]],
2348
+ ["cred", "Virtuozzo::SOAP::Types::Environment::CredentialType[]", [0, nil]]
2349
+ ]
2350
+ )
2351
+
2352
+ LiteralRegistry.register(
2353
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType,
2354
+ :schema_type => XSD::QName.new(NsTypes, "tokenType"),
2355
+ :schema_element => [
2356
+ ["user", nil],
2357
+ ["groups", "Virtuozzo::SOAP::Types::Environment::TokenType::Groups", [0, 1]],
2358
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Environment::TokenType::Deny_only_sids", [0, 1]],
2359
+ ["privileges", "Virtuozzo::SOAP::Types::Environment::TokenType::Privileges", [0, 1]],
2360
+ ["source", "Virtuozzo::SOAP::Types::Environment::TokenType::Source", [0, 1]]
2361
+ ]
2362
+ )
2363
+
2364
+ LiteralRegistry.register(
2365
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Groups,
2366
+ :schema_name => XSD::QName.new(NsTypes, "groups"),
2367
+ :is_anonymous => true,
2368
+ :schema_qualified => true,
2369
+ :schema_element => [
2370
+ ["sid", "[]", [1, nil]]
2371
+ ]
2372
+ )
2373
+
2374
+ LiteralRegistry.register(
2375
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Deny_only_sids,
2376
+ :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
2377
+ :is_anonymous => true,
2378
+ :schema_qualified => true,
2379
+ :schema_element => [
2380
+ ["sid", "[]", [0, nil]]
2381
+ ]
2382
+ )
2383
+
2384
+ LiteralRegistry.register(
2385
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Privileges,
2386
+ :schema_name => XSD::QName.new(NsTypes, "privileges"),
2387
+ :is_anonymous => true,
2388
+ :schema_qualified => true,
2389
+ :schema_element => [
2390
+ ["privilege", "[]", [0, nil]]
2391
+ ]
2392
+ )
2393
+
2394
+ LiteralRegistry.register(
2395
+ :class => Virtuozzo::SOAP::Types::Environment::TokenType::Source,
2396
+ :schema_name => XSD::QName.new(NsTypes, "source"),
2397
+ :is_anonymous => true,
2398
+ :schema_qualified => true,
2399
+ :schema_element => [
2400
+ ["name", "SOAP::SOAPString"],
2401
+ ["id", nil]
2402
+ ]
2403
+ )
2404
+
2405
+ LiteralRegistry.register(
2406
+ :class => Virtuozzo::SOAP::Types::Environment::Connectivity_infoType,
2407
+ :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
2408
+ :schema_element => [
2409
+ ["protocol", "SOAP::SOAPString", [0, 1]],
2410
+ ["address", "SOAP::SOAPString"],
2411
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]]
2412
+ ]
2413
+ )
2414
+
2415
+ LiteralRegistry.register(
2416
+ :class => Virtuozzo::SOAP::Types::Environment::Auth_nameType,
2417
+ :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
2418
+ :schema_element => [
2419
+ ["name", "SOAP::SOAPBase64", [0, 1]],
2420
+ ["domain", "SOAP::SOAPBase64", [0, 1]],
2421
+ ["realm", nil]
2422
+ ]
2423
+ )
2424
+
2425
+ LiteralRegistry.register(
2426
+ :class => Virtuozzo::SOAP::Types::Environment::Connection_infoType,
2427
+ :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
2428
+ :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
2429
+ :schema_element => [
2430
+ ["protocol", "SOAP::SOAPString", [0, 1]],
2431
+ ["address", "SOAP::SOAPString"],
2432
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
2433
+ ["login", "Virtuozzo::SOAP::Types::Environment::Auth_nameType", [0, 1]],
2434
+ ["password", "SOAP::SOAPBase64", [0, 1]]
2435
+ ]
2436
+ )
2437
+
2438
+ LiteralRegistry.register(
2439
+ :class => Virtuozzo::SOAP::Types::Environment::Eid_listType,
2440
+ :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
2441
+ :schema_element => [
2442
+ ["eid", "[]", [0, nil]]
2443
+ ]
2444
+ )
2445
+
2446
+ LiteralRegistry.register(
2447
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_infoType,
2448
+ :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
2449
+ :schema_element => [
2450
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2451
+ ]
2452
+ )
2453
+
2454
+ LiteralRegistry.register(
2455
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType,
2456
+ :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
2457
+ :schema_element => [
2458
+ ["default_sample_id", nil, [0, 1]]
2459
+ ]
2460
+ )
2461
+
2462
+ LiteralRegistry.register(
2463
+ :class => Virtuozzo::SOAP::Types::Environment::UserType,
2464
+ :schema_type => XSD::QName.new(NsTypes, "userType"),
2465
+ :schema_element => [
2466
+ ["initial_group", "Virtuozzo::SOAP::Types::Environment::UserType::Initial_group", [0, 1]],
2467
+ ["group", "Virtuozzo::SOAP::Types::Environment::UserType::Group[]", [0, nil]],
2468
+ ["uid", "SOAP::SOAPInt", [0, 1]],
2469
+ ["shell", "SOAP::SOAPString", [0, 1]],
2470
+ ["password", "SOAP::SOAPBase64", [0, 1]],
2471
+ ["home_dir", "SOAP::SOAPString", [0, 1]],
2472
+ ["name", "SOAP::SOAPString", [0, 1]],
2473
+ ["comment", "SOAP::SOAPString", [0, 1]]
2474
+ ]
2475
+ )
2476
+
2477
+ LiteralRegistry.register(
2478
+ :class => Virtuozzo::SOAP::Types::Environment::UserType::Initial_group,
2479
+ :schema_name => XSD::QName.new(NsTypes, "initial_group"),
2480
+ :is_anonymous => true,
2481
+ :schema_qualified => true,
2482
+ :schema_element => [
2483
+ ["name", "SOAP::SOAPString", [0, 1]],
2484
+ ["gid", "SOAP::SOAPInt", [0, 1]]
2485
+ ]
2486
+ )
2487
+
2488
+ LiteralRegistry.register(
2489
+ :class => Virtuozzo::SOAP::Types::Environment::UserType::Group,
2490
+ :schema_name => XSD::QName.new(NsTypes, "group"),
2491
+ :is_anonymous => true,
2492
+ :schema_qualified => true,
2493
+ :schema_element => [
2494
+ ["name", "SOAP::SOAPString", [0, 1]],
2495
+ ["gid", "SOAP::SOAPInt", [0, 1]]
2496
+ ]
2497
+ )
2498
+
2499
+ LiteralRegistry.register(
2500
+ :class => Virtuozzo::SOAP::Types::Environment::GroupType,
2501
+ :schema_type => XSD::QName.new(NsTypes, "groupType"),
2502
+ :schema_element => [
2503
+ ["user", "Virtuozzo::SOAP::Types::Environment::GroupType::User[]", [0, nil]],
2504
+ ["member_group", "Virtuozzo::SOAP::Types::Environment::GroupType::Member_group[]", [0, nil]],
2505
+ ["name", "SOAP::SOAPString", [0, 1]],
2506
+ ["gid", "SOAP::SOAPInt", [0, 1]]
2507
+ ]
2508
+ )
2509
+
2510
+ LiteralRegistry.register(
2511
+ :class => Virtuozzo::SOAP::Types::Environment::GroupType::User,
2512
+ :schema_name => XSD::QName.new(NsTypes, "user"),
2513
+ :is_anonymous => true,
2514
+ :schema_qualified => true,
2515
+ :schema_element => [
2516
+ ["name", "SOAP::SOAPString"]
2517
+ ]
2518
+ )
2519
+
2520
+ LiteralRegistry.register(
2521
+ :class => Virtuozzo::SOAP::Types::Environment::GroupType::Member_group,
2522
+ :schema_name => XSD::QName.new(NsTypes, "member_group"),
2523
+ :is_anonymous => true,
2524
+ :schema_qualified => true,
2525
+ :schema_element => [
2526
+ ["name", "SOAP::SOAPString", [0, 1]]
2527
+ ]
2528
+ )
2529
+
2530
+ LiteralRegistry.register(
2531
+ :class => Virtuozzo::SOAP::Types::Environment::PackageType,
2532
+ :schema_type => XSD::QName.new(NsTypes, "packageType"),
2533
+ :schema_element => [
2534
+ ["name", "SOAP::SOAPString"],
2535
+ ["summary", "SOAP::SOAPString", [0, 1]],
2536
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
2537
+ ["description", "SOAP::SOAPString", [0, 1]],
2538
+ ["arch", "SOAP::SOAPString", [0, 1]],
2539
+ ["version", "SOAP::SOAPString", [0, 1]]
2540
+ ]
2541
+ )
2542
+
2543
+ LiteralRegistry.register(
2544
+ :class => Virtuozzo::SOAP::Types::Environment::Event_dataType,
2545
+ :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
2546
+ :schema_element => []
2547
+ )
2548
+
2549
+ LiteralRegistry.register(
2550
+ :class => Virtuozzo::SOAP::Types::Environment::Named_listType,
2551
+ :schema_type => XSD::QName.new(NsTypes, "named_listType"),
2552
+ :schema_element => [
2553
+ ["name", "SOAP::SOAPString"],
2554
+ ["value", "SOAP::SOAPBase64[]", [0, nil]]
2555
+ ]
2556
+ )
2557
+
2558
+ LiteralRegistry.register(
2559
+ :class => Virtuozzo::SOAP::Types::Environment::ModType,
2560
+ :schema_type => XSD::QName.new(NsTypes, "modType"),
2561
+ :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
2562
+ :schema_element => [
2563
+ ["name", "SOAP::SOAPString"],
2564
+ ["value", "SOAP::SOAPBase64[]", [0, nil]],
2565
+ ["op", "SOAP::SOAPInt", [0, 1]]
2566
+ ]
2567
+ )
2568
+
2569
+ LiteralRegistry.register(
2570
+ :class => Virtuozzo::SOAP::Types::Environment::RealmType,
2571
+ :schema_type => XSD::QName.new(NsTypes, "realmType"),
2572
+ :schema_element => [
2573
+ ["id", nil, [0, 1]],
2574
+ ["type", "SOAP::SOAPInt"],
2575
+ ["name", "SOAP::SOAPString"],
2576
+ ["builtin", nil, [0, 1]]
2577
+ ]
2578
+ )
2579
+
2580
+ LiteralRegistry.register(
2581
+ :class => Virtuozzo::SOAP::Types::Environment::EventType,
2582
+ :schema_type => XSD::QName.new(NsTypes, "eventType"),
2583
+ :schema_element => [
2584
+ ["eid", nil],
2585
+ ["time", nil],
2586
+ ["source", "SOAP::SOAPString"],
2587
+ ["category", "SOAP::SOAPString"],
2588
+ ["sid", nil, [0, 1]],
2589
+ ["count", "SOAP::SOAPInt"],
2590
+ ["id", nil],
2591
+ ["info", "Virtuozzo::SOAP::Types::Environment::InfoType"],
2592
+ ["data", "Virtuozzo::SOAP::Types::Environment::EventType::C_Data", [0, 1]]
2593
+ ]
2594
+ )
2595
+
2596
+ LiteralRegistry.register(
2597
+ :class => Virtuozzo::SOAP::Types::Environment::EventType::C_Data,
2598
+ :schema_name => XSD::QName.new(NsTypes, "data"),
2599
+ :is_anonymous => true,
2600
+ :schema_qualified => true,
2601
+ :schema_element => [
2602
+ ["event_data", "Virtuozzo::SOAP::Types::Environment::Event_dataType"]
2603
+ ]
2604
+ )
2605
+
2606
+ LiteralRegistry.register(
2607
+ :class => Virtuozzo::SOAP::Types::Environment::InfoType,
2608
+ :schema_type => XSD::QName.new(NsTypes, "infoType"),
2609
+ :schema_element => [
2610
+ ["message", "SOAP::SOAPBase64"],
2611
+ ["translate", nil, [0, 1]],
2612
+ ["parameter", "Virtuozzo::SOAP::Types::Environment::InfoType[]", [0, nil]],
2613
+ ["name", "SOAP::SOAPString"]
2614
+ ]
2615
+ )
2616
+
2617
+ LiteralRegistry.register(
2618
+ :class => Virtuozzo::SOAP::Types::Environment::AceType,
2619
+ :schema_type => XSD::QName.new(NsTypes, "aceType"),
2620
+ :schema_element => [
2621
+ ["type", "SOAP::SOAPInt"],
2622
+ ["sid", nil],
2623
+ ["rights", "SOAP::SOAPBase64"]
2624
+ ]
2625
+ )
2626
+
2627
+ LiteralRegistry.register(
2628
+ :class => Virtuozzo::SOAP::Types::Environment::Security_descriptorType,
2629
+ :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
2630
+ :schema_element => [
2631
+ ["owner", nil],
2632
+ ["group", nil],
2633
+ ["dacl", "Virtuozzo::SOAP::Types::Environment::Security_descriptorType::Dacl", [0, 1]]
2634
+ ]
2635
+ )
2636
+
2637
+ LiteralRegistry.register(
2638
+ :class => Virtuozzo::SOAP::Types::Environment::Security_descriptorType::Dacl,
2639
+ :schema_name => XSD::QName.new(NsTypes, "dacl"),
2640
+ :is_anonymous => true,
2641
+ :schema_qualified => true,
2642
+ :schema_element => [
2643
+ ["ace", "Virtuozzo::SOAP::Types::Environment::AceType[]", [0, nil]]
2644
+ ]
2645
+ )
2646
+
2647
+ LiteralRegistry.register(
2648
+ :class => Virtuozzo::SOAP::Types::Environment::Env_security_objectType,
2649
+ :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
2650
+ :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
2651
+ :schema_element => [
2652
+ ["eid", nil]
2653
+ ]
2654
+ )
2655
+
2656
+ LiteralRegistry.register(
2657
+ :class => Virtuozzo::SOAP::Types::Environment::Net_deviceType,
2658
+ :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
2659
+ :schema_element => [
2660
+ ["id", "SOAP::SOAPString", [0, 1]],
2661
+ ["ip_address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
2662
+ ["dhcp", nil, [0, 1]],
2663
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
2664
+ ["status", "Virtuozzo::SOAP::Types::Environment::Net_deviceType::Status", [0, 1]]
2665
+ ]
2666
+ )
2667
+
2668
+ LiteralRegistry.register(
2669
+ :class => Virtuozzo::SOAP::Types::Environment::Net_deviceType::Status,
2670
+ :schema_name => XSD::QName.new(NsTypes, "status"),
2671
+ :is_anonymous => true,
2672
+ :schema_qualified => true,
2673
+ :schema_element => [ :choice,
2674
+ ["up", nil],
2675
+ ["down", nil]
2676
+ ]
2677
+ )
2678
+
2679
+ LiteralRegistry.register(
2680
+ :class => Virtuozzo::SOAP::Types::Environment::Voc_parameterType,
2681
+ :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
2682
+ :schema_element => [
2683
+ ["id", "SOAP::SOAPString"],
2684
+ ["type", "SOAP::SOAPString", [0, 1]],
2685
+ ["min", "SOAP::SOAPString", [0, 1]],
2686
+ ["max", "SOAP::SOAPString", [0, 1]],
2687
+ ["long", "SOAP::SOAPString", [0, 1]],
2688
+ ["short", "SOAP::SOAPString", [0, 1]],
2689
+ ["category", "SOAP::SOAPString[]", [0, nil]],
2690
+ ["complex", "SOAP::SOAPString", [0, 1]],
2691
+ ["default", "SOAP::SOAPString", [0, 1]],
2692
+ ["measure", "SOAP::SOAPString", [0, 1]],
2693
+ ["data", nil, [0, 1]],
2694
+ ["name", nil, [0, 1]]
2695
+ ]
2696
+ )
2697
+
2698
+ LiteralRegistry.register(
2699
+ :class => Virtuozzo::SOAP::Types::Environment::VocabularyType,
2700
+ :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
2701
+ :schema_element => [
2702
+ ["name", "SOAP::SOAPString"],
2703
+ ["parameter", "Virtuozzo::SOAP::Types::Environment::Voc_parameterType[]", [0, nil]],
2704
+ ["category", "Virtuozzo::SOAP::Types::Environment::Voc_parameterType[]", [0, nil]]
2705
+ ]
2706
+ )
2707
+
2708
+ LiteralRegistry.register(
2709
+ :class => Virtuozzo::SOAP::Types::Environment::Net_nicType,
2710
+ :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
2711
+ :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
2712
+ :schema_element => [
2713
+ ["id", "SOAP::SOAPString", [0, 1]],
2714
+ ["ip_address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
2715
+ ["dhcp", nil, [0, 1]],
2716
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
2717
+ ["status", "Virtuozzo::SOAP::Types::Environment::Net_nicType::Status", [0, 1]],
2718
+ ["mac_address", "SOAP::SOAPString", [0, 1]]
2719
+ ]
2720
+ )
2721
+
2722
+ LiteralRegistry.register(
2723
+ :class => Virtuozzo::SOAP::Types::Environment::Net_nicType::Status,
2724
+ :schema_name => XSD::QName.new(NsTypes, "status"),
2725
+ :is_anonymous => true,
2726
+ :schema_qualified => true,
2727
+ :schema_element => [ :choice,
2728
+ ["up", nil],
2729
+ ["down", nil]
2730
+ ]
2731
+ )
2732
+
2733
+ LiteralRegistry.register(
2734
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_statType,
2735
+ :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
2736
+ :schema_element => [
2737
+ ["cur", "SOAP::SOAPAnySimpleType"],
2738
+ ["avg", "SOAP::SOAPAnySimpleType"],
2739
+ ["max", "SOAP::SOAPAnySimpleType"],
2740
+ ["min", "SOAP::SOAPAnySimpleType"]
2741
+ ]
2742
+ )
2743
+
2744
+ LiteralRegistry.register(
2745
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType,
2746
+ :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
2747
+ :schema_element => [
2748
+ ["eid", nil],
2749
+ ["v_class", ["Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2750
+ ["interval", "Virtuozzo::SOAP::Types::Environment::IntervalType"]
2751
+ ]
2752
+ )
2753
+
2754
+ LiteralRegistry.register(
2755
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance::Counter,
2756
+ :schema_name => XSD::QName.new(NsTypes, "counter"),
2757
+ :is_anonymous => true,
2758
+ :schema_qualified => true,
2759
+ :schema_element => [
2760
+ ["name", "SOAP::SOAPString"],
2761
+ ["value", "Virtuozzo::SOAP::Types::Environment::Perf_statType"]
2762
+ ]
2763
+ )
2764
+
2765
+ LiteralRegistry.register(
2766
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance,
2767
+ :schema_name => XSD::QName.new(NsTypes, "instance"),
2768
+ :is_anonymous => true,
2769
+ :schema_qualified => true,
2770
+ :schema_element => [
2771
+ ["name", "SOAP::SOAPString", [0, 1]],
2772
+ ["counter", "Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2773
+ ]
2774
+ )
2775
+
2776
+ LiteralRegistry.register(
2777
+ :class => Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class,
2778
+ :schema_name => XSD::QName.new(NsTypes, "class"),
2779
+ :is_anonymous => true,
2780
+ :schema_qualified => true,
2781
+ :schema_element => [
2782
+ ["name", "SOAP::SOAPString"],
2783
+ ["instance", "Virtuozzo::SOAP::Types::Environment::Perf_dataType::C_Class::Instance[]", [1, nil]]
2784
+ ]
2785
+ )
2786
+
2787
+ LiteralRegistry.register(
2788
+ :class => Virtuozzo::SOAP::Types::Environment::Log_options_baseType,
2789
+ :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
2790
+ :schema_element => []
2791
+ )
2792
+
2793
+ LiteralRegistry.register(
2794
+ :class => Virtuozzo::SOAP::Types::Environment::Log_optionsType,
2795
+ :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
2796
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2797
+ :schema_element => []
2798
+ )
2799
+
2800
+ LiteralRegistry.register(
2801
+ :class => Virtuozzo::SOAP::Types::Environment::Packet_headerType,
2802
+ :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
2803
+ :schema_element => [
2804
+ ["auth", "Virtuozzo::SOAP::Types::Environment::AuthType", [0, 1]],
2805
+ ["cookie", "SOAP::SOAPString", [0, 1]],
2806
+ ["target", "SOAP::SOAPString[]", [0, nil]],
2807
+ ["origin", "SOAP::SOAPString", [0, 1]],
2808
+ ["src", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
2809
+ ["dst", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
2810
+ ["session", "SOAP::SOAPString", [0, 1]]
2811
+ ],
2812
+ :schema_attribute => {
2813
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
2814
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
2815
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
2816
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
2817
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
2818
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
2819
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
2820
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
2821
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
2822
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
2823
+ }
2824
+ )
2825
+
2826
+ LiteralRegistry.register(
2827
+ :class => Virtuozzo::SOAP::Types::Environment::OperatorType,
2828
+ :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
2829
+ :schema_element => [ :choice,
2830
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"]
2831
+ ]
2832
+ )
2833
+
2834
+ LiteralRegistry.register(
2835
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType,
2836
+ :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
2837
+ :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
2838
+ :schema_element => [ :choice,
2839
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"],
2840
+ ["ok", "Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Ok[]"],
2841
+ ["error", "Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Error[]"]
2842
+ ]
2843
+ )
2844
+
2845
+ LiteralRegistry.register(
2846
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Ok,
2847
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2848
+ :is_anonymous => true,
2849
+ :schema_qualified => true,
2850
+ :schema_element => []
2851
+ )
2852
+
2853
+ LiteralRegistry.register(
2854
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Error,
2855
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2856
+ :is_anonymous => true,
2857
+ :schema_qualified => true,
2858
+ :schema_element => [
2859
+ ["code", "SOAP::SOAPInt"],
2860
+ ["message", "SOAP::SOAPString", [0, 1]]
2861
+ ]
2862
+ )
2863
+
2864
+ LiteralRegistry.register(
2865
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType,
2866
+ :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
2867
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
2868
+ :schema_element => [ :choice,
2869
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"],
2870
+ ["ok", "Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Ok[]"],
2871
+ ["error", "Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Error[]"],
2872
+ [ :choice,
2873
+ ["start_monitor", "Virtuozzo::SOAP::Types::Environment::Start_monitorType"],
2874
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Environment::Stop_monitorType"],
2875
+ ["set_period", "Virtuozzo::SOAP::Types::Environment::Set_periodType", [0, 1]],
2876
+ ["report", nil, [0, 1]]
2877
+ ]
2878
+ ]
2879
+ )
2880
+
2881
+ LiteralRegistry.register(
2882
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Ok,
2883
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2884
+ :is_anonymous => true,
2885
+ :schema_qualified => true,
2886
+ :schema_element => []
2887
+ )
2888
+
2889
+ LiteralRegistry.register(
2890
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Error,
2891
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2892
+ :is_anonymous => true,
2893
+ :schema_qualified => true,
2894
+ :schema_element => [
2895
+ ["code", "SOAP::SOAPInt"],
2896
+ ["message", "SOAP::SOAPString", [0, 1]]
2897
+ ]
2898
+ )
2899
+
2900
+ LiteralRegistry.register(
2901
+ :class => Virtuozzo::SOAP::Types::Environment::Set_periodType,
2902
+ :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
2903
+ :schema_element => [
2904
+ ["collect", "SOAP::SOAPInt"],
2905
+ ["log", "SOAP::SOAPInt"],
2906
+ ["report", "SOAP::SOAPInt"]
2907
+ ]
2908
+ )
2909
+
2910
+ LiteralRegistry.register(
2911
+ :class => Virtuozzo::SOAP::Types::Environment::Start_monitorType,
2912
+ :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
2913
+ :schema_element => [
2914
+ ["period", "SOAP::SOAPInt"],
2915
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2916
+ ]
2917
+ )
2918
+
2919
+ LiteralRegistry.register(
2920
+ :class => Virtuozzo::SOAP::Types::Environment::Stop_monitorType,
2921
+ :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
2922
+ :schema_element => [
2923
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2924
+ ]
2925
+ )
2926
+
2927
+ LiteralRegistry.register(
2928
+ :class => Virtuozzo::SOAP::Types::Environment::AuthType,
2929
+ :schema_type => XSD::QName.new(NsProtocol, "authType"),
2930
+ :schema_element => [
2931
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2932
+ ]
2933
+ )
2934
+
2935
+ LiteralRegistry.register(
2936
+ :class => Virtuozzo::SOAP::Types::Environment::Event_configurationType,
2937
+ :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
2938
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
2939
+ :schema_element => [
2940
+ ["period", "SOAP::SOAPInt"]
2941
+ ]
2942
+ )
2943
+
2944
+ LiteralRegistry.register(
2945
+ :class => Virtuozzo::SOAP::Types::Environment::Periodic_configurationType,
2946
+ :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
2947
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
2948
+ :schema_element => [
2949
+ ["log_priority", "SOAP::SOAPInt"],
2950
+ ["monitor_priority", "SOAP::SOAPInt"],
2951
+ ["min_monitor_period", "SOAP::SOAPInt"],
2952
+ ["min_monitor_period_root", "SOAP::SOAPInt"]
2953
+ ]
2954
+ )
2955
+
2956
+ LiteralRegistry.register(
2957
+ :class => Virtuozzo::SOAP::Types::Environment::RouteType,
2958
+ :schema_type => XSD::QName.new(NsProtocol, "routeType"),
2959
+ :schema_element => [
2960
+ ["director", "SOAP::SOAPString", [0, 1]],
2961
+ ["host", "SOAP::SOAPString", [0, 1]],
2962
+ ["index", "SOAP::SOAPString", [0, 1]],
2963
+ ["target", "SOAP::SOAPString", [0, 1]]
2964
+ ]
2965
+ )
2966
+
2967
+ LiteralRegistry.register(
2968
+ :class => Virtuozzo::SOAP::Types::Environment::DataType,
2969
+ :schema_type => XSD::QName.new(NsProtocol, "dataType"),
2970
+ :schema_element => [
2971
+ ["operator", "Virtuozzo::SOAP::Types::Environment::OperatorType[]"]
2972
+ ]
2973
+ )
2974
+
2975
+ LiteralRegistry.register(
2976
+ :class => Virtuozzo::SOAP::Types::Environment::ConfigurationType,
2977
+ :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
2978
+ :schema_element => []
2979
+ )
2980
+
2981
+ LiteralRegistry.register(
2982
+ :class => Virtuozzo::SOAP::Types::Environment::Virtuozzo_configType,
2983
+ :schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
2984
+ :schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
2985
+ :schema_element => [
2986
+ ["body", "SOAP::SOAPBase64"]
2987
+ ]
2988
+ )
2989
+
2990
+ LiteralRegistry.register(
2991
+ :class => Virtuozzo::SOAP::Types::Environment::Log_optionsType_,
2992
+ :schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
2993
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2994
+ :schema_element => [
2995
+ ["type", "SOAP::SOAPInt", [0, 1]]
2996
+ ]
2997
+ )
2998
+
2999
+ LiteralRegistry.register(
3000
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_,
3001
+ :schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
3002
+ :schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
3003
+ :schema_element => [
3004
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")], [0, 1]],
3005
+ ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
3006
+ ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
3007
+ ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
3008
+ ["address", ["Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
3009
+ ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
3010
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
3011
+ ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
3012
+ ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
3013
+ ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
3014
+ ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
3015
+ ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
3016
+ ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
3017
+ ["qos", ["Virtuozzo::SOAP::Types::Environment::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
3018
+ ["veid", nil, [0, 1]],
3019
+ ["ve_root", "SOAP::SOAPString", [0, 1]],
3020
+ ["ve_private", "SOAP::SOAPString", [0, 1]],
3021
+ ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
3022
+ ["template", "Virtuozzo::SOAP::Types::Environment::TemplateType[]", [0, nil]],
3023
+ ["disabled", "SOAP::SOAPBoolean", [0, 1]],
3024
+ ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
3025
+ ["os_template", "Virtuozzo::SOAP::Types::Environment::TemplateType", [0, 1]],
3026
+ ["distribution", "Virtuozzo::SOAP::Types::Environment::TemplateType", [0, 1]],
3027
+ ["capability", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Capability[]", [0, nil]],
3028
+ ["iptables", "SOAP::SOAPString[]", [0, nil]],
3029
+ ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
3030
+ ["class_id", "SOAP::SOAPString", [0, 1]],
3031
+ ["ve_type", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Ve_type", [0, 1]],
3032
+ ["offline_service", "SOAP::SOAPString[]", [0, nil]],
3033
+ ["wins_server", "SOAP::SOAPString[]", [0, nil]],
3034
+ ["net_device", "Virtuozzo::SOAP::Types::Environment::Net_vethType[]", [0, nil]],
3035
+ ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
3036
+ ["ts_mode", "SOAP::SOAPInt", [0, 1]],
3037
+ ["uuid", "SOAP::SOAPString", [0, 1]],
3038
+ ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
3039
+ ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
3040
+ ["interface_rate", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Interface_rate[]", [0, nil]],
3041
+ ["slm_mode", "SOAP::SOAPString", [0, 1]],
3042
+ ["origin_sample", "SOAP::SOAPString", [0, 1]]
3043
+ ]
3044
+ )
3045
+
3046
+ LiteralRegistry.register(
3047
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Capability,
3048
+ :schema_name => XSD::QName.new(NsVzatypes, "capability"),
3049
+ :is_anonymous => true,
3050
+ :schema_qualified => true,
3051
+ :schema_element => [
3052
+ ["id", "SOAP::SOAPString"],
3053
+ ["value", "SOAP::SOAPBoolean"]
3054
+ ]
3055
+ )
3056
+
3057
+ LiteralRegistry.register(
3058
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Ve_type,
3059
+ :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
3060
+ :is_anonymous => true,
3061
+ :schema_qualified => true,
3062
+ :schema_element => [
3063
+ ["veid", nil, [0, 1]],
3064
+ ["type", "SOAP::SOAPInt"]
3065
+ ]
3066
+ )
3067
+
3068
+ LiteralRegistry.register(
3069
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Interface_rate,
3070
+ :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
3071
+ :is_anonymous => true,
3072
+ :schema_qualified => true,
3073
+ :schema_element => [
3074
+ ["class_id", "SOAP::SOAPString"],
3075
+ ["rate", "SOAP::SOAPLong"]
3076
+ ]
3077
+ )
3078
+
3079
+ LiteralRegistry.register(
3080
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType_,
3081
+ :schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
3082
+ :schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
3083
+ :schema_element => [
3084
+ ["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
3085
+ ["parameter", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType_::Parameter[]", [0, nil]],
3086
+ ["service", "Virtuozzo::SOAP::Types::Environment::Redirect_serviceType[]", [0, nil]],
3087
+ ["qos", "Virtuozzo::SOAP::Types::Environment::QosType[]", [0, nil]]
3088
+ ]
3089
+ )
3090
+
3091
+ LiteralRegistry.register(
3092
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType_::Parameter,
3093
+ :schema_name => XSD::QName.new(NsVzatypes, "parameter"),
3094
+ :is_anonymous => true,
3095
+ :schema_qualified => true,
3096
+ :schema_element => [
3097
+ ["id", "SOAP::SOAPString"],
3098
+ ["value", "SOAP::SOAPString"]
3099
+ ]
3100
+ )
3101
+
3102
+ LiteralRegistry.register(
3103
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_infoType_,
3104
+ :schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
3105
+ :schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
3106
+ :schema_element => [
3107
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]],
3108
+ ["sve_eid", nil],
3109
+ ["version", "SOAP::SOAPString"],
3110
+ ["release", "SOAP::SOAPString"]
3111
+ ]
3112
+ )
3113
+
3114
+ LiteralRegistry.register(
3115
+ :class => Virtuozzo::SOAP::Types::Environment::Redirect_serviceType,
3116
+ :schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
3117
+ :schema_element => [
3118
+ ["id", "SOAP::SOAPString"],
3119
+ ["port", "SOAP::SOAPInt"],
3120
+ ["dst", nil],
3121
+ ["default", nil, [0, 1]]
3122
+ ]
3123
+ )
3124
+
3125
+ LiteralRegistry.register(
3126
+ :class => Virtuozzo::SOAP::Types::Environment::TemplateType,
3127
+ :schema_type => XSD::QName.new(NsVzatypes, "templateType"),
3128
+ :schema_element => [
3129
+ ["name", "SOAP::SOAPString"],
3130
+ ["version", "SOAP::SOAPString", [0, 1]]
3131
+ ]
3132
+ )
3133
+
3134
+ LiteralRegistry.register(
3135
+ :class => Virtuozzo::SOAP::Types::Environment::Package_std_vztemplateType,
3136
+ :schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
3137
+ :schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
3138
+ :schema_element => [
3139
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
3140
+ ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
3141
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
3142
+ ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
3143
+ ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
3144
+ ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
3145
+ ["technology", "SOAP::SOAPString[]", [0, nil]],
3146
+ ["os_template", "SOAP::SOAPBoolean"],
3147
+ ["cached", "SOAP::SOAPBoolean"],
3148
+ ["path", "SOAP::SOAPBase64", [0, 1]],
3149
+ ["uptodate", "SOAP::SOAPBoolean"],
3150
+ ["base", "SOAP::SOAPBoolean", [0, 1]]
3151
+ ]
3152
+ )
3153
+
3154
+ LiteralRegistry.register(
3155
+ :class => Virtuozzo::SOAP::Types::Environment::Package_vztemplateType,
3156
+ :schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
3157
+ :schema_basetype => XSD::QName.new(NsTypes, "packageType"),
3158
+ :schema_element => [
3159
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
3160
+ ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
3161
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
3162
+ ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
3163
+ ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
3164
+ ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
3165
+ ["technology", "SOAP::SOAPString[]", [0, nil]],
3166
+ ["os_template", "SOAP::SOAPBoolean"],
3167
+ ["cached", "SOAP::SOAPBoolean"],
3168
+ ["path", "SOAP::SOAPBase64", [0, 1]],
3169
+ ["uptodate", "SOAP::SOAPBoolean"]
3170
+ ]
3171
+ )
3172
+
3173
+ LiteralRegistry.register(
3174
+ :class => Virtuozzo::SOAP::Types::Environment::Env_security_objectType_,
3175
+ :schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
3176
+ :schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
3177
+ :schema_element => [
3178
+ ["eid", [nil, XSD::QName.new(NsTypes, "eid")]]
3179
+ ]
3180
+ )
3181
+
3182
+ LiteralRegistry.register(
3183
+ :class => Virtuozzo::SOAP::Types::Environment::Net_vethType,
3184
+ :schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
3185
+ :schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
3186
+ :schema_element => [
3187
+ ["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
3188
+ ["ip_address", ["Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
3189
+ ["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
3190
+ ["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
3191
+ ["status", ["Virtuozzo::SOAP::Types::Environment::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
3192
+ ["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
3193
+ ["wins_server", "SOAP::SOAPString[]", [0, nil]],
3194
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
3195
+ ["default_gateway", "SOAP::SOAPString", [0, 1]],
3196
+ ["host_routed", nil, [0, 1]]
3197
+ ]
3198
+ )
3199
+
3200
+ LiteralRegistry.register(
3201
+ :class => Virtuozzo::SOAP::Types::Environment::Net_vethType::Status,
3202
+ :schema_name => XSD::QName.new(NsTypes, "status"),
3203
+ :is_anonymous => true,
3204
+ :schema_qualified => true,
3205
+ :schema_element => [ :choice,
3206
+ ["up", nil],
3207
+ ["down", nil]
3208
+ ]
3209
+ )
3210
+
3211
+ LiteralRegistry.register(
3212
+ :class => Virtuozzo::SOAP::Types::Environment::EnvType_,
3213
+ :schema_type => XSD::QName.new(NsVzatypes, "envType"),
3214
+ :schema_basetype => XSD::QName.new(NsTypes, "envType"),
3215
+ :schema_element => [
3216
+ ["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
3217
+ ["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
3218
+ ["status", ["Virtuozzo::SOAP::Types::Environment::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
3219
+ ["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
3220
+ ["config", ["Virtuozzo::SOAP::Types::Environment::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
3221
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Environment::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
3222
+ ]
3223
+ )
3224
+
3225
+ LiteralRegistry.register(
3226
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType,
3227
+ :schema_type => XSD::QName.new(NsEnvm, "envmType"),
3228
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
3229
+ :schema_element => [ :choice,
3230
+ ["configuration", ["Virtuozzo::SOAP::Types::Environment::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3231
+ ["ok", ["Virtuozzo::SOAP::Types::Environment::EnvmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3232
+ ["error", ["Virtuozzo::SOAP::Types::Environment::EnvmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
3233
+ [
3234
+ ["create", "Virtuozzo::SOAP::Types::Environment::Create[]"],
3235
+ ["repair", "Virtuozzo::SOAP::Types::Environment::Repair[]"],
3236
+ ["stop_repair", "Virtuozzo::SOAP::Types::Environment::Stop_repair[]"],
3237
+ ["start", "Virtuozzo::SOAP::Types::Environment::Start[]"],
3238
+ ["stop", "Virtuozzo::SOAP::Types::Environment::Stop[]"],
3239
+ ["restart", "Virtuozzo::SOAP::Types::Environment::Restart[]"],
3240
+ ["destroy", "Virtuozzo::SOAP::Types::Environment::Destroy[]"],
3241
+ ["suspend", "Virtuozzo::SOAP::Types::Environment::Suspend[]"],
3242
+ ["resume", "Virtuozzo::SOAP::Types::Environment::Resume[]"],
3243
+ ["get_info", "Virtuozzo::SOAP::Types::Environment::Get_info[]"],
3244
+ ["get_list", "Virtuozzo::SOAP::Types::Environment::Get_list[]"],
3245
+ ["set", "Virtuozzo::SOAP::Types::Environment::Set[]"],
3246
+ ["put_private", "Virtuozzo::SOAP::Types::Environment::Put_private[]"],
3247
+ ["get_private", "Virtuozzo::SOAP::Types::Environment::Get_private[]"],
3248
+ ["get_vt_settings", "Virtuozzo::SOAP::Types::Environment::Get_vt_settings[]"],
3249
+ ["set_vt_settings", "Virtuozzo::SOAP::Types::Environment::Set_vt_settings[]"],
3250
+ ["get_vt_info", "Virtuozzo::SOAP::Types::Environment::Get_vt_info[]"],
3251
+ ["get_log", "Virtuozzo::SOAP::Types::Environment::Get_log[]"],
3252
+ ["get_native_config", "Virtuozzo::SOAP::Types::Environment::Get_native_config[]"],
3253
+ ["get_virtual_config", "Virtuozzo::SOAP::Types::Environment::Get_virtual_config[]"]
3254
+ ],
3255
+ [
3256
+ ["env", "Virtuozzo::SOAP::Types::Environment::EnvType[]", [0, nil]],
3257
+ ["eid", "[]", [0, nil]],
3258
+ ["value", "SOAP::SOAPBase64[]"],
3259
+ ["vt_settings", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType[]", [0, 1]],
3260
+ ["vt_info", "Virtuozzo::SOAP::Types::Environment::Vt_infoType[]", [0, 1]],
3261
+ ["env_config", "Virtuozzo::SOAP::Types::Environment::Env_configType[]", [0, 1]],
3262
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType[]", [0, nil]],
3263
+ ["native_config", "Virtuozzo::SOAP::Types::Environment::Native_configType[]", [0, nil]],
3264
+ ["log", "SOAP::SOAPBase64[]", [0, 1]]
3265
+ ]
3266
+ ]
3267
+ )
3268
+
3269
+ LiteralRegistry.register(
3270
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType::Ok,
3271
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
3272
+ :is_anonymous => true,
3273
+ :schema_qualified => true,
3274
+ :schema_element => []
3275
+ )
3276
+
3277
+ LiteralRegistry.register(
3278
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType::Error,
3279
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
3280
+ :is_anonymous => true,
3281
+ :schema_qualified => true,
3282
+ :schema_element => [
3283
+ ["code", "SOAP::SOAPInt"],
3284
+ ["message", "SOAP::SOAPString", [0, 1]]
3285
+ ]
3286
+ )
3287
+
3288
+ LiteralRegistry.register(
3289
+ :class => Virtuozzo::SOAP::Types::Environment::Envm_configurationType,
3290
+ :schema_type => XSD::QName.new(NsEnvm, "envm_configurationType"),
3291
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
3292
+ :schema_element => [
3293
+ ["timeouts", "Virtuozzo::SOAP::Types::Environment::Envm_configurationType::Timeouts"]
3294
+ ]
3295
+ )
3296
+
3297
+ LiteralRegistry.register(
3298
+ :class => Virtuozzo::SOAP::Types::Environment::Envm_configurationType::Timeouts,
3299
+ :schema_name => XSD::QName.new(NsEnvm, "timeouts"),
3300
+ :is_anonymous => true,
3301
+ :schema_qualified => true,
3302
+ :schema_element => [
3303
+ ["create", "SOAP::SOAPInt"],
3304
+ ["operate", "SOAP::SOAPInt"]
3305
+ ]
3306
+ )
3307
+
3308
+ LiteralRegistry.register(
3309
+ :class => Virtuozzo::SOAP::Types::Environment::Transport_type,
3310
+ :schema_type => XSD::QName.new(NsTypes, "transport_type")
3311
+ )
3312
+
3313
+ LiteralRegistry.register(
3314
+ :class => Virtuozzo::SOAP::Types::Environment::Yes_no_type,
3315
+ :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
3316
+ )
3317
+
3318
+ LiteralRegistry.register(
3319
+ :class => Virtuozzo::SOAP::Types::Environment::Packet_headerType,
3320
+ :schema_name => XSD::QName.new(NsVzaenvm_0, "packet_header"),
3321
+ :schema_element => [
3322
+ ["auth", "Virtuozzo::SOAP::Types::Environment::AuthType", [0, 1]],
3323
+ ["cookie", "SOAP::SOAPString", [0, 1]],
3324
+ ["target", "SOAP::SOAPString[]", [0, nil]],
3325
+ ["origin", "SOAP::SOAPString", [0, 1]],
3326
+ ["src", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
3327
+ ["dst", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
3328
+ ["session", "SOAP::SOAPString", [0, 1]]
3329
+ ],
3330
+ :schema_attribute => {
3331
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
3332
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
3333
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
3334
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
3335
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
3336
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
3337
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
3338
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
3339
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
3340
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
3341
+ }
3342
+ )
3343
+
3344
+ LiteralRegistry.register(
3345
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType,
3346
+ :schema_name => XSD::QName.new(NsVzaenvm, "vzaenvm"),
3347
+ :schema_element => [ :choice,
3348
+ ["configuration", ["Virtuozzo::SOAP::Types::Environment::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3349
+ ["ok", ["Virtuozzo::SOAP::Types::Environment::VzaenvmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3350
+ ["error", ["Virtuozzo::SOAP::Types::Environment::VzaenvmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
3351
+ [
3352
+ ["create", ["Virtuozzo::SOAP::Types::Environment::Create[]", XSD::QName.new(NsEnvm, "create")]],
3353
+ ["repair", ["Virtuozzo::SOAP::Types::Environment::Repair[]", XSD::QName.new(NsEnvm, "repair")]],
3354
+ ["stop_repair", ["Virtuozzo::SOAP::Types::Environment::Stop_repair[]", XSD::QName.new(NsEnvm, "stop_repair")]],
3355
+ ["start", ["Virtuozzo::SOAP::Types::Environment::Start[]", XSD::QName.new(NsEnvm, "start")]],
3356
+ ["stop", ["Virtuozzo::SOAP::Types::Environment::Stop[]", XSD::QName.new(NsEnvm, "stop")]],
3357
+ ["restart", ["Virtuozzo::SOAP::Types::Environment::Restart[]", XSD::QName.new(NsEnvm, "restart")]],
3358
+ ["destroy", ["Virtuozzo::SOAP::Types::Environment::Destroy[]", XSD::QName.new(NsEnvm, "destroy")]],
3359
+ ["suspend", ["Virtuozzo::SOAP::Types::Environment::Suspend[]", XSD::QName.new(NsEnvm, "suspend")]],
3360
+ ["resume", ["Virtuozzo::SOAP::Types::Environment::Resume[]", XSD::QName.new(NsEnvm, "resume")]],
3361
+ ["get_info", ["Virtuozzo::SOAP::Types::Environment::Get_info[]", XSD::QName.new(NsEnvm, "get_info")]],
3362
+ ["get_list", ["Virtuozzo::SOAP::Types::Environment::Get_list[]", XSD::QName.new(NsEnvm, "get_list")]],
3363
+ ["set", ["Virtuozzo::SOAP::Types::Environment::Set[]", XSD::QName.new(NsEnvm, "set")]],
3364
+ ["put_private", ["Virtuozzo::SOAP::Types::Environment::Put_private[]", XSD::QName.new(NsEnvm, "put_private")]],
3365
+ ["get_private", ["Virtuozzo::SOAP::Types::Environment::Get_private[]", XSD::QName.new(NsEnvm, "get_private")]],
3366
+ ["get_vt_settings", ["Virtuozzo::SOAP::Types::Environment::Get_vt_settings[]", XSD::QName.new(NsEnvm, "get_vt_settings")]],
3367
+ ["set_vt_settings", ["Virtuozzo::SOAP::Types::Environment::Set_vt_settings[]", XSD::QName.new(NsEnvm, "set_vt_settings")]],
3368
+ ["get_vt_info", ["Virtuozzo::SOAP::Types::Environment::Get_vt_info[]", XSD::QName.new(NsEnvm, "get_vt_info")]],
3369
+ ["get_log", ["Virtuozzo::SOAP::Types::Environment::Get_log[]", XSD::QName.new(NsEnvm, "get_log")]],
3370
+ ["get_native_config", ["Virtuozzo::SOAP::Types::Environment::Get_native_config[]", XSD::QName.new(NsEnvm, "get_native_config")]],
3371
+ ["get_virtual_config", ["Virtuozzo::SOAP::Types::Environment::Get_virtual_config[]", XSD::QName.new(NsEnvm, "get_virtual_config")]]
3372
+ ],
3373
+ [
3374
+ ["env", ["Virtuozzo::SOAP::Types::Environment::EnvType[]", XSD::QName.new(NsEnvm, "env")], [0, nil]],
3375
+ ["eid", ["[]", XSD::QName.new(NsEnvm, "eid")], [0, nil]],
3376
+ ["value", ["SOAP::SOAPBase64[]", XSD::QName.new(NsEnvm, "value")]],
3377
+ ["vt_settings", ["Virtuozzo::SOAP::Types::Environment::Vt_settingsType[]", XSD::QName.new(NsEnvm, "vt_settings")], [0, 1]],
3378
+ ["vt_info", ["Virtuozzo::SOAP::Types::Environment::Vt_infoType[]", XSD::QName.new(NsEnvm, "vt_info")], [0, 1]],
3379
+ ["env_config", ["Virtuozzo::SOAP::Types::Environment::Env_configType[]", XSD::QName.new(NsEnvm, "env_config")], [0, 1]],
3380
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Environment::Venv_configType[]", XSD::QName.new(NsEnvm, "virtual_config")], [0, nil]],
3381
+ ["native_config", ["Virtuozzo::SOAP::Types::Environment::Native_configType[]", XSD::QName.new(NsEnvm, "native_config")], [0, nil]],
3382
+ ["log", ["SOAP::SOAPBase64[]", XSD::QName.new(NsEnvm, "log")], [0, 1]]
3383
+ ],
3384
+ [
3385
+ ["mount", "Virtuozzo::SOAP::Types::Environment::Mount[]"],
3386
+ ["umount", "Virtuozzo::SOAP::Types::Environment::Umount[]"],
3387
+ ["set_user_password", "Virtuozzo::SOAP::Types::Environment::Set_user_password[]"],
3388
+ ["upgrade", "Virtuozzo::SOAP::Types::Environment::Upgrade[]"],
3389
+ ["determine_env", "Virtuozzo::SOAP::Types::Environment::Determine_env[]"],
3390
+ ["set_ugid_quota", "Virtuozzo::SOAP::Types::Environment::Set_ugid_quota[]"],
3391
+ ["get_ugid_quota", "Virtuozzo::SOAP::Types::Environment::Get_ugid_quota[]"],
3392
+ ["get_split_conf", "Virtuozzo::SOAP::Types::Environment::Get_split_conf[]"],
3393
+ ["validate", "Virtuozzo::SOAP::Types::Environment::Validate[]"],
3394
+ ["get_script", "Virtuozzo::SOAP::Types::Environment::Get_script[]"],
3395
+ ["set_script", "Virtuozzo::SOAP::Types::Environment::Set_script[]"],
3396
+ ["del_script", "Virtuozzo::SOAP::Types::Environment::Del_script[]"],
3397
+ ["recover_template", "Virtuozzo::SOAP::Types::Environment::Recover_template[]"]
3398
+ ],
3399
+ [ :choice,
3400
+ ["veid", nil],
3401
+ ["ugid_quota", "Virtuozzo::SOAP::Types::Environment::Ugid_quota_info"],
3402
+ ["config", "Virtuozzo::SOAP::Types::Environment::Venv_configType_"],
3403
+ ["validation", "Virtuozzo::SOAP::Types::Environment::ValidationType[]", [0, nil]],
3404
+ ["script", "Virtuozzo::SOAP::Types::Environment::Script"]
3405
+ ]
3406
+ ]
3407
+ )
3408
+
3409
+ LiteralRegistry.register(
3410
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType::Ok,
3411
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
3412
+ :is_anonymous => true,
3413
+ :schema_qualified => true,
3414
+ :schema_element => []
3415
+ )
3416
+
3417
+ LiteralRegistry.register(
3418
+ :class => Virtuozzo::SOAP::Types::Environment::VzaenvmType::Error,
3419
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
3420
+ :is_anonymous => true,
3421
+ :schema_qualified => true,
3422
+ :schema_element => [
3423
+ ["code", "SOAP::SOAPInt"],
3424
+ ["message", "SOAP::SOAPString", [0, 1]]
3425
+ ]
3426
+ )
3427
+
3428
+ LiteralRegistry.register(
3429
+ :class => Virtuozzo::SOAP::Types::Environment::Mount,
3430
+ :schema_name => XSD::QName.new(NsVzaenvm, "mount"),
3431
+ :schema_element => [
3432
+ ["eid", nil]
3433
+ ]
3434
+ )
3435
+
3436
+ LiteralRegistry.register(
3437
+ :class => Virtuozzo::SOAP::Types::Environment::Umount,
3438
+ :schema_name => XSD::QName.new(NsVzaenvm, "umount"),
3439
+ :schema_element => [
3440
+ ["eid", nil]
3441
+ ]
3442
+ )
3443
+
3444
+ LiteralRegistry.register(
3445
+ :class => Virtuozzo::SOAP::Types::Environment::Suspend_,
3446
+ :schema_name => XSD::QName.new(NsVzaenvm, "suspend"),
3447
+ :schema_element => [
3448
+ ["eid", nil]
3449
+ ]
3450
+ )
3451
+
3452
+ LiteralRegistry.register(
3453
+ :class => Virtuozzo::SOAP::Types::Environment::Resume_,
3454
+ :schema_name => XSD::QName.new(NsVzaenvm, "resume"),
3455
+ :schema_element => [
3456
+ ["eid", nil]
3457
+ ]
3458
+ )
3459
+
3460
+ LiteralRegistry.register(
3461
+ :class => Virtuozzo::SOAP::Types::Environment::Upgrade,
3462
+ :schema_name => XSD::QName.new(NsVzaenvm, "upgrade"),
3463
+ :schema_element => [
3464
+ ["eid", nil],
3465
+ [
3466
+ ["options", "Virtuozzo::SOAP::Types::Environment::Upgrade::Options", [0, 1]]
3467
+ ]
3468
+ ]
3469
+ )
3470
+
3471
+ LiteralRegistry.register(
3472
+ :class => Virtuozzo::SOAP::Types::Environment::Upgrade::Options,
3473
+ :schema_name => XSD::QName.new(NsVzaenvm, "options"),
3474
+ :is_anonymous => true,
3475
+ :schema_qualified => true,
3476
+ :schema_element => [
3477
+ ["force", nil, [0, 1]]
3478
+ ]
3479
+ )
3480
+
3481
+ LiteralRegistry.register(
3482
+ :class => Virtuozzo::SOAP::Types::Environment::Set_user_password,
3483
+ :schema_name => XSD::QName.new(NsVzaenvm, "set_user_password"),
3484
+ :schema_element => [
3485
+ ["eid", nil],
3486
+ ["name", "SOAP::SOAPString", [0, 1]],
3487
+ ["password", "SOAP::SOAPBase64"]
3488
+ ]
3489
+ )
3490
+
3491
+ LiteralRegistry.register(
3492
+ :class => Virtuozzo::SOAP::Types::Environment::Determine_env,
3493
+ :schema_name => XSD::QName.new(NsVzaenvm, "determine_env"),
3494
+ :schema_element => [
3495
+ ["link", "Virtuozzo::SOAP::Types::Environment::Determine_env::Link"]
3496
+ ]
3497
+ )
3498
+
3499
+ LiteralRegistry.register(
3500
+ :class => Virtuozzo::SOAP::Types::Environment::Determine_env::Link,
3501
+ :schema_name => XSD::QName.new(NsVzaenvm, "link"),
3502
+ :is_anonymous => true,
3503
+ :schema_qualified => true,
3504
+ :schema_element => [
3505
+ ["ip", nil],
3506
+ ["port", "SOAP::SOAPInt", [0, 1]],
3507
+ ["client_ip", nil, [0, 1]],
3508
+ ["client_port", "SOAP::SOAPInt", [0, 1]]
3509
+ ]
3510
+ )
3511
+
3512
+ LiteralRegistry.register(
3513
+ :class => Virtuozzo::SOAP::Types::Environment::Set_ugid_quota,
3514
+ :schema_name => XSD::QName.new(NsVzaenvm, "set_ugid_quota"),
3515
+ :schema_element => [
3516
+ ["eid", nil],
3517
+ ["ugid_quota", "Virtuozzo::SOAP::Types::Environment::Ugid_quota_info"]
3518
+ ]
3519
+ )
3520
+
3521
+ LiteralRegistry.register(
3522
+ :class => Virtuozzo::SOAP::Types::Environment::Get_ugid_quota,
3523
+ :schema_name => XSD::QName.new(NsVzaenvm, "get_ugid_quota"),
3524
+ :schema_element => [
3525
+ ["eid", nil],
3526
+ ["id", "SOAP::SOAPInt[]", [0, nil]],
3527
+ ["type", "SOAP::SOAPInt"]
3528
+ ]
3529
+ )
3530
+
3531
+ LiteralRegistry.register(
3532
+ :class => Virtuozzo::SOAP::Types::Environment::Get_split_conf,
3533
+ :schema_name => XSD::QName.new(NsVzaenvm, "get_split_conf"),
3534
+ :schema_element => [
3535
+ ["number", "SOAP::SOAPInt"]
3536
+ ]
3537
+ )
3538
+
3539
+ LiteralRegistry.register(
3540
+ :class => Virtuozzo::SOAP::Types::Environment::ValidationType,
3541
+ :schema_name => XSD::QName.new(NsVzaenvm, "validation"),
3542
+ :schema_element => [
3543
+ ["type", "SOAP::SOAPInt"],
3544
+ ["warning", "SOAP::SOAPString"],
3545
+ ["formula", "SOAP::SOAPString"],
3546
+ ["qosID", "SOAP::SOAPString[]", [1, nil]]
3547
+ ]
3548
+ )
3549
+
3550
+ LiteralRegistry.register(
3551
+ :class => Virtuozzo::SOAP::Types::Environment::Validate,
3552
+ :schema_name => XSD::QName.new(NsVzaenvm, "validate"),
3553
+ :schema_element => [
3554
+ ["config", "Virtuozzo::SOAP::Types::Environment::Venv_configType_"]
3555
+ ]
3556
+ )
3557
+
3558
+ LiteralRegistry.register(
3559
+ :class => Virtuozzo::SOAP::Types::Environment::Allocate_veidResponse,
3560
+ :schema_name => XSD::QName.new(NsVzaenvm, "allocate_veidResponse"),
3561
+ :schema_element => [
3562
+ ["veid", nil]
3563
+ ]
3564
+ )
3565
+
3566
+ LiteralRegistry.register(
3567
+ :class => Virtuozzo::SOAP::Types::Environment::MountResponse,
3568
+ :schema_name => XSD::QName.new(NsVzaenvm, "mountResponse"),
3569
+ :schema_element => []
3570
+ )
3571
+
3572
+ LiteralRegistry.register(
3573
+ :class => Virtuozzo::SOAP::Types::Environment::UmountResponse,
3574
+ :schema_name => XSD::QName.new(NsVzaenvm, "umountResponse"),
3575
+ :schema_element => []
3576
+ )
3577
+
3578
+ LiteralRegistry.register(
3579
+ :class => Virtuozzo::SOAP::Types::Environment::SuspendResponse,
3580
+ :schema_name => XSD::QName.new(NsVzaenvm, "suspendResponse"),
3581
+ :schema_element => []
3582
+ )
3583
+
3584
+ LiteralRegistry.register(
3585
+ :class => Virtuozzo::SOAP::Types::Environment::ResumeResponse,
3586
+ :schema_name => XSD::QName.new(NsVzaenvm, "resumeResponse"),
3587
+ :schema_element => []
3588
+ )
3589
+
3590
+ LiteralRegistry.register(
3591
+ :class => Virtuozzo::SOAP::Types::Environment::Set_user_passwordResponse,
3592
+ :schema_name => XSD::QName.new(NsVzaenvm, "set_user_passwordResponse"),
3593
+ :schema_element => []
3594
+ )
3595
+
3596
+ LiteralRegistry.register(
3597
+ :class => Virtuozzo::SOAP::Types::Environment::UpgradeResponse,
3598
+ :schema_name => XSD::QName.new(NsVzaenvm, "upgradeResponse"),
3599
+ :schema_element => []
3600
+ )
3601
+
3602
+ LiteralRegistry.register(
3603
+ :class => Virtuozzo::SOAP::Types::Environment::Determine_envResponse,
3604
+ :schema_name => XSD::QName.new(NsVzaenvm, "determine_envResponse"),
3605
+ :schema_element => [
3606
+ ["eid", nil]
3607
+ ]
3608
+ )
3609
+
3610
+ LiteralRegistry.register(
3611
+ :class => Virtuozzo::SOAP::Types::Environment::Get_split_confResponse,
3612
+ :schema_name => XSD::QName.new(NsVzaenvm, "get_split_confResponse"),
3613
+ :schema_element => []
3614
+ )
3615
+
3616
+ LiteralRegistry.register(
3617
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_,
3618
+ :schema_name => XSD::QName.new(NsVzaenvm, "config"),
3619
+ :schema_element => [
3620
+ ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")], [0, 1]],
3621
+ ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
3622
+ ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
3623
+ ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
3624
+ ["address", ["Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
3625
+ ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
3626
+ ["os", ["Virtuozzo::SOAP::Types::Environment::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
3627
+ ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
3628
+ ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
3629
+ ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
3630
+ ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
3631
+ ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
3632
+ ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
3633
+ ["qos", ["Virtuozzo::SOAP::Types::Environment::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
3634
+ ["veid", nil, [0, 1]],
3635
+ ["ve_root", "SOAP::SOAPString", [0, 1]],
3636
+ ["ve_private", "SOAP::SOAPString", [0, 1]],
3637
+ ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
3638
+ ["template", "Virtuozzo::SOAP::Types::Environment::TemplateType[]", [0, nil]],
3639
+ ["disabled", "SOAP::SOAPBoolean", [0, 1]],
3640
+ ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
3641
+ ["os_template", "Virtuozzo::SOAP::Types::Environment::TemplateType", [0, 1]],
3642
+ ["distribution", "Virtuozzo::SOAP::Types::Environment::TemplateType", [0, 1]],
3643
+ ["capability", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Capability[]", [0, nil]],
3644
+ ["iptables", "SOAP::SOAPString[]", [0, nil]],
3645
+ ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
3646
+ ["class_id", "SOAP::SOAPString", [0, 1]],
3647
+ ["ve_type", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Ve_type", [0, 1]],
3648
+ ["offline_service", "SOAP::SOAPString[]", [0, nil]],
3649
+ ["wins_server", "SOAP::SOAPString[]", [0, nil]],
3650
+ ["net_device", "Virtuozzo::SOAP::Types::Environment::Net_vethType[]", [0, nil]],
3651
+ ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
3652
+ ["ts_mode", "SOAP::SOAPInt", [0, 1]],
3653
+ ["uuid", "SOAP::SOAPString", [0, 1]],
3654
+ ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
3655
+ ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
3656
+ ["interface_rate", "Virtuozzo::SOAP::Types::Environment::Venv_configType_::Interface_rate[]", [0, nil]],
3657
+ ["slm_mode", "SOAP::SOAPString", [0, 1]],
3658
+ ["origin_sample", "SOAP::SOAPString", [0, 1]]
3659
+ ]
3660
+ )
3661
+
3662
+ LiteralRegistry.register(
3663
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Capability,
3664
+ :schema_name => XSD::QName.new(NsVzatypes, "capability"),
3665
+ :is_anonymous => true,
3666
+ :schema_qualified => true,
3667
+ :schema_element => [
3668
+ ["id", "SOAP::SOAPString"],
3669
+ ["value", "SOAP::SOAPBoolean"]
3670
+ ]
3671
+ )
3672
+
3673
+ LiteralRegistry.register(
3674
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Ve_type,
3675
+ :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
3676
+ :is_anonymous => true,
3677
+ :schema_qualified => true,
3678
+ :schema_element => [
3679
+ ["veid", nil, [0, 1]],
3680
+ ["type", "SOAP::SOAPInt"]
3681
+ ]
3682
+ )
3683
+
3684
+ LiteralRegistry.register(
3685
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType_::Interface_rate,
3686
+ :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
3687
+ :is_anonymous => true,
3688
+ :schema_qualified => true,
3689
+ :schema_element => [
3690
+ ["class_id", "SOAP::SOAPString"],
3691
+ ["rate", "SOAP::SOAPLong"]
3692
+ ]
3693
+ )
3694
+
3695
+ LiteralRegistry.register(
3696
+ :class => Virtuozzo::SOAP::Types::Environment::Script,
3697
+ :schema_name => XSD::QName.new(NsVzaenvm, "script"),
3698
+ :schema_element => [
3699
+ ["name", "SOAP::SOAPString"],
3700
+ ["type", "SOAP::SOAPString"],
3701
+ ["description", "SOAP::SOAPBase64", [0, 1]],
3702
+ ["body", "SOAP::SOAPBase64", [0, 1]]
3703
+ ]
3704
+ )
3705
+
3706
+ LiteralRegistry.register(
3707
+ :class => Virtuozzo::SOAP::Types::Environment::Get_script,
3708
+ :schema_name => XSD::QName.new(NsVzaenvm, "get_script"),
3709
+ :schema_element => [
3710
+ ["eid", nil],
3711
+ ["type", "SOAP::SOAPString", [0, 1]],
3712
+ ["name", "SOAP::SOAPString", [0, 1]]
3713
+ ]
3714
+ )
3715
+
3716
+ LiteralRegistry.register(
3717
+ :class => Virtuozzo::SOAP::Types::Environment::Get_scriptResponse,
3718
+ :schema_name => XSD::QName.new(NsVzaenvm, "get_scriptResponse"),
3719
+ :schema_element => [
3720
+ ["script", "Virtuozzo::SOAP::Types::Environment::Script[]", [0, nil]]
3721
+ ]
3722
+ )
3723
+
3724
+ LiteralRegistry.register(
3725
+ :class => Virtuozzo::SOAP::Types::Environment::Set_script,
3726
+ :schema_name => XSD::QName.new(NsVzaenvm, "set_script"),
3727
+ :schema_element => [
3728
+ ["eid", nil],
3729
+ ["type", "SOAP::SOAPString", [0, 1]],
3730
+ ["name", "SOAP::SOAPString", [0, 1]],
3731
+ ["body", "SOAP::SOAPBase64", [0, 1]]
3732
+ ]
3733
+ )
3734
+
3735
+ LiteralRegistry.register(
3736
+ :class => Virtuozzo::SOAP::Types::Environment::Set_scriptResponse,
3737
+ :schema_name => XSD::QName.new(NsVzaenvm, "set_scriptResponse"),
3738
+ :schema_element => []
3739
+ )
3740
+
3741
+ LiteralRegistry.register(
3742
+ :class => Virtuozzo::SOAP::Types::Environment::Del_script,
3743
+ :schema_name => XSD::QName.new(NsVzaenvm, "del_script"),
3744
+ :schema_element => [
3745
+ ["eid", nil],
3746
+ ["type", "SOAP::SOAPString", [0, 1]],
3747
+ ["name", "SOAP::SOAPString", [0, 1]]
3748
+ ]
3749
+ )
3750
+
3751
+ LiteralRegistry.register(
3752
+ :class => Virtuozzo::SOAP::Types::Environment::Del_scriptResponse,
3753
+ :schema_name => XSD::QName.new(NsVzaenvm, "del_scriptResponse"),
3754
+ :schema_element => []
3755
+ )
3756
+
3757
+ LiteralRegistry.register(
3758
+ :class => Virtuozzo::SOAP::Types::Environment::Recover_template,
3759
+ :schema_name => XSD::QName.new(NsVzaenvm, "recover_template"),
3760
+ :schema_element => [
3761
+ ["eid", nil],
3762
+ ["password", "SOAP::SOAPBase64", [0, 1]],
3763
+ ["clean", nil, [0, 1]],
3764
+ ["skipbackup", nil, [0, 1]],
3765
+ ["script", "SOAP::SOAPString[]", [0, nil]]
3766
+ ]
3767
+ )
3768
+
3769
+ LiteralRegistry.register(
3770
+ :class => Virtuozzo::SOAP::Types::Environment::Recover_templateResponse,
3771
+ :schema_name => XSD::QName.new(NsVzaenvm, "recover_templateResponse"),
3772
+ :schema_element => []
3773
+ )
3774
+
3775
+ LiteralRegistry.register(
3776
+ :class => Virtuozzo::SOAP::Types::Environment::Event_dataType,
3777
+ :schema_name => XSD::QName.new(NsTypes, "event_data"),
3778
+ :schema_element => []
3779
+ )
3780
+
3781
+ LiteralRegistry.register(
3782
+ :class => Virtuozzo::SOAP::Types::Environment::Voc_parameterType,
3783
+ :schema_name => XSD::QName.new(NsTypes, "parameter"),
3784
+ :schema_element => [
3785
+ ["id", "SOAP::SOAPString"],
3786
+ ["type", "SOAP::SOAPString", [0, 1]],
3787
+ ["min", "SOAP::SOAPString", [0, 1]],
3788
+ ["max", "SOAP::SOAPString", [0, 1]],
3789
+ ["long", "SOAP::SOAPString", [0, 1]],
3790
+ ["short", "SOAP::SOAPString", [0, 1]],
3791
+ ["category", "SOAP::SOAPString[]", [0, nil]],
3792
+ ["complex", "SOAP::SOAPString", [0, 1]],
3793
+ ["default", "SOAP::SOAPString", [0, 1]],
3794
+ ["measure", "SOAP::SOAPString", [0, 1]],
3795
+ ["data", nil, [0, 1]],
3796
+ ["name", nil, [0, 1]]
3797
+ ]
3798
+ )
3799
+
3800
+ LiteralRegistry.register(
3801
+ :class => Virtuozzo::SOAP::Types::Environment::Voc_parameterType,
3802
+ :schema_name => XSD::QName.new(NsTypes, "category"),
3803
+ :schema_element => [
3804
+ ["id", "SOAP::SOAPString"],
3805
+ ["type", "SOAP::SOAPString", [0, 1]],
3806
+ ["min", "SOAP::SOAPString", [0, 1]],
3807
+ ["max", "SOAP::SOAPString", [0, 1]],
3808
+ ["long", "SOAP::SOAPString", [0, 1]],
3809
+ ["short", "SOAP::SOAPString", [0, 1]],
3810
+ ["category", "SOAP::SOAPString[]", [0, nil]],
3811
+ ["complex", "SOAP::SOAPString", [0, 1]],
3812
+ ["default", "SOAP::SOAPString", [0, 1]],
3813
+ ["measure", "SOAP::SOAPString", [0, 1]],
3814
+ ["data", nil, [0, 1]],
3815
+ ["name", nil, [0, 1]]
3816
+ ]
3817
+ )
3818
+
3819
+ LiteralRegistry.register(
3820
+ :class => Virtuozzo::SOAP::Types::Environment::Packet,
3821
+ :schema_name => XSD::QName.new(NsProtocol, "packet"),
3822
+ :schema_element => [
3823
+ ["auth", "Virtuozzo::SOAP::Types::Environment::AuthType", [0, 1]],
3824
+ ["cookie", "SOAP::SOAPString", [0, 1]],
3825
+ ["target", "SOAP::SOAPString[]", [0, nil]],
3826
+ ["origin", "SOAP::SOAPString", [0, 1]],
3827
+ ["src", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
3828
+ ["dst", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
3829
+ ["session", "SOAP::SOAPString", [0, 1]],
3830
+ ["data", "Virtuozzo::SOAP::Types::Environment::Packet::C_Data"]
3831
+ ],
3832
+ :schema_attribute => {
3833
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
3834
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
3835
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
3836
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
3837
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
3838
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
3839
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
3840
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
3841
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
3842
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
3843
+ }
3844
+ )
3845
+
3846
+ LiteralRegistry.register(
3847
+ :class => Virtuozzo::SOAP::Types::Environment::Packet::C_Data,
3848
+ :schema_name => XSD::QName.new(NsProtocol, "data"),
3849
+ :is_anonymous => true,
3850
+ :schema_qualified => true,
3851
+ :schema_element => [
3852
+ ["operator", "Virtuozzo::SOAP::Types::Environment::OperatorType[]"]
3853
+ ]
3854
+ )
3855
+
3856
+ LiteralRegistry.register(
3857
+ :class => Virtuozzo::SOAP::Types::Environment::Packet_headerType,
3858
+ :schema_name => XSD::QName.new(NsProtocol, "packet_header"),
3859
+ :schema_element => [
3860
+ ["auth", "Virtuozzo::SOAP::Types::Environment::AuthType", [0, 1]],
3861
+ ["cookie", "SOAP::SOAPString", [0, 1]],
3862
+ ["target", "SOAP::SOAPString[]", [0, nil]],
3863
+ ["origin", "SOAP::SOAPString", [0, 1]],
3864
+ ["src", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
3865
+ ["dst", "Virtuozzo::SOAP::Types::Environment::RouteType", [0, 1]],
3866
+ ["session", "SOAP::SOAPString", [0, 1]]
3867
+ ],
3868
+ :schema_attribute => {
3869
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
3870
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
3871
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
3872
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
3873
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
3874
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
3875
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
3876
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
3877
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
3878
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
3879
+ }
3880
+ )
3881
+
3882
+ LiteralRegistry.register(
3883
+ :class => Virtuozzo::SOAP::Types::Environment::OperatorType,
3884
+ :schema_name => XSD::QName.new(NsProtocol, "operator"),
3885
+ :schema_element => [ :choice,
3886
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"]
3887
+ ]
3888
+ )
3889
+
3890
+ LiteralRegistry.register(
3891
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType,
3892
+ :schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
3893
+ :schema_element => [ :choice,
3894
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"],
3895
+ ["ok", "Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Ok[]"],
3896
+ ["error", "Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Error[]"],
3897
+ [ :choice,
3898
+ ["start_monitor", "Virtuozzo::SOAP::Types::Environment::Start_monitorType"],
3899
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Environment::Stop_monitorType"],
3900
+ ["set_period", "Virtuozzo::SOAP::Types::Environment::Set_periodType", [0, 1]],
3901
+ ["report", nil, [0, 1]]
3902
+ ]
3903
+ ]
3904
+ )
3905
+
3906
+ LiteralRegistry.register(
3907
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Ok,
3908
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
3909
+ :is_anonymous => true,
3910
+ :schema_qualified => true,
3911
+ :schema_element => []
3912
+ )
3913
+
3914
+ LiteralRegistry.register(
3915
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_periodicType::Error,
3916
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
3917
+ :is_anonymous => true,
3918
+ :schema_qualified => true,
3919
+ :schema_element => [
3920
+ ["code", "SOAP::SOAPInt"],
3921
+ ["message", "SOAP::SOAPString", [0, 1]]
3922
+ ]
3923
+ )
3924
+
3925
+ LiteralRegistry.register(
3926
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType,
3927
+ :schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
3928
+ :schema_element => [ :choice,
3929
+ ["configuration", "Virtuozzo::SOAP::Types::Environment::ConfigurationType"],
3930
+ ["ok", "Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Ok[]"],
3931
+ ["error", "Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Error[]"]
3932
+ ]
3933
+ )
3934
+
3935
+ LiteralRegistry.register(
3936
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Ok,
3937
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
3938
+ :is_anonymous => true,
3939
+ :schema_qualified => true,
3940
+ :schema_element => []
3941
+ )
3942
+
3943
+ LiteralRegistry.register(
3944
+ :class => Virtuozzo::SOAP::Types::Environment::Operator_functionalType::Error,
3945
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
3946
+ :is_anonymous => true,
3947
+ :schema_qualified => true,
3948
+ :schema_element => [
3949
+ ["code", "SOAP::SOAPInt"],
3950
+ ["message", "SOAP::SOAPString", [0, 1]]
3951
+ ]
3952
+ )
3953
+
3954
+ LiteralRegistry.register(
3955
+ :class => Virtuozzo::SOAP::Types::Environment::Interface_rate,
3956
+ :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
3957
+ :schema_element => [
3958
+ ["class_id", "SOAP::SOAPString"],
3959
+ ["net_device_id", "SOAP::SOAPString"],
3960
+ ["rate", "SOAP::SOAPLong"]
3961
+ ]
3962
+ )
3963
+
3964
+ LiteralRegistry.register(
3965
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType,
3966
+ :schema_name => XSD::QName.new(NsEnvm, "envm"),
3967
+ :schema_element => [ :choice,
3968
+ ["configuration", ["Virtuozzo::SOAP::Types::Environment::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3969
+ ["ok", ["Virtuozzo::SOAP::Types::Environment::EnvmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3970
+ ["error", ["Virtuozzo::SOAP::Types::Environment::EnvmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
3971
+ [
3972
+ ["create", "Virtuozzo::SOAP::Types::Environment::Create[]"],
3973
+ ["repair", "Virtuozzo::SOAP::Types::Environment::Repair[]"],
3974
+ ["stop_repair", "Virtuozzo::SOAP::Types::Environment::Stop_repair[]"],
3975
+ ["start", "Virtuozzo::SOAP::Types::Environment::Start[]"],
3976
+ ["stop", "Virtuozzo::SOAP::Types::Environment::Stop[]"],
3977
+ ["restart", "Virtuozzo::SOAP::Types::Environment::Restart[]"],
3978
+ ["destroy", "Virtuozzo::SOAP::Types::Environment::Destroy[]"],
3979
+ ["suspend", "Virtuozzo::SOAP::Types::Environment::Suspend[]"],
3980
+ ["resume", "Virtuozzo::SOAP::Types::Environment::Resume[]"],
3981
+ ["get_info", "Virtuozzo::SOAP::Types::Environment::Get_info[]"],
3982
+ ["get_list", "Virtuozzo::SOAP::Types::Environment::Get_list[]"],
3983
+ ["set", "Virtuozzo::SOAP::Types::Environment::Set[]"],
3984
+ ["put_private", "Virtuozzo::SOAP::Types::Environment::Put_private[]"],
3985
+ ["get_private", "Virtuozzo::SOAP::Types::Environment::Get_private[]"],
3986
+ ["get_vt_settings", "Virtuozzo::SOAP::Types::Environment::Get_vt_settings[]"],
3987
+ ["set_vt_settings", "Virtuozzo::SOAP::Types::Environment::Set_vt_settings[]"],
3988
+ ["get_vt_info", "Virtuozzo::SOAP::Types::Environment::Get_vt_info[]"],
3989
+ ["get_log", "Virtuozzo::SOAP::Types::Environment::Get_log[]"],
3990
+ ["get_native_config", "Virtuozzo::SOAP::Types::Environment::Get_native_config[]"],
3991
+ ["get_virtual_config", "Virtuozzo::SOAP::Types::Environment::Get_virtual_config[]"]
3992
+ ],
3993
+ [
3994
+ ["env", "Virtuozzo::SOAP::Types::Environment::EnvType[]", [0, nil]],
3995
+ ["eid", "[]", [0, nil]],
3996
+ ["value", "SOAP::SOAPBase64[]"],
3997
+ ["vt_settings", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType[]", [0, 1]],
3998
+ ["vt_info", "Virtuozzo::SOAP::Types::Environment::Vt_infoType[]", [0, 1]],
3999
+ ["env_config", "Virtuozzo::SOAP::Types::Environment::Env_configType[]", [0, 1]],
4000
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType[]", [0, nil]],
4001
+ ["native_config", "Virtuozzo::SOAP::Types::Environment::Native_configType[]", [0, nil]],
4002
+ ["log", "SOAP::SOAPBase64[]", [0, 1]]
4003
+ ]
4004
+ ]
4005
+ )
4006
+
4007
+ LiteralRegistry.register(
4008
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType::Ok,
4009
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
4010
+ :is_anonymous => true,
4011
+ :schema_qualified => true,
4012
+ :schema_element => []
4013
+ )
4014
+
4015
+ LiteralRegistry.register(
4016
+ :class => Virtuozzo::SOAP::Types::Environment::EnvmType::Error,
4017
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
4018
+ :is_anonymous => true,
4019
+ :schema_qualified => true,
4020
+ :schema_element => [
4021
+ ["code", "SOAP::SOAPInt"],
4022
+ ["message", "SOAP::SOAPString", [0, 1]]
4023
+ ]
4024
+ )
4025
+
4026
+ LiteralRegistry.register(
4027
+ :class => Virtuozzo::SOAP::Types::Environment::Create,
4028
+ :schema_name => XSD::QName.new(NsEnvm, "create"),
4029
+ :schema_element => [
4030
+ ["force", nil, [0, 1]],
4031
+ [
4032
+ ["config", "Virtuozzo::SOAP::Types::Environment::Env_configType"],
4033
+ ["default", "Virtuozzo::SOAP::Types::Environment::Create::Default", [0, 1]]
4034
+ ]
4035
+ ]
4036
+ )
4037
+
4038
+ LiteralRegistry.register(
4039
+ :class => Virtuozzo::SOAP::Types::Environment::Create::Default,
4040
+ :schema_name => XSD::QName.new(NsEnvm, "default"),
4041
+ :is_anonymous => true,
4042
+ :schema_qualified => true,
4043
+ :schema_element => [
4044
+ ["parameter", "SOAP::SOAPString[]", [1, nil]]
4045
+ ]
4046
+ )
4047
+
4048
+ LiteralRegistry.register(
4049
+ :class => Virtuozzo::SOAP::Types::Environment::Repair,
4050
+ :schema_name => XSD::QName.new(NsEnvm, "repair"),
4051
+ :schema_element => [
4052
+ ["eid", nil]
4053
+ ]
4054
+ )
4055
+
4056
+ LiteralRegistry.register(
4057
+ :class => Virtuozzo::SOAP::Types::Environment::Stop_repair,
4058
+ :schema_name => XSD::QName.new(NsEnvm, "stop_repair"),
4059
+ :schema_element => [
4060
+ ["eid", nil]
4061
+ ]
4062
+ )
4063
+
4064
+ LiteralRegistry.register(
4065
+ :class => Virtuozzo::SOAP::Types::Environment::Start,
4066
+ :schema_name => XSD::QName.new(NsEnvm, "start"),
4067
+ :schema_element => [
4068
+ ["eid", nil]
4069
+ ]
4070
+ )
4071
+
4072
+ LiteralRegistry.register(
4073
+ :class => Virtuozzo::SOAP::Types::Environment::Suspend,
4074
+ :schema_name => XSD::QName.new(NsEnvm, "suspend"),
4075
+ :schema_element => [
4076
+ ["eid", nil]
4077
+ ]
4078
+ )
4079
+
4080
+ LiteralRegistry.register(
4081
+ :class => Virtuozzo::SOAP::Types::Environment::Resume,
4082
+ :schema_name => XSD::QName.new(NsEnvm, "resume"),
4083
+ :schema_element => [
4084
+ ["eid", nil]
4085
+ ]
4086
+ )
4087
+
4088
+ LiteralRegistry.register(
4089
+ :class => Virtuozzo::SOAP::Types::Environment::Stop,
4090
+ :schema_name => XSD::QName.new(NsEnvm, "stop"),
4091
+ :schema_element => [
4092
+ ["eid", nil],
4093
+ ["force", nil, [0, 1]]
4094
+ ]
4095
+ )
4096
+
4097
+ LiteralRegistry.register(
4098
+ :class => Virtuozzo::SOAP::Types::Environment::Restart,
4099
+ :schema_name => XSD::QName.new(NsEnvm, "restart"),
4100
+ :schema_element => [
4101
+ ["eid", nil]
4102
+ ]
4103
+ )
4104
+
4105
+ LiteralRegistry.register(
4106
+ :class => Virtuozzo::SOAP::Types::Environment::Destroy,
4107
+ :schema_name => XSD::QName.new(NsEnvm, "destroy"),
4108
+ :schema_element => [
4109
+ ["eid", nil]
4110
+ ]
4111
+ )
4112
+
4113
+ LiteralRegistry.register(
4114
+ :class => Virtuozzo::SOAP::Types::Environment::Get_info,
4115
+ :schema_name => XSD::QName.new(NsEnvm, "get_info"),
4116
+ :schema_element => [
4117
+ ["eid", "[]", [0, nil]],
4118
+ ["config", "Virtuozzo::SOAP::Types::Environment::Get_info::Config", [0, 1]],
4119
+ ["filter_config", "Virtuozzo::SOAP::Types::Environment::Get_info::Filter_config", [0, 1]]
4120
+ ]
4121
+ )
4122
+
4123
+ LiteralRegistry.register(
4124
+ :class => Virtuozzo::SOAP::Types::Environment::Get_info::Config,
4125
+ :schema_name => XSD::QName.new(NsEnvm, "config"),
4126
+ :is_anonymous => true,
4127
+ :schema_qualified => true,
4128
+ :schema_element => []
4129
+ )
4130
+
4131
+ LiteralRegistry.register(
4132
+ :class => Virtuozzo::SOAP::Types::Environment::Get_info::Filter_config,
4133
+ :schema_name => XSD::QName.new(NsEnvm, "filter_config"),
4134
+ :is_anonymous => true,
4135
+ :schema_qualified => true,
4136
+ :schema_element => [
4137
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
4138
+ ]
4139
+ )
4140
+
4141
+ LiteralRegistry.register(
4142
+ :class => Virtuozzo::SOAP::Types::Environment::Get_list,
4143
+ :schema_name => XSD::QName.new(NsEnvm, "get_list"),
4144
+ :schema_element => [
4145
+ ["count", "SOAP::SOAPInt", [0, 1]],
4146
+ ["type", "SOAP::SOAPString", [0, 1]],
4147
+ ["status", "Virtuozzo::SOAP::Types::Environment::Env_statusType[]", [0, nil]]
4148
+ ]
4149
+ )
4150
+
4151
+ LiteralRegistry.register(
4152
+ :class => Virtuozzo::SOAP::Types::Environment::Set,
4153
+ :schema_name => XSD::QName.new(NsEnvm, "set"),
4154
+ :schema_element => [
4155
+ ["eid", nil],
4156
+ [
4157
+ [
4158
+ ["config", "Virtuozzo::SOAP::Types::Environment::Env_configType"],
4159
+ ["force", "Virtuozzo::SOAP::Types::Environment::Set::Force", [0, 1]],
4160
+ ["default", "Virtuozzo::SOAP::Types::Environment::Set::Default", [0, 1]]
4161
+ ],
4162
+ ["apply_config", "Virtuozzo::SOAP::Types::Environment::Set::Apply_config", [0, 1]]
4163
+ ],
4164
+ ["set_mode", "SOAP::SOAPString", [0, 1]]
4165
+ ]
4166
+ )
4167
+
4168
+ LiteralRegistry.register(
4169
+ :class => Virtuozzo::SOAP::Types::Environment::Set::Force,
4170
+ :schema_name => XSD::QName.new(NsEnvm, "force"),
4171
+ :is_anonymous => true,
4172
+ :schema_qualified => true,
4173
+ :schema_element => []
4174
+ )
4175
+
4176
+ LiteralRegistry.register(
4177
+ :class => Virtuozzo::SOAP::Types::Environment::Set::Default,
4178
+ :schema_name => XSD::QName.new(NsEnvm, "default"),
4179
+ :is_anonymous => true,
4180
+ :schema_qualified => true,
4181
+ :schema_element => [
4182
+ ["parameter", "SOAP::SOAPString[]", [1, nil]]
4183
+ ]
4184
+ )
4185
+
4186
+ LiteralRegistry.register(
4187
+ :class => Virtuozzo::SOAP::Types::Environment::Set::Apply_config,
4188
+ :schema_name => XSD::QName.new(NsEnvm, "apply_config"),
4189
+ :is_anonymous => true,
4190
+ :schema_qualified => true,
4191
+ :schema_element => [
4192
+ ["sample_conf", nil],
4193
+ ["parameter", "SOAP::SOAPString[]", [0, nil]],
4194
+ ["category", "SOAP::SOAPString[]", [0, nil]],
4195
+ ["config_customized", "SOAP::SOAPBoolean", [0, 1]]
4196
+ ]
4197
+ )
4198
+
4199
+ LiteralRegistry.register(
4200
+ :class => Virtuozzo::SOAP::Types::Environment::Put_private,
4201
+ :schema_name => XSD::QName.new(NsEnvm, "put_private"),
4202
+ :schema_element => [
4203
+ ["eid", nil],
4204
+ ["name", "SOAP::SOAPString"],
4205
+ ["value", "SOAP::SOAPBase64"]
4206
+ ]
4207
+ )
4208
+
4209
+ LiteralRegistry.register(
4210
+ :class => Virtuozzo::SOAP::Types::Environment::Get_private,
4211
+ :schema_name => XSD::QName.new(NsEnvm, "get_private"),
4212
+ :schema_element => [
4213
+ ["eid", nil],
4214
+ ["name", "SOAP::SOAPString"]
4215
+ ]
4216
+ )
4217
+
4218
+ LiteralRegistry.register(
4219
+ :class => Virtuozzo::SOAP::Types::Environment::EnvType,
4220
+ :schema_name => XSD::QName.new(NsEnvm, "env"),
4221
+ :schema_element => [
4222
+ ["parent_eid", nil],
4223
+ ["eid", nil],
4224
+ ["status", "Virtuozzo::SOAP::Types::Environment::Env_statusType", [0, 1]],
4225
+ ["alert", "SOAP::SOAPInt", [0, 1]],
4226
+ ["config", "Virtuozzo::SOAP::Types::Environment::Env_configType", [0, 1]],
4227
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType", [0, 1]]
4228
+ ]
4229
+ )
4230
+
4231
+ LiteralRegistry.register(
4232
+ :class => Virtuozzo::SOAP::Types::Environment::Venv_configType,
4233
+ :schema_name => XSD::QName.new(NsEnvm, "virtual_config"),
4234
+ :schema_element => [
4235
+ ["name", "SOAP::SOAPString", [0, 1]],
4236
+ ["description", "SOAP::SOAPBase64", [0, 1]],
4237
+ ["domain", "SOAP::SOAPString", [0, 1]],
4238
+ ["hostname", "SOAP::SOAPString", [0, 1]],
4239
+ ["address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
4240
+ ["architecture", "SOAP::SOAPString", [0, 1]],
4241
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
4242
+ ["type", "SOAP::SOAPString", [0, 1]],
4243
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
4244
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
4245
+ ["base_sample_id", nil, [0, 1]],
4246
+ ["base_snapshot_id", nil, [0, 1]],
4247
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
4248
+ ["qos", "Virtuozzo::SOAP::Types::Environment::QosType[]", [0, nil]]
4249
+ ]
4250
+ )
4251
+
4252
+ LiteralRegistry.register(
4253
+ :class => Virtuozzo::SOAP::Types::Environment::Native_configType,
4254
+ :schema_name => XSD::QName.new(NsEnvm, "native_config"),
4255
+ :schema_element => []
4256
+ )
4257
+
4258
+ LiteralRegistry.register(
4259
+ :class => Virtuozzo::SOAP::Types::Environment::Get_native_config,
4260
+ :schema_name => XSD::QName.new(NsEnvm, "get_native_config"),
4261
+ :schema_element => [
4262
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType"]
4263
+ ]
4264
+ )
4265
+
4266
+ LiteralRegistry.register(
4267
+ :class => Virtuozzo::SOAP::Types::Environment::Get_virtual_config,
4268
+ :schema_name => XSD::QName.new(NsEnvm, "get_virtual_config"),
4269
+ :schema_element => [
4270
+ ["native_config", "Virtuozzo::SOAP::Types::Environment::Native_configType"]
4271
+ ]
4272
+ )
4273
+
4274
+ LiteralRegistry.register(
4275
+ :class => Virtuozzo::SOAP::Types::Environment::Get_vt_settings,
4276
+ :schema_name => XSD::QName.new(NsEnvm, "get_vt_settings"),
4277
+ :schema_element => []
4278
+ )
4279
+
4280
+ LiteralRegistry.register(
4281
+ :class => Virtuozzo::SOAP::Types::Environment::Set_vt_settings,
4282
+ :schema_name => XSD::QName.new(NsEnvm, "set_vt_settings"),
4283
+ :schema_element => [
4284
+ ["vt_settings", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType"]
4285
+ ]
4286
+ )
4287
+
4288
+ LiteralRegistry.register(
4289
+ :class => Virtuozzo::SOAP::Types::Environment::Get_native_configResponse,
4290
+ :schema_name => XSD::QName.new(NsEnvm, "get_native_configResponse"),
4291
+ :schema_element => [
4292
+ ["native_config", "Virtuozzo::SOAP::Types::Environment::Native_configType"]
4293
+ ]
4294
+ )
4295
+
4296
+ LiteralRegistry.register(
4297
+ :class => Virtuozzo::SOAP::Types::Environment::Get_virtual_configResponse,
4298
+ :schema_name => XSD::QName.new(NsEnvm, "get_virtual_configResponse"),
4299
+ :schema_element => [
4300
+ ["virtual_config", "Virtuozzo::SOAP::Types::Environment::Venv_configType"]
4301
+ ]
4302
+ )
4303
+
4304
+ LiteralRegistry.register(
4305
+ :class => Virtuozzo::SOAP::Types::Environment::Get_log,
4306
+ :schema_name => XSD::QName.new(NsEnvm, "get_log"),
4307
+ :schema_element => [
4308
+ ["start_time", nil, [0, 1]],
4309
+ ["end_time", nil, [0, 1]],
4310
+ ["records", "SOAP::SOAPInt", [0, 1]],
4311
+ ["options", "Virtuozzo::SOAP::Types::Environment::Log_optionsType", [0, 1]]
4312
+ ]
4313
+ )
4314
+
4315
+ LiteralRegistry.register(
4316
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_infoType,
4317
+ :schema_name => XSD::QName.new(NsEnvm, "vt_info"),
4318
+ :schema_element => [
4319
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
4320
+ ]
4321
+ )
4322
+
4323
+ LiteralRegistry.register(
4324
+ :class => Virtuozzo::SOAP::Types::Environment::Vt_settingsType,
4325
+ :schema_name => XSD::QName.new(NsEnvm, "vt_settings"),
4326
+ :schema_element => [
4327
+ ["default_sample_id", nil, [0, 1]]
4328
+ ]
4329
+ )
4330
+
4331
+ LiteralRegistry.register(
4332
+ :class => Virtuozzo::SOAP::Types::Environment::Env_configType,
4333
+ :schema_name => XSD::QName.new(NsEnvm, "env_config"),
4334
+ :schema_element => [
4335
+ ["name", "SOAP::SOAPString", [0, 1]],
4336
+ ["description", "SOAP::SOAPBase64", [0, 1]],
4337
+ ["domain", "SOAP::SOAPString", [0, 1]],
4338
+ ["hostname", "SOAP::SOAPString", [0, 1]],
4339
+ ["address", "Virtuozzo::SOAP::Types::Environment::Ip_addressType[]", [0, nil]],
4340
+ ["architecture", "SOAP::SOAPString", [0, 1]],
4341
+ ["os", "Virtuozzo::SOAP::Types::Environment::OsType", [0, 1]],
4342
+ ["type", "SOAP::SOAPString", [0, 1]],
4343
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
4344
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
4345
+ ["base_sample_id", nil, [0, 1]],
4346
+ ["base_snapshot_id", nil, [0, 1]],
4347
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
4348
+ ]
4349
+ )
4350
+
4351
+ LiteralRegistry.register(
4352
+ :class => Virtuozzo::SOAP::Types::Environment::CreateResponse,
4353
+ :schema_name => XSD::QName.new(NsEnvm, "createResponse"),
4354
+ :schema_element => [
4355
+ ["env", "Virtuozzo::SOAP::Types::Environment::EnvType"]
4356
+ ]
4357
+ )
4358
+
4359
+ LiteralRegistry.register(
4360
+ :class => Virtuozzo::SOAP::Types::Environment::RepairResponse,
4361
+ :schema_name => XSD::QName.new(NsEnvm, "repairResponse"),
4362
+ :schema_element => []
4363
+ )
4364
+
4365
+ LiteralRegistry.register(
4366
+ :class => Virtuozzo::SOAP::Types::Environment::Stop_repairResponse,
4367
+ :schema_name => XSD::QName.new(NsEnvm, "stop_repairResponse"),
4368
+ :schema_element => []
4369
+ )
4370
+
4371
+ LiteralRegistry.register(
4372
+ :class => Virtuozzo::SOAP::Types::Environment::StartResponse,
4373
+ :schema_name => XSD::QName.new(NsEnvm, "startResponse"),
4374
+ :schema_element => []
4375
+ )
4376
+
4377
+ LiteralRegistry.register(
4378
+ :class => Virtuozzo::SOAP::Types::Environment::StopResponse,
4379
+ :schema_name => XSD::QName.new(NsEnvm, "stopResponse"),
4380
+ :schema_element => []
4381
+ )
4382
+
4383
+ LiteralRegistry.register(
4384
+ :class => Virtuozzo::SOAP::Types::Environment::RestartResponse,
4385
+ :schema_name => XSD::QName.new(NsEnvm, "restartResponse"),
4386
+ :schema_element => []
4387
+ )
4388
+
4389
+ LiteralRegistry.register(
4390
+ :class => Virtuozzo::SOAP::Types::Environment::DestroyResponse,
4391
+ :schema_name => XSD::QName.new(NsEnvm, "destroyResponse"),
4392
+ :schema_element => []
4393
+ )
4394
+
4395
+ LiteralRegistry.register(
4396
+ :class => Virtuozzo::SOAP::Types::Environment::Get_infoResponse,
4397
+ :schema_name => XSD::QName.new(NsEnvm, "get_infoResponse"),
4398
+ :schema_element => [
4399
+ ["env", "Virtuozzo::SOAP::Types::Environment::EnvType[]", [1, nil]]
4400
+ ]
4401
+ )
4402
+
4403
+ LiteralRegistry.register(
4404
+ :class => Virtuozzo::SOAP::Types::Environment::Get_listResponse,
4405
+ :schema_name => XSD::QName.new(NsEnvm, "get_listResponse"),
4406
+ :schema_element => [
4407
+ ["eid", "[]", [1, nil]]
4408
+ ]
4409
+ )
4410
+
4411
+ LiteralRegistry.register(
4412
+ :class => Virtuozzo::SOAP::Types::Environment::SetResponse,
4413
+ :schema_name => XSD::QName.new(NsEnvm, "setResponse"),
4414
+ :schema_element => [
4415
+ ["env_config", "Virtuozzo::SOAP::Types::Environment::Env_configType"]
4416
+ ]
4417
+ )
4418
+
4419
+ LiteralRegistry.register(
4420
+ :class => Virtuozzo::SOAP::Types::Environment::Put_privateResponse,
4421
+ :schema_name => XSD::QName.new(NsEnvm, "put_privateResponse"),
4422
+ :schema_element => []
4423
+ )
4424
+
4425
+ LiteralRegistry.register(
4426
+ :class => Virtuozzo::SOAP::Types::Environment::Get_privateResponse,
4427
+ :schema_name => XSD::QName.new(NsEnvm, "get_privateResponse"),
4428
+ :schema_element => [
4429
+ ["value", "SOAP::SOAPBase64"]
4430
+ ]
4431
+ )
4432
+
4433
+ LiteralRegistry.register(
4434
+ :class => Virtuozzo::SOAP::Types::Environment::Get_vt_settingsResponse,
4435
+ :schema_name => XSD::QName.new(NsEnvm, "get_vt_settingsResponse"),
4436
+ :schema_element => [
4437
+ ["vt_settings", "Virtuozzo::SOAP::Types::Environment::Vt_settingsType"]
4438
+ ]
4439
+ )
4440
+
4441
+ LiteralRegistry.register(
4442
+ :class => Virtuozzo::SOAP::Types::Environment::Set_vt_settingsResponse,
4443
+ :schema_name => XSD::QName.new(NsEnvm, "set_vt_settingsResponse"),
4444
+ :schema_element => []
4445
+ )
4446
+
4447
+ LiteralRegistry.register(
4448
+ :class => Virtuozzo::SOAP::Types::Environment::Get_vt_infoResponse,
4449
+ :schema_name => XSD::QName.new(NsEnvm, "get_vt_infoResponse"),
4450
+ :schema_element => [
4451
+ ["vt_info", "Virtuozzo::SOAP::Types::Environment::Vt_infoType"]
4452
+ ]
4453
+ )
4454
+
4455
+ LiteralRegistry.register(
4456
+ :class => Virtuozzo::SOAP::Types::Environment::Get_logResponse,
4457
+ :schema_name => XSD::QName.new(NsEnvm, "get_logResponse"),
4458
+ :schema_element => [
4459
+ ["log", "SOAP::SOAPBase64"]
4460
+ ]
4461
+ )
4462
+ end
4463
+
4464
+ end
4465
+ end
4466
+ end