plainprograms-virtuozzo 0.1.0

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