plainprograms-virtuozzo 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. data/CHANGELOG.rdoc +54 -0
  2. data/README.rdoc +52 -0
  3. data/Rakefile +15 -0
  4. data/lib/virtuozzo/constants.rb +10 -0
  5. data/lib/virtuozzo/soap/drivers/device/mapping_registry.rb +3653 -0
  6. data/lib/virtuozzo/soap/drivers/device/types.rb +3144 -0
  7. data/lib/virtuozzo/soap/drivers/device_driver.rb +141 -0
  8. data/lib/virtuozzo/soap/drivers/environment/mapping_registry.rb +4461 -0
  9. data/lib/virtuozzo/soap/drivers/environment/types.rb +3743 -0
  10. data/lib/virtuozzo/soap/drivers/environment_driver.rb +300 -0
  11. data/lib/virtuozzo/soap/drivers/network/mapping_registry.rb +3116 -0
  12. data/lib/virtuozzo/soap/drivers/network/types.rb +2401 -0
  13. data/lib/virtuozzo/soap/drivers/network_driver.rb +101 -0
  14. data/lib/virtuozzo/soap/drivers/process/mapping_registry.rb +3317 -0
  15. data/lib/virtuozzo/soap/drivers/process/types.rb +2711 -0
  16. data/lib/virtuozzo/soap/drivers/process_driver.rb +69 -0
  17. data/lib/virtuozzo/soap/drivers/process_info/mapping_registry.rb +2985 -0
  18. data/lib/virtuozzo/soap/drivers/process_info/types.rb +2328 -0
  19. data/lib/virtuozzo/soap/drivers/process_info_driver.rb +61 -0
  20. data/lib/virtuozzo/soap/drivers/relocator/mapping_registry.rb +3656 -0
  21. data/lib/virtuozzo/soap/drivers/relocator/types.rb +2916 -0
  22. data/lib/virtuozzo/soap/drivers/relocator_driver.rb +101 -0
  23. data/lib/virtuozzo/soap/drivers/session/mapping_registry.rb +3039 -0
  24. data/lib/virtuozzo/soap/drivers/session/types.rb +2453 -0
  25. data/lib/virtuozzo/soap/drivers/session_driver.rb +149 -0
  26. data/lib/virtuozzo/soap/drivers/support/mapping_registry.rb +3232 -0
  27. data/lib/virtuozzo/soap/drivers/support/types.rb +2708 -0
  28. data/lib/virtuozzo/soap/drivers/support_driver.rb +109 -0
  29. data/lib/virtuozzo/soap/drivers/template/mapping_registry.rb +3752 -0
  30. data/lib/virtuozzo/soap/drivers/template/types.rb +3079 -0
  31. data/lib/virtuozzo/soap/drivers/template_driver.rb +117 -0
  32. data/lib/virtuozzo/soap/drivers/up2date/mapping_registry.rb +3312 -0
  33. data/lib/virtuozzo/soap/drivers/up2date/types.rb +2670 -0
  34. data/lib/virtuozzo/soap/drivers/up2date_driver.rb +92 -0
  35. data/lib/virtuozzo/soap.rb +149 -0
  36. data/lib/virtuozzo.rb +18 -0
  37. data/script/console +10 -0
  38. data/script/github-gem-test +15 -0
  39. data/virtuozzo.gemspec +34 -0
  40. metadata +139 -0
