plainprograms-virtuozzo 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. data/CHANGELOG.rdoc +12 -1
  2. data/Rakefile +1 -1
  3. data/lib/virtuozzo/soap/drivers/{device_driver.rb → device.rb} +6 -6
  4. data/lib/virtuozzo/soap/drivers/{environment_driver.rb → environment.rb} +3 -3
  5. data/lib/virtuozzo/soap/drivers/{network_driver.rb → network.rb} +6 -6
  6. data/lib/virtuozzo/soap/drivers/{process_driver.rb → process.rb} +6 -6
  7. data/lib/virtuozzo/soap/drivers/{process_info_driver.rb → process_info.rb} +6 -6
  8. data/lib/virtuozzo/soap/drivers/{relocator_driver.rb → relocator.rb} +6 -6
  9. data/lib/virtuozzo/soap/drivers/{session_driver.rb → session.rb} +3 -3
  10. data/lib/virtuozzo/soap/drivers/{support_driver.rb → support.rb} +6 -6
  11. data/lib/virtuozzo/soap/drivers/{template_driver.rb → template.rb} +6 -6
  12. data/lib/virtuozzo/soap/drivers/{up2date_driver.rb → up2date.rb} +7 -6
  13. data/lib/virtuozzo/soap/mapping_registries/device.rb +643 -643
  14. data/lib/virtuozzo/soap/mapping_registries/environment.rb +870 -870
  15. data/lib/virtuozzo/soap/mapping_registries/network.rb +531 -531
  16. data/lib/virtuozzo/soap/mapping_registries/process.rb +525 -525
  17. data/lib/virtuozzo/soap/mapping_registries/process_info.rb +478 -478
  18. data/lib/virtuozzo/soap/mapping_registries/relocator.rb +629 -629
  19. data/lib/virtuozzo/soap/mapping_registries/session.rb +521 -521
  20. data/lib/virtuozzo/soap/mapping_registries/support.rb +515 -515
  21. data/lib/virtuozzo/soap/mapping_registries/template.rb +646 -646
  22. data/lib/virtuozzo/soap/mapping_registries/up2date.rb +517 -517
  23. data/lib/virtuozzo/soap/{drivers/device/types.rb → types/device.rb} +1 -1
  24. data/lib/virtuozzo/soap/{drivers/environment/types.rb → types/environment.rb} +1 -1
  25. data/lib/virtuozzo/soap/{drivers/network/types.rb → types/network.rb} +1 -1
  26. data/lib/virtuozzo/soap/{drivers/process/types.rb → types/process.rb} +1 -1
  27. data/lib/virtuozzo/soap/{drivers/process_info/types.rb → types/process_info.rb} +1 -1
  28. data/lib/virtuozzo/soap/{drivers/relocator/types.rb → types/relocator.rb} +1 -1
  29. data/lib/virtuozzo/soap/{drivers/session/types.rb → types/session.rb} +1 -1
  30. data/lib/virtuozzo/soap/{drivers/support/types.rb → types/support.rb} +1 -1
  31. data/lib/virtuozzo/soap/{drivers/template/types.rb → types/template.rb} +1 -1
  32. data/lib/virtuozzo/soap/{drivers/up2date/types.rb → types/up2date.rb} +1 -1
  33. data/lib/virtuozzo/soap.rb +103 -67
  34. data/virtuozzo.gemspec +4 -4
  35. metadata +43 -43
@@ -1,4 +1,4 @@
1
- require 'virtuozzo/soap/drivers/support/types'
1
+ require 'virtuozzo/soap/types/support'
2
2
  require 'soap/mapping'
3
3
 
4
4
  module Virtuozzo # :nodoc:
@@ -17,21 +17,21 @@ module Virtuozzo # :nodoc:
17
17
  NsXMLSchema = "http://www.w3.org/2001/XMLSchema"
18
18
 
