plainprograms-virtuozzo 0.6.1 → 0.7.0

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