@@ -0,0 +1,3743 @@
1
+ require 'xsd/qname'
2
+
3
+ module Virtuozzo; module SOAP; module Drivers; 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}system_nodeType
604
+ # address - Virtuozzo::SOAP::Drivers::Environment::System_nodeType::Address
605
+ # login - Virtuozzo::SOAP::Drivers::Environment::System_nodeType::Login
606
+ class System_nodeType
607
+
608
+ # inner class for member: address
609
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}address
610
+ # ip - (any)
611
+ class Address < Ip_addressType
612
+ attr_accessor :ip
613
+
614
+ def initialize(ip = nil)
615
+ @ip = ip
616
+ end
617
+ end
618
+
619
+ # inner class for member: login
620
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}login
621
+ # user - SOAP::SOAPString
622
+ # password - SOAP::SOAPBase64
623
+ class Login
624
+ attr_accessor :user
625
+ attr_accessor :password
626
+
627
+ def initialize(user = nil, password = nil)
628
+ @user = user
629
+ @password = password
630
+ end
631
+ end
632
+
633
+ attr_accessor :address
634
+ attr_accessor :login
635
+
636
+ def initialize(address = nil, login = nil)
637
+ @address = address
638
+ @login = login
639
+ end
640
+ end
641
+
642
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}resourceType
643
+ # total - SOAP::SOAPLong
644
+ # used - SOAP::SOAPLong
645
+ # free - SOAP::SOAPLong
646
+ # avg - SOAP::SOAPLong
647
+ # min - SOAP::SOAPLong
648
+ # max - SOAP::SOAPLong
649
+ class ResourceType
650
+ attr_accessor :total
651
+ attr_accessor :used
652
+ attr_accessor :free
653
+ attr_accessor :avg
654
+ attr_accessor :min
655
+ attr_accessor :max
656
+
657
+ def initialize(total = nil, used = nil, free = nil, avg = nil, min = nil, max = nil)
658
+ @total = total
659
+ @used = used
660
+ @free = free
661
+ @avg = avg
662
+ @min = min
663
+ @max = max
664
+ end
665
+ end
666
+
667
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}intervalType
668
+ # start_time - (any)
669
+ # end_time - (any)
670
+ class IntervalType
671
+ attr_accessor :start_time
672
+ attr_accessor :end_time
673
+
674
+ def initialize(start_time = nil, end_time = nil)
675
+ @start_time = start_time
676
+ @end_time = end_time
677
+ end
678
+ end
679
+
680
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}statsType
681
+ # avg - SOAP::SOAPLong
682
+ # min - SOAP::SOAPLong
683
+ # max - SOAP::SOAPLong
684
+ # total - SOAP::SOAPLong
685
+ # cur - SOAP::SOAPLong
686
+ # soft - SOAP::SOAPLong
687
+ # hard - SOAP::SOAPLong
688
+ class StatsType
689
+ attr_accessor :avg
690
+ attr_accessor :min
691
+ attr_accessor :max
692
+ attr_accessor :total
693
+ attr_accessor :cur
694
+ attr_accessor :soft
695
+ attr_accessor :hard
696
+
697
+ def initialize(avg = nil, min = nil, max = nil, total = nil, cur = nil, soft = nil, hard = nil)
698
+ @avg = avg
699
+ @min = min
700
+ @max = max
701
+ @total = total
702
+ @cur = cur
703
+ @soft = soft
704
+ @hard = hard
705
+ end
706
+ end
707
+
708
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_addressType
709
+ # host - (any)
710
+ # mask - (any)
711
+ class Net_addressType
712
+ attr_accessor :host
713
+ attr_accessor :mask
714
+
715
+ def initialize(host = nil, mask = nil)
716
+ @host = host
717
+ @mask = mask
718
+ end
719
+ end
720
+
721
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_classType
722
+ # id - SOAP::SOAPString
723
+ # transfer - Virtuozzo::SOAP::Drivers::Environment::TransferType
724
+ class Net_classType
725
+ attr_accessor :id
726
+ attr_accessor :transfer
727
+
728
+ def initialize(id = nil, transfer = nil)
729
+ @id = id
730
+ @transfer = transfer
731
+ end
732
+ end
733
+
734
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_rangeType
735
+ # id - SOAP::SOAPString
736
+ # start_ip - (any)
737
+ # subnet_mask - SOAP::SOAPInt
738
+ # comment - SOAP::SOAPString
739
+ class Ip_rangeType
740
+ attr_accessor :id
741
+ attr_accessor :start_ip
742
+ attr_accessor :subnet_mask
743
+ attr_accessor :comment
744
+
745
+ def initialize(id = nil, start_ip = nil, subnet_mask = nil, comment = nil)
746
+ @id = id
747
+ @start_ip = start_ip
748
+ @subnet_mask = subnet_mask
749
+ @comment = comment
750
+ end
751
+ end
752
+
753
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}sample_confType
754
+ # env_config - Virtuozzo::SOAP::Drivers::Environment::Env_configType
755
+ # id - SOAP::SOAPString
756
+ # name - SOAP::SOAPString
757
+ # comment - SOAP::SOAPBase64
758
+ # vt_version - Virtuozzo::SOAP::Drivers::Environment::Sample_confType::Vt_version
759
+ class Sample_confType
760
+
761
+ # inner class for member: vt_version
762
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}vt_version
763
+ # platform - SOAP::SOAPString
764
+ # architecture - SOAP::SOAPString
765
+ # vt_technology - SOAP::SOAPString
766
+ class Vt_version
767
+ attr_accessor :platform
768
+ attr_accessor :architecture
769
+ attr_accessor :vt_technology
770
+
771
+ def initialize(platform = nil, architecture = nil, vt_technology = nil)
772
+ @platform = platform
773
+ @architecture = architecture
774
+ @vt_technology = vt_technology
775
+ end
776
+ end
777
+
778
+ attr_accessor :env_config
779
+ attr_accessor :id
780
+ attr_accessor :name
781
+ attr_accessor :comment
782
+ attr_accessor :vt_version
783
+
784
+ def initialize(env_config = nil, id = nil, name = nil, comment = nil, vt_version = nil)
785
+ @env_config = env_config
786
+ @id = id
787
+ @name = name
788
+ @comment = comment
789
+ @vt_version = vt_version
790
+ end
791
+ end
792
+
793
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}interfaceType
794
+ # name - SOAP::SOAPString
795
+ # bandwidth - SOAP::SOAPInt
796
+ # transfer - Virtuozzo::SOAP::Drivers::Environment::TransferType
797
+ # ipaddress - (any)
798
+ # flags - SOAP::SOAPInt
799
+ class InterfaceType
800
+ attr_accessor :name
801
+ attr_accessor :bandwidth
802
+ attr_accessor :transfer
803
+ attr_accessor :ipaddress
804
+ attr_accessor :flags
805
+
806
+ def initialize(name = nil, bandwidth = nil, transfer = nil, ipaddress = nil, flags = nil)
807
+ @name = name
808
+ @bandwidth = bandwidth
809
+ @transfer = transfer
810
+ @ipaddress = ipaddress
811
+ @flags = flags
812
+ end
813
+ end
814
+
815
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}sys_infoType
816
+ # load_avg - Virtuozzo::SOAP::Drivers::Environment::Load_avgType
817
+ # processes - Virtuozzo::SOAP::Drivers::Environment::ProcessesType
818
+ # cpu_load - Virtuozzo::SOAP::Drivers::Environment::Cpu_loadType
819
+ # cpu_states - Virtuozzo::SOAP::Drivers::Environment::Cpu_loadType
820
+ # users - SOAP::SOAPInt
821
+ # uptime - SOAP::SOAPLong
822
+ # memory - Virtuozzo::SOAP::Drivers::Environment::Sys_infoType::Memory
823
+ # swap - Virtuozzo::SOAP::Drivers::Environment::Sys_infoType::Swap
824
+ class Sys_infoType
825
+
826
+ # inner class for member: memory
827
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}memory
828
+ # total - SOAP::SOAPLong
829
+ # used - SOAP::SOAPLong
830
+ class Memory < ResourceType
831
+ attr_accessor :total
832
+ attr_accessor :used
833
+
834
+ def initialize(total = nil, used = nil)
835
+ @total = total
836
+ @used = used
837
+ end
838
+ end
839
+
840
+ # inner class for member: swap
841
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}swap
842
+ # total - SOAP::SOAPLong
843
+ # used - SOAP::SOAPLong
844
+ class Swap < ResourceType
845
+ attr_accessor :total
846
+ attr_accessor :used
847
+
848
+ def initialize(total = nil, used = nil)
849
+ @total = total
850
+ @used = used
851
+ end
852
+ end
853
+
854
+ attr_accessor :load_avg
855
+ attr_accessor :processes
856
+ attr_accessor :cpu_load
857
+ attr_accessor :cpu_states
858
+ attr_accessor :users
859
+ attr_accessor :uptime
860
+ attr_accessor :memory
861
+ attr_accessor :swap
862
+
863
+ def initialize(load_avg = nil, processes = nil, cpu_load = nil, cpu_states = nil, users = nil, uptime = nil, memory = nil, swap = nil)
864
+ @load_avg = load_avg
865
+ @processes = processes
866
+ @cpu_load = cpu_load
867
+ @cpu_states = cpu_states
868
+ @users = users
869
+ @uptime = uptime
870
+ @memory = memory
871
+ @swap = swap
872
+ end
873
+ end
874
+
875
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ps_infoType
876
+ # process - Virtuozzo::SOAP::Drivers::Environment::Ps_infoType::C_Process
877
+ # param_id - SOAP::SOAPString
878
+ # run - SOAP::SOAPInt
879
+ # idle - SOAP::SOAPInt
880
+ # zombie - SOAP::SOAPInt
881
+ # sleep - SOAP::SOAPInt
882
+ # uninterrupt - SOAP::SOAPInt
883
+ # stopped - SOAP::SOAPInt
884
+ # total - SOAP::SOAPInt
885
+ class Ps_infoType
886
+
887
+ # inner class for member: process
888
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}process
889
+ # pid - SOAP::SOAPInt
890
+ # param - SOAP::SOAPBase64
891
+ class C_Process
892
+ attr_accessor :pid
893
+ attr_accessor :param
894
+
895
+ def initialize(pid = nil, param = [])
896
+ @pid = pid
897
+ @param = param
898
+ end
899
+ end
900
+
901
+ attr_accessor :process
902
+ attr_accessor :param_id
903
+ attr_accessor :run
904
+ attr_accessor :idle
905
+ attr_accessor :zombie
906
+ attr_accessor :sleep
907
+ attr_accessor :uninterrupt
908
+ attr_accessor :stopped
909
+ attr_accessor :total
910
+
911
+ def initialize(process = [], param_id = [], run = nil, idle = nil, zombie = nil, sleep = nil, uninterrupt = nil, stopped = nil, total = nil)
912
+ @process = process
913
+ @param_id = param_id
914
+ @run = run
915
+ @idle = idle
916
+ @zombie = zombie
917
+ @sleep = sleep
918
+ @uninterrupt = uninterrupt
919
+ @stopped = stopped
920
+ @total = total
921
+ end
922
+ end
923
+
924
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}load_avg_statsType
925
+ # l1 - Virtuozzo::SOAP::Drivers::Environment::Load_avg_statsType::L1
926
+ # l2 - Virtuozzo::SOAP::Drivers::Environment::Load_avg_statsType::L2
927
+ # l3 - Virtuozzo::SOAP::Drivers::Environment::Load_avg_statsType::L3
928
+ class Load_avg_statsType
929
+
930
+ # inner class for member: l1
931
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}l1
932
+ # avg - SOAP::SOAPLong
933
+ # min - SOAP::SOAPLong
934
+ # max - SOAP::SOAPLong
935
+ # cur - SOAP::SOAPLong
936
+ class L1 < StatsType
937
+ attr_accessor :avg
938
+ attr_accessor :min
939
+ attr_accessor :max
940
+ attr_accessor :cur
941
+
942
+ def initialize(avg = nil, min = nil, max = nil, cur = nil)
943
+ @avg = avg
944
+ @min = min
945
+ @max = max
946
+ @cur = cur
947
+ end
948
+ end
949
+
950
+ # inner class for member: l2
951
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}l2
952
+ # avg - SOAP::SOAPLong
953
+ # min - SOAP::SOAPLong
954
+ # max - SOAP::SOAPLong
955
+ # cur - SOAP::SOAPLong
956
+ class L2 < StatsType
957
+ attr_accessor :avg
958
+ attr_accessor :min
959
+ attr_accessor :max
960
+ attr_accessor :cur
961
+
962
+ def initialize(avg = nil, min = nil, max = nil, cur = nil)
963
+ @avg = avg
964
+ @min = min
965
+ @max = max
966
+ @cur = cur
967
+ end
968
+ end
969
+
970
+ # inner class for member: l3
971
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}l3
972
+ # avg - SOAP::SOAPLong
973
+ # min - SOAP::SOAPLong
974
+ # max - SOAP::SOAPLong
975
+ # cur - SOAP::SOAPLong
976
+ class L3 < StatsType
977
+ attr_accessor :avg
978
+ attr_accessor :min
979
+ attr_accessor :max
980
+ attr_accessor :cur
981
+
982
+ def initialize(avg = nil, min = nil, max = nil, cur = nil)
983
+ @avg = avg
984
+ @min = min
985
+ @max = max
986
+ @cur = cur
987
+ end
988
+ end
989
+
990
+ attr_accessor :l1
991
+ attr_accessor :l2
992
+ attr_accessor :l3
993
+
994
+ def initialize(l1 = nil, l2 = nil, l3 = nil)
995
+ @l1 = l1
996
+ @l2 = l2
997
+ @l3 = l3
998
+ end
999
+ end
1000
+
1001
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
1002
+ # ip - (any)
1003
+ # netmask - (any)
1004
+ class Ip_addressType
1005
+ attr_accessor :ip
1006
+ attr_accessor :netmask
1007
+
1008
+ def initialize(ip = nil, netmask = nil)
1009
+ @ip = ip
1010
+ @netmask = netmask
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}userType
1308
+ # initial_group - Virtuozzo::SOAP::Drivers::Environment::UserType::Initial_group
1309
+ # group - Virtuozzo::SOAP::Drivers::Environment::UserType::Group
1310
+ # uid - SOAP::SOAPInt
1311
+ # shell - SOAP::SOAPString
1312
+ # password - SOAP::SOAPBase64
1313
+ # home_dir - SOAP::SOAPString
1314
+ # name - SOAP::SOAPString
1315
+ # comment - SOAP::SOAPString
1316
+ class UserType
1317
+
1318
+ # inner class for member: initial_group
1319
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}initial_group
1320
+ # name - SOAP::SOAPString
1321
+ # gid - SOAP::SOAPInt
1322
+ class Initial_group < GroupType
1323
+ attr_accessor :name
1324
+ attr_accessor :gid
1325
+
1326
+ def initialize(name = nil, gid = nil)
1327
+ @name = name
1328
+ @gid = gid
1329
+ end
1330
+ end
1331
+
1332
+ # inner class for member: group
1333
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}group
1334
+ # name - SOAP::SOAPString
1335
+ # gid - SOAP::SOAPInt
1336
+ class Group < GroupType
1337
+ attr_accessor :name
1338
+ attr_accessor :gid
1339
+
1340
+ def initialize(name = nil, gid = nil)
1341
+ @name = name
1342
+ @gid = gid
1343
+ end
1344
+ end
1345
+
1346
+ attr_accessor :initial_group
1347
+ attr_accessor :group
1348
+ attr_accessor :uid
1349
+ attr_accessor :shell
1350
+ attr_accessor :password
1351
+ attr_accessor :home_dir
1352
+ attr_accessor :name
1353
+ attr_accessor :comment
1354
+
1355
+ def initialize(initial_group = nil, group = [], uid = nil, shell = nil, password = nil, home_dir = nil, name = nil, comment = nil)
1356
+ @initial_group = initial_group
1357
+ @group = group
1358
+ @uid = uid
1359
+ @shell = shell
1360
+ @password = password
1361
+ @home_dir = home_dir
1362
+ @name = name
1363
+ @comment = comment
1364
+ end
1365
+ end
1366
+
1367
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
1368
+ # user - Virtuozzo::SOAP::Drivers::Environment::GroupType::User
1369
+ # member_group - Virtuozzo::SOAP::Drivers::Environment::GroupType::Member_group
1370
+ # name - SOAP::SOAPString
1371
+ # gid - SOAP::SOAPInt
1372
+ class GroupType
1373
+
1374
+ # inner class for member: user
1375
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}user
1376
+ # name - SOAP::SOAPString
1377
+ class User < UserType
1378
+ attr_accessor :name
1379
+
1380
+ def initialize(name = nil)
1381
+ @name = name
1382
+ end
1383
+ end
1384
+
1385
+ # inner class for member: member_group
1386
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}member_group
1387
+ # name - SOAP::SOAPString
1388
+ class Member_group < GroupType
1389
+ attr_accessor :name
1390
+
1391
+ def initialize(name = nil)
1392
+ @name = name
1393
+ end
1394
+ end
1395
+
1396
+ attr_accessor :user
1397
+ attr_accessor :member_group
1398
+ attr_accessor :name
1399
+ attr_accessor :gid
1400
+
1401
+ def initialize(user = [], member_group = [], name = nil, gid = nil)
1402
+ @user = user
1403
+ @member_group = member_group
1404
+ @name = name
1405
+ @gid = gid
1406
+ end
1407
+ end
1408
+
1409
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
1410
+ # name - SOAP::SOAPString
1411
+ # summary - SOAP::SOAPString
1412
+ # os - Virtuozzo::SOAP::Drivers::Environment::OsType
1413
+ # description - SOAP::SOAPString
1414
+ # arch - SOAP::SOAPString
1415
+ # version - SOAP::SOAPString
1416
+ class PackageType
1417
+ attr_accessor :name
1418
+ attr_accessor :summary
1419
+ attr_accessor :os
1420
+ attr_accessor :description
1421
+ attr_accessor :arch
1422
+ attr_accessor :version
1423
+
1424
+ def initialize(name = nil, summary = nil, os = nil, description = nil, arch = nil, version = nil)
1425
+ @name = name
1426
+ @summary = summary
1427
+ @os = os
1428
+ @description = description
1429
+ @arch = arch
1430
+ @version = version
1431
+ end
1432
+ end
1433
+
1434
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}package_vztemplateType
1435
+ # name - SOAP::SOAPString
1436
+ # summary - SOAP::SOAPString
1437
+ # os - Virtuozzo::SOAP::Drivers::Environment::OsType
1438
+ # description - SOAP::SOAPString
1439
+ # arch - SOAP::SOAPString
1440
+ # version - SOAP::SOAPString
1441
+ # technology - SOAP::SOAPString
1442
+ # os_template - SOAP::SOAPBoolean
1443
+ # cached - SOAP::SOAPBoolean
1444
+ # path - SOAP::SOAPBase64
1445
+ # uptodate - SOAP::SOAPBoolean
1446
+ class Package_vztemplateType < PackageType
1447
+ attr_accessor :name
1448
+ attr_accessor :summary
1449
+ attr_accessor :os
1450
+ attr_accessor :description
1451
+ attr_accessor :arch
1452
+ attr_accessor :version
1453
+ attr_accessor :technology
1454
+ attr_accessor :os_template
1455
+ attr_accessor :cached
1456
+ attr_accessor :path
1457
+ attr_accessor :uptodate
1458
+
1459
+ def initialize(name = nil, summary = nil, os = nil, description = nil, arch = nil, version = nil, technology = [], os_template = nil, cached = nil, path = nil, uptodate = nil)
1460
+ @name = name
1461
+ @summary = summary
1462
+ @os = os
1463
+ @description = description
1464
+ @arch = arch
1465
+ @version = version
1466
+ @technology = technology
1467
+ @os_template = os_template
1468
+ @cached = cached
1469
+ @path = path
1470
+ @uptodate = uptodate
1471
+ end
1472
+ end
1473
+
1474
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}package_std_vztemplateType
1475
+ # name - SOAP::SOAPString
1476
+ # summary - SOAP::SOAPString
1477
+ # os - Virtuozzo::SOAP::Drivers::Environment::OsType
1478
+ # description - SOAP::SOAPString
1479
+ # arch - SOAP::SOAPString
1480
+ # version - SOAP::SOAPString
1481
+ # technology - SOAP::SOAPString
1482
+ # os_template - SOAP::SOAPBoolean
1483
+ # cached - SOAP::SOAPBoolean
1484
+ # path - SOAP::SOAPBase64
1485
+ # uptodate - SOAP::SOAPBoolean
1486
+ # base - SOAP::SOAPBoolean
1487
+ class Package_std_vztemplateType < Package_vztemplateType
1488
+ attr_accessor :name
1489
+ attr_accessor :summary
1490
+ attr_accessor :os
1491
+ attr_accessor :description
1492
+ attr_accessor :arch
1493
+ attr_accessor :version
1494
+ attr_accessor :technology
1495
+ attr_accessor :os_template
1496
+ attr_accessor :cached
1497
+ attr_accessor :path
1498
+ attr_accessor :uptodate
1499
+ attr_accessor :base
1500
+
1501
+ 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)
1502
+ @name = name
1503
+ @summary = summary
1504
+ @os = os
1505
+ @description = description
1506
+ @arch = arch
1507
+ @version = version
1508
+ @technology = technology
1509
+ @os_template = os_template
1510
+ @cached = cached
1511
+ @path = path
1512
+ @uptodate = uptodate
1513
+ @base = base
1514
+ end
1515
+ end
1516
+
1517
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}event_dataType
1518
+ class Event_dataType
1519
+ def initialize
1520
+ end
1521
+ end
1522
+
1523
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}alert_dataType
1524
+ # type - SOAP::SOAPInt
1525
+ class Alert_dataType < Event_dataType
1526
+ attr_accessor :type
1527
+
1528
+ def initialize(type = nil)
1529
+ @type = type
1530
+ end
1531
+ end
1532
+
1533
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}named_listType
1534
+ # name - SOAP::SOAPString
1535
+ # value - SOAP::SOAPBase64
1536
+ class Named_listType
1537
+ attr_accessor :name
1538
+ attr_accessor :value
1539
+
1540
+ def initialize(name = nil, value = [])
1541
+ @name = name
1542
+ @value = value
1543
+ end
1544
+ end
1545
+
1546
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}modType
1547
+ # name - SOAP::SOAPString
1548
+ # value - SOAP::SOAPBase64
1549
+ # op - SOAP::SOAPInt
1550
+ class ModType < Named_listType
1551
+ attr_accessor :name
1552
+ attr_accessor :value
1553
+ attr_accessor :op
1554
+
1555
+ def initialize(name = nil, value = [], op = nil)
1556
+ @name = name
1557
+ @value = value
1558
+ @op = op
1559
+ end
1560
+ end
1561
+
1562
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}realmType
1563
+ # id - (any)
1564
+ # type - SOAP::SOAPInt
1565
+ # name - SOAP::SOAPString
1566
+ # builtin - (any)
1567
+ class RealmType
1568
+ attr_accessor :id
1569
+ attr_accessor :type
1570
+ attr_accessor :name
1571
+ attr_accessor :builtin
1572
+
1573
+ def initialize(id = nil, type = nil, name = nil, builtin = nil)
1574
+ @id = id
1575
+ @type = type
1576
+ @name = name
1577
+ @builtin = builtin
1578
+ end
1579
+ end
1580
+
1581
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}eventType
1582
+ # eid - (any)
1583
+ # time - (any)
1584
+ # source - SOAP::SOAPString
1585
+ # category - SOAP::SOAPString
1586
+ # sid - (any)
1587
+ # count - SOAP::SOAPInt
1588
+ # id - (any)
1589
+ # info - Virtuozzo::SOAP::Drivers::Environment::InfoType
1590
+ # data - Virtuozzo::SOAP::Drivers::Environment::EventType::C_Data
1591
+ class EventType
1592
+
1593
+ # inner class for member: data
1594
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}data
1595
+ # event_data - Virtuozzo::SOAP::Drivers::Environment::Event_dataType
1596
+ class C_Data
1597
+ attr_accessor :event_data
1598
+
1599
+ def initialize(event_data = nil)
1600
+ @event_data = event_data
1601
+ end
1602
+ end
1603
+
1604
+ attr_accessor :eid
1605
+ attr_accessor :time
1606
+ attr_accessor :source
1607
+ attr_accessor :category
1608
+ attr_accessor :sid
1609
+ attr_accessor :count
1610
+ attr_accessor :id
1611
+ attr_accessor :info
1612
+ attr_accessor :data
1613
+
1614
+ def initialize(eid = nil, time = nil, source = nil, category = nil, sid = nil, count = nil, id = nil, info = nil, data = nil)
1615
+ @eid = eid
1616
+ @time = time
1617
+ @source = source
1618
+ @category = category
1619
+ @sid = sid
1620
+ @count = count
1621
+ @id = id
1622
+ @info = info
1623
+ @data = data
1624
+ end
1625
+ end
1626
+
1627
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}infoType
1628
+ # message - SOAP::SOAPBase64
1629
+ # translate - (any)
1630
+ # parameter - Virtuozzo::SOAP::Drivers::Environment::InfoType
1631
+ # name - SOAP::SOAPString
1632
+ class InfoType
1633
+ attr_accessor :message
1634
+ attr_accessor :translate
1635
+ attr_accessor :parameter
1636
+ attr_accessor :name
1637
+
1638
+ def initialize(message = nil, translate = nil, parameter = [], name = nil)
1639
+ @message = message
1640
+ @translate = translate
1641
+ @parameter = parameter
1642
+ @name = name
1643
+ end
1644
+ end
1645
+
1646
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}aceType
1647
+ # type - SOAP::SOAPInt
1648
+ # sid - (any)
1649
+ # rights - SOAP::SOAPBase64
1650
+ class AceType
1651
+ attr_accessor :type
1652
+ attr_accessor :sid
1653
+ attr_accessor :rights
1654
+
1655
+ def initialize(type = nil, sid = nil, rights = nil)
1656
+ @type = type
1657
+ @sid = sid
1658
+ @rights = rights
1659
+ end
1660
+ end
1661
+
1662
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}security_descriptorType
1663
+ # owner - (any)
1664
+ # group - (any)
1665
+ # dacl - Virtuozzo::SOAP::Drivers::Environment::Security_descriptorType::Dacl
1666
+ class Security_descriptorType
1667
+
1668
+ # inner class for member: dacl
1669
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}dacl
1670
+ class Dacl < ::Array
1671
+ end
1672
+
1673
+ attr_accessor :owner
1674
+ attr_accessor :group
1675
+ attr_accessor :dacl
1676
+
1677
+ def initialize(owner = nil, group = nil, dacl = nil)
1678
+ @owner = owner
1679
+ @group = group
1680
+ @dacl = dacl
1681
+ end
1682
+ end
1683
+
1684
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}security_objectType
1685
+ # abstract
1686
+ class Security_objectType
1687
+ def initialize
1688
+ end
1689
+ end
1690
+
1691
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_security_objectType
1692
+ # eid - (any)
1693
+ class Env_security_objectType < Security_objectType
1694
+ attr_accessor :eid
1695
+
1696
+ def initialize(eid = nil)
1697
+ @eid = eid
1698
+ end
1699
+ end
1700
+
1701
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}env_security_objectType
1702
+ # eid - (any)
1703
+ class Env_security_objectType_ < Env_security_objectType
1704
+ attr_accessor :eid
1705
+
1706
+ def initialize(eid = nil)
1707
+ @eid = eid
1708
+ end
1709
+ end
1710
+
1711
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_deviceType
1712
+ # id - SOAP::SOAPString
1713
+ # ip_address - Virtuozzo::SOAP::Drivers::Environment::Ip_addressType
1714
+ # dhcp - (any)
1715
+ # network_id - SOAP::SOAPBase64
1716
+ # status - Virtuozzo::SOAP::Drivers::Environment::Net_deviceType::Status
1717
+ class Net_deviceType
1718
+
1719
+ # inner class for member: status
1720
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}status
1721
+ # up - (any)
1722
+ # down - (any)
1723
+ class Status
1724
+ attr_accessor :up
1725
+ attr_accessor :down
1726
+
1727
+ def initialize(up = nil, down = nil)
1728
+ @up = up
1729
+ @down = down
1730
+ end
1731
+ end
1732
+
1733
+ attr_accessor :id
1734
+ attr_accessor :ip_address
1735
+ attr_accessor :dhcp
1736
+ attr_accessor :network_id
1737
+ attr_accessor :status
1738
+
1739
+ def initialize(id = nil, ip_address = [], dhcp = nil, network_id = nil, status = nil)
1740
+ @id = id
1741
+ @ip_address = ip_address
1742
+ @dhcp = dhcp
1743
+ @network_id = network_id
1744
+ @status = status
1745
+ end
1746
+ end
1747
+
1748
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_nicType
1749
+ # id - SOAP::SOAPString
1750
+ # ip_address - Virtuozzo::SOAP::Drivers::Environment::Ip_addressType
1751
+ # dhcp - (any)
1752
+ # network_id - SOAP::SOAPBase64
1753
+ # status - Virtuozzo::SOAP::Drivers::Environment::Net_nicType::Status
1754
+ # mac_address - SOAP::SOAPString
1755
+ class Net_nicType < Net_deviceType
1756
+
1757
+ # inner class for member: status
1758
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}status
1759
+ # up - (any)
1760
+ # down - (any)
1761
+ class Status
1762
+ attr_accessor :up
1763
+ attr_accessor :down
1764
+
1765
+ def initialize(up = nil, down = nil)
1766
+ @up = up
1767
+ @down = down
1768
+ end
1769
+ end
1770
+
1771
+ attr_accessor :id
1772
+ attr_accessor :ip_address
1773
+ attr_accessor :dhcp
1774
+ attr_accessor :network_id
1775
+ attr_accessor :status
1776
+ attr_accessor :mac_address
1777
+
1778
+ def initialize(id = nil, ip_address = [], dhcp = nil, network_id = nil, status = nil, mac_address = nil)
1779
+ @id = id
1780
+ @ip_address = ip_address
1781
+ @dhcp = dhcp
1782
+ @network_id = network_id
1783
+ @status = status
1784
+ @mac_address = mac_address
1785
+ end
1786
+ end
1787
+
1788
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}net_vethType
1789
+ # id - SOAP::SOAPString
1790
+ # ip_address - Virtuozzo::SOAP::Drivers::Environment::Ip_addressType
1791
+ # dhcp - (any)
1792
+ # network_id - SOAP::SOAPBase64
1793
+ # status - Virtuozzo::SOAP::Drivers::Environment::Net_vethType::Status
1794
+ # mac_address - SOAP::SOAPString
1795
+ # wins_server - SOAP::SOAPString
1796
+ # nameserver - SOAP::SOAPString
1797
+ # default_gateway - SOAP::SOAPString
1798
+ # host_routed - (any)
1799
+ class Net_vethType < Net_nicType
1800
+
1801
+ # inner class for member: status
1802
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}status
1803
+ # up - (any)
1804
+ # down - (any)
1805
+ class Status
1806
+ attr_accessor :up
1807
+ attr_accessor :down
1808
+
1809
+ def initialize(up = nil, down = nil)
1810
+ @up = up
1811
+ @down = down
1812
+ end
1813
+ end
1814
+
1815
+ attr_accessor :id
1816
+ attr_accessor :ip_address
1817
+ attr_accessor :dhcp
1818
+ attr_accessor :network_id
1819
+ attr_accessor :status
1820
+ attr_accessor :mac_address
1821
+ attr_accessor :wins_server
1822
+ attr_accessor :nameserver
1823
+ attr_accessor :default_gateway
1824
+ attr_accessor :host_routed
1825
+
1826
+ 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)
1827
+ @id = id
1828
+ @ip_address = ip_address
1829
+ @dhcp = dhcp
1830
+ @network_id = network_id
1831
+ @status = status
1832
+ @mac_address = mac_address
1833
+ @wins_server = wins_server
1834
+ @nameserver = nameserver
1835
+ @default_gateway = default_gateway
1836
+ @host_routed = host_routed
1837
+ end
1838
+ end
1839
+
1840
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}voc_parameterType
1841
+ # id - SOAP::SOAPString
1842
+ # type - SOAP::SOAPString
1843
+ # min - SOAP::SOAPString
1844
+ # max - SOAP::SOAPString
1845
+ # long - SOAP::SOAPString
1846
+ # short - SOAP::SOAPString
1847
+ # category - SOAP::SOAPString
1848
+ # complex - SOAP::SOAPString
1849
+ # default - SOAP::SOAPString
1850
+ # measure - SOAP::SOAPString
1851
+ # data - (any)
1852
+ # name - (any)
1853
+ class Voc_parameterType
1854
+ attr_accessor :id
1855
+ attr_accessor :type
1856
+ attr_accessor :min
1857
+ attr_accessor :max
1858
+ attr_accessor :long
1859
+ attr_accessor :short
1860
+ attr_accessor :category
1861
+ attr_accessor :complex
1862
+ attr_accessor :default
1863
+ attr_accessor :measure
1864
+ attr_accessor :data
1865
+ attr_accessor :name
1866
+
1867
+ 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)
1868
+ @id = id
1869
+ @type = type
1870
+ @min = min
1871
+ @max = max
1872
+ @long = long
1873
+ @short = short
1874
+ @category = category
1875
+ @complex = complex
1876
+ @default = default
1877
+ @measure = measure
1878
+ @data = data
1879
+ @name = name
1880
+ end
1881
+ end
1882
+
1883
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}vocabularyType
1884
+ # name - SOAP::SOAPString
1885
+ # parameter - Virtuozzo::SOAP::Drivers::Environment::Voc_parameterType
1886
+ # category - Virtuozzo::SOAP::Drivers::Environment::Voc_parameterType
1887
+ class VocabularyType
1888
+ attr_accessor :name
1889
+ attr_accessor :parameter
1890
+ attr_accessor :category
1891
+
1892
+ def initialize(name = nil, parameter = [], category = [])
1893
+ @name = name
1894
+ @parameter = parameter
1895
+ @category = category
1896
+ end
1897
+ end
1898
+
1899
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}perf_statType
1900
+ # cur - SOAP::SOAPAnySimpleType
1901
+ # avg - SOAP::SOAPAnySimpleType
1902
+ # max - SOAP::SOAPAnySimpleType
1903
+ # min - SOAP::SOAPAnySimpleType
1904
+ class Perf_statType
1905
+ attr_accessor :cur
1906
+ attr_accessor :avg
1907
+ attr_accessor :max
1908
+ attr_accessor :min
1909
+
1910
+ def initialize(cur = nil, avg = nil, max = nil, min = nil)
1911
+ @cur = cur
1912
+ @avg = avg
1913
+ @max = max
1914
+ @min = min
1915
+ end
1916
+ end
1917
+
1918
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}perf_dataType
1919
+ # eid - (any)
1920
+ # m_class - Virtuozzo::SOAP::Drivers::Environment::Perf_dataType::C_Class
1921
+ # interval - Virtuozzo::SOAP::Drivers::Environment::IntervalType
1922
+ class Perf_dataType
1923
+
1924
+ # inner class for member: class
1925
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}class
1926
+ # name - SOAP::SOAPString
1927
+ # instance - Virtuozzo::SOAP::Drivers::Environment::Perf_dataType::C_Class::Instance
1928
+ class C_Class
1929
+
1930
+ # inner class for member: instance
1931
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}instance
1932
+ # name - SOAP::SOAPString
1933
+ # counter - Virtuozzo::SOAP::Drivers::Environment::Perf_dataType::C_Class::Instance::Counter
1934
+ class Instance
1935
+
1936
+ # inner class for member: counter
1937
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}counter
1938
+ # name - SOAP::SOAPString
1939
+ # value - Virtuozzo::SOAP::Drivers::Environment::Perf_statType
1940
+ class Counter
1941
+ attr_accessor :name
1942
+ attr_accessor :value
1943
+
1944
+ def initialize(name = nil, value = nil)
1945
+ @name = name
1946
+ @value = value
1947
+ end
1948
+ end
1949
+
1950
+ attr_accessor :name
1951
+ attr_accessor :counter
1952
+
1953
+ def initialize(name = nil, counter = [])
1954
+ @name = name
1955
+ @counter = counter
1956
+ end
1957
+ end
1958
+
1959
+ attr_accessor :name
1960
+ attr_accessor :instance
1961
+
1962
+ def initialize(name = nil, instance = [])
1963
+ @name = name
1964
+ @instance = instance
1965
+ end
1966
+ end
1967
+
1968
+ attr_accessor :eid
1969
+ attr_accessor :interval
1970
+
1971
+ def m_class
1972
+ @v_class
1973
+ end
1974
+
1975
+ def m_class=(value)
1976
+ @v_class = value
1977
+ end
1978
+
1979
+ def initialize(eid = nil, v_class = [], interval = nil)
1980
+ @eid = eid
1981
+ @v_class = v_class
1982
+ @interval = interval
1983
+ end
1984
+ end
1985
+
1986
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}log_options_baseType
1987
+ class Log_options_baseType
1988
+ def initialize
1989
+ end
1990
+ end
1991
+
1992
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}log_optionsType
1993
+ class Log_optionsType < Log_options_baseType
1994
+ def initialize
1995
+ end
1996
+ end
1997
+
1998
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}log_optionsType
1999
+ # type - SOAP::SOAPInt
2000
+ class Log_optionsType_ < Log_options_baseType
2001
+ attr_accessor :type
2002
+
2003
+ def initialize(type = nil)
2004
+ @type = type
2005
+ end
2006
+ end
2007
+
2008
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}packet_headerType
2009
+ # auth - Virtuozzo::SOAP::Drivers::Environment::AuthType
2010
+ # cookie - SOAP::SOAPString
2011
+ # target - SOAP::SOAPString
2012
+ # origin - SOAP::SOAPString
2013
+ # src - Virtuozzo::SOAP::Drivers::Environment::RouteType
2014
+ # dst - Virtuozzo::SOAP::Drivers::Environment::RouteType
2015
+ # session - SOAP::SOAPString
2016
+ # xmlattr_version - SOAP::SOAPString
2017
+ # xmlattr_id - SOAP::SOAPString
2018
+ # xmlattr_priority - SOAP::SOAPString
2019
+ # xmlattr_time - SOAP::SOAPString
2020
+ # xmlattr_progress - SOAP::SOAPString
2021
+ # xmlattr_log - SOAP::SOAPString
2022
+ # xmlattr_type - SOAP::SOAPInt
2023
+ # xmlattr_timeout - SOAP::SOAPInt
2024
+ # xmlattr_timeout_limit - SOAP::SOAPInt
2025
+ # xmlattr_uid - SOAP::SOAPInt
2026
+ class Packet_headerType
2027
+ AttrC_Time = XSD::QName.new(nil, "time")
2028
+ AttrId = XSD::QName.new(nil, "id")
2029
+ AttrLog = XSD::QName.new(nil, "log")
2030
+ AttrPriority = XSD::QName.new(nil, "priority")
2031
+ AttrProgress = XSD::QName.new(nil, "progress")
2032
+ AttrTimeout = XSD::QName.new(nil, "timeout")
2033
+ AttrTimeout_limit = XSD::QName.new(nil, "timeout_limit")
2034
+ AttrType = XSD::QName.new(nil, "type")
2035
+ AttrUid = XSD::QName.new(nil, "uid")
2036
+ AttrVersion = XSD::QName.new(nil, "version")
2037
+
2038
+ attr_accessor :auth
2039
+ attr_accessor :cookie
2040
+ attr_accessor :target
2041
+ attr_accessor :origin
2042
+ attr_accessor :src
2043
+ attr_accessor :dst
2044
+ attr_accessor :session
2045
+
2046
+ def __xmlattr
2047
+ @__xmlattr ||= {}
2048
+ end
2049
+
2050
+ def xmlattr_version
2051
+ __xmlattr[AttrVersion]
2052
+ end
2053
+
2054
+ def xmlattr_version=(value)
2055
+ __xmlattr[AttrVersion] = value
2056
+ end
2057
+
2058
+ def xmlattr_id
2059
+ __xmlattr[AttrId]
2060
+ end
2061
+
2062
+ def xmlattr_id=(value)
2063
+ __xmlattr[AttrId] = value
2064
+ end
2065
+
2066
+ def xmlattr_priority
2067
+ __xmlattr[AttrPriority]
2068
+ end
2069
+
2070
+ def xmlattr_priority=(value)
2071
+ __xmlattr[AttrPriority] = value
2072
+ end
2073
+
2074
+ def xmlattr_time
2075
+ __xmlattr[AttrC_Time]
2076
+ end
2077
+
2078
+ def xmlattr_time=(value)
2079
+ __xmlattr[AttrC_Time] = value
2080
+ end
2081
+
2082
+ def xmlattr_progress
2083
+ __xmlattr[AttrProgress]
2084
+ end
2085
+
2086
+ def xmlattr_progress=(value)
2087
+ __xmlattr[AttrProgress] = value
2088
+ end
2089
+
2090
+ def xmlattr_log
2091
+ __xmlattr[AttrLog]
2092
+ end
2093
+
2094
+ def xmlattr_log=(value)
2095
+ __xmlattr[AttrLog] = value
2096
+ end
2097
+
2098
+ def xmlattr_type
2099
+ __xmlattr[AttrType]
2100
+ end
2101
+
2102
+ def xmlattr_type=(value)
2103
+ __xmlattr[AttrType] = value
2104
+ end
2105
+
2106
+ def xmlattr_timeout
2107
+ __xmlattr[AttrTimeout]
2108
+ end
2109
+
2110
+ def xmlattr_timeout=(value)
2111
+ __xmlattr[AttrTimeout] = value
2112
+ end
2113
+
2114
+ def xmlattr_timeout_limit
2115
+ __xmlattr[AttrTimeout_limit]
2116
+ end
2117
+
2118
+ def xmlattr_timeout_limit=(value)
2119
+ __xmlattr[AttrTimeout_limit] = value
2120
+ end
2121
+
2122
+ def xmlattr_uid
2123
+ __xmlattr[AttrUid]
2124
+ end
2125
+
2126
+ def xmlattr_uid=(value)
2127
+ __xmlattr[AttrUid] = value
2128
+ end
2129
+
2130
+ def initialize(auth = nil, cookie = nil, target = [], origin = nil, src = nil, dst = nil, session = nil)
2131
+ @auth = auth
2132
+ @cookie = cookie
2133
+ @target = target
2134
+ @origin = origin
2135
+ @src = src
2136
+ @dst = dst
2137
+ @session = session
2138
+ @__xmlattr = {}
2139
+ end
2140
+ end
2141
+
2142
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operatorType
2143
+ # configuration - Virtuozzo::SOAP::Drivers::Environment::ConfigurationType
2144
+ class OperatorType
2145
+ attr_accessor :configuration
2146
+
2147
+ def initialize(configuration = nil)
2148
+ @configuration = configuration
2149
+ end
2150
+ end
2151
+
2152
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operator_functionalType
2153
+ # configuration - Virtuozzo::SOAP::Drivers::Environment::ConfigurationType
2154
+ # ok - Virtuozzo::SOAP::Drivers::Environment::Operator_functionalType::Ok
2155
+ # error - Virtuozzo::SOAP::Drivers::Environment::Operator_functionalType::Error
2156
+ class Operator_functionalType < OperatorType
2157
+
2158
+ # inner class for member: ok
2159
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
2160
+ class Ok
2161
+ def initialize
2162
+ end
2163
+ end
2164
+
2165
+ # inner class for member: error
2166
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
2167
+ # code - SOAP::SOAPInt
2168
+ # message - SOAP::SOAPString
2169
+ class Error
2170
+ attr_accessor :code
2171
+ attr_accessor :message
2172
+
2173
+ def initialize(code = nil, message = nil)
2174
+ @code = code
2175
+ @message = message
2176
+ end
2177
+ end
2178
+
2179
+ attr_accessor :configuration
2180
+ attr_accessor :ok
2181
+ attr_accessor :error
2182
+
2183
+ def initialize(configuration = nil, ok = [], error = [])
2184
+ @configuration = configuration
2185
+ @ok = ok
2186
+ @error = error
2187
+ end
2188
+ end
2189
+
2190
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operator_periodicType
2191
+ # configuration - Virtuozzo::SOAP::Drivers::Environment::ConfigurationType
2192
+ # ok - Virtuozzo::SOAP::Drivers::Environment::Operator_periodicType::Ok
2193
+ # error - Virtuozzo::SOAP::Drivers::Environment::Operator_periodicType::Error
2194
+ # start_monitor - Virtuozzo::SOAP::Drivers::Environment::Start_monitorType
2195
+ # stop_monitor - Virtuozzo::SOAP::Drivers::Environment::Stop_monitorType
2196
+ # set_period - Virtuozzo::SOAP::Drivers::Environment::Set_periodType
2197
+ # report - (any)
2198
+ class Operator_periodicType < Operator_functionalType
2199
+
2200
+ # inner class for member: ok
2201
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
2202
+ class Ok
2203
+ def initialize
2204
+ end
2205
+ end
2206
+
2207
+ # inner class for member: error
2208
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
2209
+ # code - SOAP::SOAPInt
2210
+ # message - SOAP::SOAPString
2211
+ class Error
2212
+ attr_accessor :code
2213
+ attr_accessor :message
2214
+
2215
+ def initialize(code = nil, message = nil)
2216
+ @code = code
2217
+ @message = message
2218
+ end
2219
+ end
2220
+
2221
+ attr_accessor :configuration
2222
+ attr_accessor :ok
2223
+ attr_accessor :error
2224
+ attr_accessor :start_monitor
2225
+ attr_accessor :stop_monitor
2226
+ attr_accessor :set_period
2227
+ attr_accessor :report
2228
+
2229
+ def initialize(configuration = nil, ok = [], error = [], start_monitor = nil, stop_monitor = nil, set_period = nil, report = nil)
2230
+ @configuration = configuration
2231
+ @ok = ok
2232
+ @error = error
2233
+ @start_monitor = start_monitor
2234
+ @stop_monitor = stop_monitor
2235
+ @set_period = set_period
2236
+ @report = report
2237
+ end
2238
+ end
2239
+
2240
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/envm}envmType
2241
+ # configuration - Virtuozzo::SOAP::Drivers::Environment::ConfigurationType
2242
+ # ok - Virtuozzo::SOAP::Drivers::Environment::EnvmType::Ok
2243
+ # error - Virtuozzo::SOAP::Drivers::Environment::EnvmType::Error
2244
+ # create - Virtuozzo::SOAP::Drivers::Environment::Create
2245
+ # repair - Virtuozzo::SOAP::Drivers::Environment::Repair
2246
+ # stop_repair - Virtuozzo::SOAP::Drivers::Environment::Stop_repair
2247
+ # start - Virtuozzo::SOAP::Drivers::Environment::Start
2248
+ # stop - Virtuozzo::SOAP::Drivers::Environment::Stop
2249
+ # restart - Virtuozzo::SOAP::Drivers::Environment::Restart
2250
+ # destroy - Virtuozzo::SOAP::Drivers::Environment::Destroy
2251
+ # suspend - Virtuozzo::SOAP::Drivers::Environment::Suspend
2252
+ # resume - Virtuozzo::SOAP::Drivers::Environment::Resume
2253
+ # get_info - Virtuozzo::SOAP::Drivers::Environment::Get_info
2254
+ # get_list - Virtuozzo::SOAP::Drivers::Environment::Get_list
2255
+ # set - Virtuozzo::SOAP::Drivers::Environment::Set
2256
+ # put_private - Virtuozzo::SOAP::Drivers::Environment::Put_private
2257
+ # get_private - Virtuozzo::SOAP::Drivers::Environment::Get_private
2258
+ # get_vt_settings - Virtuozzo::SOAP::Drivers::Environment::Get_vt_settings
2259
+ # set_vt_settings - Virtuozzo::SOAP::Drivers::Environment::Set_vt_settings
2260
+ # get_vt_info - Virtuozzo::SOAP::Drivers::Environment::Get_vt_info
2261
+ # get_log - Virtuozzo::SOAP::Drivers::Environment::Get_log
2262
+ # get_native_config - Virtuozzo::SOAP::Drivers::Environment::Get_native_config
2263
+ # get_virtual_config - Virtuozzo::SOAP::Drivers::Environment::Get_virtual_config
2264
+ # env - Virtuozzo::SOAP::Drivers::Environment::EnvType
2265
+ # eid - (any)
2266
+ # value - SOAP::SOAPBase64
2267
+ # vt_settings - Virtuozzo::SOAP::Drivers::Environment::Vt_settingsType
2268
+ # vt_info - Virtuozzo::SOAP::Drivers::Environment::Vt_infoType
2269
+ # env_config - Virtuozzo::SOAP::Drivers::Environment::Env_configType
2270
+ # virtual_config - Virtuozzo::SOAP::Drivers::Environment::Venv_configType
2271
+ # native_config - Virtuozzo::SOAP::Drivers::Environment::Native_configType
2272
+ # log - SOAP::SOAPBase64
2273
+ class EnvmType < Operator_functionalType
2274
+
2275
+ # inner class for member: ok
2276
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
2277
+ class Ok
2278
+ def initialize
2279
+ end
2280
+ end
2281
+
2282
+ # inner class for member: error
2283
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
2284
+ # code - SOAP::SOAPInt
2285
+ # message - SOAP::SOAPString
2286
+ class Error
2287
+ attr_accessor :code
2288
+ attr_accessor :message
2289
+
2290
+ def initialize(code = nil, message = nil)
2291
+ @code = code
2292
+ @message = message
2293
+ end
2294
+ end
2295
+
2296
+ attr_accessor :configuration
2297
+ attr_accessor :ok
2298
+ attr_accessor :error
2299
+ attr_accessor :create
2300
+ attr_accessor :repair
2301
+ attr_accessor :stop_repair
2302
+ attr_accessor :start
2303
+ attr_accessor :stop
2304
+ attr_accessor :restart
2305
+ attr_accessor :destroy
2306
+ attr_accessor :suspend
2307
+ attr_accessor :resume
2308
+ attr_accessor :get_info
2309
+ attr_accessor :get_list
2310
+ attr_accessor :set
2311
+ attr_accessor :put_private
2312
+ attr_accessor :get_private
2313
+ attr_accessor :get_vt_settings
2314
+ attr_accessor :set_vt_settings
2315
+ attr_accessor :get_vt_info
2316
+ attr_accessor :get_log
2317
+ attr_accessor :get_native_config
2318
+ attr_accessor :get_virtual_config
2319
+ attr_accessor :env
2320
+ attr_accessor :eid
2321
+ attr_accessor :value
2322
+ attr_accessor :vt_settings
2323
+ attr_accessor :vt_info
2324
+ attr_accessor :env_config
2325
+ attr_accessor :virtual_config
2326
+ attr_accessor :native_config
2327
+ attr_accessor :log
2328
+
2329
+ 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 = [])
2330
+ @configuration = configuration
2331
+ @ok = ok
2332
+ @error = error
2333
+ @create = create
2334
+ @repair = repair
2335
+ @stop_repair = stop_repair
2336
+ @start = start
2337
+ @stop = stop
2338
+ @restart = restart
2339
+ @destroy = destroy
2340
+ @suspend = suspend
2341
+ @resume = resume
2342
+ @get_info = get_info
2343
+ @get_list = get_list
2344
+ @set = set
2345
+ @put_private = put_private
2346
+ @get_private = get_private
2347
+ @get_vt_settings = get_vt_settings
2348
+ @set_vt_settings = set_vt_settings
2349
+ @get_vt_info = get_vt_info
2350
+ @get_log = get_log
2351
+ @get_native_config = get_native_config
2352
+ @get_virtual_config = get_virtual_config
2353
+ @env = env
2354
+ @eid = eid
2355
+ @value = value
2356
+ @vt_settings = vt_settings
2357
+ @vt_info = vt_info
2358
+ @env_config = env_config
2359
+ @virtual_config = virtual_config
2360
+ @native_config = native_config
2361
+ @log = log
2362
+ end
2363
+ end
2364
+
2365
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}vzaenvmType
2366
+ # configuration - Virtuozzo::SOAP::Drivers::Environment::ConfigurationType
2367
+ # ok - Virtuozzo::SOAP::Drivers::Environment::VzaenvmType::Ok
2368
+ # error - Virtuozzo::SOAP::Drivers::Environment::VzaenvmType::Error
2369
+ # create - Virtuozzo::SOAP::Drivers::Environment::Create
2370
+ # repair - Virtuozzo::SOAP::Drivers::Environment::Repair
2371
+ # stop_repair - Virtuozzo::SOAP::Drivers::Environment::Stop_repair
2372
+ # start - Virtuozzo::SOAP::Drivers::Environment::Start
2373
+ # stop - Virtuozzo::SOAP::Drivers::Environment::Stop
2374
+ # restart - Virtuozzo::SOAP::Drivers::Environment::Restart
2375
+ # destroy - Virtuozzo::SOAP::Drivers::Environment::Destroy
2376
+ # suspend - Virtuozzo::SOAP::Drivers::Environment::Suspend
2377
+ # resume - Virtuozzo::SOAP::Drivers::Environment::Resume
2378
+ # get_info - Virtuozzo::SOAP::Drivers::Environment::Get_info
2379
+ # get_list - Virtuozzo::SOAP::Drivers::Environment::Get_list
2380
+ # set - Virtuozzo::SOAP::Drivers::Environment::Set
2381
+ # put_private - Virtuozzo::SOAP::Drivers::Environment::Put_private
2382
+ # get_private - Virtuozzo::SOAP::Drivers::Environment::Get_private
2383
+ # get_vt_settings - Virtuozzo::SOAP::Drivers::Environment::Get_vt_settings
2384
+ # set_vt_settings - Virtuozzo::SOAP::Drivers::Environment::Set_vt_settings
2385
+ # get_vt_info - Virtuozzo::SOAP::Drivers::Environment::Get_vt_info
2386
+ # get_log - Virtuozzo::SOAP::Drivers::Environment::Get_log
2387
+ # get_native_config - Virtuozzo::SOAP::Drivers::Environment::Get_native_config
2388
+ # get_virtual_config - Virtuozzo::SOAP::Drivers::Environment::Get_virtual_config
2389
+ # env - Virtuozzo::SOAP::Drivers::Environment::EnvType
2390
+ # eid - (any)
2391
+ # value - SOAP::SOAPBase64
2392
+ # vt_settings - Virtuozzo::SOAP::Drivers::Environment::Vt_settingsType
2393
+ # vt_info - Virtuozzo::SOAP::Drivers::Environment::Vt_infoType
2394
+ # env_config - Virtuozzo::SOAP::Drivers::Environment::Env_configType
2395
+ # virtual_config - Virtuozzo::SOAP::Drivers::Environment::Venv_configType
2396
+ # native_config - Virtuozzo::SOAP::Drivers::Environment::Native_configType
2397
+ # log - SOAP::SOAPBase64
2398
+ # mount - Virtuozzo::SOAP::Drivers::Environment::Mount
2399
+ # umount - Virtuozzo::SOAP::Drivers::Environment::Umount
2400
+ # set_user_password - Virtuozzo::SOAP::Drivers::Environment::Set_user_password
2401
+ # upgrade - Virtuozzo::SOAP::Drivers::Environment::Upgrade
2402
+ # determine_env - Virtuozzo::SOAP::Drivers::Environment::Determine_env
2403
+ # set_ugid_quota - Virtuozzo::SOAP::Drivers::Environment::Set_ugid_quota
2404
+ # get_ugid_quota - Virtuozzo::SOAP::Drivers::Environment::Get_ugid_quota
2405
+ # get_split_conf - Virtuozzo::SOAP::Drivers::Environment::Get_split_conf
2406
+ # validate - Virtuozzo::SOAP::Drivers::Environment::Validate
2407
+ # get_script - Virtuozzo::SOAP::Drivers::Environment::Get_script
2408
+ # set_script - Virtuozzo::SOAP::Drivers::Environment::Set_script
2409
+ # del_script - Virtuozzo::SOAP::Drivers::Environment::Del_script
2410
+ # recover_template - Virtuozzo::SOAP::Drivers::Environment::Recover_template
2411
+ # veid - (any)
2412
+ # ugid_quota - Virtuozzo::SOAP::Drivers::Environment::Ugid_quota_info
2413
+ # config - Virtuozzo::SOAP::Drivers::Environment::Venv_configType_
2414
+ # validation - Virtuozzo::SOAP::Drivers::Environment::ValidationType
2415
+ # script - Virtuozzo::SOAP::Drivers::Environment::Script
2416
+ class VzaenvmType < EnvmType
2417
+
2418
+ # inner class for member: ok
2419
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
2420
+ class Ok
2421
+ def initialize
2422
+ end
2423
+ end
2424
+
2425
+ # inner class for member: error
2426
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
2427
+ # code - SOAP::SOAPInt
2428
+ # message - SOAP::SOAPString
2429
+ class Error
2430
+ attr_accessor :code
2431
+ attr_accessor :message
2432
+
2433
+ def initialize(code = nil, message = nil)
2434
+ @code = code
2435
+ @message = message
2436
+ end
2437
+ end
2438
+
2439
+ attr_accessor :configuration
2440
+ attr_accessor :ok
2441
+ attr_accessor :error
2442
+ attr_accessor :create
2443
+ attr_accessor :repair
2444
+ attr_accessor :stop_repair
2445
+ attr_accessor :start
2446
+ attr_accessor :stop
2447
+ attr_accessor :restart
2448
+ attr_accessor :destroy
2449
+ attr_accessor :suspend
2450
+ attr_accessor :resume
2451
+ attr_accessor :get_info
2452
+ attr_accessor :get_list
2453
+ attr_accessor :set
2454
+ attr_accessor :put_private
2455
+ attr_accessor :get_private
2456
+ attr_accessor :get_vt_settings
2457
+ attr_accessor :set_vt_settings
2458
+ attr_accessor :get_vt_info
2459
+ attr_accessor :get_log
2460
+ attr_accessor :get_native_config
2461
+ attr_accessor :get_virtual_config
2462
+ attr_accessor :env
2463
+ attr_accessor :eid
2464
+ attr_accessor :value
2465
+ attr_accessor :vt_settings
2466
+ attr_accessor :vt_info
2467
+ attr_accessor :env_config
2468
+ attr_accessor :virtual_config
2469
+ attr_accessor :native_config
2470
+ attr_accessor :log
2471
+ attr_accessor :mount
2472
+ attr_accessor :umount
2473
+ attr_accessor :set_user_password
2474
+ attr_accessor :upgrade
2475
+ attr_accessor :determine_env
2476
+ attr_accessor :set_ugid_quota
2477
+ attr_accessor :get_ugid_quota
2478
+ attr_accessor :get_split_conf
2479
+ attr_accessor :validate
2480
+ attr_accessor :get_script
2481
+ attr_accessor :set_script
2482
+ attr_accessor :del_script
2483
+ attr_accessor :recover_template
2484
+ attr_accessor :veid
2485
+ attr_accessor :ugid_quota
2486
+ attr_accessor :config
2487
+ attr_accessor :validation
2488
+ attr_accessor :script
2489
+
2490
+ 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)
2491
+ @configuration = configuration
2492
+ @ok = ok
2493
+ @error = error
2494
+ @create = create
2495
+ @repair = repair
2496
+ @stop_repair = stop_repair
2497
+ @start = start
2498
+ @stop = stop
2499
+ @restart = restart
2500
+ @destroy = destroy
2501
+ @suspend = suspend
2502
+ @resume = resume
2503
+ @get_info = get_info
2504
+ @get_list = get_list
2505
+ @set = set
2506
+ @put_private = put_private
2507
+ @get_private = get_private
2508
+ @get_vt_settings = get_vt_settings
2509
+ @set_vt_settings = set_vt_settings
2510
+ @get_vt_info = get_vt_info
2511
+ @get_log = get_log
2512
+ @get_native_config = get_native_config
2513
+ @get_virtual_config = get_virtual_config
2514
+ @env = env
2515
+ @eid = eid
2516
+ @value = value
2517
+ @vt_settings = vt_settings
2518
+ @vt_info = vt_info
2519
+ @env_config = env_config
2520
+ @virtual_config = virtual_config
2521
+ @native_config = native_config
2522
+ @log = log
2523
+ @mount = mount
2524
+ @umount = umount
2525
+ @set_user_password = set_user_password
2526
+ @upgrade = upgrade
2527
+ @determine_env = determine_env
2528
+ @set_ugid_quota = set_ugid_quota
2529
+ @get_ugid_quota = get_ugid_quota
2530
+ @get_split_conf = get_split_conf
2531
+ @validate = validate
2532
+ @get_script = get_script
2533
+ @set_script = set_script
2534
+ @del_script = del_script
2535
+ @recover_template = recover_template
2536
+ @veid = veid
2537
+ @ugid_quota = ugid_quota
2538
+ @config = config
2539
+ @validation = validation
2540
+ @script = script
2541
+ end
2542
+ end
2543
+
2544
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}set_periodType
2545
+ # collect - SOAP::SOAPInt
2546
+ # log - SOAP::SOAPInt
2547
+ # report - SOAP::SOAPInt
2548
+ class Set_periodType
2549
+ attr_accessor :collect
2550
+ attr_accessor :log
2551
+ attr_accessor :report
2552
+
2553
+ def initialize(collect = nil, log = nil, report = nil)
2554
+ @collect = collect
2555
+ @log = log
2556
+ @report = report
2557
+ end
2558
+ end
2559
+
2560
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}start_monitorType
2561
+ # period - SOAP::SOAPInt
2562
+ class Start_monitorType
2563
+ attr_accessor :period
2564
+ attr_reader :__xmlele_any
2565
+
2566
+ def set_any(elements)
2567
+ @__xmlele_any = elements
2568
+ end
2569
+
2570
+ def initialize(period = nil)
2571
+ @period = period
2572
+ @__xmlele_any = nil
2573
+ end
2574
+ end
2575
+
2576
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}stop_monitorType
2577
+ class Stop_monitorType
2578
+ attr_reader :__xmlele_any
2579
+
2580
+ def set_any(elements)
2581
+ @__xmlele_any = elements
2582
+ end
2583
+
2584
+ def initialize
2585
+ @__xmlele_any = nil
2586
+ end
2587
+ end
2588
+
2589
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}authType
2590
+ class AuthType
2591
+ attr_reader :__xmlele_any
2592
+
2593
+ def set_any(elements)
2594
+ @__xmlele_any = elements
2595
+ end
2596
+
2597
+ def initialize
2598
+ @__xmlele_any = nil
2599
+ end
2600
+ end
2601
+
2602
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}routeType
2603
+ # director - SOAP::SOAPString
2604
+ # host - SOAP::SOAPString
2605
+ # index - SOAP::SOAPString
2606
+ # target - SOAP::SOAPString
2607
+ class RouteType
2608
+ attr_accessor :director
2609
+ attr_accessor :host
2610
+ attr_accessor :index
2611
+ attr_accessor :target
2612
+
2613
+ def initialize(director = nil, host = nil, index = nil, target = nil)
2614
+ @director = director
2615
+ @host = host
2616
+ @index = index
2617
+ @target = target
2618
+ end
2619
+ end
2620
+
2621
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}dataType
2622
+ class DataType < ::Array
2623
+ end
2624
+
2625
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}configurationType
2626
+ class ConfigurationType
2627
+ def initialize
2628
+ end
2629
+ end
2630
+
2631
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}event_configurationType
2632
+ # period - SOAP::SOAPInt
2633
+ class Event_configurationType < ConfigurationType
2634
+ attr_accessor :period
2635
+
2636
+ def initialize(period = nil)
2637
+ @period = period
2638
+ end
2639
+ end
2640
+
2641
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}periodic_configurationType
2642
+ # log_priority - SOAP::SOAPInt
2643
+ # monitor_priority - SOAP::SOAPInt
2644
+ # min_monitor_period - SOAP::SOAPInt
2645
+ # min_monitor_period_root - SOAP::SOAPInt
2646
+ class Periodic_configurationType < ConfigurationType
2647
+ attr_accessor :log_priority
2648
+ attr_accessor :monitor_priority
2649
+ attr_accessor :min_monitor_period
2650
+ attr_accessor :min_monitor_period_root
2651
+
2652
+ def initialize(log_priority = nil, monitor_priority = nil, min_monitor_period = nil, min_monitor_period_root = nil)
2653
+ @log_priority = log_priority
2654
+ @monitor_priority = monitor_priority
2655
+ @min_monitor_period = min_monitor_period
2656
+ @min_monitor_period_root = min_monitor_period_root
2657
+ end
2658
+ end
2659
+
2660
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/envm}envm_configurationType
2661
+ # timeouts - Virtuozzo::SOAP::Drivers::Environment::Envm_configurationType::Timeouts
2662
+ class Envm_configurationType < ConfigurationType
2663
+
2664
+ # inner class for member: timeouts
2665
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/envm}timeouts
2666
+ # create - SOAP::SOAPInt
2667
+ # operate - SOAP::SOAPInt
2668
+ class Timeouts
2669
+ attr_accessor :create
2670
+ attr_accessor :operate
2671
+
2672
+ def initialize(create = nil, operate = nil)
2673
+ @create = create
2674
+ @operate = operate
2675
+ end
2676
+ end
2677
+
2678
+ attr_accessor :timeouts
2679
+
2680
+ def initialize(timeouts = nil)
2681
+ @timeouts = timeouts
2682
+ end
2683
+ end
2684
+
2685
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}vzaenvm_configurationType
2686
+ # timeouts - Virtuozzo::SOAP::Drivers::Environment::Vzaenvm_configurationType::Timeouts
2687
+ # start_veid - SOAP::SOAPInt
2688
+ # end_veid - SOAP::SOAPInt
2689
+ # sve_visible - SOAP::SOAPInt
2690
+ # timeouts - Virtuozzo::SOAP::Drivers::Environment::Vzaenvm_configurationType::Timeouts_
2691
+ class Vzaenvm_configurationType < Envm_configurationType
2692
+
2693
+ # inner class for member: timeouts
2694
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/envm}timeouts
2695
+ # create - SOAP::SOAPInt
2696
+ # operate - SOAP::SOAPInt
2697
+ class Timeouts
2698
+ attr_accessor :create
2699
+ attr_accessor :operate
2700
+
2701
+ def initialize(create = nil, operate = nil)
2702
+ @create = create
2703
+ @operate = operate
2704
+ end
2705
+ end
2706
+
2707
+ # inner class for member: timeouts
2708
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}timeouts
2709
+ # create - SOAP::SOAPInt
2710
+ # operate - SOAP::SOAPInt
2711
+ # init - SOAP::SOAPInt
2712
+ # clone - SOAP::SOAPInt
2713
+ # move - SOAP::SOAPInt
2714
+ class Timeouts_
2715
+ attr_accessor :create
2716
+ attr_accessor :operate
2717
+ attr_accessor :init
2718
+ attr_accessor :clone
2719
+ attr_accessor :move
2720
+
2721
+ def initialize(create = nil, operate = nil, init = nil, clone = nil, move = nil)
2722
+ @create = create
2723
+ @operate = operate
2724
+ @init = init
2725
+ @clone = clone
2726
+ @move = move
2727
+ end
2728
+ end
2729
+
2730
+ attr_accessor :timeouts
2731
+ attr_accessor :start_veid
2732
+ attr_accessor :end_veid
2733
+ attr_accessor :sve_visible
2734
+ attr_accessor :timeouts
2735
+
2736
+ def initialize(timeouts = nil, start_veid = nil, end_veid = nil, sve_visible = nil, timeouts = nil)
2737
+ @timeouts = timeouts
2738
+ @start_veid = start_veid
2739
+ @end_veid = end_veid
2740
+ @sve_visible = sve_visible
2741
+ @timeouts = timeouts
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