19
19
  EncodedRegistry.register(
20
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType,
20
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType,
21
21
  :schema_type => XSD::QName.new(NsVzasupport, "vzasupportType"),
22
22
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
23
23
  :schema_element => [ :choice,
24
- ["configuration", ["Virtuozzo::SOAP::Drivers::Support::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
25
- ["ok", ["Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
26
- ["error", ["Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error[]", XSD::QName.new(NsProtocol, "error")]],
24
+ ["configuration", ["Virtuozzo::SOAP::Types::Support::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
25
+ ["ok", ["Virtuozzo::SOAP::Types::Support::VzasupportType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
26
+ ["error", ["Virtuozzo::SOAP::Types::Support::VzasupportType::Error[]", XSD::QName.new(NsProtocol, "error")]],
27
27
  [
28
- ["start_channel", "Virtuozzo::SOAP::Drivers::Support::Start_channel[]"],
29
- ["stop_channel", "Virtuozzo::SOAP::Drivers::Support::Stop_channel[]"],
30
- ["get_channel_status", "Virtuozzo::SOAP::Drivers::Support::Get_channel_status[]"],
31
- ["set_key", "Virtuozzo::SOAP::Drivers::Support::Set_key[]"],
32
- ["get_key_status", "Virtuozzo::SOAP::Drivers::Support::Get_key_status[]"],
33
- ["remove_key", "Virtuozzo::SOAP::Drivers::Support::Remove_key[]"],
34
- ["problem_report", "Virtuozzo::SOAP::Drivers::Support::Problem_report[]"]
28
+ ["start_channel", "Virtuozzo::SOAP::Types::Support::Start_channel[]"],
29
+ ["stop_channel", "Virtuozzo::SOAP::Types::Support::Stop_channel[]"],
30
+ ["get_channel_status", "Virtuozzo::SOAP::Types::Support::Get_channel_status[]"],
31
+ ["set_key", "Virtuozzo::SOAP::Types::Support::Set_key[]"],
32
+ ["get_key_status", "Virtuozzo::SOAP::Types::Support::Get_key_status[]"],
33
+ ["remove_key", "Virtuozzo::SOAP::Types::Support::Remove_key[]"],
34
+ ["problem_report", "Virtuozzo::SOAP::Types::Support::Problem_report[]"]
35
35
  ],
36
36
  [
37
37
  ["channel_status", "SOAP::SOAPInt[]"],
@@ -42,7 +42,7 @@ module Virtuozzo # :nodoc:
42
42
  )
43
43
 
44
44
  EncodedRegistry.register(
45
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok,
45
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType::Ok,
46
46
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
47
47
  :is_anonymous => true,
48
48
  :schema_qualified => true,
@@ -50,7 +50,7 @@ module Virtuozzo # :nodoc:
50
50
  )
51
51
 
52
52
  EncodedRegistry.register(
53
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error,
53
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType::Error,
54
54
  :schema_name => XSD::QName.new(NsProtocol, "error"),
55
55
  :is_anonymous => true,
56
56
  :schema_qualified => true,
@@ -61,16 +61,16 @@ module Virtuozzo # :nodoc:
61
61
  )
62
62
 
63
63
  EncodedRegistry.register(
64
- :class => Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType,
64
+ :class => Virtuozzo::SOAP::Types::Support::Vzasupport_configurationType,
65
65
  :schema_type => XSD::QName.new(NsVzasupport, "vzasupport_configurationType"),
66
66
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
67
67
  :schema_element => [
68
- ["timeouts", "Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType::Timeouts"]
68
+ ["timeouts", "Virtuozzo::SOAP::Types::Support::Vzasupport_configurationType::Timeouts"]
69
69
  ]
70
70
  )
71
71
 
72
72
  EncodedRegistry.register(
73
- :class => Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType::Timeouts,
73
+ :class => Virtuozzo::SOAP::Types::Support::Vzasupport_configurationType::Timeouts,
74
74
  :schema_name => XSD::QName.new(NsVzasupport, "timeouts"),
75
75
  :is_anonymous => true,
76
76
  :schema_qualified => true,
@@ -82,15 +82,15 @@ module Virtuozzo # :nodoc:
82
82
  )
83
83
 
84
84
  EncodedRegistry.register(
85
- :class => Virtuozzo::SOAP::Drivers::Support::Packet_headerType,
85
+ :class => Virtuozzo::SOAP::Types::Support::Packet_headerType,
86
86
  :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
87
87
  :schema_element => [
88
- ["auth", "Virtuozzo::SOAP::Drivers::Support::AuthType", [0, 1]],
88
+ ["auth", "Virtuozzo::SOAP::Types::Support::AuthType", [0, 1]],
89
89
  ["cookie", "SOAP::SOAPString", [0, 1]],
90
90
  ["target", "SOAP::SOAPString[]", [0, nil]],
91
91
  ["origin", "SOAP::SOAPString", [0, 1]],
92
- ["src", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
93
- ["dst", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
92
+ ["src", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
93
+ ["dst", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
94
94
  ["session", "SOAP::SOAPString", [0, 1]]
95
95
  ],
96
96
  :schema_attribute => {
@@ -108,26 +108,26 @@ module Virtuozzo # :nodoc:
108
108
  )
109
109
 
110
110
  EncodedRegistry.register(
111
- :class => Virtuozzo::SOAP::Drivers::Support::OperatorType,
111
+ :class => Virtuozzo::SOAP::Types::Support::OperatorType,
112
112
  :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
113
113
  :schema_element => [ :choice,
114
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"]
114
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"]
115
115
  ]
116
116
  )
117
117
 
118
118
  EncodedRegistry.register(
119
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType,
119
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType,
120
120
  :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
121
121
  :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
122
122
  :schema_element => [ :choice,
123
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"],
124
- ["ok", "Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok[]"],
125
- ["error", "Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error[]"]
123
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"],
124
+ ["ok", "Virtuozzo::SOAP::Types::Support::Operator_functionalType::Ok[]"],
125
+ ["error", "Virtuozzo::SOAP::Types::Support::Operator_functionalType::Error[]"]
126
126
  ]
127
127
  )
128
128
 
129
129
  EncodedRegistry.register(
130
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok,
130
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType::Ok,
131
131
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
132
132
  :is_anonymous => true,
133
133
  :schema_qualified => true,
@@ -135,7 +135,7 @@ module Virtuozzo # :nodoc:
135
135
  )
136
136
 
137
137
  EncodedRegistry.register(
138
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error,
138
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType::Error,
139
139
  :schema_name => XSD::QName.new(NsProtocol, "error"),
140
140
  :is_anonymous => true,
141
141
  :schema_qualified => true,
@@ -146,24 +146,24 @@ module Virtuozzo # :nodoc:
146
146
  )
147
147
 
148
148
  EncodedRegistry.register(
149
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType,
149
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType,
150
150
  :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
151
151
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
152
152
  :schema_element => [ :choice,
153
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"],
154
- ["ok", "Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok[]"],
155
- ["error", "Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error[]"],
153
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"],
154
+ ["ok", "Virtuozzo::SOAP::Types::Support::Operator_periodicType::Ok[]"],
155
+ ["error", "Virtuozzo::SOAP::Types::Support::Operator_periodicType::Error[]"],
156
156
  [ :choice,
157
- ["start_monitor", "Virtuozzo::SOAP::Drivers::Support::Start_monitorType"],
158
- ["stop_monitor", "Virtuozzo::SOAP::Drivers::Support::Stop_monitorType"],
159
- ["set_period", "Virtuozzo::SOAP::Drivers::Support::Set_periodType", [0, 1]],
157
+ ["start_monitor", "Virtuozzo::SOAP::Types::Support::Start_monitorType"],
158
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Support::Stop_monitorType"],
159
+ ["set_period", "Virtuozzo::SOAP::Types::Support::Set_periodType", [0, 1]],
160
160
  ["report", nil, [0, 1]]
161
161
  ]
162
162
  ]
163
163
  )
164
164
 
165
165
  EncodedRegistry.register(
166
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok,
166
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType::Ok,
167
167
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
168
168
  :is_anonymous => true,
169
169
  :schema_qualified => true,
@@ -171,7 +171,7 @@ module Virtuozzo # :nodoc:
171
171
  )
172
172
 
173
173
  EncodedRegistry.register(
174
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error,
174
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType::Error,
175
175
  :schema_name => XSD::QName.new(NsProtocol, "error"),
176
176
  :is_anonymous => true,
177
177
  :schema_qualified => true,
@@ -182,7 +182,7 @@ module Virtuozzo # :nodoc:
182
182
  )
183
183
 
184
184
  EncodedRegistry.register(
185
- :class => Virtuozzo::SOAP::Drivers::Support::Set_periodType,
185
+ :class => Virtuozzo::SOAP::Types::Support::Set_periodType,
186
186
  :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
187
187
  :schema_element => [
188
188
  ["collect", "SOAP::SOAPInt"],
@@ -192,7 +192,7 @@ module Virtuozzo # :nodoc:
192
192
  )
193
193
 
194
194
  EncodedRegistry.register(
195
- :class => Virtuozzo::SOAP::Drivers::Support::Start_monitorType,
195
+ :class => Virtuozzo::SOAP::Types::Support::Start_monitorType,
196
196
  :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
197
197
  :schema_element => [
198
198
  ["period", "SOAP::SOAPInt"],
@@ -201,7 +201,7 @@ module Virtuozzo # :nodoc:
201
201
  )
202
202
 
203
203
  EncodedRegistry.register(
204
- :class => Virtuozzo::SOAP::Drivers::Support::Stop_monitorType,
204
+ :class => Virtuozzo::SOAP::Types::Support::Stop_monitorType,
205
205
  :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
206
206
  :schema_element => [
207
207
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -209,7 +209,7 @@ module Virtuozzo # :nodoc:
209
209
  )
210
210
 
211
211
  EncodedRegistry.register(
212
- :class => Virtuozzo::SOAP::Drivers::Support::AuthType,
212
+ :class => Virtuozzo::SOAP::Types::Support::AuthType,
213
213
  :schema_type => XSD::QName.new(NsProtocol, "authType"),
214
214
  :schema_element => [
215
215
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -217,7 +217,7 @@ module Virtuozzo # :nodoc:
217
217
  )
218
218
 
219
219
  EncodedRegistry.register(
220
- :class => Virtuozzo::SOAP::Drivers::Support::Event_configurationType,
220
+ :class => Virtuozzo::SOAP::Types::Support::Event_configurationType,
221
221
  :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
222
222
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
223
223
  :schema_element => [
@@ -226,7 +226,7 @@ module Virtuozzo # :nodoc:
226
226
  )
227
227
 
228
228
  EncodedRegistry.register(
229
- :class => Virtuozzo::SOAP::Drivers::Support::Periodic_configurationType,
229
+ :class => Virtuozzo::SOAP::Types::Support::Periodic_configurationType,
230
230
  :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
231
231
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
232
232
  :schema_element => [
@@ -238,7 +238,7 @@ module Virtuozzo # :nodoc:
238
238
  )
239
239
 
240
240
  EncodedRegistry.register(
241
- :class => Virtuozzo::SOAP::Drivers::Support::RouteType,
241
+ :class => Virtuozzo::SOAP::Types::Support::RouteType,
242
242
  :schema_type => XSD::QName.new(NsProtocol, "routeType"),
243
243
  :schema_element => [
244
244
  ["director", "SOAP::SOAPString", [0, 1]],
@@ -249,21 +249,21 @@ module Virtuozzo # :nodoc:
249
249
  )
250
250
 
251
251
  EncodedRegistry.register(
252
- :class => Virtuozzo::SOAP::Drivers::Support::DataType,
252
+ :class => Virtuozzo::SOAP::Types::Support::DataType,
253
253
  :schema_type => XSD::QName.new(NsProtocol, "dataType"),
254
254
  :schema_element => [
255
- ["operator", "Virtuozzo::SOAP::Drivers::Support::OperatorType[]"]
255
+ ["operator", "Virtuozzo::SOAP::Types::Support::OperatorType[]"]
256
256
  ]
257
257
  )
258
258
 
259
259
  EncodedRegistry.register(
260
- :class => Virtuozzo::SOAP::Drivers::Support::ConfigurationType,
260
+ :class => Virtuozzo::SOAP::Types::Support::ConfigurationType,
261
261
  :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
262
262
  :schema_element => []
263
263
  )
264
264
 
265
265
  EncodedRegistry.register(
266
- :class => Virtuozzo::SOAP::Drivers::Support::OsType,
266
+ :class => Virtuozzo::SOAP::Types::Support::OsType,
267
267
  :schema_type => XSD::QName.new(NsTypes, "osType"),
268
268
  :schema_element => [
269
269
  ["platform", "SOAP::SOAPString", [0, 1]],
@@ -274,7 +274,7 @@ module Virtuozzo # :nodoc:
274
274
  )
275
275
 
276
276
  EncodedRegistry.register(
277
- :class => Virtuozzo::SOAP::Drivers::Support::Env_statusType,
277
+ :class => Virtuozzo::SOAP::Types::Support::Env_statusType,
278
278
  :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
279
279
  :schema_element => [
280
280
  ["state", "SOAP::SOAPInt", [0, 1]],
@@ -283,7 +283,7 @@ module Virtuozzo # :nodoc:
283
283
  )
284
284
 
285
285
  EncodedRegistry.register(
286
- :class => Virtuozzo::SOAP::Drivers::Support::QosType,
286
+ :class => Virtuozzo::SOAP::Types::Support::QosType,
287
287
  :schema_type => XSD::QName.new(NsTypes, "qosType"),
288
288
  :schema_element => [
289
289
  ["id", "SOAP::SOAPString"],
@@ -294,16 +294,16 @@ module Virtuozzo # :nodoc:
294
294
  )
295
295
 
296
296
  EncodedRegistry.register(
297
- :class => Virtuozzo::SOAP::Drivers::Support::Env_configType,
297
+ :class => Virtuozzo::SOAP::Types::Support::Env_configType,
298
298
  :schema_type => XSD::QName.new(NsTypes, "env_configType"),
299
299
  :schema_element => [
300
300
  ["name", "SOAP::SOAPString", [0, 1]],
301
301
  ["description", "SOAP::SOAPBase64", [0, 1]],
302
302
  ["domain", "SOAP::SOAPString", [0, 1]],
303
303
  ["hostname", "SOAP::SOAPString", [0, 1]],
304
- ["address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
304
+ ["address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
305
305
  ["architecture", "SOAP::SOAPString", [0, 1]],
306
- ["os", "Virtuozzo::SOAP::Drivers::Support::OsType", [0, 1]],
306
+ ["os", "Virtuozzo::SOAP::Types::Support::OsType", [0, 1]],
307
307
  ["type", "SOAP::SOAPString", [0, 1]],
308
308
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
309
309
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
@@ -314,7 +314,7 @@ module Virtuozzo # :nodoc:
314
314
  )
315
315
 
316
316
  EncodedRegistry.register(
317
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType,
317
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType,
318
318
  :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
319
319
  :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
320
320
  :schema_element => [
@@ -322,40 +322,40 @@ module Virtuozzo # :nodoc:
322
322
  ["description", "SOAP::SOAPBase64", [0, 1]],
323
323
  ["domain", "SOAP::SOAPString", [0, 1]],
324
324
  ["hostname", "SOAP::SOAPString", [0, 1]],
325
- ["address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
325
+ ["address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
326
326
  ["architecture", "SOAP::SOAPString", [0, 1]],
327
- ["os", "Virtuozzo::SOAP::Drivers::Support::OsType", [0, 1]],
327
+ ["os", "Virtuozzo::SOAP::Types::Support::OsType", [0, 1]],
328
328
  ["type", "SOAP::SOAPString", [0, 1]],
329
329
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
330
330
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
331
331
  ["base_sample_id", nil, [0, 1]],
332
332
  ["base_snapshot_id", nil, [0, 1]],
333
333
  ["child_type", "SOAP::SOAPString[]", [0, nil]],
334
- ["qos", "Virtuozzo::SOAP::Drivers::Support::QosType[]", [0, nil]]
334
+ ["qos", "Virtuozzo::SOAP::Types::Support::QosType[]", [0, nil]]
335
335
  ]
336
336
  )
337
337
 
338
338
  EncodedRegistry.register(
339
- :class => Virtuozzo::SOAP::Drivers::Support::Native_configType,
339
+ :class => Virtuozzo::SOAP::Types::Support::Native_configType,
340
340
  :schema_type => XSD::QName.new(NsTypes, "native_configType"),
341
341
  :schema_element => []
342
342
  )
343
343
 
344
344
  EncodedRegistry.register(
345
- :class => Virtuozzo::SOAP::Drivers::Support::EnvType,
345
+ :class => Virtuozzo::SOAP::Types::Support::EnvType,
346
346
  :schema_type => XSD::QName.new(NsTypes, "envType"),
347
347
  :schema_element => [
348
348
  ["parent_eid", nil],
349
349
  ["eid", nil],
350
- ["status", "Virtuozzo::SOAP::Drivers::Support::Env_statusType", [0, 1]],
350
+ ["status", "Virtuozzo::SOAP::Types::Support::Env_statusType", [0, 1]],
351
351
  ["alert", "SOAP::SOAPInt", [0, 1]],
352
- ["config", "Virtuozzo::SOAP::Drivers::Support::Env_configType", [0, 1]],
353
- ["virtual_config", "Virtuozzo::SOAP::Drivers::Support::Venv_configType", [0, 1]]
352
+ ["config", "Virtuozzo::SOAP::Types::Support::Env_configType", [0, 1]],
353
+ ["virtual_config", "Virtuozzo::SOAP::Types::Support::Venv_configType", [0, 1]]
354
354
  ]
355
355
  )
356
356
 
357
357
  EncodedRegistry.register(
358
- :class => Virtuozzo::SOAP::Drivers::Support::ProcessesType,
358
+ :class => Virtuozzo::SOAP::Types::Support::ProcessesType,
359
359
  :schema_type => XSD::QName.new(NsTypes, "processesType"),
360
360
  :schema_element => [
361
361
  ["run", "SOAP::SOAPInt"],
@@ -368,7 +368,7 @@ module Virtuozzo # :nodoc:
368
368
  )
369
369
 
370
370
  EncodedRegistry.register(
371
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avgType,
371
+ :class => Virtuozzo::SOAP::Types::Support::Load_avgType,
372
372
  :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
373
373
  :schema_element => [
374
374
  ["l1", "SOAP::SOAPDouble"],
@@ -378,7 +378,7 @@ module Virtuozzo # :nodoc:
378
378
  )
379
379
 
380
380
  EncodedRegistry.register(
381
- :class => Virtuozzo::SOAP::Drivers::Support::Cpu_loadType,
381
+ :class => Virtuozzo::SOAP::Types::Support::Cpu_loadType,
382
382
  :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
383
383
  :schema_element => [
384
384
  ["system", "SOAP::SOAPLong"],
@@ -389,7 +389,7 @@ module Virtuozzo # :nodoc:
389
389
  )
390
390
 
391
391
  EncodedRegistry.register(
392
- :class => Virtuozzo::SOAP::Drivers::Support::CpuType,
392
+ :class => Virtuozzo::SOAP::Types::Support::CpuType,
393
393
  :schema_type => XSD::QName.new(NsTypes, "cpuType"),
394
394
  :schema_element => [
395
395
  ["mhz", "SOAP::SOAPInt"],
@@ -405,16 +405,16 @@ module Virtuozzo # :nodoc:
405
405
  )
406
406
 
407
407
  EncodedRegistry.register(
408
- :class => Virtuozzo::SOAP::Drivers::Support::TransferType,
408
+ :class => Virtuozzo::SOAP::Types::Support::TransferType,
409
409
  :schema_type => XSD::QName.new(NsTypes, "transferType"),
410
410
  :schema_element => [
411
- ["input", "Virtuozzo::SOAP::Drivers::Support::TransferType::Input"],
412
- ["output", "Virtuozzo::SOAP::Drivers::Support::TransferType::Output"]
411
+ ["input", "Virtuozzo::SOAP::Types::Support::TransferType::Input"],
412
+ ["output", "Virtuozzo::SOAP::Types::Support::TransferType::Output"]
413
413
  ]
414
414
  )
415
415
 
416
416
  EncodedRegistry.register(
417
- :class => Virtuozzo::SOAP::Drivers::Support::TransferType::Input,
417
+ :class => Virtuozzo::SOAP::Types::Support::TransferType::Input,
418
418
  :schema_name => XSD::QName.new(NsTypes, "input"),
419
419
  :is_anonymous => true,
420
420
  :schema_qualified => true,
@@ -425,7 +425,7 @@ module Virtuozzo # :nodoc:
425
425
  )
426
426
 
427
427
  EncodedRegistry.register(
428
- :class => Virtuozzo::SOAP::Drivers::Support::TransferType::Output,
428
+ :class => Virtuozzo::SOAP::Types::Support::TransferType::Output,
429
429
  :schema_name => XSD::QName.new(NsTypes, "output"),
430
430
  :is_anonymous => true,
431
431
  :schema_qualified => true,
@@ -436,16 +436,16 @@ module Virtuozzo # :nodoc:
436
436
  )
437
437
 
438
438
  EncodedRegistry.register(
439
- :class => Virtuozzo::SOAP::Drivers::Support::System_nodeType,
439
+ :class => Virtuozzo::SOAP::Types::Support::System_nodeType,
440
440
  :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
441
441
  :schema_element => [
442
- ["address", "Virtuozzo::SOAP::Drivers::Support::System_nodeType::Address"],
443
- ["login", "Virtuozzo::SOAP::Drivers::Support::System_nodeType::Login", [0, 1]]
442
+ ["address", "Virtuozzo::SOAP::Types::Support::System_nodeType::Address"],
443
+ ["login", "Virtuozzo::SOAP::Types::Support::System_nodeType::Login", [0, 1]]
444
444
  ]
445
445
  )
446
446
 
447
447
  EncodedRegistry.register(
448
- :class => Virtuozzo::SOAP::Drivers::Support::System_nodeType::Address,
448
+ :class => Virtuozzo::SOAP::Types::Support::System_nodeType::Address,
449
449
  :schema_name => XSD::QName.new(NsTypes, "address"),
450
450
  :is_anonymous => true,
451
451
  :schema_qualified => true,
@@ -455,7 +455,7 @@ module Virtuozzo # :nodoc:
455
455
  )
456
456
 
457
457
  EncodedRegistry.register(
458
- :class => Virtuozzo::SOAP::Drivers::Support::System_nodeType::Login,
458
+ :class => Virtuozzo::SOAP::Types::Support::System_nodeType::Login,
459
459
  :schema_name => XSD::QName.new(NsTypes, "login"),
460
460
  :is_anonymous => true,
461
461
  :schema_qualified => true,
@@ -466,7 +466,7 @@ module Virtuozzo # :nodoc:
466
466
  )
467
467
 
468
468
  EncodedRegistry.register(
469
- :class => Virtuozzo::SOAP::Drivers::Support::ResourceType,
469
+ :class => Virtuozzo::SOAP::Types::Support::ResourceType,
470
470
  :schema_type => XSD::QName.new(NsTypes, "resourceType"),
471
471
  :schema_element => [
472
472
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -479,7 +479,7 @@ module Virtuozzo # :nodoc:
479
479
  )
480
480
 
481
481
  EncodedRegistry.register(
482
- :class => Virtuozzo::SOAP::Drivers::Support::IntervalType,
482
+ :class => Virtuozzo::SOAP::Types::Support::IntervalType,
483
483
  :schema_type => XSD::QName.new(NsTypes, "intervalType"),
484
484
  :schema_element => [
485
485
  ["start_time", nil],
@@ -488,7 +488,7 @@ module Virtuozzo # :nodoc:
488
488
  )
489
489
 
490
490
  EncodedRegistry.register(
491
- :class => Virtuozzo::SOAP::Drivers::Support::StatsType,
491
+ :class => Virtuozzo::SOAP::Types::Support::StatsType,
492
492
  :schema_type => XSD::QName.new(NsTypes, "statsType"),
493
493
  :schema_element => [
494
494
  ["avg", "SOAP::SOAPLong", [0, 1]],
@@ -502,7 +502,7 @@ module Virtuozzo # :nodoc:
502
502
  )
503
503
 
504
504
  EncodedRegistry.register(
505
- :class => Virtuozzo::SOAP::Drivers::Support::Net_addressType,
505
+ :class => Virtuozzo::SOAP::Types::Support::Net_addressType,
506
506
  :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
507
507
  :schema_element => [
508
508
  ["host", nil],
@@ -511,16 +511,16 @@ module Virtuozzo # :nodoc:
511
511
  )
512
512
 
513
513
  EncodedRegistry.register(
514
- :class => Virtuozzo::SOAP::Drivers::Support::Net_classType,
514
+ :class => Virtuozzo::SOAP::Types::Support::Net_classType,
515
515
  :schema_type => XSD::QName.new(NsTypes, "net_classType"),
516
516
  :schema_element => [
517
517
  ["id", "SOAP::SOAPString", [0, 1]],
518
- ["transfer", "Virtuozzo::SOAP::Drivers::Support::TransferType", [0, 1]]
518
+ ["transfer", "Virtuozzo::SOAP::Types::Support::TransferType", [0, 1]]
519
519
  ]
520
520
  )
521
521
 
522
522
  EncodedRegistry.register(
523
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_rangeType,
523
+ :class => Virtuozzo::SOAP::Types::Support::Ip_rangeType,
524
524
  :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
525
525
  :schema_element => [
526
526
  ["id", "SOAP::SOAPString", [0, 1]],
@@ -531,19 +531,19 @@ module Virtuozzo # :nodoc:
531
531
  )
532
532
 
533
533
  EncodedRegistry.register(
534
- :class => Virtuozzo::SOAP::Drivers::Support::Sample_confType,
534
+ :class => Virtuozzo::SOAP::Types::Support::Sample_confType,
535
535
  :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
536
536
  :schema_element => [
537
- ["env_config", "Virtuozzo::SOAP::Drivers::Support::Env_configType"],
537
+ ["env_config", "Virtuozzo::SOAP::Types::Support::Env_configType"],
538
538
  ["id", "SOAP::SOAPString", [0, 1]],
539
539
  ["name", "SOAP::SOAPString"],
540
540
  ["comment", "SOAP::SOAPBase64", [0, 1]],
541
- ["vt_version", "Virtuozzo::SOAP::Drivers::Support::Sample_confType::Vt_version", [0, 1]]
541
+ ["vt_version", "Virtuozzo::SOAP::Types::Support::Sample_confType::Vt_version", [0, 1]]
542
542
  ]
543
543
  )
544
544
 
545
545
  EncodedRegistry.register(
546
- :class => Virtuozzo::SOAP::Drivers::Support::Sample_confType::Vt_version,
546
+ :class => Virtuozzo::SOAP::Types::Support::Sample_confType::Vt_version,
547
547
  :schema_name => XSD::QName.new(NsTypes, "vt_version"),
548
548
  :is_anonymous => true,
549
549
  :schema_qualified => true,
@@ -555,34 +555,34 @@ module Virtuozzo # :nodoc:
555
555
  )
556
556
 
557
557
  EncodedRegistry.register(
558
- :class => Virtuozzo::SOAP::Drivers::Support::InterfaceType,
558
+ :class => Virtuozzo::SOAP::Types::Support::InterfaceType,
559
559
  :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
560
560
  :schema_element => [
561
561
  ["name", "SOAP::SOAPString"],
562
562
  ["bandwidth", "SOAP::SOAPInt", [0, 1]],
563
- ["transfer", "Virtuozzo::SOAP::Drivers::Support::TransferType", [0, 1]],
563
+ ["transfer", "Virtuozzo::SOAP::Types::Support::TransferType", [0, 1]],
564
564
  ["ipaddress", nil, [0, 1]],
565
565
  ["flags", "SOAP::SOAPInt", [0, 1]]
566
566
  ]
567
567
  )
568
568
 
569
569
  EncodedRegistry.register(
570
- :class => Virtuozzo::SOAP::Drivers::Support::Sys_infoType,
570
+ :class => Virtuozzo::SOAP::Types::Support::Sys_infoType,
571
571
  :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
572
572
  :schema_element => [
573
- ["load_avg", "Virtuozzo::SOAP::Drivers::Support::Load_avgType"],
574
- ["processes", "Virtuozzo::SOAP::Drivers::Support::ProcessesType"],
575
- ["cpu_load", "Virtuozzo::SOAP::Drivers::Support::Cpu_loadType"],
576
- ["cpu_states", "Virtuozzo::SOAP::Drivers::Support::Cpu_loadType"],
573
+ ["load_avg", "Virtuozzo::SOAP::Types::Support::Load_avgType"],
574
+ ["processes", "Virtuozzo::SOAP::Types::Support::ProcessesType"],
575
+ ["cpu_load", "Virtuozzo::SOAP::Types::Support::Cpu_loadType"],
576
+ ["cpu_states", "Virtuozzo::SOAP::Types::Support::Cpu_loadType"],
577
577
  ["users", "SOAP::SOAPInt"],
578
578
  ["uptime", "SOAP::SOAPLong"],
579
- ["memory", "Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Memory", [0, 1]],
580
- ["swap", "Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Swap", [0, 1]]
579
+ ["memory", "Virtuozzo::SOAP::Types::Support::Sys_infoType::Memory", [0, 1]],
580
+ ["swap", "Virtuozzo::SOAP::Types::Support::Sys_infoType::Swap", [0, 1]]
581
581
  ]
582
582
  )
583
583
 
584
584
  EncodedRegistry.register(
585
- :class => Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Memory,
585
+ :class => Virtuozzo::SOAP::Types::Support::Sys_infoType::Memory,
586
586
  :schema_name => XSD::QName.new(NsTypes, "memory"),
587
587
  :is_anonymous => true,
588
588
  :schema_qualified => true,
@@ -593,7 +593,7 @@ module Virtuozzo # :nodoc:
593
593
  )
594
594
 
595
595
  EncodedRegistry.register(
596
- :class => Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Swap,
596
+ :class => Virtuozzo::SOAP::Types::Support::Sys_infoType::Swap,
597
597
  :schema_name => XSD::QName.new(NsTypes, "swap"),
598
598
  :is_anonymous => true,
599
599
  :schema_qualified => true,
@@ -604,10 +604,10 @@ module Virtuozzo # :nodoc:
604
604
  )
605
605
 
606
606
  EncodedRegistry.register(
607
- :class => Virtuozzo::SOAP::Drivers::Support::Ps_infoType,
607
+ :class => Virtuozzo::SOAP::Types::Support::Ps_infoType,
608
608
  :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
609
609
  :schema_element => [
610
- ["process", "Virtuozzo::SOAP::Drivers::Support::Ps_infoType::C_Process[]", [1, nil]],
610
+ ["process", "Virtuozzo::SOAP::Types::Support::Ps_infoType::C_Process[]", [1, nil]],
611
611
  ["param_id", "SOAP::SOAPString[]", [1, nil]],
612
612
  ["run", "SOAP::SOAPInt"],
613
613
  ["idle", "SOAP::SOAPInt"],
@@ -620,7 +620,7 @@ module Virtuozzo # :nodoc:
620
620
  )
621
621
 
622
622
  EncodedRegistry.register(
623
- :class => Virtuozzo::SOAP::Drivers::Support::Ps_infoType::C_Process,
623
+ :class => Virtuozzo::SOAP::Types::Support::Ps_infoType::C_Process,
624
624
  :schema_name => XSD::QName.new(NsTypes, "process"),
625
625
  :is_anonymous => true,
626
626
  :schema_qualified => true,
@@ -631,17 +631,17 @@ module Virtuozzo # :nodoc:
631
631
  )
632
632
 
633
633
  EncodedRegistry.register(
634
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType,
634
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType,
635
635
  :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
636
636
  :schema_element => [
637
- ["l1", "Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L1"],
638
- ["l2", "Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L2", [0, 1]],
639
- ["l3", "Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L3", [0, 1]]
637
+ ["l1", "Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L1"],
638
+ ["l2", "Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L2", [0, 1]],
639
+ ["l3", "Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L3", [0, 1]]
640
640
  ]
641
641
  )
642
642
 
643
643
  EncodedRegistry.register(
644
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L1,
644
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L1,
645
645
  :schema_name => XSD::QName.new(NsTypes, "l1"),
646
646
  :is_anonymous => true,
647
647
  :schema_qualified => true,
@@ -654,7 +654,7 @@ module Virtuozzo # :nodoc:
654
654
  )
655
655
 
656
656
  EncodedRegistry.register(
657
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L2,
657
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L2,
658
658
  :schema_name => XSD::QName.new(NsTypes, "l2"),
659
659
  :is_anonymous => true,
660
660
  :schema_qualified => true,
@@ -667,7 +667,7 @@ module Virtuozzo # :nodoc:
667
667
  )
668
668
 
669
669
  EncodedRegistry.register(
670
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L3,
670
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L3,
671
671
  :schema_name => XSD::QName.new(NsTypes, "l3"),
672
672
  :is_anonymous => true,
673
673
  :schema_qualified => true,
@@ -680,7 +680,7 @@ module Virtuozzo # :nodoc:
680
680
  )
681
681
 
682
682
  EncodedRegistry.register(
683
- :class => Virtuozzo::SOAP::Drivers::Support::Alert_dataType,
683
+ :class => Virtuozzo::SOAP::Types::Support::Alert_dataType,
684
684
  :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
685
685
  :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
686
686
  :schema_element => [
@@ -689,7 +689,7 @@ module Virtuozzo # :nodoc:
689
689
  )
690
690
 
691
691
  EncodedRegistry.register(
692
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_addressType,
692
+ :class => Virtuozzo::SOAP::Types::Support::Ip_addressType,
693
693
  :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
694
694
  :schema_element => [
695
695
  ["ip", nil],
@@ -698,25 +698,25 @@ module Virtuozzo # :nodoc:
698
698
  )
699
699
 
700
700
  EncodedRegistry.register(
701
- :class => Virtuozzo::SOAP::Drivers::Support::Env_resourceType,
701
+ :class => Virtuozzo::SOAP::Types::Support::Env_resourceType,
702
702
  :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
703
703
  :schema_element => [
704
704
  ["eid", nil],
705
- ["ip_pool", "Virtuozzo::SOAP::Drivers::Support::Ip_poolType", [0, 1]]
705
+ ["ip_pool", "Virtuozzo::SOAP::Types::Support::Ip_poolType", [0, 1]]
706
706
  ]
707
707
  )
708
708
 
709
709
  EncodedRegistry.register(
710
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_poolType,
710
+ :class => Virtuozzo::SOAP::Types::Support::Ip_poolType,
711
711
  :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
712
712
  :schema_element => [ :choice,
713
- ["ip_range", "Virtuozzo::SOAP::Drivers::Support::Ip_poolType::Ip_range[]"],
713
+ ["ip_range", "Virtuozzo::SOAP::Types::Support::Ip_poolType::Ip_range[]"],
714
714
  ["ip", "[]"]
715
715
  ]
716
716
  )
717
717
 
718
718
  EncodedRegistry.register(
719
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_poolType::Ip_range,
719
+ :class => Virtuozzo::SOAP::Types::Support::Ip_poolType::Ip_range,
720
720
  :schema_name => XSD::QName.new(NsTypes, "ip_range"),
721
721
  :is_anonymous => true,
722
722
  :schema_qualified => true,
@@ -727,7 +727,7 @@ module Virtuozzo # :nodoc:
727
727
  )
728
728
 
729
729
  EncodedRegistry.register(
730
- :class => Virtuozzo::SOAP::Drivers::Support::UsageType,
730
+ :class => Virtuozzo::SOAP::Types::Support::UsageType,
731
731
  :schema_type => XSD::QName.new(NsTypes, "usageType"),
732
732
  :schema_element => [
733
733
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -737,20 +737,20 @@ module Virtuozzo # :nodoc:
737
737
  )
738
738
 
739
739
  EncodedRegistry.register(
740
- :class => Virtuozzo::SOAP::Drivers::Support::Root_credentialType,
740
+ :class => Virtuozzo::SOAP::Types::Support::Root_credentialType,
741
741
  :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
742
742
  :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
743
743
  :schema_element => [
744
744
  ["id", "SOAP::SOAPString"],
745
745
  ["policy", "SOAP::SOAPInt", [0, 1]],
746
746
  ["description", "SOAP::SOAPBase64", [0, 1]],
747
- ["cred", "Virtuozzo::SOAP::Drivers::Support::CredentialType[]", [0, nil]],
748
- ["objects", "Virtuozzo::SOAP::Drivers::Support::Root_credentialType::Objects", [0, 1]]
747
+ ["cred", "Virtuozzo::SOAP::Types::Support::CredentialType[]", [0, nil]],
748
+ ["objects", "Virtuozzo::SOAP::Types::Support::Root_credentialType::Objects", [0, 1]]
749
749
  ]
750
750
  )
751
751
 
752
752
  EncodedRegistry.register(
753
- :class => Virtuozzo::SOAP::Drivers::Support::Root_credentialType::Objects,
753
+ :class => Virtuozzo::SOAP::Types::Support::Root_credentialType::Objects,
754
754
  :schema_name => XSD::QName.new(NsTypes, "objects"),
755
755
  :is_anonymous => true,
756
756
  :schema_qualified => true,
@@ -760,30 +760,30 @@ module Virtuozzo # :nodoc:
760
760
  )
761
761
 
762
762
  EncodedRegistry.register(
763
- :class => Virtuozzo::SOAP::Drivers::Support::CredentialType,
763
+ :class => Virtuozzo::SOAP::Types::Support::CredentialType,
764
764
  :schema_type => XSD::QName.new(NsTypes, "credentialType"),
765
765
  :schema_element => [
766
766
  ["id", "SOAP::SOAPString"],
767
767
  ["policy", "SOAP::SOAPInt", [0, 1]],
768
768
  ["description", "SOAP::SOAPBase64", [0, 1]],
769
- ["cred", "Virtuozzo::SOAP::Drivers::Support::CredentialType[]", [0, nil]]
769
+ ["cred", "Virtuozzo::SOAP::Types::Support::CredentialType[]", [0, nil]]
770
770
  ]
771
771
  )
772
772
 
773
773
  EncodedRegistry.register(
774
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType,
774
+ :class => Virtuozzo::SOAP::Types::Support::TokenType,
775
775
  :schema_type => XSD::QName.new(NsTypes, "tokenType"),
776
776
  :schema_element => [
777
777
  ["user", nil],
778
- ["groups", "Virtuozzo::SOAP::Drivers::Support::TokenType::Groups", [0, 1]],
779
- ["deny_only_sids", "Virtuozzo::SOAP::Drivers::Support::TokenType::Deny_only_sids", [0, 1]],
780
- ["privileges", "Virtuozzo::SOAP::Drivers::Support::TokenType::Privileges", [0, 1]],
781
- ["source", "Virtuozzo::SOAP::Drivers::Support::TokenType::Source", [0, 1]]
778
+ ["groups", "Virtuozzo::SOAP::Types::Support::TokenType::Groups", [0, 1]],
779
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Support::TokenType::Deny_only_sids", [0, 1]],
780
+ ["privileges", "Virtuozzo::SOAP::Types::Support::TokenType::Privileges", [0, 1]],
781
+ ["source", "Virtuozzo::SOAP::Types::Support::TokenType::Source", [0, 1]]
782
782
  ]
783
783
  )
784
784
 
785
785
  EncodedRegistry.register(
786
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Groups,
786
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Groups,
787
787
  :schema_name => XSD::QName.new(NsTypes, "groups"),
788
788
  :is_anonymous => true,
789
789
  :schema_qualified => true,
@@ -793,7 +793,7 @@ module Virtuozzo # :nodoc:
793
793
  )
794
794
 
795
795
  EncodedRegistry.register(
796
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Deny_only_sids,
796
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Deny_only_sids,
797
797
  :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
798
798
  :is_anonymous => true,
799
799
  :schema_qualified => true,
@@ -803,7 +803,7 @@ module Virtuozzo # :nodoc:
803
803
  )
804
804
 
805
805
  EncodedRegistry.register(
806
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Privileges,
806
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Privileges,
807
807
  :schema_name => XSD::QName.new(NsTypes, "privileges"),
808
808
  :is_anonymous => true,
809
809
  :schema_qualified => true,
@@ -813,7 +813,7 @@ module Virtuozzo # :nodoc:
813
813
  )
814
814
 
815
815
  EncodedRegistry.register(
816
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Source,
816
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Source,
817
817
  :schema_name => XSD::QName.new(NsTypes, "source"),
818
818
  :is_anonymous => true,
819
819
  :schema_qualified => true,
@@ -824,7 +824,7 @@ module Virtuozzo # :nodoc:
824
824
  )
825
825
 
826
826
  EncodedRegistry.register(
827
- :class => Virtuozzo::SOAP::Drivers::Support::Connectivity_infoType,
827
+ :class => Virtuozzo::SOAP::Types::Support::Connectivity_infoType,
828
828
  :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
829
829
  :schema_element => [
830
830
  ["protocol", "SOAP::SOAPString", [0, 1]],
@@ -834,7 +834,7 @@ module Virtuozzo # :nodoc:
834
834
  )
835
835
 
836
836
  EncodedRegistry.register(
837
- :class => Virtuozzo::SOAP::Drivers::Support::Auth_nameType,
837
+ :class => Virtuozzo::SOAP::Types::Support::Auth_nameType,
838
838
  :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
839
839
  :schema_element => [
840
840
  ["name", "SOAP::SOAPBase64", [0, 1]],
@@ -844,20 +844,20 @@ module Virtuozzo # :nodoc:
844
844
  )
845
845
 
846
846
  EncodedRegistry.register(
847
- :class => Virtuozzo::SOAP::Drivers::Support::Connection_infoType,
847
+ :class => Virtuozzo::SOAP::Types::Support::Connection_infoType,
848
848
  :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
849
849
  :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
850
850
  :schema_element => [
851
851
  ["protocol", "SOAP::SOAPString", [0, 1]],
852
852
  ["address", "SOAP::SOAPString"],
853
853
  ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
854
- ["login", "Virtuozzo::SOAP::Drivers::Support::Auth_nameType", [0, 1]],
854
+ ["login", "Virtuozzo::SOAP::Types::Support::Auth_nameType", [0, 1]],
855
855
  ["password", "SOAP::SOAPBase64", [0, 1]]
856
856
  ]
857
857
  )
858
858
 
859
859
  EncodedRegistry.register(
860
- :class => Virtuozzo::SOAP::Drivers::Support::Eid_listType,
860
+ :class => Virtuozzo::SOAP::Types::Support::Eid_listType,
861
861
  :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
862
862
  :schema_element => [
863
863
  ["eid", "[]", [0, nil]]
@@ -865,7 +865,7 @@ module Virtuozzo # :nodoc:
865
865
  )
866
866
 
867
867
  EncodedRegistry.register(
868
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_infoType,
868
+ :class => Virtuozzo::SOAP::Types::Support::Vt_infoType,
869
869
  :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
870
870
  :schema_element => [
871
871
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -873,7 +873,7 @@ module Virtuozzo # :nodoc:
873
873
  )
874
874
 
875
875
  EncodedRegistry.register(
876
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_settingsType,
876
+ :class => Virtuozzo::SOAP::Types::Support::Vt_settingsType,
877
877
  :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
878
878
  :schema_element => [
879
879
  ["default_sample_id", nil, [0, 1]]
@@ -881,11 +881,11 @@ module Virtuozzo # :nodoc:
881
881
  )
882
882
 
883
883
  EncodedRegistry.register(
884
- :class => Virtuozzo::SOAP::Drivers::Support::UserType,
884
+ :class => Virtuozzo::SOAP::Types::Support::UserType,
885
885
  :schema_type => XSD::QName.new(NsTypes, "userType"),
886
886
  :schema_element => [
887
- ["initial_group", "Virtuozzo::SOAP::Drivers::Support::UserType::Initial_group", [0, 1]],
888
- ["group", "Virtuozzo::SOAP::Drivers::Support::UserType::Group[]", [0, nil]],
887
+ ["initial_group", "Virtuozzo::SOAP::Types::Support::UserType::Initial_group", [0, 1]],
888
+ ["group", "Virtuozzo::SOAP::Types::Support::UserType::Group[]", [0, nil]],
889
889
  ["uid", "SOAP::SOAPInt", [0, 1]],
890
890
  ["shell", "SOAP::SOAPString", [0, 1]],
891
891
  ["password", "SOAP::SOAPBase64", [0, 1]],
@@ -896,7 +896,7 @@ module Virtuozzo # :nodoc:
896
896
  )
897
897
 
898
898
  EncodedRegistry.register(
899
- :class => Virtuozzo::SOAP::Drivers::Support::UserType::Initial_group,
899
+ :class => Virtuozzo::SOAP::Types::Support::UserType::Initial_group,
900
900
  :schema_name => XSD::QName.new(NsTypes, "initial_group"),
901
901
  :is_anonymous => true,
902
902
  :schema_qualified => true,
@@ -907,7 +907,7 @@ module Virtuozzo # :nodoc:
907
907
  )
908
908
 
909
909
  EncodedRegistry.register(
910
- :class => Virtuozzo::SOAP::Drivers::Support::UserType::Group,
910
+ :class => Virtuozzo::SOAP::Types::Support::UserType::Group,
911
911
  :schema_name => XSD::QName.new(NsTypes, "group"),
912
912
  :is_anonymous => true,
913
913
  :schema_qualified => true,
@@ -918,18 +918,18 @@ module Virtuozzo # :nodoc:
918
918
  )
919
919
 
920
920
  EncodedRegistry.register(
921
- :class => Virtuozzo::SOAP::Drivers::Support::GroupType,
921
+ :class => Virtuozzo::SOAP::Types::Support::GroupType,
922
922
  :schema_type => XSD::QName.new(NsTypes, "groupType"),
923
923
  :schema_element => [
924
- ["user", "Virtuozzo::SOAP::Drivers::Support::GroupType::User[]", [0, nil]],
925
- ["member_group", "Virtuozzo::SOAP::Drivers::Support::GroupType::Member_group[]", [0, nil]],
924
+ ["user", "Virtuozzo::SOAP::Types::Support::GroupType::User[]", [0, nil]],
925
+ ["member_group", "Virtuozzo::SOAP::Types::Support::GroupType::Member_group[]", [0, nil]],
926
926
  ["name", "SOAP::SOAPString", [0, 1]],
927
927
  ["gid", "SOAP::SOAPInt", [0, 1]]
928
928
  ]
929
929
  )
930
930
 
931
931
  EncodedRegistry.register(
932
- :class => Virtuozzo::SOAP::Drivers::Support::GroupType::User,
932
+ :class => Virtuozzo::SOAP::Types::Support::GroupType::User,
933
933
  :schema_name => XSD::QName.new(NsTypes, "user"),
934
934
  :is_anonymous => true,
935
935
  :schema_qualified => true,
@@ -939,7 +939,7 @@ module Virtuozzo # :nodoc:
939
939
  )
940
940
 
941
941
  EncodedRegistry.register(
942
- :class => Virtuozzo::SOAP::Drivers::Support::GroupType::Member_group,
942
+ :class => Virtuozzo::SOAP::Types::Support::GroupType::Member_group,
943
943
  :schema_name => XSD::QName.new(NsTypes, "member_group"),
944
944
  :is_anonymous => true,
945
945
  :schema_qualified => true,
@@ -949,12 +949,12 @@ module Virtuozzo # :nodoc:
949
949
  )
950
950
 
951
951
  EncodedRegistry.register(
952
- :class => Virtuozzo::SOAP::Drivers::Support::PackageType,
952
+ :class => Virtuozzo::SOAP::Types::Support::PackageType,
953
953
  :schema_type => XSD::QName.new(NsTypes, "packageType"),
954
954
  :schema_element => [
955
955
  ["name", "SOAP::SOAPString"],
956
956
  ["summary", "SOAP::SOAPString", [0, 1]],
957
- ["os", "Virtuozzo::SOAP::Drivers::Support::OsType", [0, 1]],
957
+ ["os", "Virtuozzo::SOAP::Types::Support::OsType", [0, 1]],
958
958
  ["description", "SOAP::SOAPString", [0, 1]],
959
959
  ["arch", "SOAP::SOAPString", [0, 1]],
960
960
  ["version", "SOAP::SOAPString", [0, 1]]
@@ -962,13 +962,13 @@ module Virtuozzo # :nodoc:
962
962
  )
963
963
 
964
964
  EncodedRegistry.register(
965
- :class => Virtuozzo::SOAP::Drivers::Support::Event_dataType,
965
+ :class => Virtuozzo::SOAP::Types::Support::Event_dataType,
966
966
  :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
967
967
  :schema_element => []
968
968
  )
969
969
 
970
970
  EncodedRegistry.register(
971
- :class => Virtuozzo::SOAP::Drivers::Support::Named_listType,
971
+ :class => Virtuozzo::SOAP::Types::Support::Named_listType,
972
972
  :schema_type => XSD::QName.new(NsTypes, "named_listType"),
973
973
  :schema_element => [
974
974
  ["name", "SOAP::SOAPString"],
@@ -977,7 +977,7 @@ module Virtuozzo # :nodoc:
977
977
  )
978
978
 
979
979
  EncodedRegistry.register(
980
- :class => Virtuozzo::SOAP::Drivers::Support::ModType,
980
+ :class => Virtuozzo::SOAP::Types::Support::ModType,
981
981
  :schema_type => XSD::QName.new(NsTypes, "modType"),
982
982
  :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
983
983
  :schema_element => [
@@ -988,7 +988,7 @@ module Virtuozzo # :nodoc:
988
988
  )
989
989
 
990
990
  EncodedRegistry.register(
991
- :class => Virtuozzo::SOAP::Drivers::Support::RealmType,
991
+ :class => Virtuozzo::SOAP::Types::Support::RealmType,
992
992
  :schema_type => XSD::QName.new(NsTypes, "realmType"),
993
993
  :schema_element => [
994
994
  ["id", nil, [0, 1]],
@@ -999,7 +999,7 @@ module Virtuozzo # :nodoc:
999
999
  )
1000
1000
 
1001
1001
  EncodedRegistry.register(
1002
- :class => Virtuozzo::SOAP::Drivers::Support::EventType,
1002
+ :class => Virtuozzo::SOAP::Types::Support::EventType,
1003
1003
  :schema_type => XSD::QName.new(NsTypes, "eventType"),
1004
1004
  :schema_element => [
1005
1005
  ["eid", nil],
@@ -1009,34 +1009,34 @@ module Virtuozzo # :nodoc:
1009
1009
  ["sid", nil, [0, 1]],
1010
1010
  ["count", "SOAP::SOAPInt"],
1011
1011
  ["id", nil],
1012
- ["info", "Virtuozzo::SOAP::Drivers::Support::InfoType"],
1013
- ["data", "Virtuozzo::SOAP::Drivers::Support::EventType::C_Data", [0, 1]]
1012
+ ["info", "Virtuozzo::SOAP::Types::Support::InfoType"],
1013
+ ["data", "Virtuozzo::SOAP::Types::Support::EventType::C_Data", [0, 1]]
1014
1014
  ]
1015
1015
  )
1016
1016
 
1017
1017
  EncodedRegistry.register(
1018
- :class => Virtuozzo::SOAP::Drivers::Support::EventType::C_Data,
1018
+ :class => Virtuozzo::SOAP::Types::Support::EventType::C_Data,
1019
1019
  :schema_name => XSD::QName.new(NsTypes, "data"),
1020
1020
  :is_anonymous => true,
1021
1021
  :schema_qualified => true,
1022
1022
  :schema_element => [
1023
- ["event_data", "Virtuozzo::SOAP::Drivers::Support::Event_dataType"]
1023
+ ["event_data", "Virtuozzo::SOAP::Types::Support::Event_dataType"]
1024
1024
  ]
1025
1025
  )
1026
1026
 
1027
1027
  EncodedRegistry.register(
1028
- :class => Virtuozzo::SOAP::Drivers::Support::InfoType,
1028
+ :class => Virtuozzo::SOAP::Types::Support::InfoType,
1029
1029
  :schema_type => XSD::QName.new(NsTypes, "infoType"),
1030
1030
  :schema_element => [
1031
1031
  ["message", "SOAP::SOAPBase64"],
1032
1032
  ["translate", nil, [0, 1]],
1033
- ["parameter", "Virtuozzo::SOAP::Drivers::Support::InfoType[]", [0, nil]],
1033
+ ["parameter", "Virtuozzo::SOAP::Types::Support::InfoType[]", [0, nil]],
1034
1034
  ["name", "SOAP::SOAPString"]
1035
1035
  ]
1036
1036
  )
1037
1037
 
1038
1038
  EncodedRegistry.register(
1039
- :class => Virtuozzo::SOAP::Drivers::Support::AceType,
1039
+ :class => Virtuozzo::SOAP::Types::Support::AceType,
1040
1040
  :schema_type => XSD::QName.new(NsTypes, "aceType"),
1041
1041
  :schema_element => [
1042
1042
  ["type", "SOAP::SOAPInt"],
@@ -1046,27 +1046,27 @@ module Virtuozzo # :nodoc:
1046
1046
  )
1047
1047
 
1048
1048
  EncodedRegistry.register(
1049
- :class => Virtuozzo::SOAP::Drivers::Support::Security_descriptorType,
1049
+ :class => Virtuozzo::SOAP::Types::Support::Security_descriptorType,
1050
1050
  :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
1051
1051
  :schema_element => [
1052
1052
  ["owner", nil],
1053
1053
  ["group", nil],
1054
- ["dacl", "Virtuozzo::SOAP::Drivers::Support::Security_descriptorType::Dacl", [0, 1]]
1054
+ ["dacl", "Virtuozzo::SOAP::Types::Support::Security_descriptorType::Dacl", [0, 1]]
1055
1055
  ]
1056
1056
  )
1057
1057
 
1058
1058
  EncodedRegistry.register(
1059
- :class => Virtuozzo::SOAP::Drivers::Support::Security_descriptorType::Dacl,
1059
+ :class => Virtuozzo::SOAP::Types::Support::Security_descriptorType::Dacl,
1060
1060
  :schema_name => XSD::QName.new(NsTypes, "dacl"),
1061
1061
  :is_anonymous => true,
1062
1062
  :schema_qualified => true,
1063
1063
  :schema_element => [
1064
- ["ace", "Virtuozzo::SOAP::Drivers::Support::AceType[]", [0, nil]]
1064
+ ["ace", "Virtuozzo::SOAP::Types::Support::AceType[]", [0, nil]]
1065
1065
  ]
1066
1066
  )
1067
1067
 
1068
1068
  EncodedRegistry.register(
1069
- :class => Virtuozzo::SOAP::Drivers::Support::Env_security_objectType,
1069
+ :class => Virtuozzo::SOAP::Types::Support::Env_security_objectType,
1070
1070
  :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
1071
1071
  :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
1072
1072
  :schema_element => [
@@ -1075,19 +1075,19 @@ module Virtuozzo # :nodoc:
1075
1075
  )
1076
1076
 
1077
1077
  EncodedRegistry.register(
1078
- :class => Virtuozzo::SOAP::Drivers::Support::Net_deviceType,
1078
+ :class => Virtuozzo::SOAP::Types::Support::Net_deviceType,
1079
1079
  :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
1080
1080
  :schema_element => [
1081
1081
  ["id", "SOAP::SOAPString", [0, 1]],
1082
- ["ip_address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
1082
+ ["ip_address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
1083
1083
  ["dhcp", nil, [0, 1]],
1084
1084
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
1085
- ["status", "Virtuozzo::SOAP::Drivers::Support::Net_deviceType::Status", [0, 1]]
1085
+ ["status", "Virtuozzo::SOAP::Types::Support::Net_deviceType::Status", [0, 1]]
1086
1086
  ]
1087
1087
  )
1088
1088
 
1089
1089
  EncodedRegistry.register(
1090
- :class => Virtuozzo::SOAP::Drivers::Support::Net_deviceType::Status,
1090
+ :class => Virtuozzo::SOAP::Types::Support::Net_deviceType::Status,
1091
1091
  :schema_name => XSD::QName.new(NsTypes, "status"),
1092
1092
  :is_anonymous => true,
1093
1093
  :schema_qualified => true,
@@ -1098,7 +1098,7 @@ module Virtuozzo # :nodoc:
1098
1098
  )
1099
1099
 
1100
1100
  EncodedRegistry.register(
1101
- :class => Virtuozzo::SOAP::Drivers::Support::Voc_parameterType,
1101
+ :class => Virtuozzo::SOAP::Types::Support::Voc_parameterType,
1102
1102
  :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
1103
1103
  :schema_element => [
1104
1104
  ["id", "SOAP::SOAPString"],
@@ -1117,31 +1117,31 @@ module Virtuozzo # :nodoc:
1117
1117
  )
1118
1118
 
1119
1119
  EncodedRegistry.register(
1120
- :class => Virtuozzo::SOAP::Drivers::Support::VocabularyType,
1120
+ :class => Virtuozzo::SOAP::Types::Support::VocabularyType,
1121
1121
  :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
1122
1122
  :schema_element => [
1123
1123
  ["name", "SOAP::SOAPString"],
1124
- ["parameter", "Virtuozzo::SOAP::Drivers::Support::Voc_parameterType[]", [0, nil]],
1125
- ["category", "Virtuozzo::SOAP::Drivers::Support::Voc_parameterType[]", [0, nil]]
1124
+ ["parameter", "Virtuozzo::SOAP::Types::Support::Voc_parameterType[]", [0, nil]],
1125
+ ["category", "Virtuozzo::SOAP::Types::Support::Voc_parameterType[]", [0, nil]]
1126
1126
  ]
1127
1127
  )
1128
1128
 
1129
1129
  EncodedRegistry.register(
1130
- :class => Virtuozzo::SOAP::Drivers::Support::Net_nicType,
1130
+ :class => Virtuozzo::SOAP::Types::Support::Net_nicType,
1131
1131
  :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
1132
1132
  :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
1133
1133
  :schema_element => [
1134
1134
  ["id", "SOAP::SOAPString", [0, 1]],
1135
- ["ip_address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
1135
+ ["ip_address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
1136
1136
  ["dhcp", nil, [0, 1]],
1137
1137
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
1138
- ["status", "Virtuozzo::SOAP::Drivers::Support::Net_nicType::Status", [0, 1]],
1138
+ ["status", "Virtuozzo::SOAP::Types::Support::Net_nicType::Status", [0, 1]],
1139
1139
  ["mac_address", "SOAP::SOAPString", [0, 1]]
1140
1140
  ]
1141
1141
  )
1142
1142
 
1143
1143
  EncodedRegistry.register(
1144
- :class => Virtuozzo::SOAP::Drivers::Support::Net_nicType::Status,
1144
+ :class => Virtuozzo::SOAP::Types::Support::Net_nicType::Status,
1145
1145
  :schema_name => XSD::QName.new(NsTypes, "status"),
1146
1146
  :is_anonymous => true,
1147
1147
  :schema_qualified => true,
@@ -1152,7 +1152,7 @@ module Virtuozzo # :nodoc:
1152
1152
  )
1153
1153
 
1154
1154
  EncodedRegistry.register(
1155
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_statType,
1155
+ :class => Virtuozzo::SOAP::Types::Support::Perf_statType,
1156
1156
  :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
1157
1157
  :schema_element => [
1158
1158
  ["cur", "SOAP::SOAPAnySimpleType"],
@@ -1163,63 +1163,63 @@ module Virtuozzo # :nodoc:
1163
1163
  )
1164
1164
 
1165
1165
  EncodedRegistry.register(
1166
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType,
1166
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType,
1167
1167
  :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
1168
1168
  :schema_element => [
1169
1169
  ["eid", nil],
1170
- ["v_class", ["Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
1171
- ["interval", "Virtuozzo::SOAP::Drivers::Support::IntervalType"]
1170
+ ["v_class", ["Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
1171
+ ["interval", "Virtuozzo::SOAP::Types::Support::IntervalType"]
1172
1172
  ]
1173
1173
  )
1174
1174
 
1175
1175
  EncodedRegistry.register(
1176
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance::Counter,
1176
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance::Counter,
1177
1177
  :schema_name => XSD::QName.new(NsTypes, "counter"),
1178
1178
  :is_anonymous => true,
1179
1179
  :schema_qualified => true,
1180
1180
  :schema_element => [
1181
1181
  ["name", "SOAP::SOAPString"],
1182
- ["value", "Virtuozzo::SOAP::Drivers::Support::Perf_statType"]
1182
+ ["value", "Virtuozzo::SOAP::Types::Support::Perf_statType"]
1183
1183
  ]
1184
1184
  )
1185
1185
 
1186
1186
  EncodedRegistry.register(
1187
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance,
1187
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance,
1188
1188
  :schema_name => XSD::QName.new(NsTypes, "instance"),
1189
1189
  :is_anonymous => true,
1190
1190
  :schema_qualified => true,
1191
1191
  :schema_element => [
1192
1192
  ["name", "SOAP::SOAPString", [0, 1]],
1193
- ["counter", "Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
1193
+ ["counter", "Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
1194
1194
  ]
1195
1195
  )
1196
1196
 
1197
1197
  EncodedRegistry.register(
1198
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class,
1198
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class,
1199
1199
  :schema_name => XSD::QName.new(NsTypes, "class"),
1200
1200
  :is_anonymous => true,
1201
1201
  :schema_qualified => true,
1202
1202
  :schema_element => [
1203
1203
  ["name", "SOAP::SOAPString"],
1204
- ["instance", "Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance[]", [1, nil]]
1204
+ ["instance", "Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance[]", [1, nil]]
1205
1205
  ]
1206
1206
  )
1207
1207
 
1208
1208
  EncodedRegistry.register(
1209
- :class => Virtuozzo::SOAP::Drivers::Support::Log_options_baseType,
1209
+ :class => Virtuozzo::SOAP::Types::Support::Log_options_baseType,
1210
1210
  :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
1211
1211
  :schema_element => []
1212
1212
  )
1213
1213
 
1214
1214
  EncodedRegistry.register(
1215
- :class => Virtuozzo::SOAP::Drivers::Support::Log_optionsType,
1215
+ :class => Virtuozzo::SOAP::Types::Support::Log_optionsType,
1216
1216
  :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
1217
1217
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1218
1218
  :schema_element => []
1219
1219
  )
1220
1220
 
1221
1221
  EncodedRegistry.register(
1222
- :class => Virtuozzo::SOAP::Drivers::Support::Virtuozzo_configType,
1222
+ :class => Virtuozzo::SOAP::Types::Support::Virtuozzo_configType,
1223
1223
  :schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
1224
1224
  :schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
1225
1225
  :schema_element => [
@@ -1228,7 +1228,7 @@ module Virtuozzo # :nodoc:
1228
1228
  )
1229
1229
 
1230
1230
  EncodedRegistry.register(
1231
- :class => Virtuozzo::SOAP::Drivers::Support::Log_optionsType_,
1231
+ :class => Virtuozzo::SOAP::Types::Support::Log_optionsType_,
1232
1232
  :schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
1233
1233
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1234
1234
  :schema_element => [
@@ -1237,7 +1237,7 @@ module Virtuozzo # :nodoc:
1237
1237
  )
1238
1238
 
1239
1239
  EncodedRegistry.register(
1240
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_,
1240
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_,
1241
1241
  :schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
1242
1242
  :schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
1243
1243
  :schema_element => [
@@ -1245,46 +1245,46 @@ module Virtuozzo # :nodoc:
1245
1245
  ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
1246
1246
  ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
1247
1247
  ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
1248
- ["address", ["Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
1248
+ ["address", ["Virtuozzo::SOAP::Types::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
1249
1249
  ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
1250
- ["os", ["Virtuozzo::SOAP::Drivers::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1250
+ ["os", ["Virtuozzo::SOAP::Types::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1251
1251
  ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
1252
1252
  ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
1253
1253
  ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
1254
1254
  ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
1255
1255
  ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
1256
1256
  ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
1257
- ["qos", ["Virtuozzo::SOAP::Drivers::Support::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
1257
+ ["qos", ["Virtuozzo::SOAP::Types::Support::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
1258
1258
  ["veid", nil, [0, 1]],
1259
1259
  ["ve_root", "SOAP::SOAPString", [0, 1]],
1260
1260
  ["ve_private", "SOAP::SOAPString", [0, 1]],
1261
1261
  ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
1262
- ["template", "Virtuozzo::SOAP::Drivers::Support::TemplateType[]", [0, nil]],
1262
+ ["template", "Virtuozzo::SOAP::Types::Support::TemplateType[]", [0, nil]],
1263
1263
  ["disabled", "SOAP::SOAPBoolean", [0, 1]],
1264
1264
  ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
1265
- ["os_template", "Virtuozzo::SOAP::Drivers::Support::TemplateType", [0, 1]],
1266
- ["distribution", "Virtuozzo::SOAP::Drivers::Support::TemplateType", [0, 1]],
1267
- ["capability", "Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Capability[]", [0, nil]],
1265
+ ["os_template", "Virtuozzo::SOAP::Types::Support::TemplateType", [0, 1]],
1266
+ ["distribution", "Virtuozzo::SOAP::Types::Support::TemplateType", [0, 1]],
1267
+ ["capability", "Virtuozzo::SOAP::Types::Support::Venv_configType_::Capability[]", [0, nil]],
1268
1268
  ["iptables", "SOAP::SOAPString[]", [0, nil]],
1269
1269
  ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
1270
1270
  ["class_id", "SOAP::SOAPString", [0, 1]],
1271
- ["ve_type", "Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Ve_type", [0, 1]],
1271
+ ["ve_type", "Virtuozzo::SOAP::Types::Support::Venv_configType_::Ve_type", [0, 1]],
1272
1272
  ["offline_service", "SOAP::SOAPString[]", [0, nil]],
1273
1273
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
1274
- ["net_device", "Virtuozzo::SOAP::Drivers::Support::Net_vethType[]", [0, nil]],
1274
+ ["net_device", "Virtuozzo::SOAP::Types::Support::Net_vethType[]", [0, nil]],
1275
1275
  ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
1276
1276
  ["ts_mode", "SOAP::SOAPInt", [0, 1]],
1277
1277
  ["uuid", "SOAP::SOAPString", [0, 1]],
1278
1278
  ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
1279
1279
  ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
1280
- ["interface_rate", "Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Interface_rate[]", [0, nil]],
1280
+ ["interface_rate", "Virtuozzo::SOAP::Types::Support::Venv_configType_::Interface_rate[]", [0, nil]],
1281
1281
  ["slm_mode", "SOAP::SOAPString", [0, 1]],
1282
1282
  ["origin_sample", "SOAP::SOAPString", [0, 1]]
1283
1283
  ]
1284
1284
  )
1285
1285
 
1286
1286
  EncodedRegistry.register(
1287
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Capability,
1287
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_::Capability,
1288
1288
  :schema_name => XSD::QName.new(NsVzatypes, "capability"),
1289
1289
  :is_anonymous => true,
1290
1290
  :schema_qualified => true,
@@ -1295,7 +1295,7 @@ module Virtuozzo # :nodoc:
1295
1295
  )
1296
1296
 
1297
1297
  EncodedRegistry.register(
1298
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Ve_type,
1298
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_::Ve_type,
1299
1299
  :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
1300
1300
  :is_anonymous => true,
1301
1301
  :schema_qualified => true,
@@ -1306,7 +1306,7 @@ module Virtuozzo # :nodoc:
1306
1306
  )
1307
1307
 
1308
1308
  EncodedRegistry.register(
1309
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Interface_rate,
1309
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_::Interface_rate,
1310
1310
  :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
1311
1311
  :is_anonymous => true,
1312
1312
  :schema_qualified => true,
@@ -1317,19 +1317,19 @@ module Virtuozzo # :nodoc:
1317
1317
  )
1318
1318
 
1319
1319
  EncodedRegistry.register(
1320
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_,
1320
+ :class => Virtuozzo::SOAP::Types::Support::Vt_settingsType_,
1321
1321
  :schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
1322
1322
  :schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
1323
1323
  :schema_element => [
1324
1324
  ["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
1325
- ["parameter", "Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_::Parameter[]", [0, nil]],
1326
- ["service", "Virtuozzo::SOAP::Drivers::Support::Redirect_serviceType[]", [0, nil]],
1327
- ["qos", "Virtuozzo::SOAP::Drivers::Support::QosType[]", [0, nil]]
1325
+ ["parameter", "Virtuozzo::SOAP::Types::Support::Vt_settingsType_::Parameter[]", [0, nil]],
1326
+ ["service", "Virtuozzo::SOAP::Types::Support::Redirect_serviceType[]", [0, nil]],
1327
+ ["qos", "Virtuozzo::SOAP::Types::Support::QosType[]", [0, nil]]
1328
1328
  ]
1329
1329
  )
1330
1330
 
1331
1331
  EncodedRegistry.register(
1332
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_::Parameter,
1332
+ :class => Virtuozzo::SOAP::Types::Support::Vt_settingsType_::Parameter,
1333
1333
  :schema_name => XSD::QName.new(NsVzatypes, "parameter"),
1334
1334
  :is_anonymous => true,
1335
1335
  :schema_qualified => true,
@@ -1340,7 +1340,7 @@ module Virtuozzo # :nodoc:
1340
1340
  )
1341
1341
 
1342
1342
  EncodedRegistry.register(
1343
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_infoType_,
1343
+ :class => Virtuozzo::SOAP::Types::Support::Vt_infoType_,
1344
1344
  :schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
1345
1345
  :schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
1346
1346
  :schema_element => [
@@ -1352,7 +1352,7 @@ module Virtuozzo # :nodoc:
1352
1352
  )
1353
1353
 
1354
1354
  EncodedRegistry.register(
1355
- :class => Virtuozzo::SOAP::Drivers::Support::Redirect_serviceType,
1355
+ :class => Virtuozzo::SOAP::Types::Support::Redirect_serviceType,
1356
1356
  :schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
1357
1357
  :schema_element => [
1358
1358
  ["id", "SOAP::SOAPString"],
@@ -1363,7 +1363,7 @@ module Virtuozzo # :nodoc:
1363
1363
  )
1364
1364
 
1365
1365
  EncodedRegistry.register(
1366
- :class => Virtuozzo::SOAP::Drivers::Support::TemplateType,
1366
+ :class => Virtuozzo::SOAP::Types::Support::TemplateType,
1367
1367
  :schema_type => XSD::QName.new(NsVzatypes, "templateType"),
1368
1368
  :schema_element => [
1369
1369
  ["name", "SOAP::SOAPString"],
@@ -1372,13 +1372,13 @@ module Virtuozzo # :nodoc:
1372
1372
  )
1373
1373
 
1374
1374
  EncodedRegistry.register(
1375
- :class => Virtuozzo::SOAP::Drivers::Support::Package_std_vztemplateType,
1375
+ :class => Virtuozzo::SOAP::Types::Support::Package_std_vztemplateType,
1376
1376
  :schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
1377
1377
  :schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
1378
1378
  :schema_element => [
1379
1379
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
1380
1380
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
1381
- ["os", ["Virtuozzo::SOAP::Drivers::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1381
+ ["os", ["Virtuozzo::SOAP::Types::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1382
1382
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
1383
1383
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
1384
1384
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -1392,13 +1392,13 @@ module Virtuozzo # :nodoc:
1392
1392
  )
1393
1393
 
1394
1394
  EncodedRegistry.register(
1395
- :class => Virtuozzo::SOAP::Drivers::Support::Package_vztemplateType,
1395
+ :class => Virtuozzo::SOAP::Types::Support::Package_vztemplateType,
1396
1396
  :schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
1397
1397
  :schema_basetype => XSD::QName.new(NsTypes, "packageType"),
1398
1398
  :schema_element => [
1399
1399
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
1400
1400
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
1401
- ["os", ["Virtuozzo::SOAP::Drivers::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1401
+ ["os", ["Virtuozzo::SOAP::Types::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1402
1402
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
1403
1403
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
1404
1404
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -1411,7 +1411,7 @@ module Virtuozzo # :nodoc:
1411
1411
  )
1412
1412
 
1413
1413
  EncodedRegistry.register(
1414
- :class => Virtuozzo::SOAP::Drivers::Support::Env_security_objectType_,
1414
+ :class => Virtuozzo::SOAP::Types::Support::Env_security_objectType_,
1415
1415
  :schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
1416
1416
  :schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
1417
1417
  :schema_element => [
@@ -1420,15 +1420,15 @@ module Virtuozzo # :nodoc:
1420
1420
  )
1421
1421
 
1422
1422
  EncodedRegistry.register(
1423
- :class => Virtuozzo::SOAP::Drivers::Support::Net_vethType,
1423
+ :class => Virtuozzo::SOAP::Types::Support::Net_vethType,
1424
1424
  :schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
1425
1425
  :schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
1426
1426
  :schema_element => [
1427
1427
  ["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
1428
- ["ip_address", ["Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
1428
+ ["ip_address", ["Virtuozzo::SOAP::Types::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
1429
1429
  ["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
1430
1430
  ["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
1431
- ["status", ["Virtuozzo::SOAP::Drivers::Support::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
1431
+ ["status", ["Virtuozzo::SOAP::Types::Support::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
1432
1432
  ["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
1433
1433
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
1434
1434
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
@@ -1438,7 +1438,7 @@ module Virtuozzo # :nodoc:
1438
1438
  )
1439
1439
 
1440
1440
  EncodedRegistry.register(
1441
- :class => Virtuozzo::SOAP::Drivers::Support::Net_vethType::Status,
1441
+ :class => Virtuozzo::SOAP::Types::Support::Net_vethType::Status,
1442
1442
  :schema_name => XSD::QName.new(NsTypes, "status"),
1443
1443
  :is_anonymous => true,
1444
1444
  :schema_qualified => true,
@@ -1449,45 +1449,45 @@ module Virtuozzo # :nodoc:
1449
1449
  )
1450
1450
 
1451
1451
  EncodedRegistry.register(
1452
- :class => Virtuozzo::SOAP::Drivers::Support::EnvType_,
1452
+ :class => Virtuozzo::SOAP::Types::Support::EnvType_,
1453
1453
  :schema_type => XSD::QName.new(NsVzatypes, "envType"),
1454
1454
  :schema_basetype => XSD::QName.new(NsTypes, "envType"),
1455
1455
  :schema_element => [
1456
1456
  ["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
1457
1457
  ["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
1458
- ["status", ["Virtuozzo::SOAP::Drivers::Support::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
1458
+ ["status", ["Virtuozzo::SOAP::Types::Support::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
1459
1459
  ["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
1460
- ["config", ["Virtuozzo::SOAP::Drivers::Support::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
1461
- ["virtual_config", ["Virtuozzo::SOAP::Drivers::Support::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
1460
+ ["config", ["Virtuozzo::SOAP::Types::Support::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
1461
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Support::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
1462
1462
  ]
1463
1463
  )
1464
1464
 
1465
1465
  EncodedRegistry.register(
1466
- :class => Virtuozzo::SOAP::Drivers::Support::Transport_type,
1466
+ :class => Virtuozzo::SOAP::Types::Support::Transport_type,
1467
1467
  :schema_type => XSD::QName.new(NsTypes, "transport_type")
1468
1468
  )
1469
1469
 
1470
1470
  EncodedRegistry.register(
1471
- :class => Virtuozzo::SOAP::Drivers::Support::Yes_no_type,
1471
+ :class => Virtuozzo::SOAP::Types::Support::Yes_no_type,
1472
1472
  :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
1473
1473
  )
1474
1474
 
1475
1475
  LiteralRegistry.register(
1476
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType,
1476
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType,
1477
1477
  :schema_type => XSD::QName.new(NsVzasupport, "vzasupportType"),
1478
1478
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1479
1479
  :schema_element => [ :choice,
1480
- ["configuration", ["Virtuozzo::SOAP::Drivers::Support::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1481
- ["ok", ["Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1482
- ["error", ["Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1480
+ ["configuration", ["Virtuozzo::SOAP::Types::Support::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1481
+ ["ok", ["Virtuozzo::SOAP::Types::Support::VzasupportType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1482
+ ["error", ["Virtuozzo::SOAP::Types::Support::VzasupportType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1483
1483
  [
1484
- ["start_channel", "Virtuozzo::SOAP::Drivers::Support::Start_channel[]"],
1485
- ["stop_channel", "Virtuozzo::SOAP::Drivers::Support::Stop_channel[]"],
1486
- ["get_channel_status", "Virtuozzo::SOAP::Drivers::Support::Get_channel_status[]"],
1487
- ["set_key", "Virtuozzo::SOAP::Drivers::Support::Set_key[]"],
1488
- ["get_key_status", "Virtuozzo::SOAP::Drivers::Support::Get_key_status[]"],
1489
- ["remove_key", "Virtuozzo::SOAP::Drivers::Support::Remove_key[]"],
1490
- ["problem_report", "Virtuozzo::SOAP::Drivers::Support::Problem_report[]"]
1484
+ ["start_channel", "Virtuozzo::SOAP::Types::Support::Start_channel[]"],
1485
+ ["stop_channel", "Virtuozzo::SOAP::Types::Support::Stop_channel[]"],
1486
+ ["get_channel_status", "Virtuozzo::SOAP::Types::Support::Get_channel_status[]"],
1487
+ ["set_key", "Virtuozzo::SOAP::Types::Support::Set_key[]"],
1488
+ ["get_key_status", "Virtuozzo::SOAP::Types::Support::Get_key_status[]"],
1489
+ ["remove_key", "Virtuozzo::SOAP::Types::Support::Remove_key[]"],
1490
+ ["problem_report", "Virtuozzo::SOAP::Types::Support::Problem_report[]"]
1491
1491
  ],
1492
1492
  [
1493
1493
  ["channel_status", "SOAP::SOAPInt[]"],
@@ -1498,7 +1498,7 @@ module Virtuozzo # :nodoc:
1498
1498
  )
1499
1499
 
1500
1500
  LiteralRegistry.register(
1501
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok,
1501
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType::Ok,
1502
1502
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1503
1503
  :is_anonymous => true,
1504
1504
  :schema_qualified => true,
@@ -1506,7 +1506,7 @@ module Virtuozzo # :nodoc:
1506
1506
  )
1507
1507
 
1508
1508
  LiteralRegistry.register(
1509
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error,
1509
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType::Error,
1510
1510
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1511
1511
  :is_anonymous => true,
1512
1512
  :schema_qualified => true,
@@ -1517,16 +1517,16 @@ module Virtuozzo # :nodoc:
1517
1517
  )
1518
1518
 
1519
1519
  LiteralRegistry.register(
1520
- :class => Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType,
1520
+ :class => Virtuozzo::SOAP::Types::Support::Vzasupport_configurationType,
1521
1521
  :schema_type => XSD::QName.new(NsVzasupport, "vzasupport_configurationType"),
1522
1522
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1523
1523
  :schema_element => [
1524
- ["timeouts", "Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType::Timeouts"]
1524
+ ["timeouts", "Virtuozzo::SOAP::Types::Support::Vzasupport_configurationType::Timeouts"]
1525
1525
  ]
1526
1526
  )
1527
1527
 
1528
1528
  LiteralRegistry.register(
1529
- :class => Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType::Timeouts,
1529
+ :class => Virtuozzo::SOAP::Types::Support::Vzasupport_configurationType::Timeouts,
1530
1530
  :schema_name => XSD::QName.new(NsVzasupport, "timeouts"),
1531
1531
  :is_anonymous => true,
1532
1532
  :schema_qualified => true,
@@ -1538,15 +1538,15 @@ module Virtuozzo # :nodoc:
1538
1538
  )
1539
1539
 
1540
1540
  LiteralRegistry.register(
1541
- :class => Virtuozzo::SOAP::Drivers::Support::Packet_headerType,
1541
+ :class => Virtuozzo::SOAP::Types::Support::Packet_headerType,
1542
1542
  :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
1543
1543
  :schema_element => [
1544
- ["auth", "Virtuozzo::SOAP::Drivers::Support::AuthType", [0, 1]],
1544
+ ["auth", "Virtuozzo::SOAP::Types::Support::AuthType", [0, 1]],
1545
1545
  ["cookie", "SOAP::SOAPString", [0, 1]],
1546
1546
  ["target", "SOAP::SOAPString[]", [0, nil]],
1547
1547
  ["origin", "SOAP::SOAPString", [0, 1]],
1548
- ["src", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
1549
- ["dst", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
1548
+ ["src", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
1549
+ ["dst", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
1550
1550
  ["session", "SOAP::SOAPString", [0, 1]]
1551
1551
  ],
1552
1552
  :schema_attribute => {
@@ -1564,26 +1564,26 @@ module Virtuozzo # :nodoc:
1564
1564
  )
1565
1565
 
1566
1566
  LiteralRegistry.register(
1567
- :class => Virtuozzo::SOAP::Drivers::Support::OperatorType,
1567
+ :class => Virtuozzo::SOAP::Types::Support::OperatorType,
1568
1568
  :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
1569
1569
  :schema_element => [ :choice,
1570
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"]
1570
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"]
1571
1571
  ]
1572
1572
  )
1573
1573
 
1574
1574
  LiteralRegistry.register(
1575
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType,
1575
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType,
1576
1576
  :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
1577
1577
  :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
1578
1578
  :schema_element => [ :choice,
1579
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"],
1580
- ["ok", "Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok[]"],
1581
- ["error", "Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error[]"]
1579
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"],
1580
+ ["ok", "Virtuozzo::SOAP::Types::Support::Operator_functionalType::Ok[]"],
1581
+ ["error", "Virtuozzo::SOAP::Types::Support::Operator_functionalType::Error[]"]
1582
1582
  ]
1583
1583
  )
1584
1584
 
1585
1585
  LiteralRegistry.register(
1586
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok,
1586
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType::Ok,
1587
1587
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1588
1588
  :is_anonymous => true,
1589
1589
  :schema_qualified => true,
@@ -1591,7 +1591,7 @@ module Virtuozzo # :nodoc:
1591
1591
  )
1592
1592
 
1593
1593
  LiteralRegistry.register(
1594
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error,
1594
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType::Error,
1595
1595
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1596
1596
  :is_anonymous => true,
1597
1597
  :schema_qualified => true,
@@ -1602,24 +1602,24 @@ module Virtuozzo # :nodoc:
1602
1602
  )
1603
1603
 
1604
1604
  LiteralRegistry.register(
1605
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType,
1605
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType,
1606
1606
  :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
1607
1607
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1608
1608
  :schema_element => [ :choice,
1609
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"],
1610
- ["ok", "Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok[]"],
1611
- ["error", "Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error[]"],
1609
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"],
1610
+ ["ok", "Virtuozzo::SOAP::Types::Support::Operator_periodicType::Ok[]"],
1611
+ ["error", "Virtuozzo::SOAP::Types::Support::Operator_periodicType::Error[]"],
1612
1612
  [ :choice,
1613
- ["start_monitor", "Virtuozzo::SOAP::Drivers::Support::Start_monitorType"],
1614
- ["stop_monitor", "Virtuozzo::SOAP::Drivers::Support::Stop_monitorType"],
1615
- ["set_period", "Virtuozzo::SOAP::Drivers::Support::Set_periodType", [0, 1]],
1613
+ ["start_monitor", "Virtuozzo::SOAP::Types::Support::Start_monitorType"],
1614
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Support::Stop_monitorType"],
1615
+ ["set_period", "Virtuozzo::SOAP::Types::Support::Set_periodType", [0, 1]],
1616
1616
  ["report", nil, [0, 1]]
1617
1617
  ]
1618
1618
  ]
1619
1619
  )
1620
1620
 
1621
1621
  LiteralRegistry.register(
1622
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok,
1622
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType::Ok,
1623
1623
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1624
1624
  :is_anonymous => true,
1625
1625
  :schema_qualified => true,
@@ -1627,7 +1627,7 @@ module Virtuozzo # :nodoc:
1627
1627
  )
1628
1628
 
1629
1629
  LiteralRegistry.register(
1630
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error,
1630
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType::Error,
1631
1631
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1632
1632
  :is_anonymous => true,
1633
1633
  :schema_qualified => true,
@@ -1638,7 +1638,7 @@ module Virtuozzo # :nodoc:
1638
1638
  )
1639
1639
 
1640
1640
  LiteralRegistry.register(
1641
- :class => Virtuozzo::SOAP::Drivers::Support::Set_periodType,
1641
+ :class => Virtuozzo::SOAP::Types::Support::Set_periodType,
1642
1642
  :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
1643
1643
  :schema_element => [
1644
1644
  ["collect", "SOAP::SOAPInt"],
@@ -1648,7 +1648,7 @@ module Virtuozzo # :nodoc:
1648
1648
  )
1649
1649
 
1650
1650
  LiteralRegistry.register(
1651
- :class => Virtuozzo::SOAP::Drivers::Support::Start_monitorType,
1651
+ :class => Virtuozzo::SOAP::Types::Support::Start_monitorType,
1652
1652
  :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
1653
1653
  :schema_element => [
1654
1654
  ["period", "SOAP::SOAPInt"],
@@ -1657,7 +1657,7 @@ module Virtuozzo # :nodoc:
1657
1657
  )
1658
1658
 
1659
1659
  LiteralRegistry.register(
1660
- :class => Virtuozzo::SOAP::Drivers::Support::Stop_monitorType,
1660
+ :class => Virtuozzo::SOAP::Types::Support::Stop_monitorType,
1661
1661
  :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
1662
1662
  :schema_element => [
1663
1663
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -1665,7 +1665,7 @@ module Virtuozzo # :nodoc:
1665
1665
  )
1666
1666
 
1667
1667
  LiteralRegistry.register(
1668
- :class => Virtuozzo::SOAP::Drivers::Support::AuthType,
1668
+ :class => Virtuozzo::SOAP::Types::Support::AuthType,
1669
1669
  :schema_type => XSD::QName.new(NsProtocol, "authType"),
1670
1670
  :schema_element => [
1671
1671
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -1673,7 +1673,7 @@ module Virtuozzo # :nodoc:
1673
1673
  )
1674
1674
 
1675
1675
  LiteralRegistry.register(
1676
- :class => Virtuozzo::SOAP::Drivers::Support::Event_configurationType,
1676
+ :class => Virtuozzo::SOAP::Types::Support::Event_configurationType,
1677
1677
  :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
1678
1678
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1679
1679
  :schema_element => [
@@ -1682,7 +1682,7 @@ module Virtuozzo # :nodoc:
1682
1682
  )
1683
1683
 
1684
1684
  LiteralRegistry.register(
1685
- :class => Virtuozzo::SOAP::Drivers::Support::Periodic_configurationType,
1685
+ :class => Virtuozzo::SOAP::Types::Support::Periodic_configurationType,
1686
1686
  :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
1687
1687
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1688
1688
  :schema_element => [
@@ -1694,7 +1694,7 @@ module Virtuozzo # :nodoc:
1694
1694
  )
1695
1695
 
1696
1696
  LiteralRegistry.register(
1697
- :class => Virtuozzo::SOAP::Drivers::Support::RouteType,
1697
+ :class => Virtuozzo::SOAP::Types::Support::RouteType,
1698
1698
  :schema_type => XSD::QName.new(NsProtocol, "routeType"),
1699
1699
  :schema_element => [
1700
1700
  ["director", "SOAP::SOAPString", [0, 1]],
@@ -1705,21 +1705,21 @@ module Virtuozzo # :nodoc:
1705
1705
  )
1706
1706
 
1707
1707
  LiteralRegistry.register(
1708
- :class => Virtuozzo::SOAP::Drivers::Support::DataType,
1708
+ :class => Virtuozzo::SOAP::Types::Support::DataType,
1709
1709
  :schema_type => XSD::QName.new(NsProtocol, "dataType"),
1710
1710
  :schema_element => [
1711
- ["operator", "Virtuozzo::SOAP::Drivers::Support::OperatorType[]"]
1711
+ ["operator", "Virtuozzo::SOAP::Types::Support::OperatorType[]"]
1712
1712
  ]
1713
1713
  )
1714
1714
 
1715
1715
  LiteralRegistry.register(
1716
- :class => Virtuozzo::SOAP::Drivers::Support::ConfigurationType,
1716
+ :class => Virtuozzo::SOAP::Types::Support::ConfigurationType,
1717
1717
  :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
1718
1718
  :schema_element => []
1719
1719
  )
1720
1720
 
1721
1721
  LiteralRegistry.register(
1722
- :class => Virtuozzo::SOAP::Drivers::Support::OsType,
1722
+ :class => Virtuozzo::SOAP::Types::Support::OsType,
1723
1723
  :schema_type => XSD::QName.new(NsTypes, "osType"),
1724
1724
  :schema_element => [
1725
1725
  ["platform", "SOAP::SOAPString", [0, 1]],
@@ -1730,7 +1730,7 @@ module Virtuozzo # :nodoc:
1730
1730
  )
1731
1731
 
1732
1732
  LiteralRegistry.register(
1733
- :class => Virtuozzo::SOAP::Drivers::Support::Env_statusType,
1733
+ :class => Virtuozzo::SOAP::Types::Support::Env_statusType,
1734
1734
  :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
1735
1735
  :schema_element => [
1736
1736
  ["state", "SOAP::SOAPInt", [0, 1]],
@@ -1739,7 +1739,7 @@ module Virtuozzo # :nodoc:
1739
1739
  )
1740
1740
 
1741
1741
  LiteralRegistry.register(
1742
- :class => Virtuozzo::SOAP::Drivers::Support::QosType,
1742
+ :class => Virtuozzo::SOAP::Types::Support::QosType,
1743
1743
  :schema_type => XSD::QName.new(NsTypes, "qosType"),
1744
1744
  :schema_element => [
1745
1745
  ["id", "SOAP::SOAPString"],
@@ -1750,16 +1750,16 @@ module Virtuozzo # :nodoc:
1750
1750
  )
1751
1751
 
1752
1752
  LiteralRegistry.register(
1753
- :class => Virtuozzo::SOAP::Drivers::Support::Env_configType,
1753
+ :class => Virtuozzo::SOAP::Types::Support::Env_configType,
1754
1754
  :schema_type => XSD::QName.new(NsTypes, "env_configType"),
1755
1755
  :schema_element => [
1756
1756
  ["name", "SOAP::SOAPString", [0, 1]],
1757
1757
  ["description", "SOAP::SOAPBase64", [0, 1]],
1758
1758
  ["domain", "SOAP::SOAPString", [0, 1]],
1759
1759
  ["hostname", "SOAP::SOAPString", [0, 1]],
1760
- ["address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
1760
+ ["address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
1761
1761
  ["architecture", "SOAP::SOAPString", [0, 1]],
1762
- ["os", "Virtuozzo::SOAP::Drivers::Support::OsType", [0, 1]],
1762
+ ["os", "Virtuozzo::SOAP::Types::Support::OsType", [0, 1]],
1763
1763
  ["type", "SOAP::SOAPString", [0, 1]],
1764
1764
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1765
1765
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
@@ -1770,7 +1770,7 @@ module Virtuozzo # :nodoc:
1770
1770
  )
1771
1771
 
1772
1772
  LiteralRegistry.register(
1773
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType,
1773
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType,
1774
1774
  :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
1775
1775
  :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
1776
1776
  :schema_element => [
@@ -1778,40 +1778,40 @@ module Virtuozzo # :nodoc:
1778
1778
  ["description", "SOAP::SOAPBase64", [0, 1]],
1779
1779
  ["domain", "SOAP::SOAPString", [0, 1]],
1780
1780
  ["hostname", "SOAP::SOAPString", [0, 1]],
1781
- ["address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
1781
+ ["address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
1782
1782
  ["architecture", "SOAP::SOAPString", [0, 1]],
1783
- ["os", "Virtuozzo::SOAP::Drivers::Support::OsType", [0, 1]],
1783
+ ["os", "Virtuozzo::SOAP::Types::Support::OsType", [0, 1]],
1784
1784
  ["type", "SOAP::SOAPString", [0, 1]],
1785
1785
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1786
1786
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1787
1787
  ["base_sample_id", nil, [0, 1]],
1788
1788
  ["base_snapshot_id", nil, [0, 1]],
1789
1789
  ["child_type", "SOAP::SOAPString[]", [0, nil]],
1790
- ["qos", "Virtuozzo::SOAP::Drivers::Support::QosType[]", [0, nil]]
1790
+ ["qos", "Virtuozzo::SOAP::Types::Support::QosType[]", [0, nil]]
1791
1791
  ]
1792
1792
  )
1793
1793
 
1794
1794
  LiteralRegistry.register(
1795
- :class => Virtuozzo::SOAP::Drivers::Support::Native_configType,
1795
+ :class => Virtuozzo::SOAP::Types::Support::Native_configType,
1796
1796
  :schema_type => XSD::QName.new(NsTypes, "native_configType"),
1797
1797
  :schema_element => []
1798
1798
  )
1799
1799
 
1800
1800
  LiteralRegistry.register(
1801
- :class => Virtuozzo::SOAP::Drivers::Support::EnvType,
1801
+ :class => Virtuozzo::SOAP::Types::Support::EnvType,
1802
1802
  :schema_type => XSD::QName.new(NsTypes, "envType"),
1803
1803
  :schema_element => [
1804
1804
  ["parent_eid", nil],
1805
1805
  ["eid", nil],
1806
- ["status", "Virtuozzo::SOAP::Drivers::Support::Env_statusType", [0, 1]],
1806
+ ["status", "Virtuozzo::SOAP::Types::Support::Env_statusType", [0, 1]],
1807
1807
  ["alert", "SOAP::SOAPInt", [0, 1]],
1808
- ["config", "Virtuozzo::SOAP::Drivers::Support::Env_configType", [0, 1]],
1809
- ["virtual_config", "Virtuozzo::SOAP::Drivers::Support::Venv_configType", [0, 1]]
1808
+ ["config", "Virtuozzo::SOAP::Types::Support::Env_configType", [0, 1]],
1809
+ ["virtual_config", "Virtuozzo::SOAP::Types::Support::Venv_configType", [0, 1]]
1810
1810
  ]
1811
1811
  )
1812
1812
 
1813
1813
  LiteralRegistry.register(
1814
- :class => Virtuozzo::SOAP::Drivers::Support::ProcessesType,
1814
+ :class => Virtuozzo::SOAP::Types::Support::ProcessesType,
1815
1815
  :schema_type => XSD::QName.new(NsTypes, "processesType"),
1816
1816
  :schema_element => [
1817
1817
  ["run", "SOAP::SOAPInt"],
@@ -1824,7 +1824,7 @@ module Virtuozzo # :nodoc:
1824
1824
  )
1825
1825
 
1826
1826
  LiteralRegistry.register(
1827
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avgType,
1827
+ :class => Virtuozzo::SOAP::Types::Support::Load_avgType,
1828
1828
  :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
1829
1829
  :schema_element => [
1830
1830
  ["l1", "SOAP::SOAPDouble"],
@@ -1834,7 +1834,7 @@ module Virtuozzo # :nodoc:
1834
1834
  )
1835
1835
 
1836
1836
  LiteralRegistry.register(
1837
- :class => Virtuozzo::SOAP::Drivers::Support::Cpu_loadType,
1837
+ :class => Virtuozzo::SOAP::Types::Support::Cpu_loadType,
1838
1838
  :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
1839
1839
  :schema_element => [
1840
1840
  ["system", "SOAP::SOAPLong"],
@@ -1845,7 +1845,7 @@ module Virtuozzo # :nodoc:
1845
1845
  )
1846
1846
 
1847
1847
  LiteralRegistry.register(
1848
- :class => Virtuozzo::SOAP::Drivers::Support::CpuType,
1848
+ :class => Virtuozzo::SOAP::Types::Support::CpuType,
1849
1849
  :schema_type => XSD::QName.new(NsTypes, "cpuType"),
1850
1850
  :schema_element => [
1851
1851
  ["mhz", "SOAP::SOAPInt"],
@@ -1861,16 +1861,16 @@ module Virtuozzo # :nodoc:
1861
1861
  )
1862
1862
 
1863
1863
  LiteralRegistry.register(
1864
- :class => Virtuozzo::SOAP::Drivers::Support::TransferType,
1864
+ :class => Virtuozzo::SOAP::Types::Support::TransferType,
1865
1865
  :schema_type => XSD::QName.new(NsTypes, "transferType"),
1866
1866
  :schema_element => [
1867
- ["input", "Virtuozzo::SOAP::Drivers::Support::TransferType::Input"],
1868
- ["output", "Virtuozzo::SOAP::Drivers::Support::TransferType::Output"]
1867
+ ["input", "Virtuozzo::SOAP::Types::Support::TransferType::Input"],
1868
+ ["output", "Virtuozzo::SOAP::Types::Support::TransferType::Output"]
1869
1869
  ]
1870
1870
  )
1871
1871
 
1872
1872
  LiteralRegistry.register(
1873
- :class => Virtuozzo::SOAP::Drivers::Support::TransferType::Input,
1873
+ :class => Virtuozzo::SOAP::Types::Support::TransferType::Input,
1874
1874
  :schema_name => XSD::QName.new(NsTypes, "input"),
1875
1875
  :is_anonymous => true,
1876
1876
  :schema_qualified => true,
@@ -1881,7 +1881,7 @@ module Virtuozzo # :nodoc:
1881
1881
  )
1882
1882
 
1883
1883
  LiteralRegistry.register(
1884
- :class => Virtuozzo::SOAP::Drivers::Support::TransferType::Output,
1884
+ :class => Virtuozzo::SOAP::Types::Support::TransferType::Output,
1885
1885
  :schema_name => XSD::QName.new(NsTypes, "output"),
1886
1886
  :is_anonymous => true,
1887
1887
  :schema_qualified => true,
@@ -1892,16 +1892,16 @@ module Virtuozzo # :nodoc:
1892
1892
  )
1893
1893
 
1894
1894
  LiteralRegistry.register(
1895
- :class => Virtuozzo::SOAP::Drivers::Support::System_nodeType,
1895
+ :class => Virtuozzo::SOAP::Types::Support::System_nodeType,
1896
1896
  :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
1897
1897
  :schema_element => [
1898
- ["address", "Virtuozzo::SOAP::Drivers::Support::System_nodeType::Address"],
1899
- ["login", "Virtuozzo::SOAP::Drivers::Support::System_nodeType::Login", [0, 1]]
1898
+ ["address", "Virtuozzo::SOAP::Types::Support::System_nodeType::Address"],
1899
+ ["login", "Virtuozzo::SOAP::Types::Support::System_nodeType::Login", [0, 1]]
1900
1900
  ]
1901
1901
  )
1902
1902
 
1903
1903
  LiteralRegistry.register(
1904
- :class => Virtuozzo::SOAP::Drivers::Support::System_nodeType::Address,
1904
+ :class => Virtuozzo::SOAP::Types::Support::System_nodeType::Address,
1905
1905
  :schema_name => XSD::QName.new(NsTypes, "address"),
1906
1906
  :is_anonymous => true,
1907
1907
  :schema_qualified => true,
@@ -1911,7 +1911,7 @@ module Virtuozzo # :nodoc:
1911
1911
  )
1912
1912
 
1913
1913
  LiteralRegistry.register(
1914
- :class => Virtuozzo::SOAP::Drivers::Support::System_nodeType::Login,
1914
+ :class => Virtuozzo::SOAP::Types::Support::System_nodeType::Login,
1915
1915
  :schema_name => XSD::QName.new(NsTypes, "login"),
1916
1916
  :is_anonymous => true,
1917
1917
  :schema_qualified => true,
@@ -1922,7 +1922,7 @@ module Virtuozzo # :nodoc:
1922
1922
  )
1923
1923
 
1924
1924
  LiteralRegistry.register(
1925
- :class => Virtuozzo::SOAP::Drivers::Support::ResourceType,
1925
+ :class => Virtuozzo::SOAP::Types::Support::ResourceType,
1926
1926
  :schema_type => XSD::QName.new(NsTypes, "resourceType"),
1927
1927
  :schema_element => [
1928
1928
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -1935,7 +1935,7 @@ module Virtuozzo # :nodoc:
1935
1935
  )
1936
1936
 
1937
1937
  LiteralRegistry.register(
1938
- :class => Virtuozzo::SOAP::Drivers::Support::IntervalType,
1938
+ :class => Virtuozzo::SOAP::Types::Support::IntervalType,
1939
1939
  :schema_type => XSD::QName.new(NsTypes, "intervalType"),
1940
1940
  :schema_element => [
1941
1941
  ["start_time", nil],
@@ -1944,7 +1944,7 @@ module Virtuozzo # :nodoc:
1944
1944
  )
1945
1945
 
1946
1946
  LiteralRegistry.register(
1947
- :class => Virtuozzo::SOAP::Drivers::Support::StatsType,
1947
+ :class => Virtuozzo::SOAP::Types::Support::StatsType,
1948
1948
  :schema_type => XSD::QName.new(NsTypes, "statsType"),
1949
1949
  :schema_element => [
1950
1950
  ["avg", "SOAP::SOAPLong", [0, 1]],
@@ -1958,7 +1958,7 @@ module Virtuozzo # :nodoc:
1958
1958
  )
1959
1959
 
1960
1960
  LiteralRegistry.register(
1961
- :class => Virtuozzo::SOAP::Drivers::Support::Net_addressType,
1961
+ :class => Virtuozzo::SOAP::Types::Support::Net_addressType,
1962
1962
  :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
1963
1963
  :schema_element => [
1964
1964
  ["host", nil],
@@ -1967,16 +1967,16 @@ module Virtuozzo # :nodoc:
1967
1967
  )
1968
1968
 
1969
1969
  LiteralRegistry.register(
1970
- :class => Virtuozzo::SOAP::Drivers::Support::Net_classType,
1970
+ :class => Virtuozzo::SOAP::Types::Support::Net_classType,
1971
1971
  :schema_type => XSD::QName.new(NsTypes, "net_classType"),
1972
1972
  :schema_element => [
1973
1973
  ["id", "SOAP::SOAPString", [0, 1]],
1974
- ["transfer", "Virtuozzo::SOAP::Drivers::Support::TransferType", [0, 1]]
1974
+ ["transfer", "Virtuozzo::SOAP::Types::Support::TransferType", [0, 1]]
1975
1975
  ]
1976
1976
  )
1977
1977
 
1978
1978
  LiteralRegistry.register(
1979
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_rangeType,
1979
+ :class => Virtuozzo::SOAP::Types::Support::Ip_rangeType,
1980
1980
  :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
1981
1981
  :schema_element => [
1982
1982
  ["id", "SOAP::SOAPString", [0, 1]],
@@ -1987,19 +1987,19 @@ module Virtuozzo # :nodoc:
1987
1987
  )
1988
1988
 
1989
1989
  LiteralRegistry.register(
1990
- :class => Virtuozzo::SOAP::Drivers::Support::Sample_confType,
1990
+ :class => Virtuozzo::SOAP::Types::Support::Sample_confType,
1991
1991
  :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
1992
1992
  :schema_element => [
1993
- ["env_config", "Virtuozzo::SOAP::Drivers::Support::Env_configType"],
1993
+ ["env_config", "Virtuozzo::SOAP::Types::Support::Env_configType"],
1994
1994
  ["id", "SOAP::SOAPString", [0, 1]],
1995
1995
  ["name", "SOAP::SOAPString"],
1996
1996
  ["comment", "SOAP::SOAPBase64", [0, 1]],
1997
- ["vt_version", "Virtuozzo::SOAP::Drivers::Support::Sample_confType::Vt_version", [0, 1]]
1997
+ ["vt_version", "Virtuozzo::SOAP::Types::Support::Sample_confType::Vt_version", [0, 1]]
1998
1998
  ]
1999
1999
  )
2000
2000
 
2001
2001
  LiteralRegistry.register(
2002
- :class => Virtuozzo::SOAP::Drivers::Support::Sample_confType::Vt_version,
2002
+ :class => Virtuozzo::SOAP::Types::Support::Sample_confType::Vt_version,
2003
2003
  :schema_name => XSD::QName.new(NsTypes, "vt_version"),
2004
2004
  :is_anonymous => true,
2005
2005
  :schema_qualified => true,
@@ -2011,34 +2011,34 @@ module Virtuozzo # :nodoc:
2011
2011
  )
2012
2012
 
2013
2013
  LiteralRegistry.register(
2014
- :class => Virtuozzo::SOAP::Drivers::Support::InterfaceType,
2014
+ :class => Virtuozzo::SOAP::Types::Support::InterfaceType,
2015
2015
  :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
2016
2016
  :schema_element => [
2017
2017
  ["name", "SOAP::SOAPString"],
2018
2018
  ["bandwidth", "SOAP::SOAPInt", [0, 1]],
2019
- ["transfer", "Virtuozzo::SOAP::Drivers::Support::TransferType", [0, 1]],
2019
+ ["transfer", "Virtuozzo::SOAP::Types::Support::TransferType", [0, 1]],
2020
2020
  ["ipaddress", nil, [0, 1]],
2021
2021
  ["flags", "SOAP::SOAPInt", [0, 1]]
2022
2022
  ]
2023
2023
  )
2024
2024
 
2025
2025
  LiteralRegistry.register(
2026
- :class => Virtuozzo::SOAP::Drivers::Support::Sys_infoType,
2026
+ :class => Virtuozzo::SOAP::Types::Support::Sys_infoType,
2027
2027
  :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
2028
2028
  :schema_element => [
2029
- ["load_avg", "Virtuozzo::SOAP::Drivers::Support::Load_avgType"],
2030
- ["processes", "Virtuozzo::SOAP::Drivers::Support::ProcessesType"],
2031
- ["cpu_load", "Virtuozzo::SOAP::Drivers::Support::Cpu_loadType"],
2032
- ["cpu_states", "Virtuozzo::SOAP::Drivers::Support::Cpu_loadType"],
2029
+ ["load_avg", "Virtuozzo::SOAP::Types::Support::Load_avgType"],
2030
+ ["processes", "Virtuozzo::SOAP::Types::Support::ProcessesType"],
2031
+ ["cpu_load", "Virtuozzo::SOAP::Types::Support::Cpu_loadType"],
2032
+ ["cpu_states", "Virtuozzo::SOAP::Types::Support::Cpu_loadType"],
2033
2033
  ["users", "SOAP::SOAPInt"],
2034
2034
  ["uptime", "SOAP::SOAPLong"],
2035
- ["memory", "Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Memory", [0, 1]],
2036
- ["swap", "Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Swap", [0, 1]]
2035
+ ["memory", "Virtuozzo::SOAP::Types::Support::Sys_infoType::Memory", [0, 1]],
2036
+ ["swap", "Virtuozzo::SOAP::Types::Support::Sys_infoType::Swap", [0, 1]]
2037
2037
  ]
2038
2038
  )
2039
2039
 
2040
2040
  LiteralRegistry.register(
2041
- :class => Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Memory,
2041
+ :class => Virtuozzo::SOAP::Types::Support::Sys_infoType::Memory,
2042
2042
  :schema_name => XSD::QName.new(NsTypes, "memory"),
2043
2043
  :is_anonymous => true,
2044
2044
  :schema_qualified => true,
@@ -2049,7 +2049,7 @@ module Virtuozzo # :nodoc:
2049
2049
  )
2050
2050
 
2051
2051
  LiteralRegistry.register(
2052
- :class => Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Swap,
2052
+ :class => Virtuozzo::SOAP::Types::Support::Sys_infoType::Swap,
2053
2053
  :schema_name => XSD::QName.new(NsTypes, "swap"),
2054
2054
  :is_anonymous => true,
2055
2055
  :schema_qualified => true,
@@ -2060,10 +2060,10 @@ module Virtuozzo # :nodoc:
2060
2060
  )
2061
2061
 
2062
2062
  LiteralRegistry.register(
2063
- :class => Virtuozzo::SOAP::Drivers::Support::Ps_infoType,
2063
+ :class => Virtuozzo::SOAP::Types::Support::Ps_infoType,
2064
2064
  :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
2065
2065
  :schema_element => [
2066
- ["process", "Virtuozzo::SOAP::Drivers::Support::Ps_infoType::C_Process[]", [1, nil]],
2066
+ ["process", "Virtuozzo::SOAP::Types::Support::Ps_infoType::C_Process[]", [1, nil]],
2067
2067
  ["param_id", "SOAP::SOAPString[]", [1, nil]],
2068
2068
  ["run", "SOAP::SOAPInt"],
2069
2069
  ["idle", "SOAP::SOAPInt"],
@@ -2076,7 +2076,7 @@ module Virtuozzo # :nodoc:
2076
2076
  )
2077
2077
 
2078
2078
  LiteralRegistry.register(
2079
- :class => Virtuozzo::SOAP::Drivers::Support::Ps_infoType::C_Process,
2079
+ :class => Virtuozzo::SOAP::Types::Support::Ps_infoType::C_Process,
2080
2080
  :schema_name => XSD::QName.new(NsTypes, "process"),
2081
2081
  :is_anonymous => true,
2082
2082
  :schema_qualified => true,
@@ -2087,17 +2087,17 @@ module Virtuozzo # :nodoc:
2087
2087
  )
2088
2088
 
2089
2089
  LiteralRegistry.register(
2090
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType,
2090
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType,
2091
2091
  :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
2092
2092
  :schema_element => [
2093
- ["l1", "Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L1"],
2094
- ["l2", "Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L2", [0, 1]],
2095
- ["l3", "Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L3", [0, 1]]
2093
+ ["l1", "Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L1"],
2094
+ ["l2", "Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L2", [0, 1]],
2095
+ ["l3", "Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L3", [0, 1]]
2096
2096
  ]
2097
2097
  )
2098
2098
 
2099
2099
  LiteralRegistry.register(
2100
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L1,
2100
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L1,
2101
2101
  :schema_name => XSD::QName.new(NsTypes, "l1"),
2102
2102
  :is_anonymous => true,
2103
2103
  :schema_qualified => true,
@@ -2110,7 +2110,7 @@ module Virtuozzo # :nodoc:
2110
2110
  )
2111
2111
 
2112
2112
  LiteralRegistry.register(
2113
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L2,
2113
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L2,
2114
2114
  :schema_name => XSD::QName.new(NsTypes, "l2"),
2115
2115
  :is_anonymous => true,
2116
2116
  :schema_qualified => true,
@@ -2123,7 +2123,7 @@ module Virtuozzo # :nodoc:
2123
2123
  )
2124
2124
 
2125
2125
  LiteralRegistry.register(
2126
- :class => Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L3,
2126
+ :class => Virtuozzo::SOAP::Types::Support::Load_avg_statsType::L3,
2127
2127
  :schema_name => XSD::QName.new(NsTypes, "l3"),
2128
2128
  :is_anonymous => true,
2129
2129
  :schema_qualified => true,
@@ -2136,7 +2136,7 @@ module Virtuozzo # :nodoc:
2136
2136
  )
2137
2137
 
2138
2138
  LiteralRegistry.register(
2139
- :class => Virtuozzo::SOAP::Drivers::Support::Alert_dataType,
2139
+ :class => Virtuozzo::SOAP::Types::Support::Alert_dataType,
2140
2140
  :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
2141
2141
  :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
2142
2142
  :schema_element => [
@@ -2145,7 +2145,7 @@ module Virtuozzo # :nodoc:
2145
2145
  )
2146
2146
 
2147
2147
  LiteralRegistry.register(
2148
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_addressType,
2148
+ :class => Virtuozzo::SOAP::Types::Support::Ip_addressType,
2149
2149
  :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
2150
2150
  :schema_element => [
2151
2151
  ["ip", nil],
@@ -2154,25 +2154,25 @@ module Virtuozzo # :nodoc:
2154
2154
  )
2155
2155
 
2156
2156
  LiteralRegistry.register(
2157
- :class => Virtuozzo::SOAP::Drivers::Support::Env_resourceType,
2157
+ :class => Virtuozzo::SOAP::Types::Support::Env_resourceType,
2158
2158
  :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
2159
2159
  :schema_element => [
2160
2160
  ["eid", nil],
2161
- ["ip_pool", "Virtuozzo::SOAP::Drivers::Support::Ip_poolType", [0, 1]]
2161
+ ["ip_pool", "Virtuozzo::SOAP::Types::Support::Ip_poolType", [0, 1]]
2162
2162
  ]
2163
2163
  )
2164
2164
 
2165
2165
  LiteralRegistry.register(
2166
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_poolType,
2166
+ :class => Virtuozzo::SOAP::Types::Support::Ip_poolType,
2167
2167
  :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
2168
2168
  :schema_element => [ :choice,
2169
- ["ip_range", "Virtuozzo::SOAP::Drivers::Support::Ip_poolType::Ip_range[]"],
2169
+ ["ip_range", "Virtuozzo::SOAP::Types::Support::Ip_poolType::Ip_range[]"],
2170
2170
  ["ip", "[]"]
2171
2171
  ]
2172
2172
  )
2173
2173
 
2174
2174
  LiteralRegistry.register(
2175
- :class => Virtuozzo::SOAP::Drivers::Support::Ip_poolType::Ip_range,
2175
+ :class => Virtuozzo::SOAP::Types::Support::Ip_poolType::Ip_range,
2176
2176
  :schema_name => XSD::QName.new(NsTypes, "ip_range"),
2177
2177
  :is_anonymous => true,
2178
2178
  :schema_qualified => true,
@@ -2183,7 +2183,7 @@ module Virtuozzo # :nodoc:
2183
2183
  )
2184
2184
 
2185
2185
  LiteralRegistry.register(
2186
- :class => Virtuozzo::SOAP::Drivers::Support::UsageType,
2186
+ :class => Virtuozzo::SOAP::Types::Support::UsageType,
2187
2187
  :schema_type => XSD::QName.new(NsTypes, "usageType"),
2188
2188
  :schema_element => [
2189
2189
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -2193,20 +2193,20 @@ module Virtuozzo # :nodoc:
2193
2193
  )
2194
2194
 
2195
2195
  LiteralRegistry.register(
2196
- :class => Virtuozzo::SOAP::Drivers::Support::Root_credentialType,
2196
+ :class => Virtuozzo::SOAP::Types::Support::Root_credentialType,
2197
2197
  :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
2198
2198
  :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
2199
2199
  :schema_element => [
2200
2200
  ["id", "SOAP::SOAPString"],
2201
2201
  ["policy", "SOAP::SOAPInt", [0, 1]],
2202
2202
  ["description", "SOAP::SOAPBase64", [0, 1]],
2203
- ["cred", "Virtuozzo::SOAP::Drivers::Support::CredentialType[]", [0, nil]],
2204
- ["objects", "Virtuozzo::SOAP::Drivers::Support::Root_credentialType::Objects", [0, 1]]
2203
+ ["cred", "Virtuozzo::SOAP::Types::Support::CredentialType[]", [0, nil]],
2204
+ ["objects", "Virtuozzo::SOAP::Types::Support::Root_credentialType::Objects", [0, 1]]
2205
2205
  ]
2206
2206
  )
2207
2207
 
2208
2208
  LiteralRegistry.register(
2209
- :class => Virtuozzo::SOAP::Drivers::Support::Root_credentialType::Objects,
2209
+ :class => Virtuozzo::SOAP::Types::Support::Root_credentialType::Objects,
2210
2210
  :schema_name => XSD::QName.new(NsTypes, "objects"),
2211
2211
  :is_anonymous => true,
2212
2212
  :schema_qualified => true,
@@ -2216,30 +2216,30 @@ module Virtuozzo # :nodoc:
2216
2216
  )
2217
2217
 
2218
2218
  LiteralRegistry.register(
2219
- :class => Virtuozzo::SOAP::Drivers::Support::CredentialType,
2219
+ :class => Virtuozzo::SOAP::Types::Support::CredentialType,
2220
2220
  :schema_type => XSD::QName.new(NsTypes, "credentialType"),
2221
2221
  :schema_element => [
2222
2222
  ["id", "SOAP::SOAPString"],
2223
2223
  ["policy", "SOAP::SOAPInt", [0, 1]],
2224
2224
  ["description", "SOAP::SOAPBase64", [0, 1]],
2225
- ["cred", "Virtuozzo::SOAP::Drivers::Support::CredentialType[]", [0, nil]]
2225
+ ["cred", "Virtuozzo::SOAP::Types::Support::CredentialType[]", [0, nil]]
2226
2226
  ]
2227
2227
  )
2228
2228
 
2229
2229
  LiteralRegistry.register(
2230
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType,
2230
+ :class => Virtuozzo::SOAP::Types::Support::TokenType,
2231
2231
  :schema_type => XSD::QName.new(NsTypes, "tokenType"),
2232
2232
  :schema_element => [
2233
2233
  ["user", nil],
2234
- ["groups", "Virtuozzo::SOAP::Drivers::Support::TokenType::Groups", [0, 1]],
2235
- ["deny_only_sids", "Virtuozzo::SOAP::Drivers::Support::TokenType::Deny_only_sids", [0, 1]],
2236
- ["privileges", "Virtuozzo::SOAP::Drivers::Support::TokenType::Privileges", [0, 1]],
2237
- ["source", "Virtuozzo::SOAP::Drivers::Support::TokenType::Source", [0, 1]]
2234
+ ["groups", "Virtuozzo::SOAP::Types::Support::TokenType::Groups", [0, 1]],
2235
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Support::TokenType::Deny_only_sids", [0, 1]],
2236
+ ["privileges", "Virtuozzo::SOAP::Types::Support::TokenType::Privileges", [0, 1]],
2237
+ ["source", "Virtuozzo::SOAP::Types::Support::TokenType::Source", [0, 1]]
2238
2238
  ]
2239
2239
  )
2240
2240
 
2241
2241
  LiteralRegistry.register(
2242
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Groups,
2242
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Groups,
2243
2243
  :schema_name => XSD::QName.new(NsTypes, "groups"),
2244
2244
  :is_anonymous => true,
2245
2245
  :schema_qualified => true,
@@ -2249,7 +2249,7 @@ module Virtuozzo # :nodoc:
2249
2249
  )
2250
2250
 
2251
2251
  LiteralRegistry.register(
2252
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Deny_only_sids,
2252
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Deny_only_sids,
2253
2253
  :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
2254
2254
  :is_anonymous => true,
2255
2255
  :schema_qualified => true,
@@ -2259,7 +2259,7 @@ module Virtuozzo # :nodoc:
2259
2259
  )
2260
2260
 
2261
2261
  LiteralRegistry.register(
2262
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Privileges,
2262
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Privileges,
2263
2263
  :schema_name => XSD::QName.new(NsTypes, "privileges"),
2264
2264
  :is_anonymous => true,
2265
2265
  :schema_qualified => true,
@@ -2269,7 +2269,7 @@ module Virtuozzo # :nodoc:
2269
2269
  )
2270
2270
 
2271
2271
  LiteralRegistry.register(
2272
- :class => Virtuozzo::SOAP::Drivers::Support::TokenType::Source,
2272
+ :class => Virtuozzo::SOAP::Types::Support::TokenType::Source,
2273
2273
  :schema_name => XSD::QName.new(NsTypes, "source"),
2274
2274
  :is_anonymous => true,
2275
2275
  :schema_qualified => true,
@@ -2280,7 +2280,7 @@ module Virtuozzo # :nodoc:
2280
2280
  )
2281
2281
 
2282
2282
  LiteralRegistry.register(
2283
- :class => Virtuozzo::SOAP::Drivers::Support::Connectivity_infoType,
2283
+ :class => Virtuozzo::SOAP::Types::Support::Connectivity_infoType,
2284
2284
  :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
2285
2285
  :schema_element => [
2286
2286
  ["protocol", "SOAP::SOAPString", [0, 1]],
@@ -2290,7 +2290,7 @@ module Virtuozzo # :nodoc:
2290
2290
  )
2291
2291
 
2292
2292
  LiteralRegistry.register(
2293
- :class => Virtuozzo::SOAP::Drivers::Support::Auth_nameType,
2293
+ :class => Virtuozzo::SOAP::Types::Support::Auth_nameType,
2294
2294
  :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
2295
2295
  :schema_element => [
2296
2296
  ["name", "SOAP::SOAPBase64", [0, 1]],
@@ -2300,20 +2300,20 @@ module Virtuozzo # :nodoc:
2300
2300
  )
2301
2301
 
2302
2302
  LiteralRegistry.register(
2303
- :class => Virtuozzo::SOAP::Drivers::Support::Connection_infoType,
2303
+ :class => Virtuozzo::SOAP::Types::Support::Connection_infoType,
2304
2304
  :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
2305
2305
  :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
2306
2306
  :schema_element => [
2307
2307
  ["protocol", "SOAP::SOAPString", [0, 1]],
2308
2308
  ["address", "SOAP::SOAPString"],
2309
2309
  ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
2310
- ["login", "Virtuozzo::SOAP::Drivers::Support::Auth_nameType", [0, 1]],
2310
+ ["login", "Virtuozzo::SOAP::Types::Support::Auth_nameType", [0, 1]],
2311
2311
  ["password", "SOAP::SOAPBase64", [0, 1]]
2312
2312
  ]
2313
2313
  )
2314
2314
 
2315
2315
  LiteralRegistry.register(
2316
- :class => Virtuozzo::SOAP::Drivers::Support::Eid_listType,
2316
+ :class => Virtuozzo::SOAP::Types::Support::Eid_listType,
2317
2317
  :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
2318
2318
  :schema_element => [
2319
2319
  ["eid", "[]", [0, nil]]
@@ -2321,7 +2321,7 @@ module Virtuozzo # :nodoc:
2321
2321
  )
2322
2322
 
2323
2323
  LiteralRegistry.register(
2324
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_infoType,
2324
+ :class => Virtuozzo::SOAP::Types::Support::Vt_infoType,
2325
2325
  :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
2326
2326
  :schema_element => [
2327
2327
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -2329,7 +2329,7 @@ module Virtuozzo # :nodoc:
2329
2329
  )
2330
2330
 
2331
2331
  LiteralRegistry.register(
2332
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_settingsType,
2332
+ :class => Virtuozzo::SOAP::Types::Support::Vt_settingsType,
2333
2333
  :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
2334
2334
  :schema_element => [
2335
2335
  ["default_sample_id", nil, [0, 1]]
@@ -2337,11 +2337,11 @@ module Virtuozzo # :nodoc:
2337
2337
  )
2338
2338
 
2339
2339
  LiteralRegistry.register(
2340
- :class => Virtuozzo::SOAP::Drivers::Support::UserType,
2340
+ :class => Virtuozzo::SOAP::Types::Support::UserType,
2341
2341
  :schema_type => XSD::QName.new(NsTypes, "userType"),
2342
2342
  :schema_element => [
2343
- ["initial_group", "Virtuozzo::SOAP::Drivers::Support::UserType::Initial_group", [0, 1]],
2344
- ["group", "Virtuozzo::SOAP::Drivers::Support::UserType::Group[]", [0, nil]],
2343
+ ["initial_group", "Virtuozzo::SOAP::Types::Support::UserType::Initial_group", [0, 1]],
2344
+ ["group", "Virtuozzo::SOAP::Types::Support::UserType::Group[]", [0, nil]],
2345
2345
  ["uid", "SOAP::SOAPInt", [0, 1]],
2346
2346
  ["shell", "SOAP::SOAPString", [0, 1]],
2347
2347
  ["password", "SOAP::SOAPBase64", [0, 1]],
@@ -2352,7 +2352,7 @@ module Virtuozzo # :nodoc:
2352
2352
  )
2353
2353
 
2354
2354
  LiteralRegistry.register(
2355
- :class => Virtuozzo::SOAP::Drivers::Support::UserType::Initial_group,
2355
+ :class => Virtuozzo::SOAP::Types::Support::UserType::Initial_group,
2356
2356
  :schema_name => XSD::QName.new(NsTypes, "initial_group"),
2357
2357
  :is_anonymous => true,
2358
2358
  :schema_qualified => true,
@@ -2363,7 +2363,7 @@ module Virtuozzo # :nodoc:
2363
2363
  )
2364
2364
 
2365
2365
  LiteralRegistry.register(
2366
- :class => Virtuozzo::SOAP::Drivers::Support::UserType::Group,
2366
+ :class => Virtuozzo::SOAP::Types::Support::UserType::Group,
2367
2367
  :schema_name => XSD::QName.new(NsTypes, "group"),
2368
2368
  :is_anonymous => true,
2369
2369
  :schema_qualified => true,
@@ -2374,18 +2374,18 @@ module Virtuozzo # :nodoc:
2374
2374
  )
2375
2375
 
2376
2376
  LiteralRegistry.register(
2377
- :class => Virtuozzo::SOAP::Drivers::Support::GroupType,
2377
+ :class => Virtuozzo::SOAP::Types::Support::GroupType,
2378
2378
  :schema_type => XSD::QName.new(NsTypes, "groupType"),
2379
2379
  :schema_element => [
2380
- ["user", "Virtuozzo::SOAP::Drivers::Support::GroupType::User[]", [0, nil]],
2381
- ["member_group", "Virtuozzo::SOAP::Drivers::Support::GroupType::Member_group[]", [0, nil]],
2380
+ ["user", "Virtuozzo::SOAP::Types::Support::GroupType::User[]", [0, nil]],
2381
+ ["member_group", "Virtuozzo::SOAP::Types::Support::GroupType::Member_group[]", [0, nil]],
2382
2382
  ["name", "SOAP::SOAPString", [0, 1]],
2383
2383
  ["gid", "SOAP::SOAPInt", [0, 1]]
2384
2384
  ]
2385
2385
  )
2386
2386
 
2387
2387
  LiteralRegistry.register(
2388
- :class => Virtuozzo::SOAP::Drivers::Support::GroupType::User,
2388
+ :class => Virtuozzo::SOAP::Types::Support::GroupType::User,
2389
2389
  :schema_name => XSD::QName.new(NsTypes, "user"),
2390
2390
  :is_anonymous => true,
2391
2391
  :schema_qualified => true,
@@ -2395,7 +2395,7 @@ module Virtuozzo # :nodoc:
2395
2395
  )
2396
2396
 
2397
2397
  LiteralRegistry.register(
2398
- :class => Virtuozzo::SOAP::Drivers::Support::GroupType::Member_group,
2398
+ :class => Virtuozzo::SOAP::Types::Support::GroupType::Member_group,
2399
2399
  :schema_name => XSD::QName.new(NsTypes, "member_group"),
2400
2400
  :is_anonymous => true,
2401
2401
  :schema_qualified => true,
@@ -2405,12 +2405,12 @@ module Virtuozzo # :nodoc:
2405
2405
  )
2406
2406
 
2407
2407
  LiteralRegistry.register(
2408
- :class => Virtuozzo::SOAP::Drivers::Support::PackageType,
2408
+ :class => Virtuozzo::SOAP::Types::Support::PackageType,
2409
2409
  :schema_type => XSD::QName.new(NsTypes, "packageType"),
2410
2410
  :schema_element => [
2411
2411
  ["name", "SOAP::SOAPString"],
2412
2412
  ["summary", "SOAP::SOAPString", [0, 1]],
2413
- ["os", "Virtuozzo::SOAP::Drivers::Support::OsType", [0, 1]],
2413
+ ["os", "Virtuozzo::SOAP::Types::Support::OsType", [0, 1]],
2414
2414
  ["description", "SOAP::SOAPString", [0, 1]],
2415
2415
  ["arch", "SOAP::SOAPString", [0, 1]],
2416
2416
  ["version", "SOAP::SOAPString", [0, 1]]
@@ -2418,13 +2418,13 @@ module Virtuozzo # :nodoc:
2418
2418
  )
2419
2419
 
2420
2420
  LiteralRegistry.register(
2421
- :class => Virtuozzo::SOAP::Drivers::Support::Event_dataType,
2421
+ :class => Virtuozzo::SOAP::Types::Support::Event_dataType,
2422
2422
  :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
2423
2423
  :schema_element => []
2424
2424
  )
2425
2425
 
2426
2426
  LiteralRegistry.register(
2427
- :class => Virtuozzo::SOAP::Drivers::Support::Named_listType,
2427
+ :class => Virtuozzo::SOAP::Types::Support::Named_listType,
2428
2428
  :schema_type => XSD::QName.new(NsTypes, "named_listType"),
2429
2429
  :schema_element => [
2430
2430
  ["name", "SOAP::SOAPString"],
@@ -2433,7 +2433,7 @@ module Virtuozzo # :nodoc:
2433
2433
  )
2434
2434
 
2435
2435
  LiteralRegistry.register(
2436
- :class => Virtuozzo::SOAP::Drivers::Support::ModType,
2436
+ :class => Virtuozzo::SOAP::Types::Support::ModType,
2437
2437
  :schema_type => XSD::QName.new(NsTypes, "modType"),
2438
2438
  :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
2439
2439
  :schema_element => [
@@ -2444,7 +2444,7 @@ module Virtuozzo # :nodoc:
2444
2444
  )
2445
2445
 
2446
2446
  LiteralRegistry.register(
2447
- :class => Virtuozzo::SOAP::Drivers::Support::RealmType,
2447
+ :class => Virtuozzo::SOAP::Types::Support::RealmType,
2448
2448
  :schema_type => XSD::QName.new(NsTypes, "realmType"),
2449
2449
  :schema_element => [
2450
2450
  ["id", nil, [0, 1]],
@@ -2455,7 +2455,7 @@ module Virtuozzo # :nodoc:
2455
2455
  )
2456
2456
 
2457
2457
  LiteralRegistry.register(
2458
- :class => Virtuozzo::SOAP::Drivers::Support::EventType,
2458
+ :class => Virtuozzo::SOAP::Types::Support::EventType,
2459
2459
  :schema_type => XSD::QName.new(NsTypes, "eventType"),
2460
2460
  :schema_element => [
2461
2461
  ["eid", nil],
@@ -2465,34 +2465,34 @@ module Virtuozzo # :nodoc:
2465
2465
  ["sid", nil, [0, 1]],
2466
2466
  ["count", "SOAP::SOAPInt"],
2467
2467
  ["id", nil],
2468
- ["info", "Virtuozzo::SOAP::Drivers::Support::InfoType"],
2469
- ["data", "Virtuozzo::SOAP::Drivers::Support::EventType::C_Data", [0, 1]]
2468
+ ["info", "Virtuozzo::SOAP::Types::Support::InfoType"],
2469
+ ["data", "Virtuozzo::SOAP::Types::Support::EventType::C_Data", [0, 1]]
2470
2470
  ]
2471
2471
  )
2472
2472
 
2473
2473
  LiteralRegistry.register(
2474
- :class => Virtuozzo::SOAP::Drivers::Support::EventType::C_Data,
2474
+ :class => Virtuozzo::SOAP::Types::Support::EventType::C_Data,
2475
2475
  :schema_name => XSD::QName.new(NsTypes, "data"),
2476
2476
  :is_anonymous => true,
2477
2477
  :schema_qualified => true,
2478
2478
  :schema_element => [
2479
- ["event_data", "Virtuozzo::SOAP::Drivers::Support::Event_dataType"]
2479
+ ["event_data", "Virtuozzo::SOAP::Types::Support::Event_dataType"]
2480
2480
  ]
2481
2481
  )
2482
2482
 
2483
2483
  LiteralRegistry.register(
2484
- :class => Virtuozzo::SOAP::Drivers::Support::InfoType,
2484
+ :class => Virtuozzo::SOAP::Types::Support::InfoType,
2485
2485
  :schema_type => XSD::QName.new(NsTypes, "infoType"),
2486
2486
  :schema_element => [
2487
2487
  ["message", "SOAP::SOAPBase64"],
2488
2488
  ["translate", nil, [0, 1]],
2489
- ["parameter", "Virtuozzo::SOAP::Drivers::Support::InfoType[]", [0, nil]],
2489
+ ["parameter", "Virtuozzo::SOAP::Types::Support::InfoType[]", [0, nil]],
2490
2490
  ["name", "SOAP::SOAPString"]
2491
2491
  ]
2492
2492
  )
2493
2493
 
2494
2494
  LiteralRegistry.register(
2495
- :class => Virtuozzo::SOAP::Drivers::Support::AceType,
2495
+ :class => Virtuozzo::SOAP::Types::Support::AceType,
2496
2496
  :schema_type => XSD::QName.new(NsTypes, "aceType"),
2497
2497
  :schema_element => [
2498
2498
  ["type", "SOAP::SOAPInt"],
@@ -2502,27 +2502,27 @@ module Virtuozzo # :nodoc:
2502
2502
  )
2503
2503
 
2504
2504
  LiteralRegistry.register(
2505
- :class => Virtuozzo::SOAP::Drivers::Support::Security_descriptorType,
2505
+ :class => Virtuozzo::SOAP::Types::Support::Security_descriptorType,
2506
2506
  :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
2507
2507
  :schema_element => [
2508
2508
  ["owner", nil],
2509
2509
  ["group", nil],
2510
- ["dacl", "Virtuozzo::SOAP::Drivers::Support::Security_descriptorType::Dacl", [0, 1]]
2510
+ ["dacl", "Virtuozzo::SOAP::Types::Support::Security_descriptorType::Dacl", [0, 1]]
2511
2511
  ]
2512
2512
  )
2513
2513
 
2514
2514
  LiteralRegistry.register(
2515
- :class => Virtuozzo::SOAP::Drivers::Support::Security_descriptorType::Dacl,
2515
+ :class => Virtuozzo::SOAP::Types::Support::Security_descriptorType::Dacl,
2516
2516
  :schema_name => XSD::QName.new(NsTypes, "dacl"),
2517
2517
  :is_anonymous => true,
2518
2518
  :schema_qualified => true,
2519
2519
  :schema_element => [
2520
- ["ace", "Virtuozzo::SOAP::Drivers::Support::AceType[]", [0, nil]]
2520
+ ["ace", "Virtuozzo::SOAP::Types::Support::AceType[]", [0, nil]]
2521
2521
  ]
2522
2522
  )
2523
2523
 
2524
2524
  LiteralRegistry.register(
2525
- :class => Virtuozzo::SOAP::Drivers::Support::Env_security_objectType,
2525
+ :class => Virtuozzo::SOAP::Types::Support::Env_security_objectType,
2526
2526
  :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
2527
2527
  :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
2528
2528
  :schema_element => [
@@ -2531,19 +2531,19 @@ module Virtuozzo # :nodoc:
2531
2531
  )
2532
2532
 
2533
2533
  LiteralRegistry.register(
2534
- :class => Virtuozzo::SOAP::Drivers::Support::Net_deviceType,
2534
+ :class => Virtuozzo::SOAP::Types::Support::Net_deviceType,
2535
2535
  :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
2536
2536
  :schema_element => [
2537
2537
  ["id", "SOAP::SOAPString", [0, 1]],
2538
- ["ip_address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
2538
+ ["ip_address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
2539
2539
  ["dhcp", nil, [0, 1]],
2540
2540
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
2541
- ["status", "Virtuozzo::SOAP::Drivers::Support::Net_deviceType::Status", [0, 1]]
2541
+ ["status", "Virtuozzo::SOAP::Types::Support::Net_deviceType::Status", [0, 1]]
2542
2542
  ]
2543
2543
  )
2544
2544
 
2545
2545
  LiteralRegistry.register(
2546
- :class => Virtuozzo::SOAP::Drivers::Support::Net_deviceType::Status,
2546
+ :class => Virtuozzo::SOAP::Types::Support::Net_deviceType::Status,
2547
2547
  :schema_name => XSD::QName.new(NsTypes, "status"),
2548
2548
  :is_anonymous => true,
2549
2549
  :schema_qualified => true,
@@ -2554,7 +2554,7 @@ module Virtuozzo # :nodoc:
2554
2554
  )
2555
2555
 
2556
2556
  LiteralRegistry.register(
2557
- :class => Virtuozzo::SOAP::Drivers::Support::Voc_parameterType,
2557
+ :class => Virtuozzo::SOAP::Types::Support::Voc_parameterType,
2558
2558
  :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
2559
2559
  :schema_element => [
2560
2560
  ["id", "SOAP::SOAPString"],
@@ -2573,31 +2573,31 @@ module Virtuozzo # :nodoc:
2573
2573
  )
2574
2574
 
2575
2575
  LiteralRegistry.register(
2576
- :class => Virtuozzo::SOAP::Drivers::Support::VocabularyType,
2576
+ :class => Virtuozzo::SOAP::Types::Support::VocabularyType,
2577
2577
  :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
2578
2578
  :schema_element => [
2579
2579
  ["name", "SOAP::SOAPString"],
2580
- ["parameter", "Virtuozzo::SOAP::Drivers::Support::Voc_parameterType[]", [0, nil]],
2581
- ["category", "Virtuozzo::SOAP::Drivers::Support::Voc_parameterType[]", [0, nil]]
2580
+ ["parameter", "Virtuozzo::SOAP::Types::Support::Voc_parameterType[]", [0, nil]],
2581
+ ["category", "Virtuozzo::SOAP::Types::Support::Voc_parameterType[]", [0, nil]]
2582
2582
  ]
2583
2583
  )
2584
2584
 
2585
2585
  LiteralRegistry.register(
2586
- :class => Virtuozzo::SOAP::Drivers::Support::Net_nicType,
2586
+ :class => Virtuozzo::SOAP::Types::Support::Net_nicType,
2587
2587
  :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
2588
2588
  :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
2589
2589
  :schema_element => [
2590
2590
  ["id", "SOAP::SOAPString", [0, 1]],
2591
- ["ip_address", "Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", [0, nil]],
2591
+ ["ip_address", "Virtuozzo::SOAP::Types::Support::Ip_addressType[]", [0, nil]],
2592
2592
  ["dhcp", nil, [0, 1]],
2593
2593
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
2594
- ["status", "Virtuozzo::SOAP::Drivers::Support::Net_nicType::Status", [0, 1]],
2594
+ ["status", "Virtuozzo::SOAP::Types::Support::Net_nicType::Status", [0, 1]],
2595
2595
  ["mac_address", "SOAP::SOAPString", [0, 1]]
2596
2596
  ]
2597
2597
  )
2598
2598
 
2599
2599
  LiteralRegistry.register(
2600
- :class => Virtuozzo::SOAP::Drivers::Support::Net_nicType::Status,
2600
+ :class => Virtuozzo::SOAP::Types::Support::Net_nicType::Status,
2601
2601
  :schema_name => XSD::QName.new(NsTypes, "status"),
2602
2602
  :is_anonymous => true,
2603
2603
  :schema_qualified => true,
@@ -2608,7 +2608,7 @@ module Virtuozzo # :nodoc:
2608
2608
  )
2609
2609
 
2610
2610
  LiteralRegistry.register(
2611
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_statType,
2611
+ :class => Virtuozzo::SOAP::Types::Support::Perf_statType,
2612
2612
  :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
2613
2613
  :schema_element => [
2614
2614
  ["cur", "SOAP::SOAPAnySimpleType"],
@@ -2619,63 +2619,63 @@ module Virtuozzo # :nodoc:
2619
2619
  )
2620
2620
 
2621
2621
  LiteralRegistry.register(
2622
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType,
2622
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType,
2623
2623
  :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
2624
2624
  :schema_element => [
2625
2625
  ["eid", nil],
2626
- ["v_class", ["Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2627
- ["interval", "Virtuozzo::SOAP::Drivers::Support::IntervalType"]
2626
+ ["v_class", ["Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2627
+ ["interval", "Virtuozzo::SOAP::Types::Support::IntervalType"]
2628
2628
  ]
2629
2629
  )
2630
2630
 
2631
2631
  LiteralRegistry.register(
2632
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance::Counter,
2632
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance::Counter,
2633
2633
  :schema_name => XSD::QName.new(NsTypes, "counter"),
2634
2634
  :is_anonymous => true,
2635
2635
  :schema_qualified => true,
2636
2636
  :schema_element => [
2637
2637
  ["name", "SOAP::SOAPString"],
2638
- ["value", "Virtuozzo::SOAP::Drivers::Support::Perf_statType"]
2638
+ ["value", "Virtuozzo::SOAP::Types::Support::Perf_statType"]
2639
2639
  ]
2640
2640
  )
2641
2641
 
2642
2642
  LiteralRegistry.register(
2643
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance,
2643
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance,
2644
2644
  :schema_name => XSD::QName.new(NsTypes, "instance"),
2645
2645
  :is_anonymous => true,
2646
2646
  :schema_qualified => true,
2647
2647
  :schema_element => [
2648
2648
  ["name", "SOAP::SOAPString", [0, 1]],
2649
- ["counter", "Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2649
+ ["counter", "Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2650
2650
  ]
2651
2651
  )
2652
2652
 
2653
2653
  LiteralRegistry.register(
2654
- :class => Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class,
2654
+ :class => Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class,
2655
2655
  :schema_name => XSD::QName.new(NsTypes, "class"),
2656
2656
  :is_anonymous => true,
2657
2657
  :schema_qualified => true,
2658
2658
  :schema_element => [
2659
2659
  ["name", "SOAP::SOAPString"],
2660
- ["instance", "Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance[]", [1, nil]]
2660
+ ["instance", "Virtuozzo::SOAP::Types::Support::Perf_dataType::C_Class::Instance[]", [1, nil]]
2661
2661
  ]
2662
2662
  )
2663
2663
 
2664
2664
  LiteralRegistry.register(
2665
- :class => Virtuozzo::SOAP::Drivers::Support::Log_options_baseType,
2665
+ :class => Virtuozzo::SOAP::Types::Support::Log_options_baseType,
2666
2666
  :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
2667
2667
  :schema_element => []
2668
2668
  )
2669
2669
 
2670
2670
  LiteralRegistry.register(
2671
- :class => Virtuozzo::SOAP::Drivers::Support::Log_optionsType,
2671
+ :class => Virtuozzo::SOAP::Types::Support::Log_optionsType,
2672
2672
  :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
2673
2673
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2674
2674
  :schema_element => []
2675
2675
  )
2676
2676
 
2677
2677
  LiteralRegistry.register(
2678
- :class => Virtuozzo::SOAP::Drivers::Support::Virtuozzo_configType,
2678
+ :class => Virtuozzo::SOAP::Types::Support::Virtuozzo_configType,
2679
2679
  :schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
2680
2680
  :schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
2681
2681
  :schema_element => [
@@ -2684,7 +2684,7 @@ module Virtuozzo # :nodoc:
2684
2684
  )
2685
2685
 
2686
2686
  LiteralRegistry.register(
2687
- :class => Virtuozzo::SOAP::Drivers::Support::Log_optionsType_,
2687
+ :class => Virtuozzo::SOAP::Types::Support::Log_optionsType_,
2688
2688
  :schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
2689
2689
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2690
2690
  :schema_element => [
@@ -2693,7 +2693,7 @@ module Virtuozzo # :nodoc:
2693
2693
  )
2694
2694
 
2695
2695
  LiteralRegistry.register(
2696
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_,
2696
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_,
2697
2697
  :schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
2698
2698
  :schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
2699
2699
  :schema_element => [
@@ -2701,46 +2701,46 @@ module Virtuozzo # :nodoc:
2701
2701
  ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
2702
2702
  ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
2703
2703
  ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
2704
- ["address", ["Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
2704
+ ["address", ["Virtuozzo::SOAP::Types::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
2705
2705
  ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
2706
- ["os", ["Virtuozzo::SOAP::Drivers::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2706
+ ["os", ["Virtuozzo::SOAP::Types::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2707
2707
  ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
2708
2708
  ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
2709
2709
  ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
2710
2710
  ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
2711
2711
  ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
2712
2712
  ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
2713
- ["qos", ["Virtuozzo::SOAP::Drivers::Support::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
2713
+ ["qos", ["Virtuozzo::SOAP::Types::Support::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
2714
2714
  ["veid", nil, [0, 1]],
2715
2715
  ["ve_root", "SOAP::SOAPString", [0, 1]],
2716
2716
  ["ve_private", "SOAP::SOAPString", [0, 1]],
2717
2717
  ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
2718
- ["template", "Virtuozzo::SOAP::Drivers::Support::TemplateType[]", [0, nil]],
2718
+ ["template", "Virtuozzo::SOAP::Types::Support::TemplateType[]", [0, nil]],
2719
2719
  ["disabled", "SOAP::SOAPBoolean", [0, 1]],
2720
2720
  ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
2721
- ["os_template", "Virtuozzo::SOAP::Drivers::Support::TemplateType", [0, 1]],
2722
- ["distribution", "Virtuozzo::SOAP::Drivers::Support::TemplateType", [0, 1]],
2723
- ["capability", "Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Capability[]", [0, nil]],
2721
+ ["os_template", "Virtuozzo::SOAP::Types::Support::TemplateType", [0, 1]],
2722
+ ["distribution", "Virtuozzo::SOAP::Types::Support::TemplateType", [0, 1]],
2723
+ ["capability", "Virtuozzo::SOAP::Types::Support::Venv_configType_::Capability[]", [0, nil]],
2724
2724
  ["iptables", "SOAP::SOAPString[]", [0, nil]],
2725
2725
  ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
2726
2726
  ["class_id", "SOAP::SOAPString", [0, 1]],
2727
- ["ve_type", "Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Ve_type", [0, 1]],
2727
+ ["ve_type", "Virtuozzo::SOAP::Types::Support::Venv_configType_::Ve_type", [0, 1]],
2728
2728
  ["offline_service", "SOAP::SOAPString[]", [0, nil]],
2729
2729
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
2730
- ["net_device", "Virtuozzo::SOAP::Drivers::Support::Net_vethType[]", [0, nil]],
2730
+ ["net_device", "Virtuozzo::SOAP::Types::Support::Net_vethType[]", [0, nil]],
2731
2731
  ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
2732
2732
  ["ts_mode", "SOAP::SOAPInt", [0, 1]],
2733
2733
  ["uuid", "SOAP::SOAPString", [0, 1]],
2734
2734
  ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
2735
2735
  ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
2736
- ["interface_rate", "Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Interface_rate[]", [0, nil]],
2736
+ ["interface_rate", "Virtuozzo::SOAP::Types::Support::Venv_configType_::Interface_rate[]", [0, nil]],
2737
2737
  ["slm_mode", "SOAP::SOAPString", [0, 1]],
2738
2738
  ["origin_sample", "SOAP::SOAPString", [0, 1]]
2739
2739
  ]
2740
2740
  )
2741
2741
 
2742
2742
  LiteralRegistry.register(
2743
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Capability,
2743
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_::Capability,
2744
2744
  :schema_name => XSD::QName.new(NsVzatypes, "capability"),
2745
2745
  :is_anonymous => true,
2746
2746
  :schema_qualified => true,
@@ -2751,7 +2751,7 @@ module Virtuozzo # :nodoc:
2751
2751
  )
2752
2752
 
2753
2753
  LiteralRegistry.register(
2754
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Ve_type,
2754
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_::Ve_type,
2755
2755
  :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
2756
2756
  :is_anonymous => true,
2757
2757
  :schema_qualified => true,
@@ -2762,7 +2762,7 @@ module Virtuozzo # :nodoc:
2762
2762
  )
2763
2763
 
2764
2764
  LiteralRegistry.register(
2765
- :class => Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Interface_rate,
2765
+ :class => Virtuozzo::SOAP::Types::Support::Venv_configType_::Interface_rate,
2766
2766
  :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
2767
2767
  :is_anonymous => true,
2768
2768
  :schema_qualified => true,
@@ -2773,19 +2773,19 @@ module Virtuozzo # :nodoc:
2773
2773
  )
2774
2774
 
2775
2775
  LiteralRegistry.register(
2776
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_,
2776
+ :class => Virtuozzo::SOAP::Types::Support::Vt_settingsType_,
2777
2777
  :schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
2778
2778
  :schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
2779
2779
  :schema_element => [
2780
2780
  ["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
2781
- ["parameter", "Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_::Parameter[]", [0, nil]],
2782
- ["service", "Virtuozzo::SOAP::Drivers::Support::Redirect_serviceType[]", [0, nil]],
2783
- ["qos", "Virtuozzo::SOAP::Drivers::Support::QosType[]", [0, nil]]
2781
+ ["parameter", "Virtuozzo::SOAP::Types::Support::Vt_settingsType_::Parameter[]", [0, nil]],
2782
+ ["service", "Virtuozzo::SOAP::Types::Support::Redirect_serviceType[]", [0, nil]],
2783
+ ["qos", "Virtuozzo::SOAP::Types::Support::QosType[]", [0, nil]]
2784
2784
  ]
2785
2785
  )
2786
2786
 
2787
2787
  LiteralRegistry.register(
2788
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_::Parameter,
2788
+ :class => Virtuozzo::SOAP::Types::Support::Vt_settingsType_::Parameter,
2789
2789
  :schema_name => XSD::QName.new(NsVzatypes, "parameter"),
2790
2790
  :is_anonymous => true,
2791
2791
  :schema_qualified => true,
@@ -2796,7 +2796,7 @@ module Virtuozzo # :nodoc:
2796
2796
  )
2797
2797
 
2798
2798
  LiteralRegistry.register(
2799
- :class => Virtuozzo::SOAP::Drivers::Support::Vt_infoType_,
2799
+ :class => Virtuozzo::SOAP::Types::Support::Vt_infoType_,
2800
2800
  :schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
2801
2801
  :schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
2802
2802
  :schema_element => [
@@ -2808,7 +2808,7 @@ module Virtuozzo # :nodoc:
2808
2808
  )
2809
2809
 
2810
2810
  LiteralRegistry.register(
2811
- :class => Virtuozzo::SOAP::Drivers::Support::Redirect_serviceType,
2811
+ :class => Virtuozzo::SOAP::Types::Support::Redirect_serviceType,
2812
2812
  :schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
2813
2813
  :schema_element => [
2814
2814
  ["id", "SOAP::SOAPString"],
@@ -2819,7 +2819,7 @@ module Virtuozzo # :nodoc:
2819
2819
  )
2820
2820
 
2821
2821
  LiteralRegistry.register(
2822
- :class => Virtuozzo::SOAP::Drivers::Support::TemplateType,
2822
+ :class => Virtuozzo::SOAP::Types::Support::TemplateType,
2823
2823
  :schema_type => XSD::QName.new(NsVzatypes, "templateType"),
2824
2824
  :schema_element => [
2825
2825
  ["name", "SOAP::SOAPString"],
@@ -2828,13 +2828,13 @@ module Virtuozzo # :nodoc:
2828
2828
  )
2829
2829
 
2830
2830
  LiteralRegistry.register(
2831
- :class => Virtuozzo::SOAP::Drivers::Support::Package_std_vztemplateType,
2831
+ :class => Virtuozzo::SOAP::Types::Support::Package_std_vztemplateType,
2832
2832
  :schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
2833
2833
  :schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
2834
2834
  :schema_element => [
2835
2835
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
2836
2836
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
2837
- ["os", ["Virtuozzo::SOAP::Drivers::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2837
+ ["os", ["Virtuozzo::SOAP::Types::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2838
2838
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
2839
2839
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
2840
2840
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -2848,13 +2848,13 @@ module Virtuozzo # :nodoc:
2848
2848
  )
2849
2849
 
2850
2850
  LiteralRegistry.register(
2851
- :class => Virtuozzo::SOAP::Drivers::Support::Package_vztemplateType,
2851
+ :class => Virtuozzo::SOAP::Types::Support::Package_vztemplateType,
2852
2852
  :schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
2853
2853
  :schema_basetype => XSD::QName.new(NsTypes, "packageType"),
2854
2854
  :schema_element => [
2855
2855
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
2856
2856
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
2857
- ["os", ["Virtuozzo::SOAP::Drivers::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2857
+ ["os", ["Virtuozzo::SOAP::Types::Support::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2858
2858
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
2859
2859
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
2860
2860
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -2867,7 +2867,7 @@ module Virtuozzo # :nodoc:
2867
2867
  )
2868
2868
 
2869
2869
  LiteralRegistry.register(
2870
- :class => Virtuozzo::SOAP::Drivers::Support::Env_security_objectType_,
2870
+ :class => Virtuozzo::SOAP::Types::Support::Env_security_objectType_,
2871
2871
  :schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
2872
2872
  :schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
2873
2873
  :schema_element => [
@@ -2876,15 +2876,15 @@ module Virtuozzo # :nodoc:
2876
2876
  )
2877
2877
 
2878
2878
  LiteralRegistry.register(
2879
- :class => Virtuozzo::SOAP::Drivers::Support::Net_vethType,
2879
+ :class => Virtuozzo::SOAP::Types::Support::Net_vethType,
2880
2880
  :schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
2881
2881
  :schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
2882
2882
  :schema_element => [
2883
2883
  ["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
2884
- ["ip_address", ["Virtuozzo::SOAP::Drivers::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
2884
+ ["ip_address", ["Virtuozzo::SOAP::Types::Support::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
2885
2885
  ["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
2886
2886
  ["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
2887
- ["status", ["Virtuozzo::SOAP::Drivers::Support::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
2887
+ ["status", ["Virtuozzo::SOAP::Types::Support::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
2888
2888
  ["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
2889
2889
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
2890
2890
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
@@ -2894,7 +2894,7 @@ module Virtuozzo # :nodoc:
2894
2894
  )
2895
2895
 
2896
2896
  LiteralRegistry.register(
2897
- :class => Virtuozzo::SOAP::Drivers::Support::Net_vethType::Status,
2897
+ :class => Virtuozzo::SOAP::Types::Support::Net_vethType::Status,
2898
2898
  :schema_name => XSD::QName.new(NsTypes, "status"),
2899
2899
  :is_anonymous => true,
2900
2900
  :schema_qualified => true,
@@ -2905,39 +2905,39 @@ module Virtuozzo # :nodoc:
2905
2905
  )
2906
2906
 
2907
2907
  LiteralRegistry.register(
2908
- :class => Virtuozzo::SOAP::Drivers::Support::EnvType_,
2908
+ :class => Virtuozzo::SOAP::Types::Support::EnvType_,
2909
2909
  :schema_type => XSD::QName.new(NsVzatypes, "envType"),
2910
2910
  :schema_basetype => XSD::QName.new(NsTypes, "envType"),
2911
2911
  :schema_element => [
2912
2912
  ["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
2913
2913
  ["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
2914
- ["status", ["Virtuozzo::SOAP::Drivers::Support::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
2914
+ ["status", ["Virtuozzo::SOAP::Types::Support::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
2915
2915
  ["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
2916
- ["config", ["Virtuozzo::SOAP::Drivers::Support::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
2917
- ["virtual_config", ["Virtuozzo::SOAP::Drivers::Support::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
2916
+ ["config", ["Virtuozzo::SOAP::Types::Support::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
2917
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Support::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
2918
2918
  ]
2919
2919
  )
2920
2920
 
2921
2921
  LiteralRegistry.register(
2922
- :class => Virtuozzo::SOAP::Drivers::Support::Transport_type,
2922
+ :class => Virtuozzo::SOAP::Types::Support::Transport_type,
2923
2923
  :schema_type => XSD::QName.new(NsTypes, "transport_type")
2924
2924
  )
2925
2925
 
2926
2926
  LiteralRegistry.register(
2927
- :class => Virtuozzo::SOAP::Drivers::Support::Yes_no_type,
2927
+ :class => Virtuozzo::SOAP::Types::Support::Yes_no_type,
2928
2928
  :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
2929
2929
  )
2930
2930
 
2931
2931
  LiteralRegistry.register(
2932
- :class => Virtuozzo::SOAP::Drivers::Support::Packet_headerType,
2932
+ :class => Virtuozzo::SOAP::Types::Support::Packet_headerType,
2933
2933
  :schema_name => XSD::QName.new(NsVzasupport_0, "packet_header"),
2934
2934
  :schema_element => [
2935
- ["auth", "Virtuozzo::SOAP::Drivers::Support::AuthType", [0, 1]],
2935
+ ["auth", "Virtuozzo::SOAP::Types::Support::AuthType", [0, 1]],
2936
2936
  ["cookie", "SOAP::SOAPString", [0, 1]],
2937
2937
  ["target", "SOAP::SOAPString[]", [0, nil]],
2938
2938
  ["origin", "SOAP::SOAPString", [0, 1]],
2939
- ["src", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
2940
- ["dst", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
2939
+ ["src", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
2940
+ ["dst", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
2941
2941
  ["session", "SOAP::SOAPString", [0, 1]]
2942
2942
  ],
2943
2943
  :schema_attribute => {
@@ -2955,20 +2955,20 @@ module Virtuozzo # :nodoc:
2955
2955
  )
2956
2956
 
2957
2957
  LiteralRegistry.register(
2958
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType,
2958
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType,
2959
2959
  :schema_name => XSD::QName.new(NsVzasupport, "vzasupport"),
2960
2960
  :schema_element => [ :choice,
2961
- ["configuration", ["Virtuozzo::SOAP::Drivers::Support::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
2962
- ["ok", ["Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
2963
- ["error", ["Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error[]", XSD::QName.new(NsProtocol, "error")]],
2961
+ ["configuration", ["Virtuozzo::SOAP::Types::Support::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
2962
+ ["ok", ["Virtuozzo::SOAP::Types::Support::VzasupportType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
2963
+ ["error", ["Virtuozzo::SOAP::Types::Support::VzasupportType::Error[]", XSD::QName.new(NsProtocol, "error")]],
2964
2964
  [
2965
- ["start_channel", "Virtuozzo::SOAP::Drivers::Support::Start_channel[]"],
2966
- ["stop_channel", "Virtuozzo::SOAP::Drivers::Support::Stop_channel[]"],
2967
- ["get_channel_status", "Virtuozzo::SOAP::Drivers::Support::Get_channel_status[]"],
2968
- ["set_key", "Virtuozzo::SOAP::Drivers::Support::Set_key[]"],
2969
- ["get_key_status", "Virtuozzo::SOAP::Drivers::Support::Get_key_status[]"],
2970
- ["remove_key", "Virtuozzo::SOAP::Drivers::Support::Remove_key[]"],
2971
- ["problem_report", "Virtuozzo::SOAP::Drivers::Support::Problem_report[]"]
2965
+ ["start_channel", "Virtuozzo::SOAP::Types::Support::Start_channel[]"],
2966
+ ["stop_channel", "Virtuozzo::SOAP::Types::Support::Stop_channel[]"],
2967
+ ["get_channel_status", "Virtuozzo::SOAP::Types::Support::Get_channel_status[]"],
2968
+ ["set_key", "Virtuozzo::SOAP::Types::Support::Set_key[]"],
2969
+ ["get_key_status", "Virtuozzo::SOAP::Types::Support::Get_key_status[]"],
2970
+ ["remove_key", "Virtuozzo::SOAP::Types::Support::Remove_key[]"],
2971
+ ["problem_report", "Virtuozzo::SOAP::Types::Support::Problem_report[]"]
2972
2972
  ],
2973
2973
  [
2974
2974
  ["channel_status", "SOAP::SOAPInt[]"],
@@ -2979,7 +2979,7 @@ module Virtuozzo # :nodoc:
2979
2979
  )
2980
2980
 
2981
2981
  LiteralRegistry.register(
2982
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok,
2982
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType::Ok,
2983
2983
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
2984
2984
  :is_anonymous => true,
2985
2985
  :schema_qualified => true,
@@ -2987,7 +2987,7 @@ module Virtuozzo # :nodoc:
2987
2987
  )
2988
2988
 
2989
2989
  LiteralRegistry.register(
2990
- :class => Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error,
2990
+ :class => Virtuozzo::SOAP::Types::Support::VzasupportType::Error,
2991
2991
  :schema_name => XSD::QName.new(NsProtocol, "error"),
2992
2992
  :is_anonymous => true,
2993
2993
  :schema_qualified => true,
@@ -2998,7 +2998,7 @@ module Virtuozzo # :nodoc:
2998
2998
  )
2999
2999
 
3000
3000
  LiteralRegistry.register(
3001
- :class => Virtuozzo::SOAP::Drivers::Support::Get_channel_statusResponse,
3001
+ :class => Virtuozzo::SOAP::Types::Support::Get_channel_statusResponse,
3002
3002
  :schema_name => XSD::QName.new(NsVzasupport, "get_channel_statusResponse"),
3003
3003
  :schema_element => [
3004
3004
  ["channel_status", "SOAP::SOAPInt"]
@@ -3006,7 +3006,7 @@ module Virtuozzo # :nodoc:
3006
3006
  )
3007
3007
 
3008
3008
  LiteralRegistry.register(
3009
- :class => Virtuozzo::SOAP::Drivers::Support::Get_key_statusResponse,
3009
+ :class => Virtuozzo::SOAP::Types::Support::Get_key_statusResponse,
3010
3010
  :schema_name => XSD::QName.new(NsVzasupport, "get_key_statusResponse"),
3011
3011
  :schema_element => [
3012
3012
  ["key_status", "SOAP::SOAPInt"]
@@ -3014,7 +3014,7 @@ module Virtuozzo # :nodoc:
3014
3014
  )
3015
3015
 
3016
3016
  LiteralRegistry.register(
3017
- :class => Virtuozzo::SOAP::Drivers::Support::Set_key,
3017
+ :class => Virtuozzo::SOAP::Types::Support::Set_key,
3018
3018
  :schema_name => XSD::QName.new(NsVzasupport, "set_key"),
3019
3019
  :schema_element => [
3020
3020
  ["key", "SOAP::SOAPBase64"]
@@ -3022,7 +3022,7 @@ module Virtuozzo # :nodoc:
3022
3022
  )
3023
3023
 
3024
3024
  LiteralRegistry.register(
3025
- :class => Virtuozzo::SOAP::Drivers::Support::Problem_report,
3025
+ :class => Virtuozzo::SOAP::Types::Support::Problem_report,
3026
3026
  :schema_name => XSD::QName.new(NsVzasupport, "problem_report"),
3027
3027
  :schema_element => [
3028
3028
  ["name", "SOAP::SOAPBase64"],
@@ -3035,7 +3035,7 @@ module Virtuozzo # :nodoc:
3035
3035
  )
3036
3036
 
3037
3037
  LiteralRegistry.register(
3038
- :class => Virtuozzo::SOAP::Drivers::Support::Problem_reportResponse,
3038
+ :class => Virtuozzo::SOAP::Types::Support::Problem_reportResponse,
3039
3039
  :schema_name => XSD::QName.new(NsVzasupport, "problem_reportResponse"),
3040
3040
  :schema_element => [
3041
3041
  ["ticket", "SOAP::SOAPBase64"]
@@ -3043,17 +3043,17 @@ module Virtuozzo # :nodoc:
3043
3043
  )
3044
3044
 
3045
3045
  LiteralRegistry.register(
3046
- :class => Virtuozzo::SOAP::Drivers::Support::Packet,
3046
+ :class => Virtuozzo::SOAP::Types::Support::Packet,
3047
3047
  :schema_name => XSD::QName.new(NsProtocol, "packet"),
3048
3048
  :schema_element => [
3049
- ["auth", "Virtuozzo::SOAP::Drivers::Support::AuthType", [0, 1]],
3049
+ ["auth", "Virtuozzo::SOAP::Types::Support::AuthType", [0, 1]],
3050
3050
  ["cookie", "SOAP::SOAPString", [0, 1]],
3051
3051
  ["target", "SOAP::SOAPString[]", [0, nil]],
3052
3052
  ["origin", "SOAP::SOAPString", [0, 1]],
3053
- ["src", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
3054
- ["dst", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
3053
+ ["src", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
3054
+ ["dst", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
3055
3055
  ["session", "SOAP::SOAPString", [0, 1]],
3056
- ["data", "Virtuozzo::SOAP::Drivers::Support::Packet::C_Data"]
3056
+ ["data", "Virtuozzo::SOAP::Types::Support::Packet::C_Data"]
3057
3057
  ],
3058
3058
  :schema_attribute => {
3059
3059
  XSD::QName.new(nil, "version") => "SOAP::SOAPString",
@@ -3070,25 +3070,25 @@ module Virtuozzo # :nodoc:
3070
3070
  )
3071
3071
 
3072
3072
  LiteralRegistry.register(
3073
- :class => Virtuozzo::SOAP::Drivers::Support::Packet::C_Data,
3073
+ :class => Virtuozzo::SOAP::Types::Support::Packet::C_Data,
3074
3074
  :schema_name => XSD::QName.new(NsProtocol, "data"),
3075
3075
  :is_anonymous => true,
3076
3076
  :schema_qualified => true,
3077
3077
  :schema_element => [
3078
- ["operator", "Virtuozzo::SOAP::Drivers::Support::OperatorType[]"]
3078
+ ["operator", "Virtuozzo::SOAP::Types::Support::OperatorType[]"]
3079
3079
  ]
3080
3080
  )
3081
3081
 
3082
3082
  LiteralRegistry.register(
3083
- :class => Virtuozzo::SOAP::Drivers::Support::Packet_headerType,
3083
+ :class => Virtuozzo::SOAP::Types::Support::Packet_headerType,
3084
3084
  :schema_name => XSD::QName.new(NsProtocol, "packet_header"),
3085
3085
  :schema_element => [
3086
- ["auth", "Virtuozzo::SOAP::Drivers::Support::AuthType", [0, 1]],
3086
+ ["auth", "Virtuozzo::SOAP::Types::Support::AuthType", [0, 1]],
3087
3087
  ["cookie", "SOAP::SOAPString", [0, 1]],
3088
3088
  ["target", "SOAP::SOAPString[]", [0, nil]],
3089
3089
  ["origin", "SOAP::SOAPString", [0, 1]],
3090
- ["src", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
3091
- ["dst", "Virtuozzo::SOAP::Drivers::Support::RouteType", [0, 1]],
3090
+ ["src", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
3091
+ ["dst", "Virtuozzo::SOAP::Types::Support::RouteType", [0, 1]],
3092
3092
  ["session", "SOAP::SOAPString", [0, 1]]
3093
3093
  ],
3094
3094
  :schema_attribute => {
@@ -3106,31 +3106,31 @@ module Virtuozzo # :nodoc:
3106
3106
  )
3107
3107
 
3108
3108
  LiteralRegistry.register(
3109
- :class => Virtuozzo::SOAP::Drivers::Support::OperatorType,
3109
+ :class => Virtuozzo::SOAP::Types::Support::OperatorType,
3110
3110
  :schema_name => XSD::QName.new(NsProtocol, "operator"),
3111
3111
  :schema_element => [ :choice,
3112
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"]
3112
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"]
3113
3113
  ]
3114
3114
  )
3115
3115
 
3116
3116
  LiteralRegistry.register(
3117
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType,
3117
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType,
3118
3118
  :schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
3119
3119
  :schema_element => [ :choice,
3120
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"],
3121
- ["ok", "Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok[]"],
3122
- ["error", "Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error[]"],
3120
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"],
3121
+ ["ok", "Virtuozzo::SOAP::Types::Support::Operator_periodicType::Ok[]"],
3122
+ ["error", "Virtuozzo::SOAP::Types::Support::Operator_periodicType::Error[]"],
3123
3123
  [ :choice,
3124
- ["start_monitor", "Virtuozzo::SOAP::Drivers::Support::Start_monitorType"],
3125
- ["stop_monitor", "Virtuozzo::SOAP::Drivers::Support::Stop_monitorType"],
3126
- ["set_period", "Virtuozzo::SOAP::Drivers::Support::Set_periodType", [0, 1]],
3124
+ ["start_monitor", "Virtuozzo::SOAP::Types::Support::Start_monitorType"],
3125
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Support::Stop_monitorType"],
3126
+ ["set_period", "Virtuozzo::SOAP::Types::Support::Set_periodType", [0, 1]],
3127
3127
  ["report", nil, [0, 1]]
3128
3128
  ]
3129
3129
  ]
3130
3130
  )
3131
3131
 
3132
3132
  LiteralRegistry.register(
3133
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok,
3133
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType::Ok,
3134
3134
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3135
3135
  :is_anonymous => true,
3136
3136
  :schema_qualified => true,
@@ -3138,7 +3138,7 @@ module Virtuozzo # :nodoc:
3138
3138
  )
3139
3139
 
3140
3140
  LiteralRegistry.register(
3141
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error,
3141
+ :class => Virtuozzo::SOAP::Types::Support::Operator_periodicType::Error,
3142
3142
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3143
3143
  :is_anonymous => true,
3144
3144
  :schema_qualified => true,
@@ -3149,17 +3149,17 @@ module Virtuozzo # :nodoc:
3149
3149
  )
3150
3150
 
3151
3151
  LiteralRegistry.register(
3152
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType,
3152
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType,
3153
3153
  :schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
3154
3154
  :schema_element => [ :choice,
3155
- ["configuration", "Virtuozzo::SOAP::Drivers::Support::ConfigurationType"],
3156
- ["ok", "Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok[]"],
3157
- ["error", "Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error[]"]
3155
+ ["configuration", "Virtuozzo::SOAP::Types::Support::ConfigurationType"],
3156
+ ["ok", "Virtuozzo::SOAP::Types::Support::Operator_functionalType::Ok[]"],
3157
+ ["error", "Virtuozzo::SOAP::Types::Support::Operator_functionalType::Error[]"]
3158
3158
  ]
3159
3159
  )
3160
3160
 
3161
3161
  LiteralRegistry.register(
3162
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok,
3162
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType::Ok,
3163
3163
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3164
3164
  :is_anonymous => true,
3165
3165
  :schema_qualified => true,
@@ -3167,7 +3167,7 @@ module Virtuozzo # :nodoc:
3167
3167
  )
3168
3168
 
3169
3169
  LiteralRegistry.register(
3170
- :class => Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error,
3170
+ :class => Virtuozzo::SOAP::Types::Support::Operator_functionalType::Error,
3171
3171
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3172
3172
  :is_anonymous => true,
3173
3173
  :schema_qualified => true,
@@ -3178,13 +3178,13 @@ module Virtuozzo # :nodoc:
3178
3178
  )
3179
3179
 
3180
3180
  LiteralRegistry.register(
3181
- :class => Virtuozzo::SOAP::Drivers::Support::Event_dataType,
3181
+ :class => Virtuozzo::SOAP::Types::Support::Event_dataType,
3182
3182
  :schema_name => XSD::QName.new(NsTypes, "event_data"),
3183
3183
  :schema_element => []
3184
3184
  )
3185
3185
 
3186
3186
  LiteralRegistry.register(
3187
- :class => Virtuozzo::SOAP::Drivers::Support::Voc_parameterType,
3187
+ :class => Virtuozzo::SOAP::Types::Support::Voc_parameterType,
3188
3188
  :schema_name => XSD::QName.new(NsTypes, "parameter"),
3189
3189
  :schema_element => [
3190
3190
  ["id", "SOAP::SOAPString"],
@@ -3203,7 +3203,7 @@ module Virtuozzo # :nodoc:
3203
3203
  )
3204
3204
 
3205
3205
  LiteralRegistry.register(
3206
- :class => Virtuozzo::SOAP::Drivers::Support::Voc_parameterType,
3206
+ :class => Virtuozzo::SOAP::Types::Support::Voc_parameterType,
3207
3207
  :schema_name => XSD::QName.new(NsTypes, "category"),
3208
3208
  :schema_element => [
3209
3209
  ["id", "SOAP::SOAPString"],
@@ -3222,7 +3222,7 @@ module Virtuozzo # :nodoc:
3222
3222
  )
3223
3223
 
3224
3224
  LiteralRegistry.register(
3225
- :class => Virtuozzo::SOAP::Drivers::Support::Interface_rate,
3225
+ :class => Virtuozzo::SOAP::Types::Support::Interface_rate,
3226
3226
  :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
3227
3227
  :schema_element => [
3228
3228
  ["class_id", "SOAP::SOAPString"],