virtuozzo 0.5.1

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