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
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,13 @@
1
1
  = CHANGELOG
2
2
 
3
+ == 0.7.0
4
+
5
+ * Rename all drivers, type modules, and mapping registry modules with SOAP
6
+ interface names.
7
+ * Implemented rudimentary spec suite for above listed refactor.
8
+ * Updated yard:docs task
9
+ * Added spec task
10
+
3
11
  == 0.6.1
4
12
 
5
13
  * Fixed some bugs in type modules
data/Rakefile CHANGED
@@ -1,11 +1,10 @@
1
1
  require 'rubygems'
2
2
  require 'echoe'
3
- require 'spec/rake/spectask'
4
3
 
5
4
  PROJECT = "virtuozzo"
6
5
  RUBYFORGE_PROJECT = "virtuozzo"
7
6
 
8
- Echoe.new(PROJECT, '0.6.1') do |p|
7
+ Echoe.new(PROJECT, '0.7.0') do |p|
9
8
  p.description = "Ruby library for Parallels Virtuozzo Agent's API"
10
9
  p.url = "http://github.com/plainprograms/virtuozzo"
11
10
  p.author = "James Thompson"
data/TODO.rdoc CHANGED
@@ -1,10 +1,5 @@
1
1
  = TODO
2
2
 
3
- == 0.7.0
4
-
5
- * Rename all drivers, type modules, and mapping registry modules with SOAP
6
- interface names.
7
-
8
3
  == 1.0.0
9
4
 
10
5
  * Implement a better interface for Virtuozzo::SOAP::Connection as it deals
@@ -1,11 +1,11 @@
1
- require 'virtuozzo/soap/drivers/session'
2
- require 'virtuozzo/soap/drivers/environment'
3
- require 'virtuozzo/soap/drivers/template'
1
+ require 'virtuozzo/soap/drivers/sessionm'
2
+ require 'virtuozzo/soap/drivers/envm'
3
+ require 'virtuozzo/soap/drivers/packagem'
4
4
  require 'virtuozzo/soap/drivers/relocator'
5
- require 'virtuozzo/soap/drivers/device'
6
- require 'virtuozzo/soap/drivers/network'
7
- require 'virtuozzo/soap/drivers/process_info'
8
- require 'virtuozzo/soap/drivers/process'
5
+ require 'virtuozzo/soap/drivers/devm'
6
+ require 'virtuozzo/soap/drivers/networkm'
7
+ require 'virtuozzo/soap/drivers/proc_info'
8
+ require 'virtuozzo/soap/drivers/processm'
9
9
  require 'virtuozzo/soap/drivers/up2date'
10
10
  require 'virtuozzo/soap/drivers/support'
11
11
  require 'virtuozzo/soap/drivers/authm'
@@ -85,24 +85,24 @@ module Virtuozzo
85
85
  # Handle for the sessionm interface of the Virtuozzo API.
86
86
  #
87
87
  # @return [SOAP::RPC::Driver] sessionm SOAP::RPC::Driver instance.
88
- def session
89
- @session ||= Virtuozzo::SOAP::Drivers::Session.new(@endpoint)
88
+ def sessionm
89
+ @sessionm ||= Virtuozzo::SOAP::Drivers::Sessionm.new(@endpoint)
90
90
  end
91
91
 
92
92
  ##
93
93
  # Handle for the vzaenvm interface of the Virtuozzo API.
94
94
  #
95
95
  # @return [SOAP::RPC::Driver] vzaenvmm SOAP::RPC::Driver instance.
96
- def environment
97
- @environment ||= Virtuozzo::SOAP::Drivers::Environment.new(@endpoint)
96
+ def envm
97
+ @envm ||= Virtuozzo::SOAP::Drivers::Envm.new(@endpoint)
98
98
  end
99
99
 
100
100
  ##
101
101
  # Handle for the vzapackagem interface of the Virtuozzo API.
102
102
  #
103
103
  # @return [SOAP::RPC::Driver] vzapackagem SOAP::RPC::Driver instance.
104
- def template
105
- @template ||= Virtuozzo::SOAP::Drivers::Template.new(@endpoint)
104
+ def packagem
105
+ @packagem ||= Virtuozzo::SOAP::Drivers::Packagem.new(@endpoint)
106
106
  end
107
107
 
108
108
  ##
@@ -117,32 +117,32 @@ module Virtuozzo
117
117
  # Handle for the vzadevm interface of the Virtuozzo API.
118
118
  #
119
119
  # @return [SOAP::RPC::Driver] vzadevm SOAP::RPC::Driver instance.
120
- def device
121
- @device ||= Virtuozzo::SOAP::Drivers::Device.new(@endpoint)
120
+ def devm
121
+ @devm ||= Virtuozzo::SOAP::Drivers::Devm.new(@endpoint)
122
122
  end
123
123
 
124
124
  ##
125
125
  # Handle for the vzanetworkm interface of the Virtuozzo API.
126
126
  #
127
127
  # @return [SOAP::RPC::Driver] vzanetworkm SOAP::RPC::Driver instance.
128
- def network
129
- @network ||= Virtuozzo::SOAP::Drivers::Network.new(@endpoint)
128
+ def networkm
129
+ @networkm ||= Virtuozzo::SOAP::Drivers::Networkm.new(@endpoint)
130
130
  end
131
131
 
132
132
  ##
133
133
  # Handle for the vzaproc_info interface of the Virtuozzo API.
134
134
  #
135
135
  # @return [SOAP::RPC::Driver] vzaproc_info SOAP::RPC::Driver instance.
136
- def process_info
137
- @process_info ||= Virtuozzo::SOAP::Drivers::ProcessInfo.new(@endpoint)
136
+ def proc_info
137
+ @proc_info ||= Virtuozzo::SOAP::Drivers::ProcInfo.new(@endpoint)
138
138
  end
139
139
 
140
140
  ##
141
141
  # Handle for the vzaprocessmm interface of the Virtuozzo API.
142
142
  #
143
143
  # @return [SOAP::RPC::Driver] vzaprocessm SOAP::RPC::Driver instance.
144
- def process
145
- @process ||= Virtuozzo::SOAP::Drivers::Process.new(@endpoint)
144
+ def processm
145
+ @processm ||= Virtuozzo::SOAP::Drivers::Processm.new(@endpoint)
146
146
  end
147
147
 
148
148
  ##
@@ -312,14 +312,14 @@ module Virtuozzo
312
312
  #
313
313
  def disable_ssl_verification
314
314
  if @endpoint =~ /^https/
315
- session.options['protocol.http.ssl_config.verify_mode'] = nil
316
- environment.options['protocol.http.ssl_config.verify_mode'] = nil
317
- template.options['protocol.http.ssl_config.verify_mode'] = nil
315
+ sessionm.options['protocol.http.ssl_config.verify_mode'] = nil
316
+ envm.options['protocol.http.ssl_config.verify_mode'] = nil
317
+ packagem.options['protocol.http.ssl_config.verify_mode'] = nil
318
318
  relocator.options['protocol.http.ssl_config.verify_mode'] = nil
319
- device.options['protocol.http.ssl_config.verify_mode'] = nil
320
- network.options['protocol.http.ssl_config.verify_mode'] = nil
321
- process_info.options['protocol.http.ssl_config.verify_mode'] = nil
322
- process.options['protocol.http.ssl_config.verify_mode'] = nil
319
+ devm.options['protocol.http.ssl_config.verify_mode'] = nil
320
+ networkm.options['protocol.http.ssl_config.verify_mode'] = nil
321
+ proc_info.options['protocol.http.ssl_config.verify_mode'] = nil
322
+ processm.options['protocol.http.ssl_config.verify_mode'] = nil
323
323
  up2date.options['protocol.http.ssl_config.verify_mode'] = nil
324
324
  support.options['protocol.http.ssl_config.verify_mode'] = nil
325
325
  env_samplem.options['protocol.http.ssl_config.verify_mode'] = nil
@@ -350,14 +350,14 @@ module Virtuozzo
350
350
  dev = STDERR
351
351
  end
352
352
 
353
- session.wiredump_dev = dev
354
- environment.wiredump_dev = dev
355
- template.wiredump_dev = dev
353
+ sessionm.wiredump_dev = dev
354
+ envm.wiredump_dev = dev
355
+ packagem.wiredump_dev = dev
356
356
  relocator.wiredump_dev = dev
357
- device.wiredump_dev = dev
358
- network.wiredump_dev = dev
359
- process_info.wiredump_dev = dev
360
- process.wiredump_dev = dev
357
+ devm.wiredump_dev = dev
358
+ networkm.wiredump_dev = dev
359
+ proc_info.wiredump_dev = dev
360
+ processm.wiredump_dev = dev
361
361
  up2date.wiredump_dev = dev
362
362
  support.wiredump_dev = dev
363
363
  env_samplem.wiredump_dev = dev
@@ -391,7 +391,7 @@ module Virtuozzo
391
391
  :realm => @realm
392
392
  }
393
393
 
394
- resp = session.login(login_opts)
394
+ resp = sessionm.login(login_opts)
395
395
 
396
396
  @session_id = resp.session_id || nil
397
397
  end
@@ -402,14 +402,14 @@ module Virtuozzo
402
402
  # each driver in turn.
403
403
  #
404
404
  def setup_header_handler
405
- session.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'sessionm')
406
- environment.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaenvm')
407
- template.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzapackagem')
405
+ sessionm.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'sessionm')
406
+ envm.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaenvm')
407
+ packagem.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzapackagem')
408
408
  relocator.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaprelocator')
409
- device.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzadevm')
410
- network.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzanetworkm')
411
- process_info.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaproc_info')
412
- process.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaprocessm')
409
+ devm.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzadevm')
410
+ networkm.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzanetworkm')
411
+ proc_info.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaproc_info')
412
+ processm.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaprocessm')
413
413
  up2date.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzaup2date')
414
414
  support.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'vzasupport')
415
415
  env_samplem.headerhandler << HeaderHandler.new(:session => @session_id, :target => 'env_samplem')
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/device'
2
- require 'virtuozzo/soap/mapping_registries/device'
1
+ require 'virtuozzo/soap/types/devm'
2
+ require 'virtuozzo/soap/mapping_registries/devm'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = Device
8
+ # = Devm
9
9
  #
10
- class Device < ::SOAP::RPC::Driver
10
+ class Devm < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -104,8 +104,8 @@ module Virtuozzo # :nodoc:
104
104
  def initialize(endpoint_url = nil)
105
105
  endpoint_url ||= DefaultEndpointUrl
106
106
  super(endpoint_url, nil)
107
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Device::EncodedRegistry
108
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Device::LiteralRegistry
107
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Devm::EncodedRegistry
108
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Devm::LiteralRegistry
109
109
  init_methods
110
110
  end
111
111
 
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/environment'
2
- require 'virtuozzo/soap/mapping_registries/environment'
1
+ require 'virtuozzo/soap/types/envm'
2
+ require 'virtuozzo/soap/mapping_registries/envm'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = Environment
8
+ # = Envm
9
9
  #
10
- class Environment < ::SOAP::RPC::Driver
10
+ class Envm < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -264,8 +264,8 @@ module Virtuozzo # :nodoc:
264
264
  def initialize(endpoint_url = nil)
265
265
  endpoint_url ||= DefaultEndpointUrl
266
266
  super(endpoint_url, nil)
267
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Environment::EncodedRegistry
268
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Environment::LiteralRegistry
267
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Envm::EncodedRegistry
268
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Envm::LiteralRegistry
269
269
  init_methods
270
270
  end
271
271
 
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/network'
2
- require 'virtuozzo/soap/mapping_registries/network'
1
+ require 'virtuozzo/soap/types/networkm'
2
+ require 'virtuozzo/soap/mapping_registries/networkm'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = Network
8
+ # = Networkm
9
9
  #
10
- class Network < ::SOAP::RPC::Driver
10
+ class Networkm < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -64,8 +64,8 @@ module Virtuozzo # :nodoc:
64
64
  def initialize(endpoint_url = nil)
65
65
  endpoint_url ||= DefaultEndpointUrl
66
66
  super(endpoint_url, nil)
67
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Network::EncodedRegistry
68
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Network::LiteralRegistry
67
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Networkm::EncodedRegistry
68
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Networkm::LiteralRegistry
69
69
  init_methods
70
70
  end
71
71
 
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/template'
2
- require 'virtuozzo/soap/mapping_registries/template'
1
+ require 'virtuozzo/soap/types/packagem'
2
+ require 'virtuozzo/soap/mapping_registries/packagem'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = Template
8
+ # = Packagem
9
9
  #
10
- class Template < ::SOAP::RPC::Driver
10
+ class Packagem < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -80,8 +80,8 @@ module Virtuozzo # :nodoc:
80
80
  def initialize(endpoint_url = nil)
81
81
  endpoint_url ||= DefaultEndpointUrl
82
82
  super(endpoint_url, nil)
83
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Template::EncodedRegistry
84
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Template::LiteralRegistry
83
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Packagem::EncodedRegistry
84
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Packagem::LiteralRegistry
85
85
  init_methods
86
86
  end
87
87
 
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/process_info'
2
- require 'virtuozzo/soap/mapping_registries/process_info'
1
+ require 'virtuozzo/soap/types/proc_info'
2
+ require 'virtuozzo/soap/mapping_registries/proc_info'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = ProcessInfo
8
+ # = ProcInfo
9
9
  #
10
- class ProcessInfo < ::SOAP::RPC::Driver
10
+ class ProcInfo < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -24,8 +24,8 @@ module Virtuozzo # :nodoc:
24
24
  def initialize(endpoint_url = nil)
25
25
  endpoint_url ||= DefaultEndpointUrl
26
26
  super(endpoint_url, nil)
27
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::ProcessInfo::EncodedRegistry
28
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::ProcessInfo::LiteralRegistry
27
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::ProcInfo::EncodedRegistry
28
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::ProcInfo::LiteralRegistry
29
29
  init_methods
30
30
  end
31
31
 
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/process'
2
- require 'virtuozzo/soap/mapping_registries/process'
1
+ require 'virtuozzo/soap/types/processm'
2
+ require 'virtuozzo/soap/mapping_registries/processm'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = Process
8
+ # = Processm
9
9
  #
10
- class Process < ::SOAP::RPC::Driver
10
+ class Processm < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -32,8 +32,8 @@ module Virtuozzo # :nodoc:
32
32
  def initialize(endpoint_url = nil)
33
33
  endpoint_url ||= DefaultEndpointUrl
34
34
  super(endpoint_url, nil)
35
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Process::EncodedRegistry
36
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Process::LiteralRegistry
35
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Processm::EncodedRegistry
36
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Processm::LiteralRegistry
37
37
  init_methods
38
38
  end
39
39
 
@@ -1,13 +1,13 @@
1
- require 'virtuozzo/soap/types/session'
2
- require 'virtuozzo/soap/mapping_registries/session'
1
+ require 'virtuozzo/soap/types/sessionm'
2
+ require 'virtuozzo/soap/mapping_registries/sessionm'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Virtuozzo # :nodoc:
6
6
  module SOAP # :nodoc:
7
7
  module Drivers # :nodoc:
8
- # = Session
8
+ # = Sessionm
9
9
  #
10
- class Session < ::SOAP::RPC::Driver
10
+ class Sessionm < ::SOAP::RPC::Driver
11
11
  DefaultEndpointUrl = "https://localhost:4646"
12
12
 
13
13
  Methods = [
@@ -112,8 +112,8 @@ module Virtuozzo # :nodoc:
112
112
  def initialize(endpoint_url = nil)
113
113
  endpoint_url ||= DefaultEndpointUrl
114
114
  super(endpoint_url, nil)
115
- self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Session::EncodedRegistry
116
- self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Session::LiteralRegistry
115
+ self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::Sessionm::EncodedRegistry
116
+ self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::Sessionm::LiteralRegistry
117
117
  init_methods
118
118
  end
119
119
 
@@ -1,12 +1,12 @@
1
- require 'virtuozzo/soap/types/device'
1
+ require 'virtuozzo/soap/types/devm'
2
2
  require 'soap/mapping'
3
3
 
4
4
  module Virtuozzo # :nodoc:
5
5
  module SOAP # :nodoc:
6
6
  module MappingRegistries # :nodoc:
7
- # = Device
7
+ # = Devm
8
8
  #
9
- module Device
9
+ module Devm
10
10
  EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
11
11
  LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
12
12
  NsDevm = "http://www.swsoft.com/webservices/vzl/4.0.0/devm"
@@ -18,38 +18,38 @@ module Virtuozzo # :nodoc:
18
18
  NsXMLSchema = "http://www.w3.org/2001/XMLSchema"
19
19
 
20
20
  EncodedRegistry.register(
21
- :class => Virtuozzo::SOAP::Types::Device::VzadevmType,
21
+ :class => Virtuozzo::SOAP::Types::Devm::VzadevmType,
22
22
  :schema_type => XSD::QName.new(NsVzadevm, "vzadevmType"),
23
23
  :schema_basetype => XSD::QName.new(NsDevm, "devmType"),
24
24
  :schema_element => [
25
- ["configuration", ["Virtuozzo::SOAP::Types::Device::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
26
- ["ok", ["Virtuozzo::SOAP::Types::Device::VzadevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
27
- ["error", ["Virtuozzo::SOAP::Types::Device::VzadevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
25
+ ["configuration", ["Virtuozzo::SOAP::Types::Devm::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
26
+ ["ok", ["Virtuozzo::SOAP::Types::Devm::VzadevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
27
+ ["error", ["Virtuozzo::SOAP::Types::Devm::VzadevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
28
28
  [
29
- ["get_mounts", ["Virtuozzo::SOAP::Types::Device::Get_mounts[]", XSD::QName.new(NsDevm, "get_mounts")], [0, 1]],
30
- ["new_mount", ["Virtuozzo::SOAP::Types::Device::New_mount[]", XSD::QName.new(NsDevm, "new_mount")], [0, 1]],
31
- ["umount", ["Virtuozzo::SOAP::Types::Device::Umount[]", XSD::QName.new(NsDevm, "umount")], [0, 1]],
32
- ["get_info", ["Virtuozzo::SOAP::Types::Device::Get_info[]", XSD::QName.new(NsDevm, "get_info")], [0, 1]],
33
- ["create_drive", ["Virtuozzo::SOAP::Types::Device::Create_drive[]", XSD::QName.new(NsDevm, "create_drive")], [0, 1]],
34
- ["delete_drive", ["Virtuozzo::SOAP::Types::Device::Delete_drive[]", XSD::QName.new(NsDevm, "delete_drive")], [0, 1]],
35
- ["resize_drive", ["Virtuozzo::SOAP::Types::Device::Resize_drive[]", XSD::QName.new(NsDevm, "resize_drive")], [0, 1]],
36
- ["format_drive", ["Virtuozzo::SOAP::Types::Device::Format_drive[]", XSD::QName.new(NsDevm, "format_drive")], [0, 1]],
37
- ["list_device", ["Virtuozzo::SOAP::Types::Device::List_device[]", XSD::QName.new(NsDevm, "list_device")], [0, 1]],
38
- ["forward_device", ["Virtuozzo::SOAP::Types::Device::Forward_device[]", XSD::QName.new(NsDevm, "forward_device")], [0, 1]],
39
- ["remove_forward", ["Virtuozzo::SOAP::Types::Device::Remove_forward[]", XSD::QName.new(NsDevm, "remove_forward")], [0, 1]],
40
- ["list_forward", ["Virtuozzo::SOAP::Types::Device::List_forward[]", XSD::QName.new(NsDevm, "list_forward")], [0, 1]]
29
+ ["get_mounts", ["Virtuozzo::SOAP::Types::Devm::Get_mounts[]", XSD::QName.new(NsDevm, "get_mounts")], [0, 1]],
30
+ ["new_mount", ["Virtuozzo::SOAP::Types::Devm::New_mount[]", XSD::QName.new(NsDevm, "new_mount")], [0, 1]],
31
+ ["umount", ["Virtuozzo::SOAP::Types::Devm::Umount[]", XSD::QName.new(NsDevm, "umount")], [0, 1]],
32
+ ["get_info", ["Virtuozzo::SOAP::Types::Devm::Get_info[]", XSD::QName.new(NsDevm, "get_info")], [0, 1]],
33
+ ["create_drive", ["Virtuozzo::SOAP::Types::Devm::Create_drive[]", XSD::QName.new(NsDevm, "create_drive")], [0, 1]],
34
+ ["delete_drive", ["Virtuozzo::SOAP::Types::Devm::Delete_drive[]", XSD::QName.new(NsDevm, "delete_drive")], [0, 1]],
35
+ ["resize_drive", ["Virtuozzo::SOAP::Types::Devm::Resize_drive[]", XSD::QName.new(NsDevm, "resize_drive")], [0, 1]],
36
+ ["format_drive", ["Virtuozzo::SOAP::Types::Devm::Format_drive[]", XSD::QName.new(NsDevm, "format_drive")], [0, 1]],
37
+ ["list_device", ["Virtuozzo::SOAP::Types::Devm::List_device[]", XSD::QName.new(NsDevm, "list_device")], [0, 1]],
38
+ ["forward_device", ["Virtuozzo::SOAP::Types::Devm::Forward_device[]", XSD::QName.new(NsDevm, "forward_device")], [0, 1]],
39
+ ["remove_forward", ["Virtuozzo::SOAP::Types::Devm::Remove_forward[]", XSD::QName.new(NsDevm, "remove_forward")], [0, 1]],
40
+ ["list_forward", ["Virtuozzo::SOAP::Types::Devm::List_forward[]", XSD::QName.new(NsDevm, "list_forward")], [0, 1]]
41
41
  ],
42
42
  [
43
- ["mount", ["Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", XSD::QName.new(NsDevm, "mount")], [0, nil]],
44
- ["device_info", ["Virtuozzo::SOAP::Types::Device::Device_info[]", XSD::QName.new(NsDevm, "device_info")], [0, 1]],
45
- ["device", ["Virtuozzo::SOAP::Types::Device::Common_deviceType[]", XSD::QName.new(NsDevm, "device")], [0, 1]],
46
- ["forward", ["Virtuozzo::SOAP::Types::Device::Forward[]", XSD::QName.new(NsDevm, "forward")], [0, 1]]
43
+ ["mount", ["Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", XSD::QName.new(NsDevm, "mount")], [0, nil]],
44
+ ["device_info", ["Virtuozzo::SOAP::Types::Devm::Device_info[]", XSD::QName.new(NsDevm, "device_info")], [0, 1]],
45
+ ["device", ["Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", XSD::QName.new(NsDevm, "device")], [0, 1]],
46
+ ["forward", ["Virtuozzo::SOAP::Types::Devm::Forward[]", XSD::QName.new(NsDevm, "forward")], [0, 1]]
47
47
  ]
48
48
  ]
49
49
  )
50
50
 
51
51
  EncodedRegistry.register(
52
- :class => Virtuozzo::SOAP::Types::Device::VzadevmType::Ok,
52
+ :class => Virtuozzo::SOAP::Types::Devm::VzadevmType::Ok,
53
53
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
54
54
  :is_anonymous => true,
55
55
  :schema_qualified => true,
@@ -57,7 +57,7 @@ module Virtuozzo # :nodoc:
57
57
  )
58
58
 
59
59
  EncodedRegistry.register(
60
- :class => Virtuozzo::SOAP::Types::Device::VzadevmType::Error,
60
+ :class => Virtuozzo::SOAP::Types::Devm::VzadevmType::Error,
61
61
  :schema_name => XSD::QName.new(NsProtocol, "error"),
62
62
  :is_anonymous => true,
63
63
  :schema_qualified => true,
@@ -68,15 +68,15 @@ module Virtuozzo # :nodoc:
68
68
  )
69
69
 
70
70
  EncodedRegistry.register(
71
- :class => Virtuozzo::SOAP::Types::Device::Packet_headerType,
71
+ :class => Virtuozzo::SOAP::Types::Devm::Packet_headerType,
72
72
  :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
73
73
  :schema_element => [
74
- ["auth", "Virtuozzo::SOAP::Types::Device::AuthType", [0, 1]],
74
+ ["auth", "Virtuozzo::SOAP::Types::Devm::AuthType", [0, 1]],
75
75
  ["cookie", "SOAP::SOAPString", [0, 1]],
76
76
  ["target", "SOAP::SOAPString[]", [0, nil]],
77
77
  ["origin", "SOAP::SOAPString", [0, 1]],
78
- ["src", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
79
- ["dst", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
78
+ ["src", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
79
+ ["dst", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
80
80
  ["session", "SOAP::SOAPString", [0, 1]]
81
81
  ],
82
82
  :schema_attribute => {
@@ -94,26 +94,26 @@ module Virtuozzo # :nodoc:
94
94
  )
95
95
 
96
96
  EncodedRegistry.register(
97
- :class => Virtuozzo::SOAP::Types::Device::OperatorType,
97
+ :class => Virtuozzo::SOAP::Types::Devm::OperatorType,
98
98
  :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
99
99
  :schema_element => [ :choice,
100
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"]
100
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"]
101
101
  ]
102
102
  )
103
103
 
104
104
  EncodedRegistry.register(
105
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType,
105
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType,
106
106
  :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
107
107
  :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
108
108
  :schema_element => [ :choice,
109
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"],
110
- ["ok", "Virtuozzo::SOAP::Types::Device::Operator_functionalType::Ok[]"],
111
- ["error", "Virtuozzo::SOAP::Types::Device::Operator_functionalType::Error[]"]
109
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"],
110
+ ["ok", "Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Ok[]"],
111
+ ["error", "Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Error[]"]
112
112
  ]
113
113
  )
114
114
 
115
115
  EncodedRegistry.register(
116
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType::Ok,
116
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Ok,
117
117
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
118
118
  :is_anonymous => true,
119
119
  :schema_qualified => true,
@@ -121,7 +121,7 @@ module Virtuozzo # :nodoc:
121
121
  )
122
122
 
123
123
  EncodedRegistry.register(
124
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType::Error,
124
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Error,
125
125
  :schema_name => XSD::QName.new(NsProtocol, "error"),
126
126
  :is_anonymous => true,
127
127
  :schema_qualified => true,
@@ -132,24 +132,24 @@ module Virtuozzo # :nodoc:
132
132
  )
133
133
 
134
134
  EncodedRegistry.register(
135
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType,
135
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType,
136
136
  :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
137
137
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
138
138
  :schema_element => [ :choice,
139
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"],
140
- ["ok", "Virtuozzo::SOAP::Types::Device::Operator_periodicType::Ok[]"],
141
- ["error", "Virtuozzo::SOAP::Types::Device::Operator_periodicType::Error[]"],
139
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"],
140
+ ["ok", "Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Ok[]"],
141
+ ["error", "Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Error[]"],
142
142
  [ :choice,
143
- ["start_monitor", "Virtuozzo::SOAP::Types::Device::Start_monitorType"],
144
- ["stop_monitor", "Virtuozzo::SOAP::Types::Device::Stop_monitorType"],
145
- ["set_period", "Virtuozzo::SOAP::Types::Device::Set_periodType", [0, 1]],
143
+ ["start_monitor", "Virtuozzo::SOAP::Types::Devm::Start_monitorType"],
144
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Devm::Stop_monitorType"],
145
+ ["set_period", "Virtuozzo::SOAP::Types::Devm::Set_periodType", [0, 1]],
146
146
  ["report", nil, [0, 1]]
147
147
  ]
148
148
  ]
149
149
  )
150
150
 
151
151
  EncodedRegistry.register(
152
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType::Ok,
152
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Ok,
153
153
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
154
154
  :is_anonymous => true,
155
155
  :schema_qualified => true,
@@ -157,7 +157,7 @@ module Virtuozzo # :nodoc:
157
157
  )
158
158
 
159
159
  EncodedRegistry.register(
160
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType::Error,
160
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Error,
161
161
  :schema_name => XSD::QName.new(NsProtocol, "error"),
162
162
  :is_anonymous => true,
163
163
  :schema_qualified => true,
@@ -168,7 +168,7 @@ module Virtuozzo # :nodoc:
168
168
  )
169
169
 
170
170
  EncodedRegistry.register(
171
- :class => Virtuozzo::SOAP::Types::Device::Set_periodType,
171
+ :class => Virtuozzo::SOAP::Types::Devm::Set_periodType,
172
172
  :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
173
173
  :schema_element => [
174
174
  ["collect", "SOAP::SOAPInt"],
@@ -178,7 +178,7 @@ module Virtuozzo # :nodoc:
178
178
  )
179
179
 
180
180
  EncodedRegistry.register(
181
- :class => Virtuozzo::SOAP::Types::Device::Start_monitorType,
181
+ :class => Virtuozzo::SOAP::Types::Devm::Start_monitorType,
182
182
  :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
183
183
  :schema_element => [
184
184
  ["period", "SOAP::SOAPInt"],
@@ -187,7 +187,7 @@ module Virtuozzo # :nodoc:
187
187
  )
188
188
 
189
189
  EncodedRegistry.register(
190
- :class => Virtuozzo::SOAP::Types::Device::Stop_monitorType,
190
+ :class => Virtuozzo::SOAP::Types::Devm::Stop_monitorType,
191
191
  :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
192
192
  :schema_element => [
193
193
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -195,7 +195,7 @@ module Virtuozzo # :nodoc:
195
195
  )
196
196
 
197
197
  EncodedRegistry.register(
198
- :class => Virtuozzo::SOAP::Types::Device::AuthType,
198
+ :class => Virtuozzo::SOAP::Types::Devm::AuthType,
199
199
  :schema_type => XSD::QName.new(NsProtocol, "authType"),
200
200
  :schema_element => [
201
201
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -203,7 +203,7 @@ module Virtuozzo # :nodoc:
203
203
  )
204
204
 
205
205
  EncodedRegistry.register(
206
- :class => Virtuozzo::SOAP::Types::Device::Event_configurationType,
206
+ :class => Virtuozzo::SOAP::Types::Devm::Event_configurationType,
207
207
  :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
208
208
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
209
209
  :schema_element => [
@@ -212,7 +212,7 @@ module Virtuozzo # :nodoc:
212
212
  )
213
213
 
214
214
  EncodedRegistry.register(
215
- :class => Virtuozzo::SOAP::Types::Device::Periodic_configurationType,
215
+ :class => Virtuozzo::SOAP::Types::Devm::Periodic_configurationType,
216
216
  :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
217
217
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
218
218
  :schema_element => [
@@ -224,7 +224,7 @@ module Virtuozzo # :nodoc:
224
224
  )
225
225
 
226
226
  EncodedRegistry.register(
227
- :class => Virtuozzo::SOAP::Types::Device::RouteType,
227
+ :class => Virtuozzo::SOAP::Types::Devm::RouteType,
228
228
  :schema_type => XSD::QName.new(NsProtocol, "routeType"),
229
229
  :schema_element => [
230
230
  ["director", "SOAP::SOAPString", [0, 1]],
@@ -235,21 +235,21 @@ module Virtuozzo # :nodoc:
235
235
  )
236
236
 
237
237
  EncodedRegistry.register(
238
- :class => Virtuozzo::SOAP::Types::Device::DataType,
238
+ :class => Virtuozzo::SOAP::Types::Devm::DataType,
239
239
  :schema_type => XSD::QName.new(NsProtocol, "dataType"),
240
240
  :schema_element => [
241
- ["operator", "Virtuozzo::SOAP::Types::Device::OperatorType[]"]
241
+ ["operator", "Virtuozzo::SOAP::Types::Devm::OperatorType[]"]
242
242
  ]
243
243
  )
244
244
 
245
245
  EncodedRegistry.register(
246
- :class => Virtuozzo::SOAP::Types::Device::ConfigurationType,
246
+ :class => Virtuozzo::SOAP::Types::Devm::ConfigurationType,
247
247
  :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
248
248
  :schema_element => []
249
249
  )
250
250
 
251
251
  EncodedRegistry.register(
252
- :class => Virtuozzo::SOAP::Types::Device::OsType,
252
+ :class => Virtuozzo::SOAP::Types::Devm::OsType,
253
253
  :schema_type => XSD::QName.new(NsTypes, "osType"),
254
254
  :schema_element => [
255
255
  ["platform", "SOAP::SOAPString", [0, 1]],
@@ -260,7 +260,7 @@ module Virtuozzo # :nodoc:
260
260
  )
261
261
 
262
262
  EncodedRegistry.register(
263
- :class => Virtuozzo::SOAP::Types::Device::Env_statusType,
263
+ :class => Virtuozzo::SOAP::Types::Devm::Env_statusType,
264
264
  :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
265
265
  :schema_element => [
266
266
  ["state", "SOAP::SOAPInt", [0, 1]],
@@ -269,7 +269,7 @@ module Virtuozzo # :nodoc:
269
269
  )
270
270
 
271
271
  EncodedRegistry.register(
272
- :class => Virtuozzo::SOAP::Types::Device::QosType,
272
+ :class => Virtuozzo::SOAP::Types::Devm::QosType,
273
273
  :schema_type => XSD::QName.new(NsTypes, "qosType"),
274
274
  :schema_element => [
275
275
  ["id", "SOAP::SOAPString"],
@@ -280,16 +280,16 @@ module Virtuozzo # :nodoc:
280
280
  )
281
281
 
282
282
  EncodedRegistry.register(
283
- :class => Virtuozzo::SOAP::Types::Device::Env_configType,
283
+ :class => Virtuozzo::SOAP::Types::Devm::Env_configType,
284
284
  :schema_type => XSD::QName.new(NsTypes, "env_configType"),
285
285
  :schema_element => [
286
286
  ["name", "SOAP::SOAPString", [0, 1]],
287
287
  ["description", "SOAP::SOAPBase64", [0, 1]],
288
288
  ["domain", "SOAP::SOAPString", [0, 1]],
289
289
  ["hostname", "SOAP::SOAPString", [0, 1]],
290
- ["address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
290
+ ["address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
291
291
  ["architecture", "SOAP::SOAPString", [0, 1]],
292
- ["os", "Virtuozzo::SOAP::Types::Device::OsType", [0, 1]],
292
+ ["os", "Virtuozzo::SOAP::Types::Devm::OsType", [0, 1]],
293
293
  ["type", "SOAP::SOAPString", [0, 1]],
294
294
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
295
295
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
@@ -300,7 +300,7 @@ module Virtuozzo # :nodoc:
300
300
  )
301
301
 
302
302
  EncodedRegistry.register(
303
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType,
303
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType,
304
304
  :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
305
305
  :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
306
306
  :schema_element => [
@@ -308,40 +308,40 @@ module Virtuozzo # :nodoc:
308
308
  ["description", "SOAP::SOAPBase64", [0, 1]],
309
309
  ["domain", "SOAP::SOAPString", [0, 1]],
310
310
  ["hostname", "SOAP::SOAPString", [0, 1]],
311
- ["address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
311
+ ["address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
312
312
  ["architecture", "SOAP::SOAPString", [0, 1]],
313
- ["os", "Virtuozzo::SOAP::Types::Device::OsType", [0, 1]],
313
+ ["os", "Virtuozzo::SOAP::Types::Devm::OsType", [0, 1]],
314
314
  ["type", "SOAP::SOAPString", [0, 1]],
315
315
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
316
316
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
317
317
  ["base_sample_id", nil, [0, 1]],
318
318
  ["base_snapshot_id", nil, [0, 1]],
319
319
  ["child_type", "SOAP::SOAPString[]", [0, nil]],
320
- ["qos", "Virtuozzo::SOAP::Types::Device::QosType[]", [0, nil]]
320
+ ["qos", "Virtuozzo::SOAP::Types::Devm::QosType[]", [0, nil]]
321
321
  ]
322
322
  )
323
323
 
324
324
  EncodedRegistry.register(
325
- :class => Virtuozzo::SOAP::Types::Device::Native_configType,
325
+ :class => Virtuozzo::SOAP::Types::Devm::Native_configType,
326
326
  :schema_type => XSD::QName.new(NsTypes, "native_configType"),
327
327
  :schema_element => []
328
328
  )
329
329
 
330
330
  EncodedRegistry.register(
331
- :class => Virtuozzo::SOAP::Types::Device::EnvType,
331
+ :class => Virtuozzo::SOAP::Types::Devm::EnvType,
332
332
  :schema_type => XSD::QName.new(NsTypes, "envType"),
333
333
  :schema_element => [
334
334
  ["parent_eid", nil],
335
335
  ["eid", nil],
336
- ["status", "Virtuozzo::SOAP::Types::Device::Env_statusType", [0, 1]],
336
+ ["status", "Virtuozzo::SOAP::Types::Devm::Env_statusType", [0, 1]],
337
337
  ["alert", "SOAP::SOAPInt", [0, 1]],
338
- ["config", "Virtuozzo::SOAP::Types::Device::Env_configType", [0, 1]],
339
- ["virtual_config", "Virtuozzo::SOAP::Types::Device::Venv_configType", [0, 1]]
338
+ ["config", "Virtuozzo::SOAP::Types::Devm::Env_configType", [0, 1]],
339
+ ["virtual_config", "Virtuozzo::SOAP::Types::Devm::Venv_configType", [0, 1]]
340
340
  ]
341
341
  )
342
342
 
343
343
  EncodedRegistry.register(
344
- :class => Virtuozzo::SOAP::Types::Device::ProcessesType,
344
+ :class => Virtuozzo::SOAP::Types::Devm::ProcessesType,
345
345
  :schema_type => XSD::QName.new(NsTypes, "processesType"),
346
346
  :schema_element => [
347
347
  ["run", "SOAP::SOAPInt"],
@@ -354,7 +354,7 @@ module Virtuozzo # :nodoc:
354
354
  )
355
355
 
356
356
  EncodedRegistry.register(
357
- :class => Virtuozzo::SOAP::Types::Device::Load_avgType,
357
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avgType,
358
358
  :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
359
359
  :schema_element => [
360
360
  ["l1", "SOAP::SOAPDouble"],
@@ -364,7 +364,7 @@ module Virtuozzo # :nodoc:
364
364
  )
365
365
 
366
366
  EncodedRegistry.register(
367
- :class => Virtuozzo::SOAP::Types::Device::Cpu_loadType,
367
+ :class => Virtuozzo::SOAP::Types::Devm::Cpu_loadType,
368
368
  :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
369
369
  :schema_element => [
370
370
  ["system", "SOAP::SOAPLong"],
@@ -375,7 +375,7 @@ module Virtuozzo # :nodoc:
375
375
  )
376
376
 
377
377
  EncodedRegistry.register(
378
- :class => Virtuozzo::SOAP::Types::Device::CpuType,
378
+ :class => Virtuozzo::SOAP::Types::Devm::CpuType,
379
379
  :schema_type => XSD::QName.new(NsTypes, "cpuType"),
380
380
  :schema_element => [
381
381
  ["mhz", "SOAP::SOAPInt"],
@@ -391,16 +391,16 @@ module Virtuozzo # :nodoc:
391
391
  )
392
392
 
393
393
  EncodedRegistry.register(
394
- :class => Virtuozzo::SOAP::Types::Device::TransferType,
394
+ :class => Virtuozzo::SOAP::Types::Devm::TransferType,
395
395
  :schema_type => XSD::QName.new(NsTypes, "transferType"),
396
396
  :schema_element => [
397
- ["input", "Virtuozzo::SOAP::Types::Device::TransferType::Input"],
398
- ["output", "Virtuozzo::SOAP::Types::Device::TransferType::Output"]
397
+ ["input", "Virtuozzo::SOAP::Types::Devm::TransferType::Input"],
398
+ ["output", "Virtuozzo::SOAP::Types::Devm::TransferType::Output"]
399
399
  ]
400
400
  )
401
401
 
402
402
  EncodedRegistry.register(
403
- :class => Virtuozzo::SOAP::Types::Device::TransferType::Input,
403
+ :class => Virtuozzo::SOAP::Types::Devm::TransferType::Input,
404
404
  :schema_name => XSD::QName.new(NsTypes, "input"),
405
405
  :is_anonymous => true,
406
406
  :schema_qualified => true,
@@ -411,7 +411,7 @@ module Virtuozzo # :nodoc:
411
411
  )
412
412
 
413
413
  EncodedRegistry.register(
414
- :class => Virtuozzo::SOAP::Types::Device::TransferType::Output,
414
+ :class => Virtuozzo::SOAP::Types::Devm::TransferType::Output,
415
415
  :schema_name => XSD::QName.new(NsTypes, "output"),
416
416
  :is_anonymous => true,
417
417
  :schema_qualified => true,
@@ -422,16 +422,16 @@ module Virtuozzo # :nodoc:
422
422
  )
423
423
 
424
424
  EncodedRegistry.register(
425
- :class => Virtuozzo::SOAP::Types::Device::System_nodeType,
425
+ :class => Virtuozzo::SOAP::Types::Devm::System_nodeType,
426
426
  :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
427
427
  :schema_element => [
428
- ["address", "Virtuozzo::SOAP::Types::Device::System_nodeType::Address"],
429
- ["login", "Virtuozzo::SOAP::Types::Device::System_nodeType::Login", [0, 1]]
428
+ ["address", "Virtuozzo::SOAP::Types::Devm::System_nodeType::Address"],
429
+ ["login", "Virtuozzo::SOAP::Types::Devm::System_nodeType::Login", [0, 1]]
430
430
  ]
431
431
  )
432
432
 
433
433
  EncodedRegistry.register(
434
- :class => Virtuozzo::SOAP::Types::Device::System_nodeType::Address,
434
+ :class => Virtuozzo::SOAP::Types::Devm::System_nodeType::Address,
435
435
  :schema_name => XSD::QName.new(NsTypes, "address"),
436
436
  :is_anonymous => true,
437
437
  :schema_qualified => true,
@@ -441,7 +441,7 @@ module Virtuozzo # :nodoc:
441
441
  )
442
442
 
443
443
  EncodedRegistry.register(
444
- :class => Virtuozzo::SOAP::Types::Device::System_nodeType::Login,
444
+ :class => Virtuozzo::SOAP::Types::Devm::System_nodeType::Login,
445
445
  :schema_name => XSD::QName.new(NsTypes, "login"),
446
446
  :is_anonymous => true,
447
447
  :schema_qualified => true,
@@ -452,7 +452,7 @@ module Virtuozzo # :nodoc:
452
452
  )
453
453
 
454
454
  EncodedRegistry.register(
455
- :class => Virtuozzo::SOAP::Types::Device::ResourceType,
455
+ :class => Virtuozzo::SOAP::Types::Devm::ResourceType,
456
456
  :schema_type => XSD::QName.new(NsTypes, "resourceType"),
457
457
  :schema_element => [
458
458
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -465,7 +465,7 @@ module Virtuozzo # :nodoc:
465
465
  )
466
466
 
467
467
  EncodedRegistry.register(
468
- :class => Virtuozzo::SOAP::Types::Device::IntervalType,
468
+ :class => Virtuozzo::SOAP::Types::Devm::IntervalType,
469
469
  :schema_type => XSD::QName.new(NsTypes, "intervalType"),
470
470
  :schema_element => [
471
471
  ["start_time", nil],
@@ -474,7 +474,7 @@ module Virtuozzo # :nodoc:
474
474
  )
475
475
 
476
476
  EncodedRegistry.register(
477
- :class => Virtuozzo::SOAP::Types::Device::StatsType,
477
+ :class => Virtuozzo::SOAP::Types::Devm::StatsType,
478
478
  :schema_type => XSD::QName.new(NsTypes, "statsType"),
479
479
  :schema_element => [
480
480
  ["avg", "SOAP::SOAPLong", [0, 1]],
@@ -488,7 +488,7 @@ module Virtuozzo # :nodoc:
488
488
  )
489
489
 
490
490
  EncodedRegistry.register(
491
- :class => Virtuozzo::SOAP::Types::Device::Net_addressType,
491
+ :class => Virtuozzo::SOAP::Types::Devm::Net_addressType,
492
492
  :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
493
493
  :schema_element => [
494
494
  ["host", nil],
@@ -497,16 +497,16 @@ module Virtuozzo # :nodoc:
497
497
  )
498
498
 
499
499
  EncodedRegistry.register(
500
- :class => Virtuozzo::SOAP::Types::Device::Net_classType,
500
+ :class => Virtuozzo::SOAP::Types::Devm::Net_classType,
501
501
  :schema_type => XSD::QName.new(NsTypes, "net_classType"),
502
502
  :schema_element => [
503
503
  ["id", "SOAP::SOAPString", [0, 1]],
504
- ["transfer", "Virtuozzo::SOAP::Types::Device::TransferType", [0, 1]]
504
+ ["transfer", "Virtuozzo::SOAP::Types::Devm::TransferType", [0, 1]]
505
505
  ]
506
506
  )
507
507
 
508
508
  EncodedRegistry.register(
509
- :class => Virtuozzo::SOAP::Types::Device::Ip_rangeType,
509
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_rangeType,
510
510
  :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
511
511
  :schema_element => [
512
512
  ["id", "SOAP::SOAPString", [0, 1]],
@@ -517,19 +517,19 @@ module Virtuozzo # :nodoc:
517
517
  )
518
518
 
519
519
  EncodedRegistry.register(
520
- :class => Virtuozzo::SOAP::Types::Device::Sample_confType,
520
+ :class => Virtuozzo::SOAP::Types::Devm::Sample_confType,
521
521
  :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
522
522
  :schema_element => [
523
- ["env_config", "Virtuozzo::SOAP::Types::Device::Env_configType"],
523
+ ["env_config", "Virtuozzo::SOAP::Types::Devm::Env_configType"],
524
524
  ["id", "SOAP::SOAPString", [0, 1]],
525
525
  ["name", "SOAP::SOAPString"],
526
526
  ["comment", "SOAP::SOAPBase64", [0, 1]],
527
- ["vt_version", "Virtuozzo::SOAP::Types::Device::Sample_confType::Vt_version", [0, 1]]
527
+ ["vt_version", "Virtuozzo::SOAP::Types::Devm::Sample_confType::Vt_version", [0, 1]]
528
528
  ]
529
529
  )
530
530
 
531
531
  EncodedRegistry.register(
532
- :class => Virtuozzo::SOAP::Types::Device::Sample_confType::Vt_version,
532
+ :class => Virtuozzo::SOAP::Types::Devm::Sample_confType::Vt_version,
533
533
  :schema_name => XSD::QName.new(NsTypes, "vt_version"),
534
534
  :is_anonymous => true,
535
535
  :schema_qualified => true,
@@ -541,34 +541,34 @@ module Virtuozzo # :nodoc:
541
541
  )
542
542
 
543
543
  EncodedRegistry.register(
544
- :class => Virtuozzo::SOAP::Types::Device::InterfaceType,
544
+ :class => Virtuozzo::SOAP::Types::Devm::InterfaceType,
545
545
  :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
546
546
  :schema_element => [
547
547
  ["name", "SOAP::SOAPString"],
548
548
  ["bandwidth", "SOAP::SOAPInt", [0, 1]],
549
- ["transfer", "Virtuozzo::SOAP::Types::Device::TransferType", [0, 1]],
549
+ ["transfer", "Virtuozzo::SOAP::Types::Devm::TransferType", [0, 1]],
550
550
  ["ipaddress", nil, [0, 1]],
551
551
  ["flags", "SOAP::SOAPInt", [0, 1]]
552
552
  ]
553
553
  )
554
554
 
555
555
  EncodedRegistry.register(
556
- :class => Virtuozzo::SOAP::Types::Device::Sys_infoType,
556
+ :class => Virtuozzo::SOAP::Types::Devm::Sys_infoType,
557
557
  :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
558
558
  :schema_element => [
559
- ["load_avg", "Virtuozzo::SOAP::Types::Device::Load_avgType"],
560
- ["processes", "Virtuozzo::SOAP::Types::Device::ProcessesType"],
561
- ["cpu_load", "Virtuozzo::SOAP::Types::Device::Cpu_loadType"],
562
- ["cpu_states", "Virtuozzo::SOAP::Types::Device::Cpu_loadType"],
559
+ ["load_avg", "Virtuozzo::SOAP::Types::Devm::Load_avgType"],
560
+ ["processes", "Virtuozzo::SOAP::Types::Devm::ProcessesType"],
561
+ ["cpu_load", "Virtuozzo::SOAP::Types::Devm::Cpu_loadType"],
562
+ ["cpu_states", "Virtuozzo::SOAP::Types::Devm::Cpu_loadType"],
563
563
  ["users", "SOAP::SOAPInt"],
564
564
  ["uptime", "SOAP::SOAPLong"],
565
- ["memory", "Virtuozzo::SOAP::Types::Device::Sys_infoType::Memory", [0, 1]],
566
- ["swap", "Virtuozzo::SOAP::Types::Device::Sys_infoType::Swap", [0, 1]]
565
+ ["memory", "Virtuozzo::SOAP::Types::Devm::Sys_infoType::Memory", [0, 1]],
566
+ ["swap", "Virtuozzo::SOAP::Types::Devm::Sys_infoType::Swap", [0, 1]]
567
567
  ]
568
568
  )
569
569
 
570
570
  EncodedRegistry.register(
571
- :class => Virtuozzo::SOAP::Types::Device::Sys_infoType::Memory,
571
+ :class => Virtuozzo::SOAP::Types::Devm::Sys_infoType::Memory,
572
572
  :schema_name => XSD::QName.new(NsTypes, "memory"),
573
573
  :is_anonymous => true,
574
574
  :schema_qualified => true,
@@ -579,7 +579,7 @@ module Virtuozzo # :nodoc:
579
579
  )
580
580
 
581
581
  EncodedRegistry.register(
582
- :class => Virtuozzo::SOAP::Types::Device::Sys_infoType::Swap,
582
+ :class => Virtuozzo::SOAP::Types::Devm::Sys_infoType::Swap,
583
583
  :schema_name => XSD::QName.new(NsTypes, "swap"),
584
584
  :is_anonymous => true,
585
585
  :schema_qualified => true,
@@ -590,10 +590,10 @@ module Virtuozzo # :nodoc:
590
590
  )
591
591
 
592
592
  EncodedRegistry.register(
593
- :class => Virtuozzo::SOAP::Types::Device::Ps_infoType,
593
+ :class => Virtuozzo::SOAP::Types::Devm::Ps_infoType,
594
594
  :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
595
595
  :schema_element => [
596
- ["process", "Virtuozzo::SOAP::Types::Device::Ps_infoType::C_Process[]", [1, nil]],
596
+ ["process", "Virtuozzo::SOAP::Types::Devm::Ps_infoType::C_Process[]", [1, nil]],
597
597
  ["param_id", "SOAP::SOAPString[]", [1, nil]],
598
598
  ["run", "SOAP::SOAPInt"],
599
599
  ["idle", "SOAP::SOAPInt"],
@@ -606,7 +606,7 @@ module Virtuozzo # :nodoc:
606
606
  )
607
607
 
608
608
  EncodedRegistry.register(
609
- :class => Virtuozzo::SOAP::Types::Device::Ps_infoType::C_Process,
609
+ :class => Virtuozzo::SOAP::Types::Devm::Ps_infoType::C_Process,
610
610
  :schema_name => XSD::QName.new(NsTypes, "process"),
611
611
  :is_anonymous => true,
612
612
  :schema_qualified => true,
@@ -617,17 +617,17 @@ module Virtuozzo # :nodoc:
617
617
  )
618
618
 
619
619
  EncodedRegistry.register(
620
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType,
620
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType,
621
621
  :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
622
622
  :schema_element => [
623
- ["l1", "Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L1"],
624
- ["l2", "Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L2", [0, 1]],
625
- ["l3", "Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L3", [0, 1]]
623
+ ["l1", "Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L1"],
624
+ ["l2", "Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L2", [0, 1]],
625
+ ["l3", "Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L3", [0, 1]]
626
626
  ]
627
627
  )
628
628
 
629
629
  EncodedRegistry.register(
630
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L1,
630
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L1,
631
631
  :schema_name => XSD::QName.new(NsTypes, "l1"),
632
632
  :is_anonymous => true,
633
633
  :schema_qualified => true,
@@ -640,7 +640,7 @@ module Virtuozzo # :nodoc:
640
640
  )
641
641
 
642
642
  EncodedRegistry.register(
643
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L2,
643
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L2,
644
644
  :schema_name => XSD::QName.new(NsTypes, "l2"),
645
645
  :is_anonymous => true,
646
646
  :schema_qualified => true,
@@ -653,7 +653,7 @@ module Virtuozzo # :nodoc:
653
653
  )
654
654
 
655
655
  EncodedRegistry.register(
656
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L3,
656
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L3,
657
657
  :schema_name => XSD::QName.new(NsTypes, "l3"),
658
658
  :is_anonymous => true,
659
659
  :schema_qualified => true,
@@ -666,7 +666,7 @@ module Virtuozzo # :nodoc:
666
666
  )
667
667
 
668
668
  EncodedRegistry.register(
669
- :class => Virtuozzo::SOAP::Types::Device::Alert_dataType,
669
+ :class => Virtuozzo::SOAP::Types::Devm::Alert_dataType,
670
670
  :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
671
671
  :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
672
672
  :schema_element => [
@@ -675,7 +675,7 @@ module Virtuozzo # :nodoc:
675
675
  )
676
676
 
677
677
  EncodedRegistry.register(
678
- :class => Virtuozzo::SOAP::Types::Device::Ip_addressType,
678
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_addressType,
679
679
  :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
680
680
  :schema_element => [
681
681
  ["ip", nil],
@@ -684,25 +684,25 @@ module Virtuozzo # :nodoc:
684
684
  )
685
685
 
686
686
  EncodedRegistry.register(
687
- :class => Virtuozzo::SOAP::Types::Device::Env_resourceType,
687
+ :class => Virtuozzo::SOAP::Types::Devm::Env_resourceType,
688
688
  :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
689
689
  :schema_element => [
690
690
  ["eid", nil],
691
- ["ip_pool", "Virtuozzo::SOAP::Types::Device::Ip_poolType", [0, 1]]
691
+ ["ip_pool", "Virtuozzo::SOAP::Types::Devm::Ip_poolType", [0, 1]]
692
692
  ]
693
693
  )
694
694
 
695
695
  EncodedRegistry.register(
696
- :class => Virtuozzo::SOAP::Types::Device::Ip_poolType,
696
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_poolType,
697
697
  :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
698
698
  :schema_element => [ :choice,
699
- ["ip_range", "Virtuozzo::SOAP::Types::Device::Ip_poolType::Ip_range[]"],
699
+ ["ip_range", "Virtuozzo::SOAP::Types::Devm::Ip_poolType::Ip_range[]"],
700
700
  ["ip", "[]"]
701
701
  ]
702
702
  )
703
703
 
704
704
  EncodedRegistry.register(
705
- :class => Virtuozzo::SOAP::Types::Device::Ip_poolType::Ip_range,
705
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_poolType::Ip_range,
706
706
  :schema_name => XSD::QName.new(NsTypes, "ip_range"),
707
707
  :is_anonymous => true,
708
708
  :schema_qualified => true,
@@ -713,7 +713,7 @@ module Virtuozzo # :nodoc:
713
713
  )
714
714
 
715
715
  EncodedRegistry.register(
716
- :class => Virtuozzo::SOAP::Types::Device::UsageType,
716
+ :class => Virtuozzo::SOAP::Types::Devm::UsageType,
717
717
  :schema_type => XSD::QName.new(NsTypes, "usageType"),
718
718
  :schema_element => [
719
719
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -723,20 +723,20 @@ module Virtuozzo # :nodoc:
723
723
  )
724
724
 
725
725
  EncodedRegistry.register(
726
- :class => Virtuozzo::SOAP::Types::Device::Root_credentialType,
726
+ :class => Virtuozzo::SOAP::Types::Devm::Root_credentialType,
727
727
  :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
728
728
  :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
729
729
  :schema_element => [
730
730
  ["id", "SOAP::SOAPString"],
731
731
  ["policy", "SOAP::SOAPInt", [0, 1]],
732
732
  ["description", "SOAP::SOAPBase64", [0, 1]],
733
- ["cred", "Virtuozzo::SOAP::Types::Device::CredentialType[]", [0, nil]],
734
- ["objects", "Virtuozzo::SOAP::Types::Device::Root_credentialType::Objects", [0, 1]]
733
+ ["cred", "Virtuozzo::SOAP::Types::Devm::CredentialType[]", [0, nil]],
734
+ ["objects", "Virtuozzo::SOAP::Types::Devm::Root_credentialType::Objects", [0, 1]]
735
735
  ]
736
736
  )
737
737
 
738
738
  EncodedRegistry.register(
739
- :class => Virtuozzo::SOAP::Types::Device::Root_credentialType::Objects,
739
+ :class => Virtuozzo::SOAP::Types::Devm::Root_credentialType::Objects,
740
740
  :schema_name => XSD::QName.new(NsTypes, "objects"),
741
741
  :is_anonymous => true,
742
742
  :schema_qualified => true,
@@ -746,30 +746,30 @@ module Virtuozzo # :nodoc:
746
746
  )
747
747
 
748
748
  EncodedRegistry.register(
749
- :class => Virtuozzo::SOAP::Types::Device::CredentialType,
749
+ :class => Virtuozzo::SOAP::Types::Devm::CredentialType,
750
750
  :schema_type => XSD::QName.new(NsTypes, "credentialType"),
751
751
  :schema_element => [
752
752
  ["id", "SOAP::SOAPString"],
753
753
  ["policy", "SOAP::SOAPInt", [0, 1]],
754
754
  ["description", "SOAP::SOAPBase64", [0, 1]],
755
- ["cred", "Virtuozzo::SOAP::Types::Device::CredentialType[]", [0, nil]]
755
+ ["cred", "Virtuozzo::SOAP::Types::Devm::CredentialType[]", [0, nil]]
756
756
  ]
757
757
  )
758
758
 
759
759
  EncodedRegistry.register(
760
- :class => Virtuozzo::SOAP::Types::Device::TokenType,
760
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType,
761
761
  :schema_type => XSD::QName.new(NsTypes, "tokenType"),
762
762
  :schema_element => [
763
763
  ["user", nil],
764
- ["groups", "Virtuozzo::SOAP::Types::Device::TokenType::Groups", [0, 1]],
765
- ["deny_only_sids", "Virtuozzo::SOAP::Types::Device::TokenType::Deny_only_sids", [0, 1]],
766
- ["privileges", "Virtuozzo::SOAP::Types::Device::TokenType::Privileges", [0, 1]],
767
- ["source", "Virtuozzo::SOAP::Types::Device::TokenType::Source", [0, 1]]
764
+ ["groups", "Virtuozzo::SOAP::Types::Devm::TokenType::Groups", [0, 1]],
765
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Devm::TokenType::Deny_only_sids", [0, 1]],
766
+ ["privileges", "Virtuozzo::SOAP::Types::Devm::TokenType::Privileges", [0, 1]],
767
+ ["source", "Virtuozzo::SOAP::Types::Devm::TokenType::Source", [0, 1]]
768
768
  ]
769
769
  )
770
770
 
771
771
  EncodedRegistry.register(
772
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Groups,
772
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Groups,
773
773
  :schema_name => XSD::QName.new(NsTypes, "groups"),
774
774
  :is_anonymous => true,
775
775
  :schema_qualified => true,
@@ -779,7 +779,7 @@ module Virtuozzo # :nodoc:
779
779
  )
780
780
 
781
781
  EncodedRegistry.register(
782
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Deny_only_sids,
782
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Deny_only_sids,
783
783
  :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
784
784
  :is_anonymous => true,
785
785
  :schema_qualified => true,
@@ -789,7 +789,7 @@ module Virtuozzo # :nodoc:
789
789
  )
790
790
 
791
791
  EncodedRegistry.register(
792
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Privileges,
792
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Privileges,
793
793
  :schema_name => XSD::QName.new(NsTypes, "privileges"),
794
794
  :is_anonymous => true,
795
795
  :schema_qualified => true,
@@ -799,7 +799,7 @@ module Virtuozzo # :nodoc:
799
799
  )
800
800
 
801
801
  EncodedRegistry.register(
802
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Source,
802
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Source,
803
803
  :schema_name => XSD::QName.new(NsTypes, "source"),
804
804
  :is_anonymous => true,
805
805
  :schema_qualified => true,
@@ -810,7 +810,7 @@ module Virtuozzo # :nodoc:
810
810
  )
811
811
 
812
812
  EncodedRegistry.register(
813
- :class => Virtuozzo::SOAP::Types::Device::Connectivity_infoType,
813
+ :class => Virtuozzo::SOAP::Types::Devm::Connectivity_infoType,
814
814
  :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
815
815
  :schema_element => [
816
816
  ["protocol", "SOAP::SOAPString", [0, 1]],
@@ -820,7 +820,7 @@ module Virtuozzo # :nodoc:
820
820
  )
821
821
 
822
822
  EncodedRegistry.register(
823
- :class => Virtuozzo::SOAP::Types::Device::Auth_nameType,
823
+ :class => Virtuozzo::SOAP::Types::Devm::Auth_nameType,
824
824
  :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
825
825
  :schema_element => [
826
826
  ["name", "SOAP::SOAPBase64", [0, 1]],
@@ -830,20 +830,20 @@ module Virtuozzo # :nodoc:
830
830
  )
831
831
 
832
832
  EncodedRegistry.register(
833
- :class => Virtuozzo::SOAP::Types::Device::Connection_infoType,
833
+ :class => Virtuozzo::SOAP::Types::Devm::Connection_infoType,
834
834
  :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
835
835
  :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
836
836
  :schema_element => [
837
837
  ["protocol", "SOAP::SOAPString", [0, 1]],
838
838
  ["address", "SOAP::SOAPString"],
839
839
  ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
840
- ["login", "Virtuozzo::SOAP::Types::Device::Auth_nameType", [0, 1]],
840
+ ["login", "Virtuozzo::SOAP::Types::Devm::Auth_nameType", [0, 1]],
841
841
  ["password", "SOAP::SOAPBase64", [0, 1]]
842
842
  ]
843
843
  )
844
844
 
845
845
  EncodedRegistry.register(
846
- :class => Virtuozzo::SOAP::Types::Device::Eid_listType,
846
+ :class => Virtuozzo::SOAP::Types::Devm::Eid_listType,
847
847
  :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
848
848
  :schema_element => [
849
849
  ["eid", "[]", [0, nil]]
@@ -851,7 +851,7 @@ module Virtuozzo # :nodoc:
851
851
  )
852
852
 
853
853
  EncodedRegistry.register(
854
- :class => Virtuozzo::SOAP::Types::Device::Vt_infoType,
854
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_infoType,
855
855
  :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
856
856
  :schema_element => [
857
857
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -859,7 +859,7 @@ module Virtuozzo # :nodoc:
859
859
  )
860
860
 
861
861
  EncodedRegistry.register(
862
- :class => Virtuozzo::SOAP::Types::Device::Vt_settingsType,
862
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_settingsType,
863
863
  :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
864
864
  :schema_element => [
865
865
  ["default_sample_id", nil, [0, 1]]
@@ -867,11 +867,11 @@ module Virtuozzo # :nodoc:
867
867
  )
868
868
 
869
869
  EncodedRegistry.register(
870
- :class => Virtuozzo::SOAP::Types::Device::UserType,
870
+ :class => Virtuozzo::SOAP::Types::Devm::UserType,
871
871
  :schema_type => XSD::QName.new(NsTypes, "userType"),
872
872
  :schema_element => [
873
- ["initial_group", "Virtuozzo::SOAP::Types::Device::UserType::Initial_group", [0, 1]],
874
- ["group", "Virtuozzo::SOAP::Types::Device::UserType::Group[]", [0, nil]],
873
+ ["initial_group", "Virtuozzo::SOAP::Types::Devm::UserType::Initial_group", [0, 1]],
874
+ ["group", "Virtuozzo::SOAP::Types::Devm::UserType::Group[]", [0, nil]],
875
875
  ["uid", "SOAP::SOAPInt", [0, 1]],
876
876
  ["shell", "SOAP::SOAPString", [0, 1]],
877
877
  ["password", "SOAP::SOAPBase64", [0, 1]],
@@ -882,7 +882,7 @@ module Virtuozzo # :nodoc:
882
882
  )
883
883
 
884
884
  EncodedRegistry.register(
885
- :class => Virtuozzo::SOAP::Types::Device::UserType::Initial_group,
885
+ :class => Virtuozzo::SOAP::Types::Devm::UserType::Initial_group,
886
886
  :schema_name => XSD::QName.new(NsTypes, "initial_group"),
887
887
  :is_anonymous => true,
888
888
  :schema_qualified => true,
@@ -893,7 +893,7 @@ module Virtuozzo # :nodoc:
893
893
  )
894
894
 
895
895
  EncodedRegistry.register(
896
- :class => Virtuozzo::SOAP::Types::Device::UserType::Group,
896
+ :class => Virtuozzo::SOAP::Types::Devm::UserType::Group,
897
897
  :schema_name => XSD::QName.new(NsTypes, "group"),
898
898
  :is_anonymous => true,
899
899
  :schema_qualified => true,
@@ -904,18 +904,18 @@ module Virtuozzo # :nodoc:
904
904
  )
905
905
 
906
906
  EncodedRegistry.register(
907
- :class => Virtuozzo::SOAP::Types::Device::GroupType,
907
+ :class => Virtuozzo::SOAP::Types::Devm::GroupType,
908
908
  :schema_type => XSD::QName.new(NsTypes, "groupType"),
909
909
  :schema_element => [
910
- ["user", "Virtuozzo::SOAP::Types::Device::GroupType::User[]", [0, nil]],
911
- ["member_group", "Virtuozzo::SOAP::Types::Device::GroupType::Member_group[]", [0, nil]],
910
+ ["user", "Virtuozzo::SOAP::Types::Devm::GroupType::User[]", [0, nil]],
911
+ ["member_group", "Virtuozzo::SOAP::Types::Devm::GroupType::Member_group[]", [0, nil]],
912
912
  ["name", "SOAP::SOAPString", [0, 1]],
913
913
  ["gid", "SOAP::SOAPInt", [0, 1]]
914
914
  ]
915
915
  )
916
916
 
917
917
  EncodedRegistry.register(
918
- :class => Virtuozzo::SOAP::Types::Device::GroupType::User,
918
+ :class => Virtuozzo::SOAP::Types::Devm::GroupType::User,
919
919
  :schema_name => XSD::QName.new(NsTypes, "user"),
920
920
  :is_anonymous => true,
921
921
  :schema_qualified => true,
@@ -925,7 +925,7 @@ module Virtuozzo # :nodoc:
925
925
  )
926
926
 
927
927
  EncodedRegistry.register(
928
- :class => Virtuozzo::SOAP::Types::Device::GroupType::Member_group,
928
+ :class => Virtuozzo::SOAP::Types::Devm::GroupType::Member_group,
929
929
  :schema_name => XSD::QName.new(NsTypes, "member_group"),
930
930
  :is_anonymous => true,
931
931
  :schema_qualified => true,
@@ -935,12 +935,12 @@ module Virtuozzo # :nodoc:
935
935
  )
936
936
 
937
937
  EncodedRegistry.register(
938
- :class => Virtuozzo::SOAP::Types::Device::PackageType,
938
+ :class => Virtuozzo::SOAP::Types::Devm::PackageType,
939
939
  :schema_type => XSD::QName.new(NsTypes, "packageType"),
940
940
  :schema_element => [
941
941
  ["name", "SOAP::SOAPString"],
942
942
  ["summary", "SOAP::SOAPString", [0, 1]],
943
- ["os", "Virtuozzo::SOAP::Types::Device::OsType", [0, 1]],
943
+ ["os", "Virtuozzo::SOAP::Types::Devm::OsType", [0, 1]],
944
944
  ["description", "SOAP::SOAPString", [0, 1]],
945
945
  ["arch", "SOAP::SOAPString", [0, 1]],
946
946
  ["version", "SOAP::SOAPString", [0, 1]]
@@ -948,13 +948,13 @@ module Virtuozzo # :nodoc:
948
948
  )
949
949
 
950
950
  EncodedRegistry.register(
951
- :class => Virtuozzo::SOAP::Types::Device::Event_dataType,
951
+ :class => Virtuozzo::SOAP::Types::Devm::Event_dataType,
952
952
  :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
953
953
  :schema_element => []
954
954
  )
955
955
 
956
956
  EncodedRegistry.register(
957
- :class => Virtuozzo::SOAP::Types::Device::Named_listType,
957
+ :class => Virtuozzo::SOAP::Types::Devm::Named_listType,
958
958
  :schema_type => XSD::QName.new(NsTypes, "named_listType"),
959
959
  :schema_element => [
960
960
  ["name", "SOAP::SOAPString"],
@@ -963,7 +963,7 @@ module Virtuozzo # :nodoc:
963
963
  )
964
964
 
965
965
  EncodedRegistry.register(
966
- :class => Virtuozzo::SOAP::Types::Device::ModType,
966
+ :class => Virtuozzo::SOAP::Types::Devm::ModType,
967
967
  :schema_type => XSD::QName.new(NsTypes, "modType"),
968
968
  :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
969
969
  :schema_element => [
@@ -974,7 +974,7 @@ module Virtuozzo # :nodoc:
974
974
  )
975
975
 
976
976
  EncodedRegistry.register(
977
- :class => Virtuozzo::SOAP::Types::Device::RealmType,
977
+ :class => Virtuozzo::SOAP::Types::Devm::RealmType,
978
978
  :schema_type => XSD::QName.new(NsTypes, "realmType"),
979
979
  :schema_element => [
980
980
  ["id", nil, [0, 1]],
@@ -985,7 +985,7 @@ module Virtuozzo # :nodoc:
985
985
  )
986
986
 
987
987
  EncodedRegistry.register(
988
- :class => Virtuozzo::SOAP::Types::Device::EventType,
988
+ :class => Virtuozzo::SOAP::Types::Devm::EventType,
989
989
  :schema_type => XSD::QName.new(NsTypes, "eventType"),
990
990
  :schema_element => [
991
991
  ["eid", nil],
@@ -995,34 +995,34 @@ module Virtuozzo # :nodoc:
995
995
  ["sid", nil, [0, 1]],
996
996
  ["count", "SOAP::SOAPInt"],
997
997
  ["id", nil],
998
- ["info", "Virtuozzo::SOAP::Types::Device::InfoType"],
999
- ["data", "Virtuozzo::SOAP::Types::Device::EventType::C_Data", [0, 1]]
998
+ ["info", "Virtuozzo::SOAP::Types::Devm::InfoType"],
999
+ ["data", "Virtuozzo::SOAP::Types::Devm::EventType::C_Data", [0, 1]]
1000
1000
  ]
1001
1001
  )
1002
1002
 
1003
1003
  EncodedRegistry.register(
1004
- :class => Virtuozzo::SOAP::Types::Device::EventType::C_Data,
1004
+ :class => Virtuozzo::SOAP::Types::Devm::EventType::C_Data,
1005
1005
  :schema_name => XSD::QName.new(NsTypes, "data"),
1006
1006
  :is_anonymous => true,
1007
1007
  :schema_qualified => true,
1008
1008
  :schema_element => [
1009
- ["event_data", "Virtuozzo::SOAP::Types::Device::Event_dataType"]
1009
+ ["event_data", "Virtuozzo::SOAP::Types::Devm::Event_dataType"]
1010
1010
  ]
1011
1011
  )
1012
1012
 
1013
1013
  EncodedRegistry.register(
1014
- :class => Virtuozzo::SOAP::Types::Device::InfoType,
1014
+ :class => Virtuozzo::SOAP::Types::Devm::InfoType,
1015
1015
  :schema_type => XSD::QName.new(NsTypes, "infoType"),
1016
1016
  :schema_element => [
1017
1017
  ["message", "SOAP::SOAPBase64"],
1018
1018
  ["translate", nil, [0, 1]],
1019
- ["parameter", "Virtuozzo::SOAP::Types::Device::InfoType[]", [0, nil]],
1019
+ ["parameter", "Virtuozzo::SOAP::Types::Devm::InfoType[]", [0, nil]],
1020
1020
  ["name", "SOAP::SOAPString"]
1021
1021
  ]
1022
1022
  )
1023
1023
 
1024
1024
  EncodedRegistry.register(
1025
- :class => Virtuozzo::SOAP::Types::Device::AceType,
1025
+ :class => Virtuozzo::SOAP::Types::Devm::AceType,
1026
1026
  :schema_type => XSD::QName.new(NsTypes, "aceType"),
1027
1027
  :schema_element => [
1028
1028
  ["type", "SOAP::SOAPInt"],
@@ -1032,27 +1032,27 @@ module Virtuozzo # :nodoc:
1032
1032
  )
1033
1033
 
1034
1034
  EncodedRegistry.register(
1035
- :class => Virtuozzo::SOAP::Types::Device::Security_descriptorType,
1035
+ :class => Virtuozzo::SOAP::Types::Devm::Security_descriptorType,
1036
1036
  :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
1037
1037
  :schema_element => [
1038
1038
  ["owner", nil],
1039
1039
  ["group", nil],
1040
- ["dacl", "Virtuozzo::SOAP::Types::Device::Security_descriptorType::Dacl", [0, 1]]
1040
+ ["dacl", "Virtuozzo::SOAP::Types::Devm::Security_descriptorType::Dacl", [0, 1]]
1041
1041
  ]
1042
1042
  )
1043
1043
 
1044
1044
  EncodedRegistry.register(
1045
- :class => Virtuozzo::SOAP::Types::Device::Security_descriptorType::Dacl,
1045
+ :class => Virtuozzo::SOAP::Types::Devm::Security_descriptorType::Dacl,
1046
1046
  :schema_name => XSD::QName.new(NsTypes, "dacl"),
1047
1047
  :is_anonymous => true,
1048
1048
  :schema_qualified => true,
1049
1049
  :schema_element => [
1050
- ["ace", "Virtuozzo::SOAP::Types::Device::AceType[]", [0, nil]]
1050
+ ["ace", "Virtuozzo::SOAP::Types::Devm::AceType[]", [0, nil]]
1051
1051
  ]
1052
1052
  )
1053
1053
 
1054
1054
  EncodedRegistry.register(
1055
- :class => Virtuozzo::SOAP::Types::Device::Env_security_objectType,
1055
+ :class => Virtuozzo::SOAP::Types::Devm::Env_security_objectType,
1056
1056
  :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
1057
1057
  :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
1058
1058
  :schema_element => [
@@ -1061,19 +1061,19 @@ module Virtuozzo # :nodoc:
1061
1061
  )
1062
1062
 
1063
1063
  EncodedRegistry.register(
1064
- :class => Virtuozzo::SOAP::Types::Device::Net_deviceType,
1064
+ :class => Virtuozzo::SOAP::Types::Devm::Net_deviceType,
1065
1065
  :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
1066
1066
  :schema_element => [
1067
1067
  ["id", "SOAP::SOAPString", [0, 1]],
1068
- ["ip_address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
1068
+ ["ip_address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
1069
1069
  ["dhcp", nil, [0, 1]],
1070
1070
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
1071
- ["status", "Virtuozzo::SOAP::Types::Device::Net_deviceType::Status", [0, 1]]
1071
+ ["status", "Virtuozzo::SOAP::Types::Devm::Net_deviceType::Status", [0, 1]]
1072
1072
  ]
1073
1073
  )
1074
1074
 
1075
1075
  EncodedRegistry.register(
1076
- :class => Virtuozzo::SOAP::Types::Device::Net_deviceType::Status,
1076
+ :class => Virtuozzo::SOAP::Types::Devm::Net_deviceType::Status,
1077
1077
  :schema_name => XSD::QName.new(NsTypes, "status"),
1078
1078
  :is_anonymous => true,
1079
1079
  :schema_qualified => true,
@@ -1084,7 +1084,7 @@ module Virtuozzo # :nodoc:
1084
1084
  )
1085
1085
 
1086
1086
  EncodedRegistry.register(
1087
- :class => Virtuozzo::SOAP::Types::Device::Voc_parameterType,
1087
+ :class => Virtuozzo::SOAP::Types::Devm::Voc_parameterType,
1088
1088
  :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
1089
1089
  :schema_element => [
1090
1090
  ["id", "SOAP::SOAPString"],
@@ -1103,31 +1103,31 @@ module Virtuozzo # :nodoc:
1103
1103
  )
1104
1104
 
1105
1105
  EncodedRegistry.register(
1106
- :class => Virtuozzo::SOAP::Types::Device::VocabularyType,
1106
+ :class => Virtuozzo::SOAP::Types::Devm::VocabularyType,
1107
1107
  :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
1108
1108
  :schema_element => [
1109
1109
  ["name", "SOAP::SOAPString"],
1110
- ["parameter", "Virtuozzo::SOAP::Types::Device::Voc_parameterType[]", [0, nil]],
1111
- ["category", "Virtuozzo::SOAP::Types::Device::Voc_parameterType[]", [0, nil]]
1110
+ ["parameter", "Virtuozzo::SOAP::Types::Devm::Voc_parameterType[]", [0, nil]],
1111
+ ["category", "Virtuozzo::SOAP::Types::Devm::Voc_parameterType[]", [0, nil]]
1112
1112
  ]
1113
1113
  )
1114
1114
 
1115
1115
  EncodedRegistry.register(
1116
- :class => Virtuozzo::SOAP::Types::Device::Net_nicType,
1116
+ :class => Virtuozzo::SOAP::Types::Devm::Net_nicType,
1117
1117
  :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
1118
1118
  :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
1119
1119
  :schema_element => [
1120
1120
  ["id", "SOAP::SOAPString", [0, 1]],
1121
- ["ip_address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
1121
+ ["ip_address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
1122
1122
  ["dhcp", nil, [0, 1]],
1123
1123
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
1124
- ["status", "Virtuozzo::SOAP::Types::Device::Net_nicType::Status", [0, 1]],
1124
+ ["status", "Virtuozzo::SOAP::Types::Devm::Net_nicType::Status", [0, 1]],
1125
1125
  ["mac_address", "SOAP::SOAPString", [0, 1]]
1126
1126
  ]
1127
1127
  )
1128
1128
 
1129
1129
  EncodedRegistry.register(
1130
- :class => Virtuozzo::SOAP::Types::Device::Net_nicType::Status,
1130
+ :class => Virtuozzo::SOAP::Types::Devm::Net_nicType::Status,
1131
1131
  :schema_name => XSD::QName.new(NsTypes, "status"),
1132
1132
  :is_anonymous => true,
1133
1133
  :schema_qualified => true,
@@ -1138,7 +1138,7 @@ module Virtuozzo # :nodoc:
1138
1138
  )
1139
1139
 
1140
1140
  EncodedRegistry.register(
1141
- :class => Virtuozzo::SOAP::Types::Device::Perf_statType,
1141
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_statType,
1142
1142
  :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
1143
1143
  :schema_element => [
1144
1144
  ["cur", "SOAP::SOAPAnySimpleType"],
@@ -1149,63 +1149,63 @@ module Virtuozzo # :nodoc:
1149
1149
  )
1150
1150
 
1151
1151
  EncodedRegistry.register(
1152
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType,
1152
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType,
1153
1153
  :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
1154
1154
  :schema_element => [
1155
1155
  ["eid", nil],
1156
- ["v_class", ["Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
1157
- ["interval", "Virtuozzo::SOAP::Types::Device::IntervalType"]
1156
+ ["v_class", ["Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
1157
+ ["interval", "Virtuozzo::SOAP::Types::Devm::IntervalType"]
1158
1158
  ]
1159
1159
  )
1160
1160
 
1161
1161
  EncodedRegistry.register(
1162
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance::Counter,
1162
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance::Counter,
1163
1163
  :schema_name => XSD::QName.new(NsTypes, "counter"),
1164
1164
  :is_anonymous => true,
1165
1165
  :schema_qualified => true,
1166
1166
  :schema_element => [
1167
1167
  ["name", "SOAP::SOAPString"],
1168
- ["value", "Virtuozzo::SOAP::Types::Device::Perf_statType"]
1168
+ ["value", "Virtuozzo::SOAP::Types::Devm::Perf_statType"]
1169
1169
  ]
1170
1170
  )
1171
1171
 
1172
1172
  EncodedRegistry.register(
1173
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance,
1173
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance,
1174
1174
  :schema_name => XSD::QName.new(NsTypes, "instance"),
1175
1175
  :is_anonymous => true,
1176
1176
  :schema_qualified => true,
1177
1177
  :schema_element => [
1178
1178
  ["name", "SOAP::SOAPString", [0, 1]],
1179
- ["counter", "Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
1179
+ ["counter", "Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
1180
1180
  ]
1181
1181
  )
1182
1182
 
1183
1183
  EncodedRegistry.register(
1184
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class,
1184
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class,
1185
1185
  :schema_name => XSD::QName.new(NsTypes, "class"),
1186
1186
  :is_anonymous => true,
1187
1187
  :schema_qualified => true,
1188
1188
  :schema_element => [
1189
1189
  ["name", "SOAP::SOAPString"],
1190
- ["instance", "Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance[]", [1, nil]]
1190
+ ["instance", "Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance[]", [1, nil]]
1191
1191
  ]
1192
1192
  )
1193
1193
 
1194
1194
  EncodedRegistry.register(
1195
- :class => Virtuozzo::SOAP::Types::Device::Log_options_baseType,
1195
+ :class => Virtuozzo::SOAP::Types::Devm::Log_options_baseType,
1196
1196
  :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
1197
1197
  :schema_element => []
1198
1198
  )
1199
1199
 
1200
1200
  EncodedRegistry.register(
1201
- :class => Virtuozzo::SOAP::Types::Device::Log_optionsType,
1201
+ :class => Virtuozzo::SOAP::Types::Devm::Log_optionsType,
1202
1202
  :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
1203
1203
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1204
1204
  :schema_element => []
1205
1205
  )
1206
1206
 
1207
1207
  EncodedRegistry.register(
1208
- :class => Virtuozzo::SOAP::Types::Device::Virtuozzo_configType,
1208
+ :class => Virtuozzo::SOAP::Types::Devm::Virtuozzo_configType,
1209
1209
  :schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
1210
1210
  :schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
1211
1211
  :schema_element => [
@@ -1214,7 +1214,7 @@ module Virtuozzo # :nodoc:
1214
1214
  )
1215
1215
 
1216
1216
  EncodedRegistry.register(
1217
- :class => Virtuozzo::SOAP::Types::Device::Log_optionsType_,
1217
+ :class => Virtuozzo::SOAP::Types::Devm::Log_optionsType_,
1218
1218
  :schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
1219
1219
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1220
1220
  :schema_element => [
@@ -1223,7 +1223,7 @@ module Virtuozzo # :nodoc:
1223
1223
  )
1224
1224
 
1225
1225
  EncodedRegistry.register(
1226
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_,
1226
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_,
1227
1227
  :schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
1228
1228
  :schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
1229
1229
  :schema_element => [
@@ -1231,46 +1231,46 @@ module Virtuozzo # :nodoc:
1231
1231
  ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
1232
1232
  ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
1233
1233
  ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
1234
- ["address", ["Virtuozzo::SOAP::Types::Device::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
1234
+ ["address", ["Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
1235
1235
  ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
1236
- ["os", ["Virtuozzo::SOAP::Types::Device::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1236
+ ["os", ["Virtuozzo::SOAP::Types::Devm::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1237
1237
  ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
1238
1238
  ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
1239
1239
  ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
1240
1240
  ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
1241
1241
  ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
1242
1242
  ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
1243
- ["qos", ["Virtuozzo::SOAP::Types::Device::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
1243
+ ["qos", ["Virtuozzo::SOAP::Types::Devm::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
1244
1244
  ["veid", nil, [0, 1]],
1245
1245
  ["ve_root", "SOAP::SOAPString", [0, 1]],
1246
1246
  ["ve_private", "SOAP::SOAPString", [0, 1]],
1247
1247
  ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
1248
- ["template", "Virtuozzo::SOAP::Types::Device::TemplateType[]", [0, nil]],
1248
+ ["template", "Virtuozzo::SOAP::Types::Devm::TemplateType[]", [0, nil]],
1249
1249
  ["disabled", "SOAP::SOAPBoolean", [0, 1]],
1250
1250
  ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
1251
- ["os_template", "Virtuozzo::SOAP::Types::Device::TemplateType", [0, 1]],
1252
- ["distribution", "Virtuozzo::SOAP::Types::Device::TemplateType", [0, 1]],
1253
- ["capability", "Virtuozzo::SOAP::Types::Device::Venv_configType_::Capability[]", [0, nil]],
1251
+ ["os_template", "Virtuozzo::SOAP::Types::Devm::TemplateType", [0, 1]],
1252
+ ["distribution", "Virtuozzo::SOAP::Types::Devm::TemplateType", [0, 1]],
1253
+ ["capability", "Virtuozzo::SOAP::Types::Devm::Venv_configType_::Capability[]", [0, nil]],
1254
1254
  ["iptables", "SOAP::SOAPString[]", [0, nil]],
1255
1255
  ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
1256
1256
  ["class_id", "SOAP::SOAPString", [0, 1]],
1257
- ["ve_type", "Virtuozzo::SOAP::Types::Device::Venv_configType_::Ve_type", [0, 1]],
1257
+ ["ve_type", "Virtuozzo::SOAP::Types::Devm::Venv_configType_::Ve_type", [0, 1]],
1258
1258
  ["offline_service", "SOAP::SOAPString[]", [0, nil]],
1259
1259
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
1260
- ["net_device", "Virtuozzo::SOAP::Types::Device::Net_vethType[]", [0, nil]],
1260
+ ["net_device", "Virtuozzo::SOAP::Types::Devm::Net_vethType[]", [0, nil]],
1261
1261
  ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
1262
1262
  ["ts_mode", "SOAP::SOAPInt", [0, 1]],
1263
1263
  ["uuid", "SOAP::SOAPString", [0, 1]],
1264
1264
  ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
1265
1265
  ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
1266
- ["interface_rate", "Virtuozzo::SOAP::Types::Device::Venv_configType_::Interface_rate[]", [0, nil]],
1266
+ ["interface_rate", "Virtuozzo::SOAP::Types::Devm::Venv_configType_::Interface_rate[]", [0, nil]],
1267
1267
  ["slm_mode", "SOAP::SOAPString", [0, 1]],
1268
1268
  ["origin_sample", "SOAP::SOAPString", [0, 1]]
1269
1269
  ]
1270
1270
  )
1271
1271
 
1272
1272
  EncodedRegistry.register(
1273
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_::Capability,
1273
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_::Capability,
1274
1274
  :schema_name => XSD::QName.new(NsVzatypes, "capability"),
1275
1275
  :is_anonymous => true,
1276
1276
  :schema_qualified => true,
@@ -1281,7 +1281,7 @@ module Virtuozzo # :nodoc:
1281
1281
  )
1282
1282
 
1283
1283
  EncodedRegistry.register(
1284
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_::Ve_type,
1284
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_::Ve_type,
1285
1285
  :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
1286
1286
  :is_anonymous => true,
1287
1287
  :schema_qualified => true,
@@ -1292,7 +1292,7 @@ module Virtuozzo # :nodoc:
1292
1292
  )
1293
1293
 
1294
1294
  EncodedRegistry.register(
1295
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_::Interface_rate,
1295
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_::Interface_rate,
1296
1296
  :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
1297
1297
  :is_anonymous => true,
1298
1298
  :schema_qualified => true,
@@ -1303,19 +1303,19 @@ module Virtuozzo # :nodoc:
1303
1303
  )
1304
1304
 
1305
1305
  EncodedRegistry.register(
1306
- :class => Virtuozzo::SOAP::Types::Device::Vt_settingsType_,
1306
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_settingsType_,
1307
1307
  :schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
1308
1308
  :schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
1309
1309
  :schema_element => [
1310
1310
  ["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
1311
- ["parameter", "Virtuozzo::SOAP::Types::Device::Vt_settingsType_::Parameter[]", [0, nil]],
1312
- ["service", "Virtuozzo::SOAP::Types::Device::Redirect_serviceType[]", [0, nil]],
1313
- ["qos", "Virtuozzo::SOAP::Types::Device::QosType[]", [0, nil]]
1311
+ ["parameter", "Virtuozzo::SOAP::Types::Devm::Vt_settingsType_::Parameter[]", [0, nil]],
1312
+ ["service", "Virtuozzo::SOAP::Types::Devm::Redirect_serviceType[]", [0, nil]],
1313
+ ["qos", "Virtuozzo::SOAP::Types::Devm::QosType[]", [0, nil]]
1314
1314
  ]
1315
1315
  )
1316
1316
 
1317
1317
  EncodedRegistry.register(
1318
- :class => Virtuozzo::SOAP::Types::Device::Vt_settingsType_::Parameter,
1318
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_settingsType_::Parameter,
1319
1319
  :schema_name => XSD::QName.new(NsVzatypes, "parameter"),
1320
1320
  :is_anonymous => true,
1321
1321
  :schema_qualified => true,
@@ -1326,7 +1326,7 @@ module Virtuozzo # :nodoc:
1326
1326
  )
1327
1327
 
1328
1328
  EncodedRegistry.register(
1329
- :class => Virtuozzo::SOAP::Types::Device::Vt_infoType_,
1329
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_infoType_,
1330
1330
  :schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
1331
1331
  :schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
1332
1332
  :schema_element => [
@@ -1338,7 +1338,7 @@ module Virtuozzo # :nodoc:
1338
1338
  )
1339
1339
 
1340
1340
  EncodedRegistry.register(
1341
- :class => Virtuozzo::SOAP::Types::Device::Redirect_serviceType,
1341
+ :class => Virtuozzo::SOAP::Types::Devm::Redirect_serviceType,
1342
1342
  :schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
1343
1343
  :schema_element => [
1344
1344
  ["id", "SOAP::SOAPString"],
@@ -1349,7 +1349,7 @@ module Virtuozzo # :nodoc:
1349
1349
  )
1350
1350
 
1351
1351
  EncodedRegistry.register(
1352
- :class => Virtuozzo::SOAP::Types::Device::TemplateType,
1352
+ :class => Virtuozzo::SOAP::Types::Devm::TemplateType,
1353
1353
  :schema_type => XSD::QName.new(NsVzatypes, "templateType"),
1354
1354
  :schema_element => [
1355
1355
  ["name", "SOAP::SOAPString"],
@@ -1358,13 +1358,13 @@ module Virtuozzo # :nodoc:
1358
1358
  )
1359
1359
 
1360
1360
  EncodedRegistry.register(
1361
- :class => Virtuozzo::SOAP::Types::Device::Package_std_vztemplateType,
1361
+ :class => Virtuozzo::SOAP::Types::Devm::Package_std_vztemplateType,
1362
1362
  :schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
1363
1363
  :schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
1364
1364
  :schema_element => [
1365
1365
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
1366
1366
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
1367
- ["os", ["Virtuozzo::SOAP::Types::Device::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1367
+ ["os", ["Virtuozzo::SOAP::Types::Devm::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1368
1368
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
1369
1369
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
1370
1370
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -1378,13 +1378,13 @@ module Virtuozzo # :nodoc:
1378
1378
  )
1379
1379
 
1380
1380
  EncodedRegistry.register(
1381
- :class => Virtuozzo::SOAP::Types::Device::Package_vztemplateType,
1381
+ :class => Virtuozzo::SOAP::Types::Devm::Package_vztemplateType,
1382
1382
  :schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
1383
1383
  :schema_basetype => XSD::QName.new(NsTypes, "packageType"),
1384
1384
  :schema_element => [
1385
1385
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
1386
1386
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
1387
- ["os", ["Virtuozzo::SOAP::Types::Device::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1387
+ ["os", ["Virtuozzo::SOAP::Types::Devm::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
1388
1388
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
1389
1389
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
1390
1390
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -1397,7 +1397,7 @@ module Virtuozzo # :nodoc:
1397
1397
  )
1398
1398
 
1399
1399
  EncodedRegistry.register(
1400
- :class => Virtuozzo::SOAP::Types::Device::Env_security_objectType_,
1400
+ :class => Virtuozzo::SOAP::Types::Devm::Env_security_objectType_,
1401
1401
  :schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
1402
1402
  :schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
1403
1403
  :schema_element => [
@@ -1406,15 +1406,15 @@ module Virtuozzo # :nodoc:
1406
1406
  )
1407
1407
 
1408
1408
  EncodedRegistry.register(
1409
- :class => Virtuozzo::SOAP::Types::Device::Net_vethType,
1409
+ :class => Virtuozzo::SOAP::Types::Devm::Net_vethType,
1410
1410
  :schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
1411
1411
  :schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
1412
1412
  :schema_element => [
1413
1413
  ["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
1414
- ["ip_address", ["Virtuozzo::SOAP::Types::Device::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
1414
+ ["ip_address", ["Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
1415
1415
  ["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
1416
1416
  ["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
1417
- ["status", ["Virtuozzo::SOAP::Types::Device::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
1417
+ ["status", ["Virtuozzo::SOAP::Types::Devm::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
1418
1418
  ["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
1419
1419
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
1420
1420
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
@@ -1424,7 +1424,7 @@ module Virtuozzo # :nodoc:
1424
1424
  )
1425
1425
 
1426
1426
  EncodedRegistry.register(
1427
- :class => Virtuozzo::SOAP::Types::Device::Net_vethType::Status,
1427
+ :class => Virtuozzo::SOAP::Types::Devm::Net_vethType::Status,
1428
1428
  :schema_name => XSD::QName.new(NsTypes, "status"),
1429
1429
  :is_anonymous => true,
1430
1430
  :schema_qualified => true,
@@ -1435,52 +1435,52 @@ module Virtuozzo # :nodoc:
1435
1435
  )
1436
1436
 
1437
1437
  EncodedRegistry.register(
1438
- :class => Virtuozzo::SOAP::Types::Device::EnvType_,
1438
+ :class => Virtuozzo::SOAP::Types::Devm::EnvType_,
1439
1439
  :schema_type => XSD::QName.new(NsVzatypes, "envType"),
1440
1440
  :schema_basetype => XSD::QName.new(NsTypes, "envType"),
1441
1441
  :schema_element => [
1442
1442
  ["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
1443
1443
  ["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
1444
- ["status", ["Virtuozzo::SOAP::Types::Device::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
1444
+ ["status", ["Virtuozzo::SOAP::Types::Devm::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
1445
1445
  ["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
1446
- ["config", ["Virtuozzo::SOAP::Types::Device::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
1447
- ["virtual_config", ["Virtuozzo::SOAP::Types::Device::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
1446
+ ["config", ["Virtuozzo::SOAP::Types::Devm::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
1447
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Devm::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
1448
1448
  ]
1449
1449
  )
1450
1450
 
1451
1451
  EncodedRegistry.register(
1452
- :class => Virtuozzo::SOAP::Types::Device::DevmType,
1452
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType,
1453
1453
  :schema_type => XSD::QName.new(NsDevm, "devmType"),
1454
1454
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1455
1455
  :schema_element => [ :choice,
1456
- ["configuration", ["Virtuozzo::SOAP::Types::Device::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1457
- ["ok", ["Virtuozzo::SOAP::Types::Device::DevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1458
- ["error", ["Virtuozzo::SOAP::Types::Device::DevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1456
+ ["configuration", ["Virtuozzo::SOAP::Types::Devm::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1457
+ ["ok", ["Virtuozzo::SOAP::Types::Devm::DevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1458
+ ["error", ["Virtuozzo::SOAP::Types::Devm::DevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1459
1459
  [
1460
- ["get_mounts", "Virtuozzo::SOAP::Types::Device::Get_mounts[]", [0, 1]],
1461
- ["new_mount", "Virtuozzo::SOAP::Types::Device::New_mount[]", [0, 1]],
1462
- ["umount", "Virtuozzo::SOAP::Types::Device::Umount[]", [0, 1]],
1463
- ["get_info", "Virtuozzo::SOAP::Types::Device::Get_info[]", [0, 1]],
1464
- ["create_drive", "Virtuozzo::SOAP::Types::Device::Create_drive[]", [0, 1]],
1465
- ["delete_drive", "Virtuozzo::SOAP::Types::Device::Delete_drive[]", [0, 1]],
1466
- ["resize_drive", "Virtuozzo::SOAP::Types::Device::Resize_drive[]", [0, 1]],
1467
- ["format_drive", "Virtuozzo::SOAP::Types::Device::Format_drive[]", [0, 1]],
1468
- ["list_device", "Virtuozzo::SOAP::Types::Device::List_device[]", [0, 1]],
1469
- ["forward_device", "Virtuozzo::SOAP::Types::Device::Forward_device[]", [0, 1]],
1470
- ["remove_forward", "Virtuozzo::SOAP::Types::Device::Remove_forward[]", [0, 1]],
1471
- ["list_forward", "Virtuozzo::SOAP::Types::Device::List_forward[]", [0, 1]]
1460
+ ["get_mounts", "Virtuozzo::SOAP::Types::Devm::Get_mounts[]", [0, 1]],
1461
+ ["new_mount", "Virtuozzo::SOAP::Types::Devm::New_mount[]", [0, 1]],
1462
+ ["umount", "Virtuozzo::SOAP::Types::Devm::Umount[]", [0, 1]],
1463
+ ["get_info", "Virtuozzo::SOAP::Types::Devm::Get_info[]", [0, 1]],
1464
+ ["create_drive", "Virtuozzo::SOAP::Types::Devm::Create_drive[]", [0, 1]],
1465
+ ["delete_drive", "Virtuozzo::SOAP::Types::Devm::Delete_drive[]", [0, 1]],
1466
+ ["resize_drive", "Virtuozzo::SOAP::Types::Devm::Resize_drive[]", [0, 1]],
1467
+ ["format_drive", "Virtuozzo::SOAP::Types::Devm::Format_drive[]", [0, 1]],
1468
+ ["list_device", "Virtuozzo::SOAP::Types::Devm::List_device[]", [0, 1]],
1469
+ ["forward_device", "Virtuozzo::SOAP::Types::Devm::Forward_device[]", [0, 1]],
1470
+ ["remove_forward", "Virtuozzo::SOAP::Types::Devm::Remove_forward[]", [0, 1]],
1471
+ ["list_forward", "Virtuozzo::SOAP::Types::Devm::List_forward[]", [0, 1]]
1472
1472
  ],
1473
1473
  [
1474
- ["mount", "Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", [0, nil]],
1475
- ["device_info", "Virtuozzo::SOAP::Types::Device::Device_info[]", [0, 1]],
1476
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType[]", [0, 1]],
1477
- ["forward", "Virtuozzo::SOAP::Types::Device::Forward[]", [0, 1]]
1474
+ ["mount", "Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", [0, nil]],
1475
+ ["device_info", "Virtuozzo::SOAP::Types::Devm::Device_info[]", [0, 1]],
1476
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", [0, 1]],
1477
+ ["forward", "Virtuozzo::SOAP::Types::Devm::Forward[]", [0, 1]]
1478
1478
  ]
1479
1479
  ]
1480
1480
  )
1481
1481
 
1482
1482
  EncodedRegistry.register(
1483
- :class => Virtuozzo::SOAP::Types::Device::DevmType::Ok,
1483
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType::Ok,
1484
1484
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1485
1485
  :is_anonymous => true,
1486
1486
  :schema_qualified => true,
@@ -1488,7 +1488,7 @@ module Virtuozzo # :nodoc:
1488
1488
  )
1489
1489
 
1490
1490
  EncodedRegistry.register(
1491
- :class => Virtuozzo::SOAP::Types::Device::DevmType::Error,
1491
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType::Error,
1492
1492
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1493
1493
  :is_anonymous => true,
1494
1494
  :schema_qualified => true,
@@ -1499,7 +1499,7 @@ module Virtuozzo # :nodoc:
1499
1499
  )
1500
1500
 
1501
1501
  EncodedRegistry.register(
1502
- :class => Virtuozzo::SOAP::Types::Device::Mount_deviceType,
1502
+ :class => Virtuozzo::SOAP::Types::Devm::Mount_deviceType,
1503
1503
  :schema_type => XSD::QName.new(NsDevm, "mount_deviceType"),
1504
1504
  :schema_element => [
1505
1505
  ["permanent", "SOAP::SOAPBoolean", [0, 1]],
@@ -1513,7 +1513,7 @@ module Virtuozzo # :nodoc:
1513
1513
  )
1514
1514
 
1515
1515
  EncodedRegistry.register(
1516
- :class => Virtuozzo::SOAP::Types::Device::Common_deviceType,
1516
+ :class => Virtuozzo::SOAP::Types::Devm::Common_deviceType,
1517
1517
  :schema_type => XSD::QName.new(NsDevm, "common_deviceType"),
1518
1518
  :schema_element => [
1519
1519
  ["name", "SOAP::SOAPString", [0, 1]],
@@ -1522,7 +1522,7 @@ module Virtuozzo # :nodoc:
1522
1522
  )
1523
1523
 
1524
1524
  EncodedRegistry.register(
1525
- :class => Virtuozzo::SOAP::Types::Device::Windows_deviceType,
1525
+ :class => Virtuozzo::SOAP::Types::Devm::Windows_deviceType,
1526
1526
  :schema_type => XSD::QName.new(NsDevm, "windows_deviceType"),
1527
1527
  :schema_basetype => XSD::QName.new(NsDevm, "common_deviceType"),
1528
1528
  :schema_element => [
@@ -1533,7 +1533,7 @@ module Virtuozzo # :nodoc:
1533
1533
  )
1534
1534
 
1535
1535
  EncodedRegistry.register(
1536
- :class => Virtuozzo::SOAP::Types::Device::Scsi_deviceType,
1536
+ :class => Virtuozzo::SOAP::Types::Devm::Scsi_deviceType,
1537
1537
  :schema_type => XSD::QName.new(NsDevm, "scsi_deviceType"),
1538
1538
  :schema_basetype => XSD::QName.new(NsDevm, "windows_deviceType"),
1539
1539
  :schema_element => [
@@ -1544,48 +1544,48 @@ module Virtuozzo # :nodoc:
1544
1544
  )
1545
1545
 
1546
1546
  EncodedRegistry.register(
1547
- :class => Virtuozzo::SOAP::Types::Device::Transport_type,
1547
+ :class => Virtuozzo::SOAP::Types::Devm::Transport_type,
1548
1548
  :schema_type => XSD::QName.new(NsTypes, "transport_type")
1549
1549
  )
1550
1550
 
1551
1551
  EncodedRegistry.register(
1552
- :class => Virtuozzo::SOAP::Types::Device::Yes_no_type,
1552
+ :class => Virtuozzo::SOAP::Types::Devm::Yes_no_type,
1553
1553
  :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
1554
1554
  )
1555
1555
 
1556
1556
  LiteralRegistry.register(
1557
- :class => Virtuozzo::SOAP::Types::Device::VzadevmType,
1557
+ :class => Virtuozzo::SOAP::Types::Devm::VzadevmType,
1558
1558
  :schema_type => XSD::QName.new(NsVzadevm, "vzadevmType"),
1559
1559
  :schema_basetype => XSD::QName.new(NsDevm, "devmType"),
1560
1560
  :schema_element => [
1561
- ["configuration", ["Virtuozzo::SOAP::Types::Device::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1562
- ["ok", ["Virtuozzo::SOAP::Types::Device::VzadevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1563
- ["error", ["Virtuozzo::SOAP::Types::Device::VzadevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1561
+ ["configuration", ["Virtuozzo::SOAP::Types::Devm::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
1562
+ ["ok", ["Virtuozzo::SOAP::Types::Devm::VzadevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1563
+ ["error", ["Virtuozzo::SOAP::Types::Devm::VzadevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1564
1564
  [
1565
- ["get_mounts", ["Virtuozzo::SOAP::Types::Device::Get_mounts[]", XSD::QName.new(NsDevm, "get_mounts")], [0, 1]],
1566
- ["new_mount", ["Virtuozzo::SOAP::Types::Device::New_mount[]", XSD::QName.new(NsDevm, "new_mount")], [0, 1]],
1567
- ["umount", ["Virtuozzo::SOAP::Types::Device::Umount[]", XSD::QName.new(NsDevm, "umount")], [0, 1]],
1568
- ["get_info", ["Virtuozzo::SOAP::Types::Device::Get_info[]", XSD::QName.new(NsDevm, "get_info")], [0, 1]],
1569
- ["create_drive", ["Virtuozzo::SOAP::Types::Device::Create_drive[]", XSD::QName.new(NsDevm, "create_drive")], [0, 1]],
1570
- ["delete_drive", ["Virtuozzo::SOAP::Types::Device::Delete_drive[]", XSD::QName.new(NsDevm, "delete_drive")], [0, 1]],
1571
- ["resize_drive", ["Virtuozzo::SOAP::Types::Device::Resize_drive[]", XSD::QName.new(NsDevm, "resize_drive")], [0, 1]],
1572
- ["format_drive", ["Virtuozzo::SOAP::Types::Device::Format_drive[]", XSD::QName.new(NsDevm, "format_drive")], [0, 1]],
1573
- ["list_device", ["Virtuozzo::SOAP::Types::Device::List_device[]", XSD::QName.new(NsDevm, "list_device")], [0, 1]],
1574
- ["forward_device", ["Virtuozzo::SOAP::Types::Device::Forward_device[]", XSD::QName.new(NsDevm, "forward_device")], [0, 1]],
1575
- ["remove_forward", ["Virtuozzo::SOAP::Types::Device::Remove_forward[]", XSD::QName.new(NsDevm, "remove_forward")], [0, 1]],
1576
- ["list_forward", ["Virtuozzo::SOAP::Types::Device::List_forward[]", XSD::QName.new(NsDevm, "list_forward")], [0, 1]]
1565
+ ["get_mounts", ["Virtuozzo::SOAP::Types::Devm::Get_mounts[]", XSD::QName.new(NsDevm, "get_mounts")], [0, 1]],
1566
+ ["new_mount", ["Virtuozzo::SOAP::Types::Devm::New_mount[]", XSD::QName.new(NsDevm, "new_mount")], [0, 1]],
1567
+ ["umount", ["Virtuozzo::SOAP::Types::Devm::Umount[]", XSD::QName.new(NsDevm, "umount")], [0, 1]],
1568
+ ["get_info", ["Virtuozzo::SOAP::Types::Devm::Get_info[]", XSD::QName.new(NsDevm, "get_info")], [0, 1]],
1569
+ ["create_drive", ["Virtuozzo::SOAP::Types::Devm::Create_drive[]", XSD::QName.new(NsDevm, "create_drive")], [0, 1]],
1570
+ ["delete_drive", ["Virtuozzo::SOAP::Types::Devm::Delete_drive[]", XSD::QName.new(NsDevm, "delete_drive")], [0, 1]],
1571
+ ["resize_drive", ["Virtuozzo::SOAP::Types::Devm::Resize_drive[]", XSD::QName.new(NsDevm, "resize_drive")], [0, 1]],
1572
+ ["format_drive", ["Virtuozzo::SOAP::Types::Devm::Format_drive[]", XSD::QName.new(NsDevm, "format_drive")], [0, 1]],
1573
+ ["list_device", ["Virtuozzo::SOAP::Types::Devm::List_device[]", XSD::QName.new(NsDevm, "list_device")], [0, 1]],
1574
+ ["forward_device", ["Virtuozzo::SOAP::Types::Devm::Forward_device[]", XSD::QName.new(NsDevm, "forward_device")], [0, 1]],
1575
+ ["remove_forward", ["Virtuozzo::SOAP::Types::Devm::Remove_forward[]", XSD::QName.new(NsDevm, "remove_forward")], [0, 1]],
1576
+ ["list_forward", ["Virtuozzo::SOAP::Types::Devm::List_forward[]", XSD::QName.new(NsDevm, "list_forward")], [0, 1]]
1577
1577
  ],
1578
1578
  [
1579
- ["mount", ["Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", XSD::QName.new(NsDevm, "mount")], [0, nil]],
1580
- ["device_info", ["Virtuozzo::SOAP::Types::Device::Device_info[]", XSD::QName.new(NsDevm, "device_info")], [0, 1]],
1581
- ["device", ["Virtuozzo::SOAP::Types::Device::Common_deviceType[]", XSD::QName.new(NsDevm, "device")], [0, 1]],
1582
- ["forward", ["Virtuozzo::SOAP::Types::Device::Forward[]", XSD::QName.new(NsDevm, "forward")], [0, 1]]
1579
+ ["mount", ["Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", XSD::QName.new(NsDevm, "mount")], [0, nil]],
1580
+ ["device_info", ["Virtuozzo::SOAP::Types::Devm::Device_info[]", XSD::QName.new(NsDevm, "device_info")], [0, 1]],
1581
+ ["device", ["Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", XSD::QName.new(NsDevm, "device")], [0, 1]],
1582
+ ["forward", ["Virtuozzo::SOAP::Types::Devm::Forward[]", XSD::QName.new(NsDevm, "forward")], [0, 1]]
1583
1583
  ]
1584
1584
  ]
1585
1585
  )
1586
1586
 
1587
1587
  LiteralRegistry.register(
1588
- :class => Virtuozzo::SOAP::Types::Device::VzadevmType::Ok,
1588
+ :class => Virtuozzo::SOAP::Types::Devm::VzadevmType::Ok,
1589
1589
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1590
1590
  :is_anonymous => true,
1591
1591
  :schema_qualified => true,
@@ -1593,7 +1593,7 @@ module Virtuozzo # :nodoc:
1593
1593
  )
1594
1594
 
1595
1595
  LiteralRegistry.register(
1596
- :class => Virtuozzo::SOAP::Types::Device::VzadevmType::Error,
1596
+ :class => Virtuozzo::SOAP::Types::Devm::VzadevmType::Error,
1597
1597
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1598
1598
  :is_anonymous => true,
1599
1599
  :schema_qualified => true,
@@ -1604,15 +1604,15 @@ module Virtuozzo # :nodoc:
1604
1604
  )
1605
1605
 
1606
1606
  LiteralRegistry.register(
1607
- :class => Virtuozzo::SOAP::Types::Device::Packet_headerType,
1607
+ :class => Virtuozzo::SOAP::Types::Devm::Packet_headerType,
1608
1608
  :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
1609
1609
  :schema_element => [
1610
- ["auth", "Virtuozzo::SOAP::Types::Device::AuthType", [0, 1]],
1610
+ ["auth", "Virtuozzo::SOAP::Types::Devm::AuthType", [0, 1]],
1611
1611
  ["cookie", "SOAP::SOAPString", [0, 1]],
1612
1612
  ["target", "SOAP::SOAPString[]", [0, nil]],
1613
1613
  ["origin", "SOAP::SOAPString", [0, 1]],
1614
- ["src", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
1615
- ["dst", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
1614
+ ["src", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
1615
+ ["dst", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
1616
1616
  ["session", "SOAP::SOAPString", [0, 1]]
1617
1617
  ],
1618
1618
  :schema_attribute => {
@@ -1630,26 +1630,26 @@ module Virtuozzo # :nodoc:
1630
1630
  )
1631
1631
 
1632
1632
  LiteralRegistry.register(
1633
- :class => Virtuozzo::SOAP::Types::Device::OperatorType,
1633
+ :class => Virtuozzo::SOAP::Types::Devm::OperatorType,
1634
1634
  :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
1635
1635
  :schema_element => [ :choice,
1636
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"]
1636
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"]
1637
1637
  ]
1638
1638
  )
1639
1639
 
1640
1640
  LiteralRegistry.register(
1641
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType,
1641
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType,
1642
1642
  :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
1643
1643
  :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
1644
1644
  :schema_element => [ :choice,
1645
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"],
1646
- ["ok", "Virtuozzo::SOAP::Types::Device::Operator_functionalType::Ok[]"],
1647
- ["error", "Virtuozzo::SOAP::Types::Device::Operator_functionalType::Error[]"]
1645
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"],
1646
+ ["ok", "Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Ok[]"],
1647
+ ["error", "Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Error[]"]
1648
1648
  ]
1649
1649
  )
1650
1650
 
1651
1651
  LiteralRegistry.register(
1652
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType::Ok,
1652
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Ok,
1653
1653
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1654
1654
  :is_anonymous => true,
1655
1655
  :schema_qualified => true,
@@ -1657,7 +1657,7 @@ module Virtuozzo # :nodoc:
1657
1657
  )
1658
1658
 
1659
1659
  LiteralRegistry.register(
1660
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType::Error,
1660
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Error,
1661
1661
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1662
1662
  :is_anonymous => true,
1663
1663
  :schema_qualified => true,
@@ -1668,24 +1668,24 @@ module Virtuozzo # :nodoc:
1668
1668
  )
1669
1669
 
1670
1670
  LiteralRegistry.register(
1671
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType,
1671
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType,
1672
1672
  :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
1673
1673
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1674
1674
  :schema_element => [ :choice,
1675
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"],
1676
- ["ok", "Virtuozzo::SOAP::Types::Device::Operator_periodicType::Ok[]"],
1677
- ["error", "Virtuozzo::SOAP::Types::Device::Operator_periodicType::Error[]"],
1675
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"],
1676
+ ["ok", "Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Ok[]"],
1677
+ ["error", "Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Error[]"],
1678
1678
  [ :choice,
1679
- ["start_monitor", "Virtuozzo::SOAP::Types::Device::Start_monitorType"],
1680
- ["stop_monitor", "Virtuozzo::SOAP::Types::Device::Stop_monitorType"],
1681
- ["set_period", "Virtuozzo::SOAP::Types::Device::Set_periodType", [0, 1]],
1679
+ ["start_monitor", "Virtuozzo::SOAP::Types::Devm::Start_monitorType"],
1680
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Devm::Stop_monitorType"],
1681
+ ["set_period", "Virtuozzo::SOAP::Types::Devm::Set_periodType", [0, 1]],
1682
1682
  ["report", nil, [0, 1]]
1683
1683
  ]
1684
1684
  ]
1685
1685
  )
1686
1686
 
1687
1687
  LiteralRegistry.register(
1688
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType::Ok,
1688
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Ok,
1689
1689
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
1690
1690
  :is_anonymous => true,
1691
1691
  :schema_qualified => true,
@@ -1693,7 +1693,7 @@ module Virtuozzo # :nodoc:
1693
1693
  )
1694
1694
 
1695
1695
  LiteralRegistry.register(
1696
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType::Error,
1696
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Error,
1697
1697
  :schema_name => XSD::QName.new(NsProtocol, "error"),
1698
1698
  :is_anonymous => true,
1699
1699
  :schema_qualified => true,
@@ -1704,7 +1704,7 @@ module Virtuozzo # :nodoc:
1704
1704
  )
1705
1705
 
1706
1706
  LiteralRegistry.register(
1707
- :class => Virtuozzo::SOAP::Types::Device::Set_periodType,
1707
+ :class => Virtuozzo::SOAP::Types::Devm::Set_periodType,
1708
1708
  :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
1709
1709
  :schema_element => [
1710
1710
  ["collect", "SOAP::SOAPInt"],
@@ -1714,7 +1714,7 @@ module Virtuozzo # :nodoc:
1714
1714
  )
1715
1715
 
1716
1716
  LiteralRegistry.register(
1717
- :class => Virtuozzo::SOAP::Types::Device::Start_monitorType,
1717
+ :class => Virtuozzo::SOAP::Types::Devm::Start_monitorType,
1718
1718
  :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
1719
1719
  :schema_element => [
1720
1720
  ["period", "SOAP::SOAPInt"],
@@ -1723,7 +1723,7 @@ module Virtuozzo # :nodoc:
1723
1723
  )
1724
1724
 
1725
1725
  LiteralRegistry.register(
1726
- :class => Virtuozzo::SOAP::Types::Device::Stop_monitorType,
1726
+ :class => Virtuozzo::SOAP::Types::Devm::Stop_monitorType,
1727
1727
  :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
1728
1728
  :schema_element => [
1729
1729
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -1731,7 +1731,7 @@ module Virtuozzo # :nodoc:
1731
1731
  )
1732
1732
 
1733
1733
  LiteralRegistry.register(
1734
- :class => Virtuozzo::SOAP::Types::Device::AuthType,
1734
+ :class => Virtuozzo::SOAP::Types::Devm::AuthType,
1735
1735
  :schema_type => XSD::QName.new(NsProtocol, "authType"),
1736
1736
  :schema_element => [
1737
1737
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -1739,7 +1739,7 @@ module Virtuozzo # :nodoc:
1739
1739
  )
1740
1740
 
1741
1741
  LiteralRegistry.register(
1742
- :class => Virtuozzo::SOAP::Types::Device::Event_configurationType,
1742
+ :class => Virtuozzo::SOAP::Types::Devm::Event_configurationType,
1743
1743
  :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
1744
1744
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1745
1745
  :schema_element => [
@@ -1748,7 +1748,7 @@ module Virtuozzo # :nodoc:
1748
1748
  )
1749
1749
 
1750
1750
  LiteralRegistry.register(
1751
- :class => Virtuozzo::SOAP::Types::Device::Periodic_configurationType,
1751
+ :class => Virtuozzo::SOAP::Types::Devm::Periodic_configurationType,
1752
1752
  :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
1753
1753
  :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1754
1754
  :schema_element => [
@@ -1760,7 +1760,7 @@ module Virtuozzo # :nodoc:
1760
1760
  )
1761
1761
 
1762
1762
  LiteralRegistry.register(
1763
- :class => Virtuozzo::SOAP::Types::Device::RouteType,
1763
+ :class => Virtuozzo::SOAP::Types::Devm::RouteType,
1764
1764
  :schema_type => XSD::QName.new(NsProtocol, "routeType"),
1765
1765
  :schema_element => [
1766
1766
  ["director", "SOAP::SOAPString", [0, 1]],
@@ -1771,21 +1771,21 @@ module Virtuozzo # :nodoc:
1771
1771
  )
1772
1772
 
1773
1773
  LiteralRegistry.register(
1774
- :class => Virtuozzo::SOAP::Types::Device::DataType,
1774
+ :class => Virtuozzo::SOAP::Types::Devm::DataType,
1775
1775
  :schema_type => XSD::QName.new(NsProtocol, "dataType"),
1776
1776
  :schema_element => [
1777
- ["operator", "Virtuozzo::SOAP::Types::Device::OperatorType[]"]
1777
+ ["operator", "Virtuozzo::SOAP::Types::Devm::OperatorType[]"]
1778
1778
  ]
1779
1779
  )
1780
1780
 
1781
1781
  LiteralRegistry.register(
1782
- :class => Virtuozzo::SOAP::Types::Device::ConfigurationType,
1782
+ :class => Virtuozzo::SOAP::Types::Devm::ConfigurationType,
1783
1783
  :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
1784
1784
  :schema_element => []
1785
1785
  )
1786
1786
 
1787
1787
  LiteralRegistry.register(
1788
- :class => Virtuozzo::SOAP::Types::Device::OsType,
1788
+ :class => Virtuozzo::SOAP::Types::Devm::OsType,
1789
1789
  :schema_type => XSD::QName.new(NsTypes, "osType"),
1790
1790
  :schema_element => [
1791
1791
  ["platform", "SOAP::SOAPString", [0, 1]],
@@ -1796,7 +1796,7 @@ module Virtuozzo # :nodoc:
1796
1796
  )
1797
1797
 
1798
1798
  LiteralRegistry.register(
1799
- :class => Virtuozzo::SOAP::Types::Device::Env_statusType,
1799
+ :class => Virtuozzo::SOAP::Types::Devm::Env_statusType,
1800
1800
  :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
1801
1801
  :schema_element => [
1802
1802
  ["state", "SOAP::SOAPInt", [0, 1]],
@@ -1805,7 +1805,7 @@ module Virtuozzo # :nodoc:
1805
1805
  )
1806
1806
 
1807
1807
  LiteralRegistry.register(
1808
- :class => Virtuozzo::SOAP::Types::Device::QosType,
1808
+ :class => Virtuozzo::SOAP::Types::Devm::QosType,
1809
1809
  :schema_type => XSD::QName.new(NsTypes, "qosType"),
1810
1810
  :schema_element => [
1811
1811
  ["id", "SOAP::SOAPString"],
@@ -1816,16 +1816,16 @@ module Virtuozzo # :nodoc:
1816
1816
  )
1817
1817
 
1818
1818
  LiteralRegistry.register(
1819
- :class => Virtuozzo::SOAP::Types::Device::Env_configType,
1819
+ :class => Virtuozzo::SOAP::Types::Devm::Env_configType,
1820
1820
  :schema_type => XSD::QName.new(NsTypes, "env_configType"),
1821
1821
  :schema_element => [
1822
1822
  ["name", "SOAP::SOAPString", [0, 1]],
1823
1823
  ["description", "SOAP::SOAPBase64", [0, 1]],
1824
1824
  ["domain", "SOAP::SOAPString", [0, 1]],
1825
1825
  ["hostname", "SOAP::SOAPString", [0, 1]],
1826
- ["address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
1826
+ ["address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
1827
1827
  ["architecture", "SOAP::SOAPString", [0, 1]],
1828
- ["os", "Virtuozzo::SOAP::Types::Device::OsType", [0, 1]],
1828
+ ["os", "Virtuozzo::SOAP::Types::Devm::OsType", [0, 1]],
1829
1829
  ["type", "SOAP::SOAPString", [0, 1]],
1830
1830
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1831
1831
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
@@ -1836,7 +1836,7 @@ module Virtuozzo # :nodoc:
1836
1836
  )
1837
1837
 
1838
1838
  LiteralRegistry.register(
1839
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType,
1839
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType,
1840
1840
  :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
1841
1841
  :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
1842
1842
  :schema_element => [
@@ -1844,40 +1844,40 @@ module Virtuozzo # :nodoc:
1844
1844
  ["description", "SOAP::SOAPBase64", [0, 1]],
1845
1845
  ["domain", "SOAP::SOAPString", [0, 1]],
1846
1846
  ["hostname", "SOAP::SOAPString", [0, 1]],
1847
- ["address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
1847
+ ["address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
1848
1848
  ["architecture", "SOAP::SOAPString", [0, 1]],
1849
- ["os", "Virtuozzo::SOAP::Types::Device::OsType", [0, 1]],
1849
+ ["os", "Virtuozzo::SOAP::Types::Devm::OsType", [0, 1]],
1850
1850
  ["type", "SOAP::SOAPString", [0, 1]],
1851
1851
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1852
1852
  ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1853
1853
  ["base_sample_id", nil, [0, 1]],
1854
1854
  ["base_snapshot_id", nil, [0, 1]],
1855
1855
  ["child_type", "SOAP::SOAPString[]", [0, nil]],
1856
- ["qos", "Virtuozzo::SOAP::Types::Device::QosType[]", [0, nil]]
1856
+ ["qos", "Virtuozzo::SOAP::Types::Devm::QosType[]", [0, nil]]
1857
1857
  ]
1858
1858
  )
1859
1859
 
1860
1860
  LiteralRegistry.register(
1861
- :class => Virtuozzo::SOAP::Types::Device::Native_configType,
1861
+ :class => Virtuozzo::SOAP::Types::Devm::Native_configType,
1862
1862
  :schema_type => XSD::QName.new(NsTypes, "native_configType"),
1863
1863
  :schema_element => []
1864
1864
  )
1865
1865
 
1866
1866
  LiteralRegistry.register(
1867
- :class => Virtuozzo::SOAP::Types::Device::EnvType,
1867
+ :class => Virtuozzo::SOAP::Types::Devm::EnvType,
1868
1868
  :schema_type => XSD::QName.new(NsTypes, "envType"),
1869
1869
  :schema_element => [
1870
1870
  ["parent_eid", nil],
1871
1871
  ["eid", nil],
1872
- ["status", "Virtuozzo::SOAP::Types::Device::Env_statusType", [0, 1]],
1872
+ ["status", "Virtuozzo::SOAP::Types::Devm::Env_statusType", [0, 1]],
1873
1873
  ["alert", "SOAP::SOAPInt", [0, 1]],
1874
- ["config", "Virtuozzo::SOAP::Types::Device::Env_configType", [0, 1]],
1875
- ["virtual_config", "Virtuozzo::SOAP::Types::Device::Venv_configType", [0, 1]]
1874
+ ["config", "Virtuozzo::SOAP::Types::Devm::Env_configType", [0, 1]],
1875
+ ["virtual_config", "Virtuozzo::SOAP::Types::Devm::Venv_configType", [0, 1]]
1876
1876
  ]
1877
1877
  )
1878
1878
 
1879
1879
  LiteralRegistry.register(
1880
- :class => Virtuozzo::SOAP::Types::Device::ProcessesType,
1880
+ :class => Virtuozzo::SOAP::Types::Devm::ProcessesType,
1881
1881
  :schema_type => XSD::QName.new(NsTypes, "processesType"),
1882
1882
  :schema_element => [
1883
1883
  ["run", "SOAP::SOAPInt"],
@@ -1890,7 +1890,7 @@ module Virtuozzo # :nodoc:
1890
1890
  )
1891
1891
 
1892
1892
  LiteralRegistry.register(
1893
- :class => Virtuozzo::SOAP::Types::Device::Load_avgType,
1893
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avgType,
1894
1894
  :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
1895
1895
  :schema_element => [
1896
1896
  ["l1", "SOAP::SOAPDouble"],
@@ -1900,7 +1900,7 @@ module Virtuozzo # :nodoc:
1900
1900
  )
1901
1901
 
1902
1902
  LiteralRegistry.register(
1903
- :class => Virtuozzo::SOAP::Types::Device::Cpu_loadType,
1903
+ :class => Virtuozzo::SOAP::Types::Devm::Cpu_loadType,
1904
1904
  :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
1905
1905
  :schema_element => [
1906
1906
  ["system", "SOAP::SOAPLong"],
@@ -1911,7 +1911,7 @@ module Virtuozzo # :nodoc:
1911
1911
  )
1912
1912
 
1913
1913
  LiteralRegistry.register(
1914
- :class => Virtuozzo::SOAP::Types::Device::CpuType,
1914
+ :class => Virtuozzo::SOAP::Types::Devm::CpuType,
1915
1915
  :schema_type => XSD::QName.new(NsTypes, "cpuType"),
1916
1916
  :schema_element => [
1917
1917
  ["mhz", "SOAP::SOAPInt"],
@@ -1927,16 +1927,16 @@ module Virtuozzo # :nodoc:
1927
1927
  )
1928
1928
 
1929
1929
  LiteralRegistry.register(
1930
- :class => Virtuozzo::SOAP::Types::Device::TransferType,
1930
+ :class => Virtuozzo::SOAP::Types::Devm::TransferType,
1931
1931
  :schema_type => XSD::QName.new(NsTypes, "transferType"),
1932
1932
  :schema_element => [
1933
- ["input", "Virtuozzo::SOAP::Types::Device::TransferType::Input"],
1934
- ["output", "Virtuozzo::SOAP::Types::Device::TransferType::Output"]
1933
+ ["input", "Virtuozzo::SOAP::Types::Devm::TransferType::Input"],
1934
+ ["output", "Virtuozzo::SOAP::Types::Devm::TransferType::Output"]
1935
1935
  ]
1936
1936
  )
1937
1937
 
1938
1938
  LiteralRegistry.register(
1939
- :class => Virtuozzo::SOAP::Types::Device::TransferType::Input,
1939
+ :class => Virtuozzo::SOAP::Types::Devm::TransferType::Input,
1940
1940
  :schema_name => XSD::QName.new(NsTypes, "input"),
1941
1941
  :is_anonymous => true,
1942
1942
  :schema_qualified => true,
@@ -1947,7 +1947,7 @@ module Virtuozzo # :nodoc:
1947
1947
  )
1948
1948
 
1949
1949
  LiteralRegistry.register(
1950
- :class => Virtuozzo::SOAP::Types::Device::TransferType::Output,
1950
+ :class => Virtuozzo::SOAP::Types::Devm::TransferType::Output,
1951
1951
  :schema_name => XSD::QName.new(NsTypes, "output"),
1952
1952
  :is_anonymous => true,
1953
1953
  :schema_qualified => true,
@@ -1958,16 +1958,16 @@ module Virtuozzo # :nodoc:
1958
1958
  )
1959
1959
 
1960
1960
  LiteralRegistry.register(
1961
- :class => Virtuozzo::SOAP::Types::Device::System_nodeType,
1961
+ :class => Virtuozzo::SOAP::Types::Devm::System_nodeType,
1962
1962
  :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
1963
1963
  :schema_element => [
1964
- ["address", "Virtuozzo::SOAP::Types::Device::System_nodeType::Address"],
1965
- ["login", "Virtuozzo::SOAP::Types::Device::System_nodeType::Login", [0, 1]]
1964
+ ["address", "Virtuozzo::SOAP::Types::Devm::System_nodeType::Address"],
1965
+ ["login", "Virtuozzo::SOAP::Types::Devm::System_nodeType::Login", [0, 1]]
1966
1966
  ]
1967
1967
  )
1968
1968
 
1969
1969
  LiteralRegistry.register(
1970
- :class => Virtuozzo::SOAP::Types::Device::System_nodeType::Address,
1970
+ :class => Virtuozzo::SOAP::Types::Devm::System_nodeType::Address,
1971
1971
  :schema_name => XSD::QName.new(NsTypes, "address"),
1972
1972
  :is_anonymous => true,
1973
1973
  :schema_qualified => true,
@@ -1977,7 +1977,7 @@ module Virtuozzo # :nodoc:
1977
1977
  )
1978
1978
 
1979
1979
  LiteralRegistry.register(
1980
- :class => Virtuozzo::SOAP::Types::Device::System_nodeType::Login,
1980
+ :class => Virtuozzo::SOAP::Types::Devm::System_nodeType::Login,
1981
1981
  :schema_name => XSD::QName.new(NsTypes, "login"),
1982
1982
  :is_anonymous => true,
1983
1983
  :schema_qualified => true,
@@ -1988,7 +1988,7 @@ module Virtuozzo # :nodoc:
1988
1988
  )
1989
1989
 
1990
1990
  LiteralRegistry.register(
1991
- :class => Virtuozzo::SOAP::Types::Device::ResourceType,
1991
+ :class => Virtuozzo::SOAP::Types::Devm::ResourceType,
1992
1992
  :schema_type => XSD::QName.new(NsTypes, "resourceType"),
1993
1993
  :schema_element => [
1994
1994
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -2001,7 +2001,7 @@ module Virtuozzo # :nodoc:
2001
2001
  )
2002
2002
 
2003
2003
  LiteralRegistry.register(
2004
- :class => Virtuozzo::SOAP::Types::Device::IntervalType,
2004
+ :class => Virtuozzo::SOAP::Types::Devm::IntervalType,
2005
2005
  :schema_type => XSD::QName.new(NsTypes, "intervalType"),
2006
2006
  :schema_element => [
2007
2007
  ["start_time", nil],
@@ -2010,7 +2010,7 @@ module Virtuozzo # :nodoc:
2010
2010
  )
2011
2011
 
2012
2012
  LiteralRegistry.register(
2013
- :class => Virtuozzo::SOAP::Types::Device::StatsType,
2013
+ :class => Virtuozzo::SOAP::Types::Devm::StatsType,
2014
2014
  :schema_type => XSD::QName.new(NsTypes, "statsType"),
2015
2015
  :schema_element => [
2016
2016
  ["avg", "SOAP::SOAPLong", [0, 1]],
@@ -2024,7 +2024,7 @@ module Virtuozzo # :nodoc:
2024
2024
  )
2025
2025
 
2026
2026
  LiteralRegistry.register(
2027
- :class => Virtuozzo::SOAP::Types::Device::Net_addressType,
2027
+ :class => Virtuozzo::SOAP::Types::Devm::Net_addressType,
2028
2028
  :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
2029
2029
  :schema_element => [
2030
2030
  ["host", nil],
@@ -2033,16 +2033,16 @@ module Virtuozzo # :nodoc:
2033
2033
  )
2034
2034
 
2035
2035
  LiteralRegistry.register(
2036
- :class => Virtuozzo::SOAP::Types::Device::Net_classType,
2036
+ :class => Virtuozzo::SOAP::Types::Devm::Net_classType,
2037
2037
  :schema_type => XSD::QName.new(NsTypes, "net_classType"),
2038
2038
  :schema_element => [
2039
2039
  ["id", "SOAP::SOAPString", [0, 1]],
2040
- ["transfer", "Virtuozzo::SOAP::Types::Device::TransferType", [0, 1]]
2040
+ ["transfer", "Virtuozzo::SOAP::Types::Devm::TransferType", [0, 1]]
2041
2041
  ]
2042
2042
  )
2043
2043
 
2044
2044
  LiteralRegistry.register(
2045
- :class => Virtuozzo::SOAP::Types::Device::Ip_rangeType,
2045
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_rangeType,
2046
2046
  :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
2047
2047
  :schema_element => [
2048
2048
  ["id", "SOAP::SOAPString", [0, 1]],
@@ -2053,19 +2053,19 @@ module Virtuozzo # :nodoc:
2053
2053
  )
2054
2054
 
2055
2055
  LiteralRegistry.register(
2056
- :class => Virtuozzo::SOAP::Types::Device::Sample_confType,
2056
+ :class => Virtuozzo::SOAP::Types::Devm::Sample_confType,
2057
2057
  :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
2058
2058
  :schema_element => [
2059
- ["env_config", "Virtuozzo::SOAP::Types::Device::Env_configType"],
2059
+ ["env_config", "Virtuozzo::SOAP::Types::Devm::Env_configType"],
2060
2060
  ["id", "SOAP::SOAPString", [0, 1]],
2061
2061
  ["name", "SOAP::SOAPString"],
2062
2062
  ["comment", "SOAP::SOAPBase64", [0, 1]],
2063
- ["vt_version", "Virtuozzo::SOAP::Types::Device::Sample_confType::Vt_version", [0, 1]]
2063
+ ["vt_version", "Virtuozzo::SOAP::Types::Devm::Sample_confType::Vt_version", [0, 1]]
2064
2064
  ]
2065
2065
  )
2066
2066
 
2067
2067
  LiteralRegistry.register(
2068
- :class => Virtuozzo::SOAP::Types::Device::Sample_confType::Vt_version,
2068
+ :class => Virtuozzo::SOAP::Types::Devm::Sample_confType::Vt_version,
2069
2069
  :schema_name => XSD::QName.new(NsTypes, "vt_version"),
2070
2070
  :is_anonymous => true,
2071
2071
  :schema_qualified => true,
@@ -2077,34 +2077,34 @@ module Virtuozzo # :nodoc:
2077
2077
  )
2078
2078
 
2079
2079
  LiteralRegistry.register(
2080
- :class => Virtuozzo::SOAP::Types::Device::InterfaceType,
2080
+ :class => Virtuozzo::SOAP::Types::Devm::InterfaceType,
2081
2081
  :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
2082
2082
  :schema_element => [
2083
2083
  ["name", "SOAP::SOAPString"],
2084
2084
  ["bandwidth", "SOAP::SOAPInt", [0, 1]],
2085
- ["transfer", "Virtuozzo::SOAP::Types::Device::TransferType", [0, 1]],
2085
+ ["transfer", "Virtuozzo::SOAP::Types::Devm::TransferType", [0, 1]],
2086
2086
  ["ipaddress", nil, [0, 1]],
2087
2087
  ["flags", "SOAP::SOAPInt", [0, 1]]
2088
2088
  ]
2089
2089
  )
2090
2090
 
2091
2091
  LiteralRegistry.register(
2092
- :class => Virtuozzo::SOAP::Types::Device::Sys_infoType,
2092
+ :class => Virtuozzo::SOAP::Types::Devm::Sys_infoType,
2093
2093
  :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
2094
2094
  :schema_element => [
2095
- ["load_avg", "Virtuozzo::SOAP::Types::Device::Load_avgType"],
2096
- ["processes", "Virtuozzo::SOAP::Types::Device::ProcessesType"],
2097
- ["cpu_load", "Virtuozzo::SOAP::Types::Device::Cpu_loadType"],
2098
- ["cpu_states", "Virtuozzo::SOAP::Types::Device::Cpu_loadType"],
2095
+ ["load_avg", "Virtuozzo::SOAP::Types::Devm::Load_avgType"],
2096
+ ["processes", "Virtuozzo::SOAP::Types::Devm::ProcessesType"],
2097
+ ["cpu_load", "Virtuozzo::SOAP::Types::Devm::Cpu_loadType"],
2098
+ ["cpu_states", "Virtuozzo::SOAP::Types::Devm::Cpu_loadType"],
2099
2099
  ["users", "SOAP::SOAPInt"],
2100
2100
  ["uptime", "SOAP::SOAPLong"],
2101
- ["memory", "Virtuozzo::SOAP::Types::Device::Sys_infoType::Memory", [0, 1]],
2102
- ["swap", "Virtuozzo::SOAP::Types::Device::Sys_infoType::Swap", [0, 1]]
2101
+ ["memory", "Virtuozzo::SOAP::Types::Devm::Sys_infoType::Memory", [0, 1]],
2102
+ ["swap", "Virtuozzo::SOAP::Types::Devm::Sys_infoType::Swap", [0, 1]]
2103
2103
  ]
2104
2104
  )
2105
2105
 
2106
2106
  LiteralRegistry.register(
2107
- :class => Virtuozzo::SOAP::Types::Device::Sys_infoType::Memory,
2107
+ :class => Virtuozzo::SOAP::Types::Devm::Sys_infoType::Memory,
2108
2108
  :schema_name => XSD::QName.new(NsTypes, "memory"),
2109
2109
  :is_anonymous => true,
2110
2110
  :schema_qualified => true,
@@ -2115,7 +2115,7 @@ module Virtuozzo # :nodoc:
2115
2115
  )
2116
2116
 
2117
2117
  LiteralRegistry.register(
2118
- :class => Virtuozzo::SOAP::Types::Device::Sys_infoType::Swap,
2118
+ :class => Virtuozzo::SOAP::Types::Devm::Sys_infoType::Swap,
2119
2119
  :schema_name => XSD::QName.new(NsTypes, "swap"),
2120
2120
  :is_anonymous => true,
2121
2121
  :schema_qualified => true,
@@ -2126,10 +2126,10 @@ module Virtuozzo # :nodoc:
2126
2126
  )
2127
2127
 
2128
2128
  LiteralRegistry.register(
2129
- :class => Virtuozzo::SOAP::Types::Device::Ps_infoType,
2129
+ :class => Virtuozzo::SOAP::Types::Devm::Ps_infoType,
2130
2130
  :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
2131
2131
  :schema_element => [
2132
- ["process", "Virtuozzo::SOAP::Types::Device::Ps_infoType::C_Process[]", [1, nil]],
2132
+ ["process", "Virtuozzo::SOAP::Types::Devm::Ps_infoType::C_Process[]", [1, nil]],
2133
2133
  ["param_id", "SOAP::SOAPString[]", [1, nil]],
2134
2134
  ["run", "SOAP::SOAPInt"],
2135
2135
  ["idle", "SOAP::SOAPInt"],
@@ -2142,7 +2142,7 @@ module Virtuozzo # :nodoc:
2142
2142
  )
2143
2143
 
2144
2144
  LiteralRegistry.register(
2145
- :class => Virtuozzo::SOAP::Types::Device::Ps_infoType::C_Process,
2145
+ :class => Virtuozzo::SOAP::Types::Devm::Ps_infoType::C_Process,
2146
2146
  :schema_name => XSD::QName.new(NsTypes, "process"),
2147
2147
  :is_anonymous => true,
2148
2148
  :schema_qualified => true,
@@ -2153,17 +2153,17 @@ module Virtuozzo # :nodoc:
2153
2153
  )
2154
2154
 
2155
2155
  LiteralRegistry.register(
2156
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType,
2156
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType,
2157
2157
  :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
2158
2158
  :schema_element => [
2159
- ["l1", "Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L1"],
2160
- ["l2", "Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L2", [0, 1]],
2161
- ["l3", "Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L3", [0, 1]]
2159
+ ["l1", "Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L1"],
2160
+ ["l2", "Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L2", [0, 1]],
2161
+ ["l3", "Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L3", [0, 1]]
2162
2162
  ]
2163
2163
  )
2164
2164
 
2165
2165
  LiteralRegistry.register(
2166
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L1,
2166
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L1,
2167
2167
  :schema_name => XSD::QName.new(NsTypes, "l1"),
2168
2168
  :is_anonymous => true,
2169
2169
  :schema_qualified => true,
@@ -2176,7 +2176,7 @@ module Virtuozzo # :nodoc:
2176
2176
  )
2177
2177
 
2178
2178
  LiteralRegistry.register(
2179
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L2,
2179
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L2,
2180
2180
  :schema_name => XSD::QName.new(NsTypes, "l2"),
2181
2181
  :is_anonymous => true,
2182
2182
  :schema_qualified => true,
@@ -2189,7 +2189,7 @@ module Virtuozzo # :nodoc:
2189
2189
  )
2190
2190
 
2191
2191
  LiteralRegistry.register(
2192
- :class => Virtuozzo::SOAP::Types::Device::Load_avg_statsType::L3,
2192
+ :class => Virtuozzo::SOAP::Types::Devm::Load_avg_statsType::L3,
2193
2193
  :schema_name => XSD::QName.new(NsTypes, "l3"),
2194
2194
  :is_anonymous => true,
2195
2195
  :schema_qualified => true,
@@ -2202,7 +2202,7 @@ module Virtuozzo # :nodoc:
2202
2202
  )
2203
2203
 
2204
2204
  LiteralRegistry.register(
2205
- :class => Virtuozzo::SOAP::Types::Device::Alert_dataType,
2205
+ :class => Virtuozzo::SOAP::Types::Devm::Alert_dataType,
2206
2206
  :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
2207
2207
  :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
2208
2208
  :schema_element => [
@@ -2211,7 +2211,7 @@ module Virtuozzo # :nodoc:
2211
2211
  )
2212
2212
 
2213
2213
  LiteralRegistry.register(
2214
- :class => Virtuozzo::SOAP::Types::Device::Ip_addressType,
2214
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_addressType,
2215
2215
  :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
2216
2216
  :schema_element => [
2217
2217
  ["ip", nil],
@@ -2220,25 +2220,25 @@ module Virtuozzo # :nodoc:
2220
2220
  )
2221
2221
 
2222
2222
  LiteralRegistry.register(
2223
- :class => Virtuozzo::SOAP::Types::Device::Env_resourceType,
2223
+ :class => Virtuozzo::SOAP::Types::Devm::Env_resourceType,
2224
2224
  :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
2225
2225
  :schema_element => [
2226
2226
  ["eid", nil],
2227
- ["ip_pool", "Virtuozzo::SOAP::Types::Device::Ip_poolType", [0, 1]]
2227
+ ["ip_pool", "Virtuozzo::SOAP::Types::Devm::Ip_poolType", [0, 1]]
2228
2228
  ]
2229
2229
  )
2230
2230
 
2231
2231
  LiteralRegistry.register(
2232
- :class => Virtuozzo::SOAP::Types::Device::Ip_poolType,
2232
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_poolType,
2233
2233
  :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
2234
2234
  :schema_element => [ :choice,
2235
- ["ip_range", "Virtuozzo::SOAP::Types::Device::Ip_poolType::Ip_range[]"],
2235
+ ["ip_range", "Virtuozzo::SOAP::Types::Devm::Ip_poolType::Ip_range[]"],
2236
2236
  ["ip", "[]"]
2237
2237
  ]
2238
2238
  )
2239
2239
 
2240
2240
  LiteralRegistry.register(
2241
- :class => Virtuozzo::SOAP::Types::Device::Ip_poolType::Ip_range,
2241
+ :class => Virtuozzo::SOAP::Types::Devm::Ip_poolType::Ip_range,
2242
2242
  :schema_name => XSD::QName.new(NsTypes, "ip_range"),
2243
2243
  :is_anonymous => true,
2244
2244
  :schema_qualified => true,
@@ -2249,7 +2249,7 @@ module Virtuozzo # :nodoc:
2249
2249
  )
2250
2250
 
2251
2251
  LiteralRegistry.register(
2252
- :class => Virtuozzo::SOAP::Types::Device::UsageType,
2252
+ :class => Virtuozzo::SOAP::Types::Devm::UsageType,
2253
2253
  :schema_type => XSD::QName.new(NsTypes, "usageType"),
2254
2254
  :schema_element => [
2255
2255
  ["total", "SOAP::SOAPLong", [0, 1]],
@@ -2259,20 +2259,20 @@ module Virtuozzo # :nodoc:
2259
2259
  )
2260
2260
 
2261
2261
  LiteralRegistry.register(
2262
- :class => Virtuozzo::SOAP::Types::Device::Root_credentialType,
2262
+ :class => Virtuozzo::SOAP::Types::Devm::Root_credentialType,
2263
2263
  :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
2264
2264
  :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
2265
2265
  :schema_element => [
2266
2266
  ["id", "SOAP::SOAPString"],
2267
2267
  ["policy", "SOAP::SOAPInt", [0, 1]],
2268
2268
  ["description", "SOAP::SOAPBase64", [0, 1]],
2269
- ["cred", "Virtuozzo::SOAP::Types::Device::CredentialType[]", [0, nil]],
2270
- ["objects", "Virtuozzo::SOAP::Types::Device::Root_credentialType::Objects", [0, 1]]
2269
+ ["cred", "Virtuozzo::SOAP::Types::Devm::CredentialType[]", [0, nil]],
2270
+ ["objects", "Virtuozzo::SOAP::Types::Devm::Root_credentialType::Objects", [0, 1]]
2271
2271
  ]
2272
2272
  )
2273
2273
 
2274
2274
  LiteralRegistry.register(
2275
- :class => Virtuozzo::SOAP::Types::Device::Root_credentialType::Objects,
2275
+ :class => Virtuozzo::SOAP::Types::Devm::Root_credentialType::Objects,
2276
2276
  :schema_name => XSD::QName.new(NsTypes, "objects"),
2277
2277
  :is_anonymous => true,
2278
2278
  :schema_qualified => true,
@@ -2282,30 +2282,30 @@ module Virtuozzo # :nodoc:
2282
2282
  )
2283
2283
 
2284
2284
  LiteralRegistry.register(
2285
- :class => Virtuozzo::SOAP::Types::Device::CredentialType,
2285
+ :class => Virtuozzo::SOAP::Types::Devm::CredentialType,
2286
2286
  :schema_type => XSD::QName.new(NsTypes, "credentialType"),
2287
2287
  :schema_element => [
2288
2288
  ["id", "SOAP::SOAPString"],
2289
2289
  ["policy", "SOAP::SOAPInt", [0, 1]],
2290
2290
  ["description", "SOAP::SOAPBase64", [0, 1]],
2291
- ["cred", "Virtuozzo::SOAP::Types::Device::CredentialType[]", [0, nil]]
2291
+ ["cred", "Virtuozzo::SOAP::Types::Devm::CredentialType[]", [0, nil]]
2292
2292
  ]
2293
2293
  )
2294
2294
 
2295
2295
  LiteralRegistry.register(
2296
- :class => Virtuozzo::SOAP::Types::Device::TokenType,
2296
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType,
2297
2297
  :schema_type => XSD::QName.new(NsTypes, "tokenType"),
2298
2298
  :schema_element => [
2299
2299
  ["user", nil],
2300
- ["groups", "Virtuozzo::SOAP::Types::Device::TokenType::Groups", [0, 1]],
2301
- ["deny_only_sids", "Virtuozzo::SOAP::Types::Device::TokenType::Deny_only_sids", [0, 1]],
2302
- ["privileges", "Virtuozzo::SOAP::Types::Device::TokenType::Privileges", [0, 1]],
2303
- ["source", "Virtuozzo::SOAP::Types::Device::TokenType::Source", [0, 1]]
2300
+ ["groups", "Virtuozzo::SOAP::Types::Devm::TokenType::Groups", [0, 1]],
2301
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Devm::TokenType::Deny_only_sids", [0, 1]],
2302
+ ["privileges", "Virtuozzo::SOAP::Types::Devm::TokenType::Privileges", [0, 1]],
2303
+ ["source", "Virtuozzo::SOAP::Types::Devm::TokenType::Source", [0, 1]]
2304
2304
  ]
2305
2305
  )
2306
2306
 
2307
2307
  LiteralRegistry.register(
2308
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Groups,
2308
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Groups,
2309
2309
  :schema_name => XSD::QName.new(NsTypes, "groups"),
2310
2310
  :is_anonymous => true,
2311
2311
  :schema_qualified => true,
@@ -2315,7 +2315,7 @@ module Virtuozzo # :nodoc:
2315
2315
  )
2316
2316
 
2317
2317
  LiteralRegistry.register(
2318
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Deny_only_sids,
2318
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Deny_only_sids,
2319
2319
  :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
2320
2320
  :is_anonymous => true,
2321
2321
  :schema_qualified => true,
@@ -2325,7 +2325,7 @@ module Virtuozzo # :nodoc:
2325
2325
  )
2326
2326
 
2327
2327
  LiteralRegistry.register(
2328
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Privileges,
2328
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Privileges,
2329
2329
  :schema_name => XSD::QName.new(NsTypes, "privileges"),
2330
2330
  :is_anonymous => true,
2331
2331
  :schema_qualified => true,
@@ -2335,7 +2335,7 @@ module Virtuozzo # :nodoc:
2335
2335
  )
2336
2336
 
2337
2337
  LiteralRegistry.register(
2338
- :class => Virtuozzo::SOAP::Types::Device::TokenType::Source,
2338
+ :class => Virtuozzo::SOAP::Types::Devm::TokenType::Source,
2339
2339
  :schema_name => XSD::QName.new(NsTypes, "source"),
2340
2340
  :is_anonymous => true,
2341
2341
  :schema_qualified => true,
@@ -2346,7 +2346,7 @@ module Virtuozzo # :nodoc:
2346
2346
  )
2347
2347
 
2348
2348
  LiteralRegistry.register(
2349
- :class => Virtuozzo::SOAP::Types::Device::Connectivity_infoType,
2349
+ :class => Virtuozzo::SOAP::Types::Devm::Connectivity_infoType,
2350
2350
  :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
2351
2351
  :schema_element => [
2352
2352
  ["protocol", "SOAP::SOAPString", [0, 1]],
@@ -2356,7 +2356,7 @@ module Virtuozzo # :nodoc:
2356
2356
  )
2357
2357
 
2358
2358
  LiteralRegistry.register(
2359
- :class => Virtuozzo::SOAP::Types::Device::Auth_nameType,
2359
+ :class => Virtuozzo::SOAP::Types::Devm::Auth_nameType,
2360
2360
  :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
2361
2361
  :schema_element => [
2362
2362
  ["name", "SOAP::SOAPBase64", [0, 1]],
@@ -2366,20 +2366,20 @@ module Virtuozzo # :nodoc:
2366
2366
  )
2367
2367
 
2368
2368
  LiteralRegistry.register(
2369
- :class => Virtuozzo::SOAP::Types::Device::Connection_infoType,
2369
+ :class => Virtuozzo::SOAP::Types::Devm::Connection_infoType,
2370
2370
  :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
2371
2371
  :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
2372
2372
  :schema_element => [
2373
2373
  ["protocol", "SOAP::SOAPString", [0, 1]],
2374
2374
  ["address", "SOAP::SOAPString"],
2375
2375
  ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
2376
- ["login", "Virtuozzo::SOAP::Types::Device::Auth_nameType", [0, 1]],
2376
+ ["login", "Virtuozzo::SOAP::Types::Devm::Auth_nameType", [0, 1]],
2377
2377
  ["password", "SOAP::SOAPBase64", [0, 1]]
2378
2378
  ]
2379
2379
  )
2380
2380
 
2381
2381
  LiteralRegistry.register(
2382
- :class => Virtuozzo::SOAP::Types::Device::Eid_listType,
2382
+ :class => Virtuozzo::SOAP::Types::Devm::Eid_listType,
2383
2383
  :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
2384
2384
  :schema_element => [
2385
2385
  ["eid", "[]", [0, nil]]
@@ -2387,7 +2387,7 @@ module Virtuozzo # :nodoc:
2387
2387
  )
2388
2388
 
2389
2389
  LiteralRegistry.register(
2390
- :class => Virtuozzo::SOAP::Types::Device::Vt_infoType,
2390
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_infoType,
2391
2391
  :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
2392
2392
  :schema_element => [
2393
2393
  ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
@@ -2395,7 +2395,7 @@ module Virtuozzo # :nodoc:
2395
2395
  )
2396
2396
 
2397
2397
  LiteralRegistry.register(
2398
- :class => Virtuozzo::SOAP::Types::Device::Vt_settingsType,
2398
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_settingsType,
2399
2399
  :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
2400
2400
  :schema_element => [
2401
2401
  ["default_sample_id", nil, [0, 1]]
@@ -2403,11 +2403,11 @@ module Virtuozzo # :nodoc:
2403
2403
  )
2404
2404
 
2405
2405
  LiteralRegistry.register(
2406
- :class => Virtuozzo::SOAP::Types::Device::UserType,
2406
+ :class => Virtuozzo::SOAP::Types::Devm::UserType,
2407
2407
  :schema_type => XSD::QName.new(NsTypes, "userType"),
2408
2408
  :schema_element => [
2409
- ["initial_group", "Virtuozzo::SOAP::Types::Device::UserType::Initial_group", [0, 1]],
2410
- ["group", "Virtuozzo::SOAP::Types::Device::UserType::Group[]", [0, nil]],
2409
+ ["initial_group", "Virtuozzo::SOAP::Types::Devm::UserType::Initial_group", [0, 1]],
2410
+ ["group", "Virtuozzo::SOAP::Types::Devm::UserType::Group[]", [0, nil]],
2411
2411
  ["uid", "SOAP::SOAPInt", [0, 1]],
2412
2412
  ["shell", "SOAP::SOAPString", [0, 1]],
2413
2413
  ["password", "SOAP::SOAPBase64", [0, 1]],
@@ -2418,7 +2418,7 @@ module Virtuozzo # :nodoc:
2418
2418
  )
2419
2419
 
2420
2420
  LiteralRegistry.register(
2421
- :class => Virtuozzo::SOAP::Types::Device::UserType::Initial_group,
2421
+ :class => Virtuozzo::SOAP::Types::Devm::UserType::Initial_group,
2422
2422
  :schema_name => XSD::QName.new(NsTypes, "initial_group"),
2423
2423
  :is_anonymous => true,
2424
2424
  :schema_qualified => true,
@@ -2429,7 +2429,7 @@ module Virtuozzo # :nodoc:
2429
2429
  )
2430
2430
 
2431
2431
  LiteralRegistry.register(
2432
- :class => Virtuozzo::SOAP::Types::Device::UserType::Group,
2432
+ :class => Virtuozzo::SOAP::Types::Devm::UserType::Group,
2433
2433
  :schema_name => XSD::QName.new(NsTypes, "group"),
2434
2434
  :is_anonymous => true,
2435
2435
  :schema_qualified => true,
@@ -2440,18 +2440,18 @@ module Virtuozzo # :nodoc:
2440
2440
  )
2441
2441
 
2442
2442
  LiteralRegistry.register(
2443
- :class => Virtuozzo::SOAP::Types::Device::GroupType,
2443
+ :class => Virtuozzo::SOAP::Types::Devm::GroupType,
2444
2444
  :schema_type => XSD::QName.new(NsTypes, "groupType"),
2445
2445
  :schema_element => [
2446
- ["user", "Virtuozzo::SOAP::Types::Device::GroupType::User[]", [0, nil]],
2447
- ["member_group", "Virtuozzo::SOAP::Types::Device::GroupType::Member_group[]", [0, nil]],
2446
+ ["user", "Virtuozzo::SOAP::Types::Devm::GroupType::User[]", [0, nil]],
2447
+ ["member_group", "Virtuozzo::SOAP::Types::Devm::GroupType::Member_group[]", [0, nil]],
2448
2448
  ["name", "SOAP::SOAPString", [0, 1]],
2449
2449
  ["gid", "SOAP::SOAPInt", [0, 1]]
2450
2450
  ]
2451
2451
  )
2452
2452
 
2453
2453
  LiteralRegistry.register(
2454
- :class => Virtuozzo::SOAP::Types::Device::GroupType::User,
2454
+ :class => Virtuozzo::SOAP::Types::Devm::GroupType::User,
2455
2455
  :schema_name => XSD::QName.new(NsTypes, "user"),
2456
2456
  :is_anonymous => true,
2457
2457
  :schema_qualified => true,
@@ -2461,7 +2461,7 @@ module Virtuozzo # :nodoc:
2461
2461
  )
2462
2462
 
2463
2463
  LiteralRegistry.register(
2464
- :class => Virtuozzo::SOAP::Types::Device::GroupType::Member_group,
2464
+ :class => Virtuozzo::SOAP::Types::Devm::GroupType::Member_group,
2465
2465
  :schema_name => XSD::QName.new(NsTypes, "member_group"),
2466
2466
  :is_anonymous => true,
2467
2467
  :schema_qualified => true,
@@ -2471,12 +2471,12 @@ module Virtuozzo # :nodoc:
2471
2471
  )
2472
2472
 
2473
2473
  LiteralRegistry.register(
2474
- :class => Virtuozzo::SOAP::Types::Device::PackageType,
2474
+ :class => Virtuozzo::SOAP::Types::Devm::PackageType,
2475
2475
  :schema_type => XSD::QName.new(NsTypes, "packageType"),
2476
2476
  :schema_element => [
2477
2477
  ["name", "SOAP::SOAPString"],
2478
2478
  ["summary", "SOAP::SOAPString", [0, 1]],
2479
- ["os", "Virtuozzo::SOAP::Types::Device::OsType", [0, 1]],
2479
+ ["os", "Virtuozzo::SOAP::Types::Devm::OsType", [0, 1]],
2480
2480
  ["description", "SOAP::SOAPString", [0, 1]],
2481
2481
  ["arch", "SOAP::SOAPString", [0, 1]],
2482
2482
  ["version", "SOAP::SOAPString", [0, 1]]
@@ -2484,13 +2484,13 @@ module Virtuozzo # :nodoc:
2484
2484
  )
2485
2485
 
2486
2486
  LiteralRegistry.register(
2487
- :class => Virtuozzo::SOAP::Types::Device::Event_dataType,
2487
+ :class => Virtuozzo::SOAP::Types::Devm::Event_dataType,
2488
2488
  :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
2489
2489
  :schema_element => []
2490
2490
  )
2491
2491
 
2492
2492
  LiteralRegistry.register(
2493
- :class => Virtuozzo::SOAP::Types::Device::Named_listType,
2493
+ :class => Virtuozzo::SOAP::Types::Devm::Named_listType,
2494
2494
  :schema_type => XSD::QName.new(NsTypes, "named_listType"),
2495
2495
  :schema_element => [
2496
2496
  ["name", "SOAP::SOAPString"],
@@ -2499,7 +2499,7 @@ module Virtuozzo # :nodoc:
2499
2499
  )
2500
2500
 
2501
2501
  LiteralRegistry.register(
2502
- :class => Virtuozzo::SOAP::Types::Device::ModType,
2502
+ :class => Virtuozzo::SOAP::Types::Devm::ModType,
2503
2503
  :schema_type => XSD::QName.new(NsTypes, "modType"),
2504
2504
  :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
2505
2505
  :schema_element => [
@@ -2510,7 +2510,7 @@ module Virtuozzo # :nodoc:
2510
2510
  )
2511
2511
 
2512
2512
  LiteralRegistry.register(
2513
- :class => Virtuozzo::SOAP::Types::Device::RealmType,
2513
+ :class => Virtuozzo::SOAP::Types::Devm::RealmType,
2514
2514
  :schema_type => XSD::QName.new(NsTypes, "realmType"),
2515
2515
  :schema_element => [
2516
2516
  ["id", nil, [0, 1]],
@@ -2521,7 +2521,7 @@ module Virtuozzo # :nodoc:
2521
2521
  )
2522
2522
 
2523
2523
  LiteralRegistry.register(
2524
- :class => Virtuozzo::SOAP::Types::Device::EventType,
2524
+ :class => Virtuozzo::SOAP::Types::Devm::EventType,
2525
2525
  :schema_type => XSD::QName.new(NsTypes, "eventType"),
2526
2526
  :schema_element => [
2527
2527
  ["eid", nil],
@@ -2531,34 +2531,34 @@ module Virtuozzo # :nodoc:
2531
2531
  ["sid", nil, [0, 1]],
2532
2532
  ["count", "SOAP::SOAPInt"],
2533
2533
  ["id", nil],
2534
- ["info", "Virtuozzo::SOAP::Types::Device::InfoType"],
2535
- ["data", "Virtuozzo::SOAP::Types::Device::EventType::C_Data", [0, 1]]
2534
+ ["info", "Virtuozzo::SOAP::Types::Devm::InfoType"],
2535
+ ["data", "Virtuozzo::SOAP::Types::Devm::EventType::C_Data", [0, 1]]
2536
2536
  ]
2537
2537
  )
2538
2538
 
2539
2539
  LiteralRegistry.register(
2540
- :class => Virtuozzo::SOAP::Types::Device::EventType::C_Data,
2540
+ :class => Virtuozzo::SOAP::Types::Devm::EventType::C_Data,
2541
2541
  :schema_name => XSD::QName.new(NsTypes, "data"),
2542
2542
  :is_anonymous => true,
2543
2543
  :schema_qualified => true,
2544
2544
  :schema_element => [
2545
- ["event_data", "Virtuozzo::SOAP::Types::Device::Event_dataType"]
2545
+ ["event_data", "Virtuozzo::SOAP::Types::Devm::Event_dataType"]
2546
2546
  ]
2547
2547
  )
2548
2548
 
2549
2549
  LiteralRegistry.register(
2550
- :class => Virtuozzo::SOAP::Types::Device::InfoType,
2550
+ :class => Virtuozzo::SOAP::Types::Devm::InfoType,
2551
2551
  :schema_type => XSD::QName.new(NsTypes, "infoType"),
2552
2552
  :schema_element => [
2553
2553
  ["message", "SOAP::SOAPBase64"],
2554
2554
  ["translate", nil, [0, 1]],
2555
- ["parameter", "Virtuozzo::SOAP::Types::Device::InfoType[]", [0, nil]],
2555
+ ["parameter", "Virtuozzo::SOAP::Types::Devm::InfoType[]", [0, nil]],
2556
2556
  ["name", "SOAP::SOAPString"]
2557
2557
  ]
2558
2558
  )
2559
2559
 
2560
2560
  LiteralRegistry.register(
2561
- :class => Virtuozzo::SOAP::Types::Device::AceType,
2561
+ :class => Virtuozzo::SOAP::Types::Devm::AceType,
2562
2562
  :schema_type => XSD::QName.new(NsTypes, "aceType"),
2563
2563
  :schema_element => [
2564
2564
  ["type", "SOAP::SOAPInt"],
@@ -2568,27 +2568,27 @@ module Virtuozzo # :nodoc:
2568
2568
  )
2569
2569
 
2570
2570
  LiteralRegistry.register(
2571
- :class => Virtuozzo::SOAP::Types::Device::Security_descriptorType,
2571
+ :class => Virtuozzo::SOAP::Types::Devm::Security_descriptorType,
2572
2572
  :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
2573
2573
  :schema_element => [
2574
2574
  ["owner", nil],
2575
2575
  ["group", nil],
2576
- ["dacl", "Virtuozzo::SOAP::Types::Device::Security_descriptorType::Dacl", [0, 1]]
2576
+ ["dacl", "Virtuozzo::SOAP::Types::Devm::Security_descriptorType::Dacl", [0, 1]]
2577
2577
  ]
2578
2578
  )
2579
2579
 
2580
2580
  LiteralRegistry.register(
2581
- :class => Virtuozzo::SOAP::Types::Device::Security_descriptorType::Dacl,
2581
+ :class => Virtuozzo::SOAP::Types::Devm::Security_descriptorType::Dacl,
2582
2582
  :schema_name => XSD::QName.new(NsTypes, "dacl"),
2583
2583
  :is_anonymous => true,
2584
2584
  :schema_qualified => true,
2585
2585
  :schema_element => [
2586
- ["ace", "Virtuozzo::SOAP::Types::Device::AceType[]", [0, nil]]
2586
+ ["ace", "Virtuozzo::SOAP::Types::Devm::AceType[]", [0, nil]]
2587
2587
  ]
2588
2588
  )
2589
2589
 
2590
2590
  LiteralRegistry.register(
2591
- :class => Virtuozzo::SOAP::Types::Device::Env_security_objectType,
2591
+ :class => Virtuozzo::SOAP::Types::Devm::Env_security_objectType,
2592
2592
  :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
2593
2593
  :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
2594
2594
  :schema_element => [
@@ -2597,19 +2597,19 @@ module Virtuozzo # :nodoc:
2597
2597
  )
2598
2598
 
2599
2599
  LiteralRegistry.register(
2600
- :class => Virtuozzo::SOAP::Types::Device::Net_deviceType,
2600
+ :class => Virtuozzo::SOAP::Types::Devm::Net_deviceType,
2601
2601
  :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
2602
2602
  :schema_element => [
2603
2603
  ["id", "SOAP::SOAPString", [0, 1]],
2604
- ["ip_address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
2604
+ ["ip_address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
2605
2605
  ["dhcp", nil, [0, 1]],
2606
2606
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
2607
- ["status", "Virtuozzo::SOAP::Types::Device::Net_deviceType::Status", [0, 1]]
2607
+ ["status", "Virtuozzo::SOAP::Types::Devm::Net_deviceType::Status", [0, 1]]
2608
2608
  ]
2609
2609
  )
2610
2610
 
2611
2611
  LiteralRegistry.register(
2612
- :class => Virtuozzo::SOAP::Types::Device::Net_deviceType::Status,
2612
+ :class => Virtuozzo::SOAP::Types::Devm::Net_deviceType::Status,
2613
2613
  :schema_name => XSD::QName.new(NsTypes, "status"),
2614
2614
  :is_anonymous => true,
2615
2615
  :schema_qualified => true,
@@ -2620,7 +2620,7 @@ module Virtuozzo # :nodoc:
2620
2620
  )
2621
2621
 
2622
2622
  LiteralRegistry.register(
2623
- :class => Virtuozzo::SOAP::Types::Device::Voc_parameterType,
2623
+ :class => Virtuozzo::SOAP::Types::Devm::Voc_parameterType,
2624
2624
  :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
2625
2625
  :schema_element => [
2626
2626
  ["id", "SOAP::SOAPString"],
@@ -2639,31 +2639,31 @@ module Virtuozzo # :nodoc:
2639
2639
  )
2640
2640
 
2641
2641
  LiteralRegistry.register(
2642
- :class => Virtuozzo::SOAP::Types::Device::VocabularyType,
2642
+ :class => Virtuozzo::SOAP::Types::Devm::VocabularyType,
2643
2643
  :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
2644
2644
  :schema_element => [
2645
2645
  ["name", "SOAP::SOAPString"],
2646
- ["parameter", "Virtuozzo::SOAP::Types::Device::Voc_parameterType[]", [0, nil]],
2647
- ["category", "Virtuozzo::SOAP::Types::Device::Voc_parameterType[]", [0, nil]]
2646
+ ["parameter", "Virtuozzo::SOAP::Types::Devm::Voc_parameterType[]", [0, nil]],
2647
+ ["category", "Virtuozzo::SOAP::Types::Devm::Voc_parameterType[]", [0, nil]]
2648
2648
  ]
2649
2649
  )
2650
2650
 
2651
2651
  LiteralRegistry.register(
2652
- :class => Virtuozzo::SOAP::Types::Device::Net_nicType,
2652
+ :class => Virtuozzo::SOAP::Types::Devm::Net_nicType,
2653
2653
  :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
2654
2654
  :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
2655
2655
  :schema_element => [
2656
2656
  ["id", "SOAP::SOAPString", [0, 1]],
2657
- ["ip_address", "Virtuozzo::SOAP::Types::Device::Ip_addressType[]", [0, nil]],
2657
+ ["ip_address", "Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", [0, nil]],
2658
2658
  ["dhcp", nil, [0, 1]],
2659
2659
  ["network_id", "SOAP::SOAPBase64", [0, 1]],
2660
- ["status", "Virtuozzo::SOAP::Types::Device::Net_nicType::Status", [0, 1]],
2660
+ ["status", "Virtuozzo::SOAP::Types::Devm::Net_nicType::Status", [0, 1]],
2661
2661
  ["mac_address", "SOAP::SOAPString", [0, 1]]
2662
2662
  ]
2663
2663
  )
2664
2664
 
2665
2665
  LiteralRegistry.register(
2666
- :class => Virtuozzo::SOAP::Types::Device::Net_nicType::Status,
2666
+ :class => Virtuozzo::SOAP::Types::Devm::Net_nicType::Status,
2667
2667
  :schema_name => XSD::QName.new(NsTypes, "status"),
2668
2668
  :is_anonymous => true,
2669
2669
  :schema_qualified => true,
@@ -2674,7 +2674,7 @@ module Virtuozzo # :nodoc:
2674
2674
  )
2675
2675
 
2676
2676
  LiteralRegistry.register(
2677
- :class => Virtuozzo::SOAP::Types::Device::Perf_statType,
2677
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_statType,
2678
2678
  :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
2679
2679
  :schema_element => [
2680
2680
  ["cur", "SOAP::SOAPAnySimpleType"],
@@ -2685,63 +2685,63 @@ module Virtuozzo # :nodoc:
2685
2685
  )
2686
2686
 
2687
2687
  LiteralRegistry.register(
2688
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType,
2688
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType,
2689
2689
  :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
2690
2690
  :schema_element => [
2691
2691
  ["eid", nil],
2692
- ["v_class", ["Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2693
- ["interval", "Virtuozzo::SOAP::Types::Device::IntervalType"]
2692
+ ["v_class", ["Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2693
+ ["interval", "Virtuozzo::SOAP::Types::Devm::IntervalType"]
2694
2694
  ]
2695
2695
  )
2696
2696
 
2697
2697
  LiteralRegistry.register(
2698
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance::Counter,
2698
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance::Counter,
2699
2699
  :schema_name => XSD::QName.new(NsTypes, "counter"),
2700
2700
  :is_anonymous => true,
2701
2701
  :schema_qualified => true,
2702
2702
  :schema_element => [
2703
2703
  ["name", "SOAP::SOAPString"],
2704
- ["value", "Virtuozzo::SOAP::Types::Device::Perf_statType"]
2704
+ ["value", "Virtuozzo::SOAP::Types::Devm::Perf_statType"]
2705
2705
  ]
2706
2706
  )
2707
2707
 
2708
2708
  LiteralRegistry.register(
2709
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance,
2709
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance,
2710
2710
  :schema_name => XSD::QName.new(NsTypes, "instance"),
2711
2711
  :is_anonymous => true,
2712
2712
  :schema_qualified => true,
2713
2713
  :schema_element => [
2714
2714
  ["name", "SOAP::SOAPString", [0, 1]],
2715
- ["counter", "Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2715
+ ["counter", "Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2716
2716
  ]
2717
2717
  )
2718
2718
 
2719
2719
  LiteralRegistry.register(
2720
- :class => Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class,
2720
+ :class => Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class,
2721
2721
  :schema_name => XSD::QName.new(NsTypes, "class"),
2722
2722
  :is_anonymous => true,
2723
2723
  :schema_qualified => true,
2724
2724
  :schema_element => [
2725
2725
  ["name", "SOAP::SOAPString"],
2726
- ["instance", "Virtuozzo::SOAP::Types::Device::Perf_dataType::C_Class::Instance[]", [1, nil]]
2726
+ ["instance", "Virtuozzo::SOAP::Types::Devm::Perf_dataType::C_Class::Instance[]", [1, nil]]
2727
2727
  ]
2728
2728
  )
2729
2729
 
2730
2730
  LiteralRegistry.register(
2731
- :class => Virtuozzo::SOAP::Types::Device::Log_options_baseType,
2731
+ :class => Virtuozzo::SOAP::Types::Devm::Log_options_baseType,
2732
2732
  :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
2733
2733
  :schema_element => []
2734
2734
  )
2735
2735
 
2736
2736
  LiteralRegistry.register(
2737
- :class => Virtuozzo::SOAP::Types::Device::Log_optionsType,
2737
+ :class => Virtuozzo::SOAP::Types::Devm::Log_optionsType,
2738
2738
  :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
2739
2739
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2740
2740
  :schema_element => []
2741
2741
  )
2742
2742
 
2743
2743
  LiteralRegistry.register(
2744
- :class => Virtuozzo::SOAP::Types::Device::Virtuozzo_configType,
2744
+ :class => Virtuozzo::SOAP::Types::Devm::Virtuozzo_configType,
2745
2745
  :schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
2746
2746
  :schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
2747
2747
  :schema_element => [
@@ -2750,7 +2750,7 @@ module Virtuozzo # :nodoc:
2750
2750
  )
2751
2751
 
2752
2752
  LiteralRegistry.register(
2753
- :class => Virtuozzo::SOAP::Types::Device::Log_optionsType_,
2753
+ :class => Virtuozzo::SOAP::Types::Devm::Log_optionsType_,
2754
2754
  :schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
2755
2755
  :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2756
2756
  :schema_element => [
@@ -2759,7 +2759,7 @@ module Virtuozzo # :nodoc:
2759
2759
  )
2760
2760
 
2761
2761
  LiteralRegistry.register(
2762
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_,
2762
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_,
2763
2763
  :schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
2764
2764
  :schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
2765
2765
  :schema_element => [
@@ -2767,46 +2767,46 @@ module Virtuozzo # :nodoc:
2767
2767
  ["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
2768
2768
  ["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
2769
2769
  ["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
2770
- ["address", ["Virtuozzo::SOAP::Types::Device::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
2770
+ ["address", ["Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
2771
2771
  ["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
2772
- ["os", ["Virtuozzo::SOAP::Types::Device::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2772
+ ["os", ["Virtuozzo::SOAP::Types::Devm::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2773
2773
  ["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
2774
2774
  ["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
2775
2775
  ["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
2776
2776
  ["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
2777
2777
  ["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
2778
2778
  ["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
2779
- ["qos", ["Virtuozzo::SOAP::Types::Device::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
2779
+ ["qos", ["Virtuozzo::SOAP::Types::Devm::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
2780
2780
  ["veid", nil, [0, 1]],
2781
2781
  ["ve_root", "SOAP::SOAPString", [0, 1]],
2782
2782
  ["ve_private", "SOAP::SOAPString", [0, 1]],
2783
2783
  ["on_boot", "SOAP::SOAPBoolean", [0, 1]],
2784
- ["template", "Virtuozzo::SOAP::Types::Device::TemplateType[]", [0, nil]],
2784
+ ["template", "Virtuozzo::SOAP::Types::Devm::TemplateType[]", [0, nil]],
2785
2785
  ["disabled", "SOAP::SOAPBoolean", [0, 1]],
2786
2786
  ["offline_management", "SOAP::SOAPBoolean", [0, 1]],
2787
- ["os_template", "Virtuozzo::SOAP::Types::Device::TemplateType", [0, 1]],
2788
- ["distribution", "Virtuozzo::SOAP::Types::Device::TemplateType", [0, 1]],
2789
- ["capability", "Virtuozzo::SOAP::Types::Device::Venv_configType_::Capability[]", [0, nil]],
2787
+ ["os_template", "Virtuozzo::SOAP::Types::Devm::TemplateType", [0, 1]],
2788
+ ["distribution", "Virtuozzo::SOAP::Types::Devm::TemplateType", [0, 1]],
2789
+ ["capability", "Virtuozzo::SOAP::Types::Devm::Venv_configType_::Capability[]", [0, nil]],
2790
2790
  ["iptables", "SOAP::SOAPString[]", [0, nil]],
2791
2791
  ["config_customized", "SOAP::SOAPBoolean", [0, 1]],
2792
2792
  ["class_id", "SOAP::SOAPString", [0, 1]],
2793
- ["ve_type", "Virtuozzo::SOAP::Types::Device::Venv_configType_::Ve_type", [0, 1]],
2793
+ ["ve_type", "Virtuozzo::SOAP::Types::Devm::Venv_configType_::Ve_type", [0, 1]],
2794
2794
  ["offline_service", "SOAP::SOAPString[]", [0, nil]],
2795
2795
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
2796
- ["net_device", "Virtuozzo::SOAP::Types::Device::Net_vethType[]", [0, nil]],
2796
+ ["net_device", "Virtuozzo::SOAP::Types::Devm::Net_vethType[]", [0, nil]],
2797
2797
  ["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
2798
2798
  ["ts_mode", "SOAP::SOAPInt", [0, 1]],
2799
2799
  ["uuid", "SOAP::SOAPString", [0, 1]],
2800
2800
  ["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
2801
2801
  ["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
2802
- ["interface_rate", "Virtuozzo::SOAP::Types::Device::Venv_configType_::Interface_rate[]", [0, nil]],
2802
+ ["interface_rate", "Virtuozzo::SOAP::Types::Devm::Venv_configType_::Interface_rate[]", [0, nil]],
2803
2803
  ["slm_mode", "SOAP::SOAPString", [0, 1]],
2804
2804
  ["origin_sample", "SOAP::SOAPString", [0, 1]]
2805
2805
  ]
2806
2806
  )
2807
2807
 
2808
2808
  LiteralRegistry.register(
2809
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_::Capability,
2809
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_::Capability,
2810
2810
  :schema_name => XSD::QName.new(NsVzatypes, "capability"),
2811
2811
  :is_anonymous => true,
2812
2812
  :schema_qualified => true,
@@ -2817,7 +2817,7 @@ module Virtuozzo # :nodoc:
2817
2817
  )
2818
2818
 
2819
2819
  LiteralRegistry.register(
2820
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_::Ve_type,
2820
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_::Ve_type,
2821
2821
  :schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
2822
2822
  :is_anonymous => true,
2823
2823
  :schema_qualified => true,
@@ -2828,7 +2828,7 @@ module Virtuozzo # :nodoc:
2828
2828
  )
2829
2829
 
2830
2830
  LiteralRegistry.register(
2831
- :class => Virtuozzo::SOAP::Types::Device::Venv_configType_::Interface_rate,
2831
+ :class => Virtuozzo::SOAP::Types::Devm::Venv_configType_::Interface_rate,
2832
2832
  :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
2833
2833
  :is_anonymous => true,
2834
2834
  :schema_qualified => true,
@@ -2839,19 +2839,19 @@ module Virtuozzo # :nodoc:
2839
2839
  )
2840
2840
 
2841
2841
  LiteralRegistry.register(
2842
- :class => Virtuozzo::SOAP::Types::Device::Vt_settingsType_,
2842
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_settingsType_,
2843
2843
  :schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
2844
2844
  :schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
2845
2845
  :schema_element => [
2846
2846
  ["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
2847
- ["parameter", "Virtuozzo::SOAP::Types::Device::Vt_settingsType_::Parameter[]", [0, nil]],
2848
- ["service", "Virtuozzo::SOAP::Types::Device::Redirect_serviceType[]", [0, nil]],
2849
- ["qos", "Virtuozzo::SOAP::Types::Device::QosType[]", [0, nil]]
2847
+ ["parameter", "Virtuozzo::SOAP::Types::Devm::Vt_settingsType_::Parameter[]", [0, nil]],
2848
+ ["service", "Virtuozzo::SOAP::Types::Devm::Redirect_serviceType[]", [0, nil]],
2849
+ ["qos", "Virtuozzo::SOAP::Types::Devm::QosType[]", [0, nil]]
2850
2850
  ]
2851
2851
  )
2852
2852
 
2853
2853
  LiteralRegistry.register(
2854
- :class => Virtuozzo::SOAP::Types::Device::Vt_settingsType_::Parameter,
2854
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_settingsType_::Parameter,
2855
2855
  :schema_name => XSD::QName.new(NsVzatypes, "parameter"),
2856
2856
  :is_anonymous => true,
2857
2857
  :schema_qualified => true,
@@ -2862,7 +2862,7 @@ module Virtuozzo # :nodoc:
2862
2862
  )
2863
2863
 
2864
2864
  LiteralRegistry.register(
2865
- :class => Virtuozzo::SOAP::Types::Device::Vt_infoType_,
2865
+ :class => Virtuozzo::SOAP::Types::Devm::Vt_infoType_,
2866
2866
  :schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
2867
2867
  :schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
2868
2868
  :schema_element => [
@@ -2874,7 +2874,7 @@ module Virtuozzo # :nodoc:
2874
2874
  )
2875
2875
 
2876
2876
  LiteralRegistry.register(
2877
- :class => Virtuozzo::SOAP::Types::Device::Redirect_serviceType,
2877
+ :class => Virtuozzo::SOAP::Types::Devm::Redirect_serviceType,
2878
2878
  :schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
2879
2879
  :schema_element => [
2880
2880
  ["id", "SOAP::SOAPString"],
@@ -2885,7 +2885,7 @@ module Virtuozzo # :nodoc:
2885
2885
  )
2886
2886
 
2887
2887
  LiteralRegistry.register(
2888
- :class => Virtuozzo::SOAP::Types::Device::TemplateType,
2888
+ :class => Virtuozzo::SOAP::Types::Devm::TemplateType,
2889
2889
  :schema_type => XSD::QName.new(NsVzatypes, "templateType"),
2890
2890
  :schema_element => [
2891
2891
  ["name", "SOAP::SOAPString"],
@@ -2894,13 +2894,13 @@ module Virtuozzo # :nodoc:
2894
2894
  )
2895
2895
 
2896
2896
  LiteralRegistry.register(
2897
- :class => Virtuozzo::SOAP::Types::Device::Package_std_vztemplateType,
2897
+ :class => Virtuozzo::SOAP::Types::Devm::Package_std_vztemplateType,
2898
2898
  :schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
2899
2899
  :schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
2900
2900
  :schema_element => [
2901
2901
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
2902
2902
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
2903
- ["os", ["Virtuozzo::SOAP::Types::Device::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2903
+ ["os", ["Virtuozzo::SOAP::Types::Devm::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2904
2904
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
2905
2905
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
2906
2906
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -2914,13 +2914,13 @@ module Virtuozzo # :nodoc:
2914
2914
  )
2915
2915
 
2916
2916
  LiteralRegistry.register(
2917
- :class => Virtuozzo::SOAP::Types::Device::Package_vztemplateType,
2917
+ :class => Virtuozzo::SOAP::Types::Devm::Package_vztemplateType,
2918
2918
  :schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
2919
2919
  :schema_basetype => XSD::QName.new(NsTypes, "packageType"),
2920
2920
  :schema_element => [
2921
2921
  ["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
2922
2922
  ["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
2923
- ["os", ["Virtuozzo::SOAP::Types::Device::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2923
+ ["os", ["Virtuozzo::SOAP::Types::Devm::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
2924
2924
  ["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
2925
2925
  ["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
2926
2926
  ["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
@@ -2933,7 +2933,7 @@ module Virtuozzo # :nodoc:
2933
2933
  )
2934
2934
 
2935
2935
  LiteralRegistry.register(
2936
- :class => Virtuozzo::SOAP::Types::Device::Env_security_objectType_,
2936
+ :class => Virtuozzo::SOAP::Types::Devm::Env_security_objectType_,
2937
2937
  :schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
2938
2938
  :schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
2939
2939
  :schema_element => [
@@ -2942,15 +2942,15 @@ module Virtuozzo # :nodoc:
2942
2942
  )
2943
2943
 
2944
2944
  LiteralRegistry.register(
2945
- :class => Virtuozzo::SOAP::Types::Device::Net_vethType,
2945
+ :class => Virtuozzo::SOAP::Types::Devm::Net_vethType,
2946
2946
  :schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
2947
2947
  :schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
2948
2948
  :schema_element => [
2949
2949
  ["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
2950
- ["ip_address", ["Virtuozzo::SOAP::Types::Device::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
2950
+ ["ip_address", ["Virtuozzo::SOAP::Types::Devm::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
2951
2951
  ["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
2952
2952
  ["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
2953
- ["status", ["Virtuozzo::SOAP::Types::Device::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
2953
+ ["status", ["Virtuozzo::SOAP::Types::Devm::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
2954
2954
  ["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
2955
2955
  ["wins_server", "SOAP::SOAPString[]", [0, nil]],
2956
2956
  ["nameserver", "SOAP::SOAPString[]", [0, nil]],
@@ -2960,7 +2960,7 @@ module Virtuozzo # :nodoc:
2960
2960
  )
2961
2961
 
2962
2962
  LiteralRegistry.register(
2963
- :class => Virtuozzo::SOAP::Types::Device::Net_vethType::Status,
2963
+ :class => Virtuozzo::SOAP::Types::Devm::Net_vethType::Status,
2964
2964
  :schema_name => XSD::QName.new(NsTypes, "status"),
2965
2965
  :is_anonymous => true,
2966
2966
  :schema_qualified => true,
@@ -2971,52 +2971,52 @@ module Virtuozzo # :nodoc:
2971
2971
  )
2972
2972
 
2973
2973
  LiteralRegistry.register(
2974
- :class => Virtuozzo::SOAP::Types::Device::EnvType_,
2974
+ :class => Virtuozzo::SOAP::Types::Devm::EnvType_,
2975
2975
  :schema_type => XSD::QName.new(NsVzatypes, "envType"),
2976
2976
  :schema_basetype => XSD::QName.new(NsTypes, "envType"),
2977
2977
  :schema_element => [
2978
2978
  ["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
2979
2979
  ["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
2980
- ["status", ["Virtuozzo::SOAP::Types::Device::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
2980
+ ["status", ["Virtuozzo::SOAP::Types::Devm::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
2981
2981
  ["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
2982
- ["config", ["Virtuozzo::SOAP::Types::Device::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
2983
- ["virtual_config", ["Virtuozzo::SOAP::Types::Device::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
2982
+ ["config", ["Virtuozzo::SOAP::Types::Devm::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
2983
+ ["virtual_config", ["Virtuozzo::SOAP::Types::Devm::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
2984
2984
  ]
2985
2985
  )
2986
2986
 
2987
2987
  LiteralRegistry.register(
2988
- :class => Virtuozzo::SOAP::Types::Device::DevmType,
2988
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType,
2989
2989
  :schema_type => XSD::QName.new(NsDevm, "devmType"),
2990
2990
  :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
2991
2991
  :schema_element => [ :choice,
2992
- ["configuration", ["Virtuozzo::SOAP::Types::Device::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
2993
- ["ok", ["Virtuozzo::SOAP::Types::Device::DevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
2994
- ["error", ["Virtuozzo::SOAP::Types::Device::DevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
2992
+ ["configuration", ["Virtuozzo::SOAP::Types::Devm::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
2993
+ ["ok", ["Virtuozzo::SOAP::Types::Devm::DevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
2994
+ ["error", ["Virtuozzo::SOAP::Types::Devm::DevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
2995
2995
  [
2996
- ["get_mounts", "Virtuozzo::SOAP::Types::Device::Get_mounts[]", [0, 1]],
2997
- ["new_mount", "Virtuozzo::SOAP::Types::Device::New_mount[]", [0, 1]],
2998
- ["umount", "Virtuozzo::SOAP::Types::Device::Umount[]", [0, 1]],
2999
- ["get_info", "Virtuozzo::SOAP::Types::Device::Get_info[]", [0, 1]],
3000
- ["create_drive", "Virtuozzo::SOAP::Types::Device::Create_drive[]", [0, 1]],
3001
- ["delete_drive", "Virtuozzo::SOAP::Types::Device::Delete_drive[]", [0, 1]],
3002
- ["resize_drive", "Virtuozzo::SOAP::Types::Device::Resize_drive[]", [0, 1]],
3003
- ["format_drive", "Virtuozzo::SOAP::Types::Device::Format_drive[]", [0, 1]],
3004
- ["list_device", "Virtuozzo::SOAP::Types::Device::List_device[]", [0, 1]],
3005
- ["forward_device", "Virtuozzo::SOAP::Types::Device::Forward_device[]", [0, 1]],
3006
- ["remove_forward", "Virtuozzo::SOAP::Types::Device::Remove_forward[]", [0, 1]],
3007
- ["list_forward", "Virtuozzo::SOAP::Types::Device::List_forward[]", [0, 1]]
2996
+ ["get_mounts", "Virtuozzo::SOAP::Types::Devm::Get_mounts[]", [0, 1]],
2997
+ ["new_mount", "Virtuozzo::SOAP::Types::Devm::New_mount[]", [0, 1]],
2998
+ ["umount", "Virtuozzo::SOAP::Types::Devm::Umount[]", [0, 1]],
2999
+ ["get_info", "Virtuozzo::SOAP::Types::Devm::Get_info[]", [0, 1]],
3000
+ ["create_drive", "Virtuozzo::SOAP::Types::Devm::Create_drive[]", [0, 1]],
3001
+ ["delete_drive", "Virtuozzo::SOAP::Types::Devm::Delete_drive[]", [0, 1]],
3002
+ ["resize_drive", "Virtuozzo::SOAP::Types::Devm::Resize_drive[]", [0, 1]],
3003
+ ["format_drive", "Virtuozzo::SOAP::Types::Devm::Format_drive[]", [0, 1]],
3004
+ ["list_device", "Virtuozzo::SOAP::Types::Devm::List_device[]", [0, 1]],
3005
+ ["forward_device", "Virtuozzo::SOAP::Types::Devm::Forward_device[]", [0, 1]],
3006
+ ["remove_forward", "Virtuozzo::SOAP::Types::Devm::Remove_forward[]", [0, 1]],
3007
+ ["list_forward", "Virtuozzo::SOAP::Types::Devm::List_forward[]", [0, 1]]
3008
3008
  ],
3009
3009
  [
3010
- ["mount", "Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", [0, nil]],
3011
- ["device_info", "Virtuozzo::SOAP::Types::Device::Device_info[]", [0, 1]],
3012
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType[]", [0, 1]],
3013
- ["forward", "Virtuozzo::SOAP::Types::Device::Forward[]", [0, 1]]
3010
+ ["mount", "Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", [0, nil]],
3011
+ ["device_info", "Virtuozzo::SOAP::Types::Devm::Device_info[]", [0, 1]],
3012
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", [0, 1]],
3013
+ ["forward", "Virtuozzo::SOAP::Types::Devm::Forward[]", [0, 1]]
3014
3014
  ]
3015
3015
  ]
3016
3016
  )
3017
3017
 
3018
3018
  LiteralRegistry.register(
3019
- :class => Virtuozzo::SOAP::Types::Device::DevmType::Ok,
3019
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType::Ok,
3020
3020
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3021
3021
  :is_anonymous => true,
3022
3022
  :schema_qualified => true,
@@ -3024,7 +3024,7 @@ module Virtuozzo # :nodoc:
3024
3024
  )
3025
3025
 
3026
3026
  LiteralRegistry.register(
3027
- :class => Virtuozzo::SOAP::Types::Device::DevmType::Error,
3027
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType::Error,
3028
3028
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3029
3029
  :is_anonymous => true,
3030
3030
  :schema_qualified => true,
@@ -3035,7 +3035,7 @@ module Virtuozzo # :nodoc:
3035
3035
  )
3036
3036
 
3037
3037
  LiteralRegistry.register(
3038
- :class => Virtuozzo::SOAP::Types::Device::Mount_deviceType,
3038
+ :class => Virtuozzo::SOAP::Types::Devm::Mount_deviceType,
3039
3039
  :schema_type => XSD::QName.new(NsDevm, "mount_deviceType"),
3040
3040
  :schema_element => [
3041
3041
  ["permanent", "SOAP::SOAPBoolean", [0, 1]],
@@ -3049,7 +3049,7 @@ module Virtuozzo # :nodoc:
3049
3049
  )
3050
3050
 
3051
3051
  LiteralRegistry.register(
3052
- :class => Virtuozzo::SOAP::Types::Device::Common_deviceType,
3052
+ :class => Virtuozzo::SOAP::Types::Devm::Common_deviceType,
3053
3053
  :schema_type => XSD::QName.new(NsDevm, "common_deviceType"),
3054
3054
  :schema_element => [
3055
3055
  ["name", "SOAP::SOAPString", [0, 1]],
@@ -3058,7 +3058,7 @@ module Virtuozzo # :nodoc:
3058
3058
  )
3059
3059
 
3060
3060
  LiteralRegistry.register(
3061
- :class => Virtuozzo::SOAP::Types::Device::Windows_deviceType,
3061
+ :class => Virtuozzo::SOAP::Types::Devm::Windows_deviceType,
3062
3062
  :schema_type => XSD::QName.new(NsDevm, "windows_deviceType"),
3063
3063
  :schema_basetype => XSD::QName.new(NsDevm, "common_deviceType"),
3064
3064
  :schema_element => [
@@ -3069,7 +3069,7 @@ module Virtuozzo # :nodoc:
3069
3069
  )
3070
3070
 
3071
3071
  LiteralRegistry.register(
3072
- :class => Virtuozzo::SOAP::Types::Device::Scsi_deviceType,
3072
+ :class => Virtuozzo::SOAP::Types::Devm::Scsi_deviceType,
3073
3073
  :schema_type => XSD::QName.new(NsDevm, "scsi_deviceType"),
3074
3074
  :schema_basetype => XSD::QName.new(NsDevm, "windows_deviceType"),
3075
3075
  :schema_element => [
@@ -3080,25 +3080,25 @@ module Virtuozzo # :nodoc:
3080
3080
  )
3081
3081
 
3082
3082
  LiteralRegistry.register(
3083
- :class => Virtuozzo::SOAP::Types::Device::Transport_type,
3083
+ :class => Virtuozzo::SOAP::Types::Devm::Transport_type,
3084
3084
  :schema_type => XSD::QName.new(NsTypes, "transport_type")
3085
3085
  )
3086
3086
 
3087
3087
  LiteralRegistry.register(
3088
- :class => Virtuozzo::SOAP::Types::Device::Yes_no_type,
3088
+ :class => Virtuozzo::SOAP::Types::Devm::Yes_no_type,
3089
3089
  :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
3090
3090
  )
3091
3091
 
3092
3092
  LiteralRegistry.register(
3093
- :class => Virtuozzo::SOAP::Types::Device::Packet_headerType,
3093
+ :class => Virtuozzo::SOAP::Types::Devm::Packet_headerType,
3094
3094
  :schema_name => XSD::QName.new(NsVzadevm_0, "packet_header"),
3095
3095
  :schema_element => [
3096
- ["auth", "Virtuozzo::SOAP::Types::Device::AuthType", [0, 1]],
3096
+ ["auth", "Virtuozzo::SOAP::Types::Devm::AuthType", [0, 1]],
3097
3097
  ["cookie", "SOAP::SOAPString", [0, 1]],
3098
3098
  ["target", "SOAP::SOAPString[]", [0, nil]],
3099
3099
  ["origin", "SOAP::SOAPString", [0, 1]],
3100
- ["src", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
3101
- ["dst", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
3100
+ ["src", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
3101
+ ["dst", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
3102
3102
  ["session", "SOAP::SOAPString", [0, 1]]
3103
3103
  ],
3104
3104
  :schema_attribute => {
@@ -3116,37 +3116,37 @@ module Virtuozzo # :nodoc:
3116
3116
  )
3117
3117
 
3118
3118
  LiteralRegistry.register(
3119
- :class => Virtuozzo::SOAP::Types::Device::Vzadevm,
3119
+ :class => Virtuozzo::SOAP::Types::Devm::Vzadevm,
3120
3120
  :schema_name => XSD::QName.new(NsVzadevm, "vzadevm"),
3121
3121
  :schema_element => [
3122
- ["configuration", ["Virtuozzo::SOAP::Types::Device::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3123
- ["ok", ["Virtuozzo::SOAP::Types::Device::Vzadevm::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3124
- ["error", ["Virtuozzo::SOAP::Types::Device::Vzadevm::Error[]", XSD::QName.new(NsProtocol, "error")]],
3122
+ ["configuration", ["Virtuozzo::SOAP::Types::Devm::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3123
+ ["ok", ["Virtuozzo::SOAP::Types::Devm::Vzadevm::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3124
+ ["error", ["Virtuozzo::SOAP::Types::Devm::Vzadevm::Error[]", XSD::QName.new(NsProtocol, "error")]],
3125
3125
  [
3126
- ["get_mounts", ["Virtuozzo::SOAP::Types::Device::Get_mounts[]", XSD::QName.new(NsDevm, "get_mounts")], [0, 1]],
3127
- ["new_mount", ["Virtuozzo::SOAP::Types::Device::New_mount[]", XSD::QName.new(NsDevm, "new_mount")], [0, 1]],
3128
- ["umount", ["Virtuozzo::SOAP::Types::Device::Umount[]", XSD::QName.new(NsDevm, "umount")], [0, 1]],
3129
- ["get_info", ["Virtuozzo::SOAP::Types::Device::Get_info[]", XSD::QName.new(NsDevm, "get_info")], [0, 1]],
3130
- ["create_drive", ["Virtuozzo::SOAP::Types::Device::Create_drive[]", XSD::QName.new(NsDevm, "create_drive")], [0, 1]],
3131
- ["delete_drive", ["Virtuozzo::SOAP::Types::Device::Delete_drive[]", XSD::QName.new(NsDevm, "delete_drive")], [0, 1]],
3132
- ["resize_drive", ["Virtuozzo::SOAP::Types::Device::Resize_drive[]", XSD::QName.new(NsDevm, "resize_drive")], [0, 1]],
3133
- ["format_drive", ["Virtuozzo::SOAP::Types::Device::Format_drive[]", XSD::QName.new(NsDevm, "format_drive")], [0, 1]],
3134
- ["list_device", ["Virtuozzo::SOAP::Types::Device::List_device[]", XSD::QName.new(NsDevm, "list_device")], [0, 1]],
3135
- ["forward_device", ["Virtuozzo::SOAP::Types::Device::Forward_device[]", XSD::QName.new(NsDevm, "forward_device")], [0, 1]],
3136
- ["remove_forward", ["Virtuozzo::SOAP::Types::Device::Remove_forward[]", XSD::QName.new(NsDevm, "remove_forward")], [0, 1]],
3137
- ["list_forward", ["Virtuozzo::SOAP::Types::Device::List_forward[]", XSD::QName.new(NsDevm, "list_forward")], [0, 1]]
3126
+ ["get_mounts", ["Virtuozzo::SOAP::Types::Devm::Get_mounts[]", XSD::QName.new(NsDevm, "get_mounts")], [0, 1]],
3127
+ ["new_mount", ["Virtuozzo::SOAP::Types::Devm::New_mount[]", XSD::QName.new(NsDevm, "new_mount")], [0, 1]],
3128
+ ["umount", ["Virtuozzo::SOAP::Types::Devm::Umount[]", XSD::QName.new(NsDevm, "umount")], [0, 1]],
3129
+ ["get_info", ["Virtuozzo::SOAP::Types::Devm::Get_info[]", XSD::QName.new(NsDevm, "get_info")], [0, 1]],
3130
+ ["create_drive", ["Virtuozzo::SOAP::Types::Devm::Create_drive[]", XSD::QName.new(NsDevm, "create_drive")], [0, 1]],
3131
+ ["delete_drive", ["Virtuozzo::SOAP::Types::Devm::Delete_drive[]", XSD::QName.new(NsDevm, "delete_drive")], [0, 1]],
3132
+ ["resize_drive", ["Virtuozzo::SOAP::Types::Devm::Resize_drive[]", XSD::QName.new(NsDevm, "resize_drive")], [0, 1]],
3133
+ ["format_drive", ["Virtuozzo::SOAP::Types::Devm::Format_drive[]", XSD::QName.new(NsDevm, "format_drive")], [0, 1]],
3134
+ ["list_device", ["Virtuozzo::SOAP::Types::Devm::List_device[]", XSD::QName.new(NsDevm, "list_device")], [0, 1]],
3135
+ ["forward_device", ["Virtuozzo::SOAP::Types::Devm::Forward_device[]", XSD::QName.new(NsDevm, "forward_device")], [0, 1]],
3136
+ ["remove_forward", ["Virtuozzo::SOAP::Types::Devm::Remove_forward[]", XSD::QName.new(NsDevm, "remove_forward")], [0, 1]],
3137
+ ["list_forward", ["Virtuozzo::SOAP::Types::Devm::List_forward[]", XSD::QName.new(NsDevm, "list_forward")], [0, 1]]
3138
3138
  ],
3139
3139
  [
3140
- ["mount", ["Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", XSD::QName.new(NsDevm, "mount")], [0, nil]],
3141
- ["device_info", ["Virtuozzo::SOAP::Types::Device::Device_info[]", XSD::QName.new(NsDevm, "device_info")], [0, 1]],
3142
- ["device", ["Virtuozzo::SOAP::Types::Device::Common_deviceType[]", XSD::QName.new(NsDevm, "device")], [0, 1]],
3143
- ["forward", ["Virtuozzo::SOAP::Types::Device::Forward[]", XSD::QName.new(NsDevm, "forward")], [0, 1]]
3140
+ ["mount", ["Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", XSD::QName.new(NsDevm, "mount")], [0, nil]],
3141
+ ["device_info", ["Virtuozzo::SOAP::Types::Devm::Device_info[]", XSD::QName.new(NsDevm, "device_info")], [0, 1]],
3142
+ ["device", ["Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", XSD::QName.new(NsDevm, "device")], [0, 1]],
3143
+ ["forward", ["Virtuozzo::SOAP::Types::Devm::Forward[]", XSD::QName.new(NsDevm, "forward")], [0, 1]]
3144
3144
  ]
3145
3145
  ]
3146
3146
  )
3147
3147
 
3148
3148
  LiteralRegistry.register(
3149
- :class => Virtuozzo::SOAP::Types::Device::Vzadevm::Ok,
3149
+ :class => Virtuozzo::SOAP::Types::Devm::Vzadevm::Ok,
3150
3150
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3151
3151
  :is_anonymous => true,
3152
3152
  :schema_qualified => true,
@@ -3154,7 +3154,7 @@ module Virtuozzo # :nodoc:
3154
3154
  )
3155
3155
 
3156
3156
  LiteralRegistry.register(
3157
- :class => Virtuozzo::SOAP::Types::Device::Vzadevm::Error,
3157
+ :class => Virtuozzo::SOAP::Types::Devm::Vzadevm::Error,
3158
3158
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3159
3159
  :is_anonymous => true,
3160
3160
  :schema_qualified => true,
@@ -3165,17 +3165,17 @@ module Virtuozzo # :nodoc:
3165
3165
  )
3166
3166
 
3167
3167
  LiteralRegistry.register(
3168
- :class => Virtuozzo::SOAP::Types::Device::Packet,
3168
+ :class => Virtuozzo::SOAP::Types::Devm::Packet,
3169
3169
  :schema_name => XSD::QName.new(NsProtocol, "packet"),
3170
3170
  :schema_element => [
3171
- ["auth", "Virtuozzo::SOAP::Types::Device::AuthType", [0, 1]],
3171
+ ["auth", "Virtuozzo::SOAP::Types::Devm::AuthType", [0, 1]],
3172
3172
  ["cookie", "SOAP::SOAPString", [0, 1]],
3173
3173
  ["target", "SOAP::SOAPString[]", [0, nil]],
3174
3174
  ["origin", "SOAP::SOAPString", [0, 1]],
3175
- ["src", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
3176
- ["dst", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
3175
+ ["src", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
3176
+ ["dst", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
3177
3177
  ["session", "SOAP::SOAPString", [0, 1]],
3178
- ["data", "Virtuozzo::SOAP::Types::Device::Packet::C_Data"]
3178
+ ["data", "Virtuozzo::SOAP::Types::Devm::Packet::C_Data"]
3179
3179
  ],
3180
3180
  :schema_attribute => {
3181
3181
  XSD::QName.new(nil, "version") => "SOAP::SOAPString",
@@ -3192,25 +3192,25 @@ module Virtuozzo # :nodoc:
3192
3192
  )
3193
3193
 
3194
3194
  LiteralRegistry.register(
3195
- :class => Virtuozzo::SOAP::Types::Device::Packet::C_Data,
3195
+ :class => Virtuozzo::SOAP::Types::Devm::Packet::C_Data,
3196
3196
  :schema_name => XSD::QName.new(NsProtocol, "data"),
3197
3197
  :is_anonymous => true,
3198
3198
  :schema_qualified => true,
3199
3199
  :schema_element => [
3200
- ["operator", "Virtuozzo::SOAP::Types::Device::OperatorType[]"]
3200
+ ["operator", "Virtuozzo::SOAP::Types::Devm::OperatorType[]"]
3201
3201
  ]
3202
3202
  )
3203
3203
 
3204
3204
  LiteralRegistry.register(
3205
- :class => Virtuozzo::SOAP::Types::Device::Packet_headerType,
3205
+ :class => Virtuozzo::SOAP::Types::Devm::Packet_headerType,
3206
3206
  :schema_name => XSD::QName.new(NsProtocol, "packet_header"),
3207
3207
  :schema_element => [
3208
- ["auth", "Virtuozzo::SOAP::Types::Device::AuthType", [0, 1]],
3208
+ ["auth", "Virtuozzo::SOAP::Types::Devm::AuthType", [0, 1]],
3209
3209
  ["cookie", "SOAP::SOAPString", [0, 1]],
3210
3210
  ["target", "SOAP::SOAPString[]", [0, nil]],
3211
3211
  ["origin", "SOAP::SOAPString", [0, 1]],
3212
- ["src", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
3213
- ["dst", "Virtuozzo::SOAP::Types::Device::RouteType", [0, 1]],
3212
+ ["src", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
3213
+ ["dst", "Virtuozzo::SOAP::Types::Devm::RouteType", [0, 1]],
3214
3214
  ["session", "SOAP::SOAPString", [0, 1]]
3215
3215
  ],
3216
3216
  :schema_attribute => {
@@ -3228,31 +3228,31 @@ module Virtuozzo # :nodoc:
3228
3228
  )
3229
3229
 
3230
3230
  LiteralRegistry.register(
3231
- :class => Virtuozzo::SOAP::Types::Device::OperatorType,
3231
+ :class => Virtuozzo::SOAP::Types::Devm::OperatorType,
3232
3232
  :schema_name => XSD::QName.new(NsProtocol, "operator"),
3233
3233
  :schema_element => [ :choice,
3234
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"]
3234
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"]
3235
3235
  ]
3236
3236
  )
3237
3237
 
3238
3238
  LiteralRegistry.register(
3239
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType,
3239
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType,
3240
3240
  :schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
3241
3241
  :schema_element => [ :choice,
3242
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"],
3243
- ["ok", "Virtuozzo::SOAP::Types::Device::Operator_periodicType::Ok[]"],
3244
- ["error", "Virtuozzo::SOAP::Types::Device::Operator_periodicType::Error[]"],
3242
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"],
3243
+ ["ok", "Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Ok[]"],
3244
+ ["error", "Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Error[]"],
3245
3245
  [ :choice,
3246
- ["start_monitor", "Virtuozzo::SOAP::Types::Device::Start_monitorType"],
3247
- ["stop_monitor", "Virtuozzo::SOAP::Types::Device::Stop_monitorType"],
3248
- ["set_period", "Virtuozzo::SOAP::Types::Device::Set_periodType", [0, 1]],
3246
+ ["start_monitor", "Virtuozzo::SOAP::Types::Devm::Start_monitorType"],
3247
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Devm::Stop_monitorType"],
3248
+ ["set_period", "Virtuozzo::SOAP::Types::Devm::Set_periodType", [0, 1]],
3249
3249
  ["report", nil, [0, 1]]
3250
3250
  ]
3251
3251
  ]
3252
3252
  )
3253
3253
 
3254
3254
  LiteralRegistry.register(
3255
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType::Ok,
3255
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Ok,
3256
3256
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3257
3257
  :is_anonymous => true,
3258
3258
  :schema_qualified => true,
@@ -3260,7 +3260,7 @@ module Virtuozzo # :nodoc:
3260
3260
  )
3261
3261
 
3262
3262
  LiteralRegistry.register(
3263
- :class => Virtuozzo::SOAP::Types::Device::Operator_periodicType::Error,
3263
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_periodicType::Error,
3264
3264
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3265
3265
  :is_anonymous => true,
3266
3266
  :schema_qualified => true,
@@ -3271,17 +3271,17 @@ module Virtuozzo # :nodoc:
3271
3271
  )
3272
3272
 
3273
3273
  LiteralRegistry.register(
3274
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType,
3274
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType,
3275
3275
  :schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
3276
3276
  :schema_element => [ :choice,
3277
- ["configuration", "Virtuozzo::SOAP::Types::Device::ConfigurationType"],
3278
- ["ok", "Virtuozzo::SOAP::Types::Device::Operator_functionalType::Ok[]"],
3279
- ["error", "Virtuozzo::SOAP::Types::Device::Operator_functionalType::Error[]"]
3277
+ ["configuration", "Virtuozzo::SOAP::Types::Devm::ConfigurationType"],
3278
+ ["ok", "Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Ok[]"],
3279
+ ["error", "Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Error[]"]
3280
3280
  ]
3281
3281
  )
3282
3282
 
3283
3283
  LiteralRegistry.register(
3284
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType::Ok,
3284
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Ok,
3285
3285
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3286
3286
  :is_anonymous => true,
3287
3287
  :schema_qualified => true,
@@ -3289,7 +3289,7 @@ module Virtuozzo # :nodoc:
3289
3289
  )
3290
3290
 
3291
3291
  LiteralRegistry.register(
3292
- :class => Virtuozzo::SOAP::Types::Device::Operator_functionalType::Error,
3292
+ :class => Virtuozzo::SOAP::Types::Devm::Operator_functionalType::Error,
3293
3293
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3294
3294
  :is_anonymous => true,
3295
3295
  :schema_qualified => true,
@@ -3300,13 +3300,13 @@ module Virtuozzo # :nodoc:
3300
3300
  )
3301
3301
 
3302
3302
  LiteralRegistry.register(
3303
- :class => Virtuozzo::SOAP::Types::Device::Event_dataType,
3303
+ :class => Virtuozzo::SOAP::Types::Devm::Event_dataType,
3304
3304
  :schema_name => XSD::QName.new(NsTypes, "event_data"),
3305
3305
  :schema_element => []
3306
3306
  )
3307
3307
 
3308
3308
  LiteralRegistry.register(
3309
- :class => Virtuozzo::SOAP::Types::Device::Voc_parameterType,
3309
+ :class => Virtuozzo::SOAP::Types::Devm::Voc_parameterType,
3310
3310
  :schema_name => XSD::QName.new(NsTypes, "parameter"),
3311
3311
  :schema_element => [
3312
3312
  ["id", "SOAP::SOAPString"],
@@ -3325,7 +3325,7 @@ module Virtuozzo # :nodoc:
3325
3325
  )
3326
3326
 
3327
3327
  LiteralRegistry.register(
3328
- :class => Virtuozzo::SOAP::Types::Device::Voc_parameterType,
3328
+ :class => Virtuozzo::SOAP::Types::Devm::Voc_parameterType,
3329
3329
  :schema_name => XSD::QName.new(NsTypes, "category"),
3330
3330
  :schema_element => [
3331
3331
  ["id", "SOAP::SOAPString"],
@@ -3344,7 +3344,7 @@ module Virtuozzo # :nodoc:
3344
3344
  )
3345
3345
 
3346
3346
  LiteralRegistry.register(
3347
- :class => Virtuozzo::SOAP::Types::Device::Interface_rate,
3347
+ :class => Virtuozzo::SOAP::Types::Devm::Interface_rate,
3348
3348
  :schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
3349
3349
  :schema_element => [
3350
3350
  ["class_id", "SOAP::SOAPString"],
@@ -3354,37 +3354,37 @@ module Virtuozzo # :nodoc:
3354
3354
  )
3355
3355
 
3356
3356
  LiteralRegistry.register(
3357
- :class => Virtuozzo::SOAP::Types::Device::DevmType,
3357
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType,
3358
3358
  :schema_name => XSD::QName.new(NsDevm, "devm"),
3359
3359
  :schema_element => [ :choice,
3360
- ["configuration", ["Virtuozzo::SOAP::Types::Device::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3361
- ["ok", ["Virtuozzo::SOAP::Types::Device::DevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3362
- ["error", ["Virtuozzo::SOAP::Types::Device::DevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
3360
+ ["configuration", ["Virtuozzo::SOAP::Types::Devm::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
3361
+ ["ok", ["Virtuozzo::SOAP::Types::Devm::DevmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
3362
+ ["error", ["Virtuozzo::SOAP::Types::Devm::DevmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
3363
3363
  [
3364
- ["get_mounts", "Virtuozzo::SOAP::Types::Device::Get_mounts[]", [0, 1]],
3365
- ["new_mount", "Virtuozzo::SOAP::Types::Device::New_mount[]", [0, 1]],
3366
- ["umount", "Virtuozzo::SOAP::Types::Device::Umount[]", [0, 1]],
3367
- ["get_info", "Virtuozzo::SOAP::Types::Device::Get_info[]", [0, 1]],
3368
- ["create_drive", "Virtuozzo::SOAP::Types::Device::Create_drive[]", [0, 1]],
3369
- ["delete_drive", "Virtuozzo::SOAP::Types::Device::Delete_drive[]", [0, 1]],
3370
- ["resize_drive", "Virtuozzo::SOAP::Types::Device::Resize_drive[]", [0, 1]],
3371
- ["format_drive", "Virtuozzo::SOAP::Types::Device::Format_drive[]", [0, 1]],
3372
- ["list_device", "Virtuozzo::SOAP::Types::Device::List_device[]", [0, 1]],
3373
- ["forward_device", "Virtuozzo::SOAP::Types::Device::Forward_device[]", [0, 1]],
3374
- ["remove_forward", "Virtuozzo::SOAP::Types::Device::Remove_forward[]", [0, 1]],
3375
- ["list_forward", "Virtuozzo::SOAP::Types::Device::List_forward[]", [0, 1]]
3364
+ ["get_mounts", "Virtuozzo::SOAP::Types::Devm::Get_mounts[]", [0, 1]],
3365
+ ["new_mount", "Virtuozzo::SOAP::Types::Devm::New_mount[]", [0, 1]],
3366
+ ["umount", "Virtuozzo::SOAP::Types::Devm::Umount[]", [0, 1]],
3367
+ ["get_info", "Virtuozzo::SOAP::Types::Devm::Get_info[]", [0, 1]],
3368
+ ["create_drive", "Virtuozzo::SOAP::Types::Devm::Create_drive[]", [0, 1]],
3369
+ ["delete_drive", "Virtuozzo::SOAP::Types::Devm::Delete_drive[]", [0, 1]],
3370
+ ["resize_drive", "Virtuozzo::SOAP::Types::Devm::Resize_drive[]", [0, 1]],
3371
+ ["format_drive", "Virtuozzo::SOAP::Types::Devm::Format_drive[]", [0, 1]],
3372
+ ["list_device", "Virtuozzo::SOAP::Types::Devm::List_device[]", [0, 1]],
3373
+ ["forward_device", "Virtuozzo::SOAP::Types::Devm::Forward_device[]", [0, 1]],
3374
+ ["remove_forward", "Virtuozzo::SOAP::Types::Devm::Remove_forward[]", [0, 1]],
3375
+ ["list_forward", "Virtuozzo::SOAP::Types::Devm::List_forward[]", [0, 1]]
3376
3376
  ],
3377
3377
  [
3378
- ["mount", "Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", [0, nil]],
3379
- ["device_info", "Virtuozzo::SOAP::Types::Device::Device_info[]", [0, 1]],
3380
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType[]", [0, 1]],
3381
- ["forward", "Virtuozzo::SOAP::Types::Device::Forward[]", [0, 1]]
3378
+ ["mount", "Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", [0, nil]],
3379
+ ["device_info", "Virtuozzo::SOAP::Types::Devm::Device_info[]", [0, 1]],
3380
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", [0, 1]],
3381
+ ["forward", "Virtuozzo::SOAP::Types::Devm::Forward[]", [0, 1]]
3382
3382
  ]
3383
3383
  ]
3384
3384
  )
3385
3385
 
3386
3386
  LiteralRegistry.register(
3387
- :class => Virtuozzo::SOAP::Types::Device::DevmType::Ok,
3387
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType::Ok,
3388
3388
  :schema_name => XSD::QName.new(NsProtocol, "ok"),
3389
3389
  :is_anonymous => true,
3390
3390
  :schema_qualified => true,
@@ -3392,7 +3392,7 @@ module Virtuozzo # :nodoc:
3392
3392
  )
3393
3393
 
3394
3394
  LiteralRegistry.register(
3395
- :class => Virtuozzo::SOAP::Types::Device::DevmType::Error,
3395
+ :class => Virtuozzo::SOAP::Types::Devm::DevmType::Error,
3396
3396
  :schema_name => XSD::QName.new(NsProtocol, "error"),
3397
3397
  :is_anonymous => true,
3398
3398
  :schema_qualified => true,
@@ -3403,7 +3403,7 @@ module Virtuozzo # :nodoc:
3403
3403
  )
3404
3404
 
3405
3405
  LiteralRegistry.register(
3406
- :class => Virtuozzo::SOAP::Types::Device::Get_mounts,
3406
+ :class => Virtuozzo::SOAP::Types::Devm::Get_mounts,
3407
3407
  :schema_name => XSD::QName.new(NsDevm, "get_mounts"),
3408
3408
  :schema_element => [
3409
3409
  ["eid", nil, [0, 1]]
@@ -3411,7 +3411,7 @@ module Virtuozzo # :nodoc:
3411
3411
  )
3412
3412
 
3413
3413
  LiteralRegistry.register(
3414
- :class => Virtuozzo::SOAP::Types::Device::New_mount,
3414
+ :class => Virtuozzo::SOAP::Types::Devm::New_mount,
3415
3415
  :schema_name => XSD::QName.new(NsDevm, "new_mount"),
3416
3416
  :schema_element => [
3417
3417
  ["permanent", "SOAP::SOAPBoolean", [0, 1]],
@@ -3426,7 +3426,7 @@ module Virtuozzo # :nodoc:
3426
3426
  )
3427
3427
 
3428
3428
  LiteralRegistry.register(
3429
- :class => Virtuozzo::SOAP::Types::Device::Umount,
3429
+ :class => Virtuozzo::SOAP::Types::Devm::Umount,
3430
3430
  :schema_name => XSD::QName.new(NsDevm, "umount"),
3431
3431
  :schema_element => [
3432
3432
  ["permanent", "SOAP::SOAPBoolean", [0, 1]],
@@ -3441,7 +3441,7 @@ module Virtuozzo # :nodoc:
3441
3441
  )
3442
3442
 
3443
3443
  LiteralRegistry.register(
3444
- :class => Virtuozzo::SOAP::Types::Device::Mount_deviceType,
3444
+ :class => Virtuozzo::SOAP::Types::Devm::Mount_deviceType,
3445
3445
  :schema_name => XSD::QName.new(NsDevm, "mount"),
3446
3446
  :schema_element => [
3447
3447
  ["permanent", "SOAP::SOAPBoolean", [0, 1]],
@@ -3455,7 +3455,7 @@ module Virtuozzo # :nodoc:
3455
3455
  )
3456
3456
 
3457
3457
  LiteralRegistry.register(
3458
- :class => Virtuozzo::SOAP::Types::Device::Device_info,
3458
+ :class => Virtuozzo::SOAP::Types::Devm::Device_info,
3459
3459
  :schema_name => XSD::QName.new(NsDevm, "device_info"),
3460
3460
  :schema_element => [
3461
3461
  ["filesystem", "SOAP::SOAPString[]", [0, nil]],
@@ -3465,7 +3465,7 @@ module Virtuozzo # :nodoc:
3465
3465
  )
3466
3466
 
3467
3467
  LiteralRegistry.register(
3468
- :class => Virtuozzo::SOAP::Types::Device::Create_drive,
3468
+ :class => Virtuozzo::SOAP::Types::Devm::Create_drive,
3469
3469
  :schema_name => XSD::QName.new(NsDevm, "create_drive"),
3470
3470
  :schema_element => [
3471
3471
  ["permanent", "SOAP::SOAPBoolean", [0, 1]],
@@ -3480,7 +3480,7 @@ module Virtuozzo # :nodoc:
3480
3480
  )
3481
3481
 
3482
3482
  LiteralRegistry.register(
3483
- :class => Virtuozzo::SOAP::Types::Device::Delete_drive,
3483
+ :class => Virtuozzo::SOAP::Types::Devm::Delete_drive,
3484
3484
  :schema_name => XSD::QName.new(NsDevm, "delete_drive"),
3485
3485
  :schema_element => [
3486
3486
  ["eid", nil, [0, 1]],
@@ -3492,7 +3492,7 @@ module Virtuozzo # :nodoc:
3492
3492
  )
3493
3493
 
3494
3494
  LiteralRegistry.register(
3495
- :class => Virtuozzo::SOAP::Types::Device::Resize_drive,
3495
+ :class => Virtuozzo::SOAP::Types::Devm::Resize_drive,
3496
3496
  :schema_name => XSD::QName.new(NsDevm, "resize_drive"),
3497
3497
  :schema_element => [
3498
3498
  ["size", "SOAP::SOAPLong"],
@@ -3505,7 +3505,7 @@ module Virtuozzo # :nodoc:
3505
3505
  )
3506
3506
 
3507
3507
  LiteralRegistry.register(
3508
- :class => Virtuozzo::SOAP::Types::Device::Format_drive,
3508
+ :class => Virtuozzo::SOAP::Types::Devm::Format_drive,
3509
3509
  :schema_name => XSD::QName.new(NsDevm, "format_drive"),
3510
3510
  :schema_element => [
3511
3511
  ["device", "SOAP::SOAPString"],
@@ -3516,55 +3516,55 @@ module Virtuozzo # :nodoc:
3516
3516
  )
3517
3517
 
3518
3518
  LiteralRegistry.register(
3519
- :class => Virtuozzo::SOAP::Types::Device::Get_mountsResponse,
3519
+ :class => Virtuozzo::SOAP::Types::Devm::Get_mountsResponse,
3520
3520
  :schema_name => XSD::QName.new(NsDevm, "get_mountsResponse"),
3521
3521
  :schema_element => [
3522
- ["mount", "Virtuozzo::SOAP::Types::Device::Mount_deviceType[]", [1, nil]]
3522
+ ["mount", "Virtuozzo::SOAP::Types::Devm::Mount_deviceType[]", [1, nil]]
3523
3523
  ]
3524
3524
  )
3525
3525
 
3526
3526
  LiteralRegistry.register(
3527
- :class => Virtuozzo::SOAP::Types::Device::New_mountResponse,
3527
+ :class => Virtuozzo::SOAP::Types::Devm::New_mountResponse,
3528
3528
  :schema_name => XSD::QName.new(NsDevm, "new_mountResponse"),
3529
3529
  :schema_element => []
3530
3530
  )
3531
3531
 
3532
3532
  LiteralRegistry.register(
3533
- :class => Virtuozzo::SOAP::Types::Device::UmountResponse,
3533
+ :class => Virtuozzo::SOAP::Types::Devm::UmountResponse,
3534
3534
  :schema_name => XSD::QName.new(NsDevm, "umountResponse"),
3535
3535
  :schema_element => []
3536
3536
  )
3537
3537
 
3538
3538
  LiteralRegistry.register(
3539
- :class => Virtuozzo::SOAP::Types::Device::Get_infoResponse,
3539
+ :class => Virtuozzo::SOAP::Types::Devm::Get_infoResponse,
3540
3540
  :schema_name => XSD::QName.new(NsDevm, "get_infoResponse"),
3541
3541
  :schema_element => [
3542
- ["device_info", "Virtuozzo::SOAP::Types::Device::Device_info"]
3542
+ ["device_info", "Virtuozzo::SOAP::Types::Devm::Device_info"]
3543
3543
  ]
3544
3544
  )
3545
3545
 
3546
3546
  LiteralRegistry.register(
3547
- :class => Virtuozzo::SOAP::Types::Device::Create_driveResponse,
3547
+ :class => Virtuozzo::SOAP::Types::Devm::Create_driveResponse,
3548
3548
  :schema_name => XSD::QName.new(NsDevm, "create_driveResponse"),
3549
3549
  :schema_element => [
3550
- ["device_info", "Virtuozzo::SOAP::Types::Device::Device_info"]
3550
+ ["device_info", "Virtuozzo::SOAP::Types::Devm::Device_info"]
3551
3551
  ]
3552
3552
  )
3553
3553
 
3554
3554
  LiteralRegistry.register(
3555
- :class => Virtuozzo::SOAP::Types::Device::Delete_driveResponse,
3555
+ :class => Virtuozzo::SOAP::Types::Devm::Delete_driveResponse,
3556
3556
  :schema_name => XSD::QName.new(NsDevm, "delete_driveResponse"),
3557
3557
  :schema_element => []
3558
3558
  )
3559
3559
 
3560
3560
  LiteralRegistry.register(
3561
- :class => Virtuozzo::SOAP::Types::Device::Resize_driveResponse,
3561
+ :class => Virtuozzo::SOAP::Types::Devm::Resize_driveResponse,
3562
3562
  :schema_name => XSD::QName.new(NsDevm, "resize_driveResponse"),
3563
3563
  :schema_element => []
3564
3564
  )
3565
3565
 
3566
3566
  LiteralRegistry.register(
3567
- :class => Virtuozzo::SOAP::Types::Device::Common_deviceType,
3567
+ :class => Virtuozzo::SOAP::Types::Devm::Common_deviceType,
3568
3568
  :schema_name => XSD::QName.new(NsDevm, "device"),
3569
3569
  :schema_element => [
3570
3570
  ["name", "SOAP::SOAPString", [0, 1]],
@@ -3573,71 +3573,71 @@ module Virtuozzo # :nodoc:
3573
3573
  )
3574
3574
 
3575
3575
  LiteralRegistry.register(
3576
- :class => Virtuozzo::SOAP::Types::Device::Forward,
3576
+ :class => Virtuozzo::SOAP::Types::Devm::Forward,
3577
3577
  :schema_name => XSD::QName.new(NsDevm, "forward"),
3578
3578
  :schema_element => [
3579
- ["source", "Virtuozzo::SOAP::Types::Device::Forward::Source"],
3580
- ["destination", "Virtuozzo::SOAP::Types::Device::Forward::Destination"]
3579
+ ["source", "Virtuozzo::SOAP::Types::Devm::Forward::Source"],
3580
+ ["destination", "Virtuozzo::SOAP::Types::Devm::Forward::Destination"]
3581
3581
  ]
3582
3582
  )
3583
3583
 
3584
3584
  LiteralRegistry.register(
3585
- :class => Virtuozzo::SOAP::Types::Device::Forward::Source,
3585
+ :class => Virtuozzo::SOAP::Types::Devm::Forward::Source,
3586
3586
  :schema_name => XSD::QName.new(NsDevm, "source"),
3587
3587
  :is_anonymous => true,
3588
3588
  :schema_qualified => true,
3589
3589
  :schema_element => [
3590
3590
  ["eid", nil, [0, 1]],
3591
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType"]
3591
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType"]
3592
3592
  ]
3593
3593
  )
3594
3594
 
3595
3595
  LiteralRegistry.register(
3596
- :class => Virtuozzo::SOAP::Types::Device::Forward::Destination,
3596
+ :class => Virtuozzo::SOAP::Types::Devm::Forward::Destination,
3597
3597
  :schema_name => XSD::QName.new(NsDevm, "destination"),
3598
3598
  :is_anonymous => true,
3599
3599
  :schema_qualified => true,
3600
3600
  :schema_element => [
3601
3601
  ["eid", nil, [0, 1]],
3602
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType"]
3602
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType"]
3603
3603
  ]
3604
3604
  )
3605
3605
 
3606
3606
  LiteralRegistry.register(
3607
- :class => Virtuozzo::SOAP::Types::Device::List_device,
3607
+ :class => Virtuozzo::SOAP::Types::Devm::List_device,
3608
3608
  :schema_name => XSD::QName.new(NsDevm, "list_device"),
3609
3609
  :schema_element => [
3610
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType[]", [0, nil]]
3610
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", [0, nil]]
3611
3611
  ]
3612
3612
  )
3613
3613
 
3614
3614
  LiteralRegistry.register(
3615
- :class => Virtuozzo::SOAP::Types::Device::List_deviceResponse,
3615
+ :class => Virtuozzo::SOAP::Types::Devm::List_deviceResponse,
3616
3616
  :schema_name => XSD::QName.new(NsDevm, "list_deviceResponse"),
3617
3617
  :schema_element => [
3618
- ["device", "Virtuozzo::SOAP::Types::Device::Common_deviceType[]", [0, nil]]
3618
+ ["device", "Virtuozzo::SOAP::Types::Devm::Common_deviceType[]", [0, nil]]
3619
3619
  ]
3620
3620
  )
3621
3621
 
3622
3622
  LiteralRegistry.register(
3623
- :class => Virtuozzo::SOAP::Types::Device::Forward_device,
3623
+ :class => Virtuozzo::SOAP::Types::Devm::Forward_device,
3624
3624
  :schema_name => XSD::QName.new(NsDevm, "forward_device"),
3625
3625
  :schema_element => [
3626
- ["forward", "Virtuozzo::SOAP::Types::Device::Forward"]
3626
+ ["forward", "Virtuozzo::SOAP::Types::Devm::Forward"]
3627
3627
  ]
3628
3628
  )
3629
3629
 
3630
3630
  LiteralRegistry.register(
3631
- :class => Virtuozzo::SOAP::Types::Device::Remove_forward,
3631
+ :class => Virtuozzo::SOAP::Types::Devm::Remove_forward,
3632
3632
  :schema_name => XSD::QName.new(NsDevm, "remove_forward"),
3633
3633
  :schema_element => [
3634
- ["forward", "Virtuozzo::SOAP::Types::Device::Forward"],
3634
+ ["forward", "Virtuozzo::SOAP::Types::Devm::Forward"],
3635
3635
  ["force", nil, [0, 1]]
3636
3636
  ]
3637
3637
  )
3638
3638
 
3639
3639
  LiteralRegistry.register(
3640
- :class => Virtuozzo::SOAP::Types::Device::List_forward,
3640
+ :class => Virtuozzo::SOAP::Types::Devm::List_forward,
3641
3641
  :schema_name => XSD::QName.new(NsDevm, "list_forward"),
3642
3642
  :schema_element => [
3643
3643
  ["eid", nil, [0, 1]]
@@ -3645,10 +3645,10 @@ module Virtuozzo # :nodoc:
3645
3645
  )
3646
3646
 
3647
3647
  LiteralRegistry.register(
3648
- :class => Virtuozzo::SOAP::Types::Device::List_forwardResponse,
3648
+ :class => Virtuozzo::SOAP::Types::Devm::List_forwardResponse,
3649
3649
  :schema_name => XSD::QName.new(NsDevm, "list_forwardResponse"),
3650
3650
  :schema_element => [
3651
- ["forward", "Virtuozzo::SOAP::Types::Device::Forward[]", [0, nil]]
3651
+ ["forward", "Virtuozzo::SOAP::Types::Devm::Forward[]", [0, nil]]
3652
3652
  ]
3653
3653
  )
3654
3654
  end