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,2708 @@
1
+ require 'xsd/qname'
2
+
3
+ module Virtuozzo; module SOAP; module Drivers; module Support
4
+
5
+
6
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}packet_headerType
7
+ # auth - Virtuozzo::SOAP::Drivers::Support::AuthType
8
+ # cookie - SOAP::SOAPString
9
+ # target - SOAP::SOAPString
10
+ # origin - SOAP::SOAPString
11
+ # src - Virtuozzo::SOAP::Drivers::Support::RouteType
12
+ # dst - Virtuozzo::SOAP::Drivers::Support::RouteType
13
+ # session - SOAP::SOAPString
14
+ # xmlattr_version - SOAP::SOAPString
15
+ # xmlattr_id - SOAP::SOAPString
16
+ # xmlattr_priority - SOAP::SOAPString
17
+ # xmlattr_time - SOAP::SOAPString
18
+ # xmlattr_progress - SOAP::SOAPString
19
+ # xmlattr_log - SOAP::SOAPString
20
+ # xmlattr_type - SOAP::SOAPInt
21
+ # xmlattr_timeout - SOAP::SOAPInt
22
+ # xmlattr_timeout_limit - SOAP::SOAPInt
23
+ # xmlattr_uid - SOAP::SOAPInt
24
+ class Packet_headerType
25
+ AttrC_Time = XSD::QName.new(nil, "time")
26
+ AttrId = XSD::QName.new(nil, "id")
27
+ AttrLog = XSD::QName.new(nil, "log")
28
+ AttrPriority = XSD::QName.new(nil, "priority")
29
+ AttrProgress = XSD::QName.new(nil, "progress")
30
+ AttrTimeout = XSD::QName.new(nil, "timeout")
31
+ AttrTimeout_limit = XSD::QName.new(nil, "timeout_limit")
32
+ AttrType = XSD::QName.new(nil, "type")
33
+ AttrUid = XSD::QName.new(nil, "uid")
34
+ AttrVersion = XSD::QName.new(nil, "version")
35
+
36
+ attr_accessor :auth
37
+ attr_accessor :cookie
38
+ attr_accessor :target
39
+ attr_accessor :origin
40
+ attr_accessor :src
41
+ attr_accessor :dst
42
+ attr_accessor :session
43
+
44
+ def __xmlattr
45
+ @__xmlattr ||= {}
46
+ end
47
+
48
+ def xmlattr_version
49
+ __xmlattr[AttrVersion]
50
+ end
51
+
52
+ def xmlattr_version=(value)
53
+ __xmlattr[AttrVersion] = value
54
+ end
55
+
56
+ def xmlattr_id
57
+ __xmlattr[AttrId]
58
+ end
59
+
60
+ def xmlattr_id=(value)
61
+ __xmlattr[AttrId] = value
62
+ end
63
+
64
+ def xmlattr_priority
65
+ __xmlattr[AttrPriority]
66
+ end
67
+
68
+ def xmlattr_priority=(value)
69
+ __xmlattr[AttrPriority] = value
70
+ end
71
+
72
+ def xmlattr_time
73
+ __xmlattr[AttrC_Time]
74
+ end
75
+
76
+ def xmlattr_time=(value)
77
+ __xmlattr[AttrC_Time] = value
78
+ end
79
+
80
+ def xmlattr_progress
81
+ __xmlattr[AttrProgress]
82
+ end
83
+
84
+ def xmlattr_progress=(value)
85
+ __xmlattr[AttrProgress] = value
86
+ end
87
+
88
+ def xmlattr_log
89
+ __xmlattr[AttrLog]
90
+ end
91
+
92
+ def xmlattr_log=(value)
93
+ __xmlattr[AttrLog] = value
94
+ end
95
+
96
+ def xmlattr_type
97
+ __xmlattr[AttrType]
98
+ end
99
+
100
+ def xmlattr_type=(value)
101
+ __xmlattr[AttrType] = value
102
+ end
103
+
104
+ def xmlattr_timeout
105
+ __xmlattr[AttrTimeout]
106
+ end
107
+
108
+ def xmlattr_timeout=(value)
109
+ __xmlattr[AttrTimeout] = value
110
+ end
111
+
112
+ def xmlattr_timeout_limit
113
+ __xmlattr[AttrTimeout_limit]
114
+ end
115
+
116
+ def xmlattr_timeout_limit=(value)
117
+ __xmlattr[AttrTimeout_limit] = value
118
+ end
119
+
120
+ def xmlattr_uid
121
+ __xmlattr[AttrUid]
122
+ end
123
+
124
+ def xmlattr_uid=(value)
125
+ __xmlattr[AttrUid] = value
126
+ end
127
+
128
+ def initialize(auth = nil, cookie = nil, target = [], origin = nil, src = nil, dst = nil, session = nil)
129
+ @auth = auth
130
+ @cookie = cookie
131
+ @target = target
132
+ @origin = origin
133
+ @src = src
134
+ @dst = dst
135
+ @session = session
136
+ @__xmlattr = {}
137
+ end
138
+ end
139
+
140
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operatorType
141
+ # configuration - Virtuozzo::SOAP::Drivers::Support::ConfigurationType
142
+ class OperatorType
143
+ attr_accessor :configuration
144
+
145
+ def initialize(configuration = nil)
146
+ @configuration = configuration
147
+ end
148
+ end
149
+
150
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operator_functionalType
151
+ # configuration - Virtuozzo::SOAP::Drivers::Support::ConfigurationType
152
+ # ok - Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Ok
153
+ # error - Virtuozzo::SOAP::Drivers::Support::Operator_functionalType::Error
154
+ class Operator_functionalType < OperatorType
155
+
156
+ # inner class for member: ok
157
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
158
+ class Ok
159
+ def initialize
160
+ end
161
+ end
162
+
163
+ # inner class for member: error
164
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
165
+ # code - SOAP::SOAPInt
166
+ # message - SOAP::SOAPString
167
+ class Error
168
+ attr_accessor :code
169
+ attr_accessor :message
170
+
171
+ def initialize(code = nil, message = nil)
172
+ @code = code
173
+ @message = message
174
+ end
175
+ end
176
+
177
+ attr_accessor :configuration
178
+ attr_accessor :ok
179
+ attr_accessor :error
180
+
181
+ def initialize(configuration = nil, ok = [], error = [])
182
+ @configuration = configuration
183
+ @ok = ok
184
+ @error = error
185
+ end
186
+ end
187
+
188
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}vzasupportType
189
+ # configuration - Virtuozzo::SOAP::Drivers::Support::ConfigurationType
190
+ # ok - Virtuozzo::SOAP::Drivers::Support::VzasupportType::Ok
191
+ # error - Virtuozzo::SOAP::Drivers::Support::VzasupportType::Error
192
+ # start_channel - Virtuozzo::SOAP::Drivers::Support::Start_channel
193
+ # stop_channel - Virtuozzo::SOAP::Drivers::Support::Stop_channel
194
+ # get_channel_status - Virtuozzo::SOAP::Drivers::Support::Get_channel_status
195
+ # set_key - Virtuozzo::SOAP::Drivers::Support::Set_key
196
+ # get_key_status - Virtuozzo::SOAP::Drivers::Support::Get_key_status
197
+ # remove_key - Virtuozzo::SOAP::Drivers::Support::Remove_key
198
+ # problem_report - Virtuozzo::SOAP::Drivers::Support::Problem_report
199
+ # channel_status - SOAP::SOAPInt
200
+ # key_status - SOAP::SOAPInt
201
+ # ticket - SOAP::SOAPBase64
202
+ class VzasupportType < Operator_functionalType
203
+
204
+ # inner class for member: ok
205
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
206
+ class Ok
207
+ def initialize
208
+ end
209
+ end
210
+
211
+ # inner class for member: error
212
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
213
+ # code - SOAP::SOAPInt
214
+ # message - SOAP::SOAPString
215
+ class Error
216
+ attr_accessor :code
217
+ attr_accessor :message
218
+
219
+ def initialize(code = nil, message = nil)
220
+ @code = code
221
+ @message = message
222
+ end
223
+ end
224
+
225
+ attr_accessor :configuration
226
+ attr_accessor :ok
227
+ attr_accessor :error
228
+ attr_accessor :start_channel
229
+ attr_accessor :stop_channel
230
+ attr_accessor :get_channel_status
231
+ attr_accessor :set_key
232
+ attr_accessor :get_key_status
233
+ attr_accessor :remove_key
234
+ attr_accessor :problem_report
235
+ attr_accessor :channel_status
236
+ attr_accessor :key_status
237
+ attr_accessor :ticket
238
+
239
+ def initialize(configuration = nil, ok = [], error = [], start_channel = [], stop_channel = [], get_channel_status = [], set_key = [], get_key_status = [], remove_key = [], problem_report = [], channel_status = [], key_status = [], ticket = [])
240
+ @configuration = configuration
241
+ @ok = ok
242
+ @error = error
243
+ @start_channel = start_channel
244
+ @stop_channel = stop_channel
245
+ @get_channel_status = get_channel_status
246
+ @set_key = set_key
247
+ @get_key_status = get_key_status
248
+ @remove_key = remove_key
249
+ @problem_report = problem_report
250
+ @channel_status = channel_status
251
+ @key_status = key_status
252
+ @ticket = ticket
253
+ end
254
+ end
255
+
256
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operator_periodicType
257
+ # configuration - Virtuozzo::SOAP::Drivers::Support::ConfigurationType
258
+ # ok - Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Ok
259
+ # error - Virtuozzo::SOAP::Drivers::Support::Operator_periodicType::Error
260
+ # start_monitor - Virtuozzo::SOAP::Drivers::Support::Start_monitorType
261
+ # stop_monitor - Virtuozzo::SOAP::Drivers::Support::Stop_monitorType
262
+ # set_period - Virtuozzo::SOAP::Drivers::Support::Set_periodType
263
+ # report - (any)
264
+ class Operator_periodicType < Operator_functionalType
265
+
266
+ # inner class for member: ok
267
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}ok
268
+ class Ok
269
+ def initialize
270
+ end
271
+ end
272
+
273
+ # inner class for member: error
274
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}error
275
+ # code - SOAP::SOAPInt
276
+ # message - SOAP::SOAPString
277
+ class Error
278
+ attr_accessor :code
279
+ attr_accessor :message
280
+
281
+ def initialize(code = nil, message = nil)
282
+ @code = code
283
+ @message = message
284
+ end
285
+ end
286
+
287
+ attr_accessor :configuration
288
+ attr_accessor :ok
289
+ attr_accessor :error
290
+ attr_accessor :start_monitor
291
+ attr_accessor :stop_monitor
292
+ attr_accessor :set_period
293
+ attr_accessor :report
294
+
295
+ def initialize(configuration = nil, ok = [], error = [], start_monitor = nil, stop_monitor = nil, set_period = nil, report = nil)
296
+ @configuration = configuration
297
+ @ok = ok
298
+ @error = error
299
+ @start_monitor = start_monitor
300
+ @stop_monitor = stop_monitor
301
+ @set_period = set_period
302
+ @report = report
303
+ end
304
+ end
305
+
306
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}set_periodType
307
+ # collect - SOAP::SOAPInt
308
+ # log - SOAP::SOAPInt
309
+ # report - SOAP::SOAPInt
310
+ class Set_periodType
311
+ attr_accessor :collect
312
+ attr_accessor :log
313
+ attr_accessor :report
314
+
315
+ def initialize(collect = nil, log = nil, report = nil)
316
+ @collect = collect
317
+ @log = log
318
+ @report = report
319
+ end
320
+ end
321
+
322
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}start_monitorType
323
+ # period - SOAP::SOAPInt
324
+ class Start_monitorType
325
+ attr_accessor :period
326
+ attr_reader :__xmlele_any
327
+
328
+ def set_any(elements)
329
+ @__xmlele_any = elements
330
+ end
331
+
332
+ def initialize(period = nil)
333
+ @period = period
334
+ @__xmlele_any = nil
335
+ end
336
+ end
337
+
338
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}stop_monitorType
339
+ class Stop_monitorType
340
+ attr_reader :__xmlele_any
341
+
342
+ def set_any(elements)
343
+ @__xmlele_any = elements
344
+ end
345
+
346
+ def initialize
347
+ @__xmlele_any = nil
348
+ end
349
+ end
350
+
351
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}authType
352
+ class AuthType
353
+ attr_reader :__xmlele_any
354
+
355
+ def set_any(elements)
356
+ @__xmlele_any = elements
357
+ end
358
+
359
+ def initialize
360
+ @__xmlele_any = nil
361
+ end
362
+ end
363
+
364
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}routeType
365
+ # director - SOAP::SOAPString
366
+ # host - SOAP::SOAPString
367
+ # index - SOAP::SOAPString
368
+ # target - SOAP::SOAPString
369
+ class RouteType
370
+ attr_accessor :director
371
+ attr_accessor :host
372
+ attr_accessor :index
373
+ attr_accessor :target
374
+
375
+ def initialize(director = nil, host = nil, index = nil, target = nil)
376
+ @director = director
377
+ @host = host
378
+ @index = index
379
+ @target = target
380
+ end
381
+ end
382
+
383
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}dataType
384
+ class DataType < ::Array
385
+ end
386
+
387
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}configurationType
388
+ class ConfigurationType
389
+ def initialize
390
+ end
391
+ end
392
+
393
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}vzasupport_configurationType
394
+ # timeouts - Virtuozzo::SOAP::Drivers::Support::Vzasupport_configurationType::Timeouts
395
+ class Vzasupport_configurationType < ConfigurationType
396
+
397
+ # inner class for member: timeouts
398
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}timeouts
399
+ # report - SOAP::SOAPInt
400
+ # key - (any)
401
+ # channel - (any)
402
+ class Timeouts
403
+ attr_accessor :report
404
+ attr_accessor :key
405
+ attr_accessor :channel
406
+
407
+ def initialize(report = nil, key = nil, channel = nil)
408
+ @report = report
409
+ @key = key
410
+ @channel = channel
411
+ end
412
+ end
413
+
414
+ attr_accessor :timeouts
415
+
416
+ def initialize(timeouts = nil)
417
+ @timeouts = timeouts
418
+ end
419
+ end
420
+
421
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}event_configurationType
422
+ # period - SOAP::SOAPInt
423
+ class Event_configurationType < ConfigurationType
424
+ attr_accessor :period
425
+
426
+ def initialize(period = nil)
427
+ @period = period
428
+ end
429
+ end
430
+
431
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}periodic_configurationType
432
+ # log_priority - SOAP::SOAPInt
433
+ # monitor_priority - SOAP::SOAPInt
434
+ # min_monitor_period - SOAP::SOAPInt
435
+ # min_monitor_period_root - SOAP::SOAPInt
436
+ class Periodic_configurationType < ConfigurationType
437
+ attr_accessor :log_priority
438
+ attr_accessor :monitor_priority
439
+ attr_accessor :min_monitor_period
440
+ attr_accessor :min_monitor_period_root
441
+
442
+ def initialize(log_priority = nil, monitor_priority = nil, min_monitor_period = nil, min_monitor_period_root = nil)
443
+ @log_priority = log_priority
444
+ @monitor_priority = monitor_priority
445
+ @min_monitor_period = min_monitor_period
446
+ @min_monitor_period_root = min_monitor_period_root
447
+ end
448
+ end
449
+
450
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}osType
451
+ # platform - SOAP::SOAPString
452
+ # name - SOAP::SOAPString
453
+ # version - SOAP::SOAPString
454
+ # kernel - SOAP::SOAPString
455
+ class OsType
456
+ attr_accessor :platform
457
+ attr_accessor :name
458
+ attr_accessor :version
459
+ attr_accessor :kernel
460
+
461
+ def initialize(platform = nil, name = nil, version = nil, kernel = nil)
462
+ @platform = platform
463
+ @name = name
464
+ @version = version
465
+ @kernel = kernel
466
+ end
467
+ end
468
+
469
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_statusType
470
+ # state - SOAP::SOAPInt
471
+ # transition - SOAP::SOAPInt
472
+ class Env_statusType
473
+ attr_accessor :state
474
+ attr_accessor :transition
475
+
476
+ def initialize(state = nil, transition = nil)
477
+ @state = state
478
+ @transition = transition
479
+ end
480
+ end
481
+
482
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}qosType
483
+ # id - SOAP::SOAPString
484
+ # soft - SOAP::SOAPLong
485
+ # hard - SOAP::SOAPLong
486
+ # cur - SOAP::SOAPLong
487
+ class QosType
488
+ attr_accessor :id
489
+ attr_accessor :soft
490
+ attr_accessor :hard
491
+ attr_accessor :cur
492
+
493
+ def initialize(id = nil, soft = nil, hard = nil, cur = nil)
494
+ @id = id
495
+ @soft = soft
496
+ @hard = hard
497
+ @cur = cur
498
+ end
499
+ end
500
+
501
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_configType
502
+ # name - SOAP::SOAPString
503
+ # description - SOAP::SOAPBase64
504
+ # domain - SOAP::SOAPString
505
+ # hostname - SOAP::SOAPString
506
+ # address - Virtuozzo::SOAP::Drivers::Support::Ip_addressType
507
+ # architecture - SOAP::SOAPString
508
+ # os - Virtuozzo::SOAP::Drivers::Support::OsType
509
+ # type - SOAP::SOAPString
510
+ # nameserver - SOAP::SOAPString
511
+ # search_domain - SOAP::SOAPString
512
+ # base_sample_id - (any)
513
+ # base_snapshot_id - (any)
514
+ # child_type - SOAP::SOAPString
515
+ class Env_configType
516
+ attr_accessor :name
517
+ attr_accessor :description
518
+ attr_accessor :domain
519
+ attr_accessor :hostname
520
+ attr_accessor :address
521
+ attr_accessor :architecture
522
+ attr_accessor :os
523
+ attr_accessor :type
524
+ attr_accessor :nameserver
525
+ attr_accessor :search_domain
526
+ attr_accessor :base_sample_id
527
+ attr_accessor :base_snapshot_id
528
+ attr_accessor :child_type
529
+
530
+ 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 = [])
531
+ @name = name
532
+ @description = description
533
+ @domain = domain
534
+ @hostname = hostname
535
+ @address = address
536
+ @architecture = architecture
537
+ @os = os
538
+ @type = type
539
+ @nameserver = nameserver
540
+ @search_domain = search_domain
541
+ @base_sample_id = base_sample_id
542
+ @base_snapshot_id = base_snapshot_id
543
+ @child_type = child_type
544
+ end
545
+ end
546
+
547
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}venv_configType
548
+ # name - SOAP::SOAPString
549
+ # description - SOAP::SOAPBase64
550
+ # domain - SOAP::SOAPString
551
+ # hostname - SOAP::SOAPString
552
+ # address - Virtuozzo::SOAP::Drivers::Support::Ip_addressType
553
+ # architecture - SOAP::SOAPString
554
+ # os - Virtuozzo::SOAP::Drivers::Support::OsType
555
+ # type - SOAP::SOAPString
556
+ # nameserver - SOAP::SOAPString
557
+ # search_domain - SOAP::SOAPString
558
+ # base_sample_id - (any)
559
+ # base_snapshot_id - (any)
560
+ # child_type - SOAP::SOAPString
561
+ # qos - Virtuozzo::SOAP::Drivers::Support::QosType
562
+ class Venv_configType < Env_configType
563
+ attr_accessor :name
564
+ attr_accessor :description
565
+ attr_accessor :domain
566
+ attr_accessor :hostname
567
+ attr_accessor :address
568
+ attr_accessor :architecture
569
+ attr_accessor :os
570
+ attr_accessor :type
571
+ attr_accessor :nameserver
572
+ attr_accessor :search_domain
573
+ attr_accessor :base_sample_id
574
+ attr_accessor :base_snapshot_id
575
+ attr_accessor :child_type
576
+ attr_accessor :qos
577
+
578
+ 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 = [])
579
+ @name = name
580
+ @description = description
581
+ @domain = domain
582
+ @hostname = hostname
583
+ @address = address
584
+ @architecture = architecture
585
+ @os = os
586
+ @type = type
587
+ @nameserver = nameserver
588
+ @search_domain = search_domain
589
+ @base_sample_id = base_sample_id
590
+ @base_snapshot_id = base_snapshot_id
591
+ @child_type = child_type
592
+ @qos = qos
593
+ end
594
+ end
595
+
596
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}venv_configType
597
+ # name - SOAP::SOAPString
598
+ # description - SOAP::SOAPBase64
599
+ # domain - SOAP::SOAPString
600
+ # hostname - SOAP::SOAPString
601
+ # address - Virtuozzo::SOAP::Drivers::Support::Ip_addressType
602
+ # architecture - SOAP::SOAPString
603
+ # os - Virtuozzo::SOAP::Drivers::Support::OsType
604
+ # type - SOAP::SOAPString
605
+ # nameserver - SOAP::SOAPString
606
+ # search_domain - SOAP::SOAPString
607
+ # base_sample_id - (any)
608
+ # base_snapshot_id - (any)
609
+ # child_type - SOAP::SOAPString
610
+ # qos - Virtuozzo::SOAP::Drivers::Support::QosType
611
+ # veid - (any)
612
+ # ve_root - SOAP::SOAPString
613
+ # ve_private - SOAP::SOAPString
614
+ # on_boot - SOAP::SOAPBoolean
615
+ # template - Virtuozzo::SOAP::Drivers::Support::TemplateType
616
+ # disabled - SOAP::SOAPBoolean
617
+ # offline_management - SOAP::SOAPBoolean
618
+ # os_template - Virtuozzo::SOAP::Drivers::Support::TemplateType
619
+ # distribution - Virtuozzo::SOAP::Drivers::Support::TemplateType
620
+ # capability - Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Capability
621
+ # iptables - SOAP::SOAPString
622
+ # config_customized - SOAP::SOAPBoolean
623
+ # class_id - SOAP::SOAPString
624
+ # ve_type - Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Ve_type
625
+ # offline_service - SOAP::SOAPString
626
+ # wins_server - SOAP::SOAPString
627
+ # net_device - Virtuozzo::SOAP::Drivers::Support::Net_vethType
628
+ # ts_license_server - SOAP::SOAPString
629
+ # ts_mode - SOAP::SOAPInt
630
+ # uuid - SOAP::SOAPString
631
+ # allow_reboot - SOAP::SOAPBoolean
632
+ # rate_bound - SOAP::SOAPBoolean
633
+ # interface_rate - Virtuozzo::SOAP::Drivers::Support::Venv_configType_::Interface_rate
634
+ # slm_mode - SOAP::SOAPString
635
+ # origin_sample - SOAP::SOAPString
636
+ class Venv_configType_ < Venv_configType
637
+
638
+ # inner class for member: capability
639
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}capability
640
+ # id - SOAP::SOAPString
641
+ # value - SOAP::SOAPBoolean
642
+ class Capability
643
+ attr_accessor :id
644
+ attr_accessor :value
645
+
646
+ def initialize(id = nil, value = nil)
647
+ @id = id
648
+ @value = value
649
+ end
650
+ end
651
+
652
+ # inner class for member: ve_type
653
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}ve_type
654
+ # veid - (any)
655
+ # type - SOAP::SOAPInt
656
+ class Ve_type
657
+ attr_accessor :veid
658
+ attr_accessor :type
659
+
660
+ def initialize(veid = nil, type = nil)
661
+ @veid = veid
662
+ @type = type
663
+ end
664
+ end
665
+
666
+ # inner class for member: interface_rate
667
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}interface_rate
668
+ # class_id - SOAP::SOAPString
669
+ # rate - SOAP::SOAPLong
670
+ class Interface_rate
671
+ attr_accessor :class_id
672
+ attr_accessor :rate
673
+
674
+ def initialize(class_id = nil, rate = nil)
675
+ @class_id = class_id
676
+ @rate = rate
677
+ end
678
+ end
679
+
680
+ attr_accessor :name
681
+ attr_accessor :description
682
+ attr_accessor :domain
683
+ attr_accessor :hostname
684
+ attr_accessor :address
685
+ attr_accessor :architecture
686
+ attr_accessor :os
687
+ attr_accessor :type
688
+ attr_accessor :nameserver
689
+ attr_accessor :search_domain
690
+ attr_accessor :base_sample_id
691
+ attr_accessor :base_snapshot_id
692
+ attr_accessor :child_type
693
+ attr_accessor :qos
694
+ attr_accessor :veid
695
+ attr_accessor :ve_root
696
+ attr_accessor :ve_private
697
+ attr_accessor :on_boot
698
+ attr_accessor :template
699
+ attr_accessor :disabled
700
+ attr_accessor :offline_management
701
+ attr_accessor :os_template
702
+ attr_accessor :distribution
703
+ attr_accessor :capability
704
+ attr_accessor :iptables
705
+ attr_accessor :config_customized
706
+ attr_accessor :class_id
707
+ attr_accessor :ve_type
708
+ attr_accessor :offline_service
709
+ attr_accessor :wins_server
710
+ attr_accessor :net_device
711
+ attr_accessor :ts_license_server
712
+ attr_accessor :ts_mode
713
+ attr_accessor :uuid
714
+ attr_accessor :allow_reboot
715
+ attr_accessor :rate_bound
716
+ attr_accessor :interface_rate
717
+ attr_accessor :slm_mode
718
+ attr_accessor :origin_sample
719
+
720
+ 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)
721
+ @name = name
722
+ @description = description
723
+ @domain = domain
724
+ @hostname = hostname
725
+ @address = address
726
+ @architecture = architecture
727
+ @os = os
728
+ @type = type
729
+ @nameserver = nameserver
730
+ @search_domain = search_domain
731
+ @base_sample_id = base_sample_id
732
+ @base_snapshot_id = base_snapshot_id
733
+ @child_type = child_type
734
+ @qos = qos
735
+ @veid = veid
736
+ @ve_root = ve_root
737
+ @ve_private = ve_private
738
+ @on_boot = on_boot
739
+ @template = template
740
+ @disabled = disabled
741
+ @offline_management = offline_management
742
+ @os_template = os_template
743
+ @distribution = distribution
744
+ @capability = capability
745
+ @iptables = iptables
746
+ @config_customized = config_customized
747
+ @class_id = class_id
748
+ @ve_type = ve_type
749
+ @offline_service = offline_service
750
+ @wins_server = wins_server
751
+ @net_device = net_device
752
+ @ts_license_server = ts_license_server
753
+ @ts_mode = ts_mode
754
+ @uuid = uuid
755
+ @allow_reboot = allow_reboot
756
+ @rate_bound = rate_bound
757
+ @interface_rate = interface_rate
758
+ @slm_mode = slm_mode
759
+ @origin_sample = origin_sample
760
+ end
761
+ end
762
+
763
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}native_configType
764
+ class Native_configType
765
+ def initialize
766
+ end
767
+ end
768
+
769
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}virtuozzo_configType
770
+ # body - SOAP::SOAPBase64
771
+ class Virtuozzo_configType < Native_configType
772
+ attr_accessor :body
773
+
774
+ def initialize(body = nil)
775
+ @body = body
776
+ end
777
+ end
778
+
779
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}envType
780
+ # parent_eid - (any)
781
+ # eid - (any)
782
+ # status - Virtuozzo::SOAP::Drivers::Support::Env_statusType
783
+ # alert - SOAP::SOAPInt
784
+ # config - Virtuozzo::SOAP::Drivers::Support::Env_configType
785
+ # virtual_config - Virtuozzo::SOAP::Drivers::Support::Venv_configType
786
+ class EnvType
787
+ attr_accessor :parent_eid
788
+ attr_accessor :eid
789
+ attr_accessor :status
790
+ attr_accessor :alert
791
+ attr_accessor :config
792
+ attr_accessor :virtual_config
793
+
794
+ def initialize(parent_eid = nil, eid = nil, status = nil, alert = nil, config = nil, virtual_config = nil)
795
+ @parent_eid = parent_eid
796
+ @eid = eid
797
+ @status = status
798
+ @alert = alert
799
+ @config = config
800
+ @virtual_config = virtual_config
801
+ end
802
+ end
803
+
804
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}envType
805
+ # parent_eid - (any)
806
+ # eid - (any)
807
+ # status - Virtuozzo::SOAP::Drivers::Support::Env_statusType
808
+ # alert - SOAP::SOAPInt
809
+ # config - Virtuozzo::SOAP::Drivers::Support::Env_configType
810
+ # virtual_config - Virtuozzo::SOAP::Drivers::Support::Venv_configType
811
+ class EnvType_ < EnvType
812
+ attr_accessor :parent_eid
813
+ attr_accessor :eid
814
+ attr_accessor :status
815
+ attr_accessor :alert
816
+ attr_accessor :config
817
+ attr_accessor :virtual_config
818
+
819
+ def initialize(parent_eid = nil, eid = nil, status = nil, alert = nil, config = nil, virtual_config = nil)
820
+ @parent_eid = parent_eid
821
+ @eid = eid
822
+ @status = status
823
+ @alert = alert
824
+ @config = config
825
+ @virtual_config = virtual_config
826
+ end
827
+ end
828
+
829
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}processesType
830
+ # run - SOAP::SOAPInt
831
+ # zombie - SOAP::SOAPInt
832
+ # sleep - SOAP::SOAPInt
833
+ # uninterrupt - SOAP::SOAPInt
834
+ # stopped - SOAP::SOAPInt
835
+ # total - SOAP::SOAPInt
836
+ class ProcessesType
837
+ attr_accessor :run
838
+ attr_accessor :zombie
839
+ attr_accessor :sleep
840
+ attr_accessor :uninterrupt
841
+ attr_accessor :stopped
842
+ attr_accessor :total
843
+
844
+ def initialize(run = nil, zombie = nil, sleep = nil, uninterrupt = nil, stopped = nil, total = nil)
845
+ @run = run
846
+ @zombie = zombie
847
+ @sleep = sleep
848
+ @uninterrupt = uninterrupt
849
+ @stopped = stopped
850
+ @total = total
851
+ end
852
+ end
853
+
854
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}load_avgType
855
+ # l1 - SOAP::SOAPDouble
856
+ # l2 - SOAP::SOAPDouble
857
+ # l3 - SOAP::SOAPDouble
858
+ class Load_avgType
859
+ attr_accessor :l1
860
+ attr_accessor :l2
861
+ attr_accessor :l3
862
+
863
+ def initialize(l1 = nil, l2 = nil, l3 = nil)
864
+ @l1 = l1
865
+ @l2 = l2
866
+ @l3 = l3
867
+ end
868
+ end
869
+
870
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}cpu_loadType
871
+ # system - SOAP::SOAPLong
872
+ # user - SOAP::SOAPLong
873
+ # nice - SOAP::SOAPLong
874
+ # idle - SOAP::SOAPLong
875
+ class Cpu_loadType
876
+ attr_accessor :system
877
+ attr_accessor :user
878
+ attr_accessor :nice
879
+ attr_accessor :idle
880
+
881
+ def initialize(system = nil, user = nil, nice = nil, idle = nil)
882
+ @system = system
883
+ @user = user
884
+ @nice = nice
885
+ @idle = idle
886
+ end
887
+ end
888
+
889
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}cpuType
890
+ # mhz - SOAP::SOAPInt
891
+ # name - SOAP::SOAPString
892
+ # number - SOAP::SOAPInt
893
+ # cores - SOAP::SOAPInt
894
+ # hyperthreads - SOAP::SOAPInt
895
+ # units - SOAP::SOAPInt
896
+ # family - SOAP::SOAPString
897
+ # model - SOAP::SOAPString
898
+ # bogomips - SOAP::SOAPInt
899
+ class CpuType
900
+ attr_accessor :mhz
901
+ attr_accessor :name
902
+ attr_accessor :number
903
+ attr_accessor :cores
904
+ attr_accessor :hyperthreads
905
+ attr_accessor :units
906
+ attr_accessor :family
907
+ attr_accessor :model
908
+ attr_accessor :bogomips
909
+
910
+ def initialize(mhz = nil, name = nil, number = nil, cores = nil, hyperthreads = nil, units = nil, family = nil, model = nil, bogomips = nil)
911
+ @mhz = mhz
912
+ @name = name
913
+ @number = number
914
+ @cores = cores
915
+ @hyperthreads = hyperthreads
916
+ @units = units
917
+ @family = family
918
+ @model = model
919
+ @bogomips = bogomips
920
+ end
921
+ end
922
+
923
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}transferType
924
+ # input - Virtuozzo::SOAP::Drivers::Support::TransferType::Input
925
+ # output - Virtuozzo::SOAP::Drivers::Support::TransferType::Output
926
+ class TransferType
927
+
928
+ # inner class for member: input
929
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}input
930
+ # bytes - SOAP::SOAPLong
931
+ # packets - SOAP::SOAPLong
932
+ class Input
933
+ attr_accessor :bytes
934
+ attr_accessor :packets
935
+
936
+ def initialize(bytes = nil, packets = nil)
937
+ @bytes = bytes
938
+ @packets = packets
939
+ end
940
+ end
941
+
942
+ # inner class for member: output
943
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}output
944
+ # bytes - SOAP::SOAPLong
945
+ # packets - SOAP::SOAPLong
946
+ class Output
947
+ attr_accessor :bytes
948
+ attr_accessor :packets
949
+
950
+ def initialize(bytes = nil, packets = nil)
951
+ @bytes = bytes
952
+ @packets = packets
953
+ end
954
+ end
955
+
956
+ attr_accessor :input
957
+ attr_accessor :output
958
+
959
+ def initialize(input = nil, output = nil)
960
+ @input = input
961
+ @output = output
962
+ end
963
+ end
964
+
965
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
966
+ # address - Virtuozzo::SOAP::Drivers::Support::System_nodeType::Address
967
+ # login - Virtuozzo::SOAP::Drivers::Support::System_nodeType::Login
968
+ class System_nodeType
969
+
970
+ # inner class for member: address
971
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}address
972
+ # ip - (any)
973
+ class Address < Ip_addressType
974
+ attr_accessor :ip
975
+
976
+ def initialize(ip = nil)
977
+ @ip = ip
978
+ end
979
+ end
980
+
981
+ # inner class for member: login
982
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}login
983
+ # user - SOAP::SOAPString
984
+ # password - SOAP::SOAPBase64
985
+ class Login
986
+ attr_accessor :user
987
+ attr_accessor :password
988
+
989
+ def initialize(user = nil, password = nil)
990
+ @user = user
991
+ @password = password
992
+ end
993
+ end
994
+
995
+ attr_accessor :address
996
+ attr_accessor :login
997
+
998
+ def initialize(address = nil, login = nil)
999
+ @address = address
1000
+ @login = login
1001
+ end
1002
+ end
1003
+
1004
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}resourceType
1005
+ # total - SOAP::SOAPLong
1006
+ # used - SOAP::SOAPLong
1007
+ # free - SOAP::SOAPLong
1008
+ # avg - SOAP::SOAPLong
1009
+ # min - SOAP::SOAPLong
1010
+ # max - SOAP::SOAPLong
1011
+ class ResourceType
1012
+ attr_accessor :total
1013
+ attr_accessor :used
1014
+ attr_accessor :free
1015
+ attr_accessor :avg
1016
+ attr_accessor :min
1017
+ attr_accessor :max
1018
+
1019
+ def initialize(total = nil, used = nil, free = nil, avg = nil, min = nil, max = nil)
1020
+ @total = total
1021
+ @used = used
1022
+ @free = free
1023
+ @avg = avg
1024
+ @min = min
1025
+ @max = max
1026
+ end
1027
+ end
1028
+
1029
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}intervalType
1030
+ # start_time - (any)
1031
+ # end_time - (any)
1032
+ class IntervalType
1033
+ attr_accessor :start_time
1034
+ attr_accessor :end_time
1035
+
1036
+ def initialize(start_time = nil, end_time = nil)
1037
+ @start_time = start_time
1038
+ @end_time = end_time
1039
+ end
1040
+ end
1041
+
1042
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}statsType
1043
+ # avg - SOAP::SOAPLong
1044
+ # min - SOAP::SOAPLong
1045
+ # max - SOAP::SOAPLong
1046
+ # total - SOAP::SOAPLong
1047
+ # cur - SOAP::SOAPLong
1048
+ # soft - SOAP::SOAPLong
1049
+ # hard - SOAP::SOAPLong
1050
+ class StatsType
1051
+ attr_accessor :avg
1052
+ attr_accessor :min
1053
+ attr_accessor :max
1054
+ attr_accessor :total
1055
+ attr_accessor :cur
1056
+ attr_accessor :soft
1057
+ attr_accessor :hard
1058
+
1059
+ def initialize(avg = nil, min = nil, max = nil, total = nil, cur = nil, soft = nil, hard = nil)
1060
+ @avg = avg
1061
+ @min = min
1062
+ @max = max
1063
+ @total = total
1064
+ @cur = cur
1065
+ @soft = soft
1066
+ @hard = hard
1067
+ end
1068
+ end
1069
+
1070
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_addressType
1071
+ # host - (any)
1072
+ # mask - (any)
1073
+ class Net_addressType
1074
+ attr_accessor :host
1075
+ attr_accessor :mask
1076
+
1077
+ def initialize(host = nil, mask = nil)
1078
+ @host = host
1079
+ @mask = mask
1080
+ end
1081
+ end
1082
+
1083
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_classType
1084
+ # id - SOAP::SOAPString
1085
+ # transfer - Virtuozzo::SOAP::Drivers::Support::TransferType
1086
+ class Net_classType
1087
+ attr_accessor :id
1088
+ attr_accessor :transfer
1089
+
1090
+ def initialize(id = nil, transfer = nil)
1091
+ @id = id
1092
+ @transfer = transfer
1093
+ end
1094
+ end
1095
+
1096
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_rangeType
1097
+ # id - SOAP::SOAPString
1098
+ # start_ip - (any)
1099
+ # subnet_mask - SOAP::SOAPInt
1100
+ # comment - SOAP::SOAPString
1101
+ class Ip_rangeType
1102
+ attr_accessor :id
1103
+ attr_accessor :start_ip
1104
+ attr_accessor :subnet_mask
1105
+ attr_accessor :comment
1106
+
1107
+ def initialize(id = nil, start_ip = nil, subnet_mask = nil, comment = nil)
1108
+ @id = id
1109
+ @start_ip = start_ip
1110
+ @subnet_mask = subnet_mask
1111
+ @comment = comment
1112
+ end
1113
+ end
1114
+
1115
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}sample_confType
1116
+ # env_config - Virtuozzo::SOAP::Drivers::Support::Env_configType
1117
+ # id - SOAP::SOAPString
1118
+ # name - SOAP::SOAPString
1119
+ # comment - SOAP::SOAPBase64
1120
+ # vt_version - Virtuozzo::SOAP::Drivers::Support::Sample_confType::Vt_version
1121
+ class Sample_confType
1122
+
1123
+ # inner class for member: vt_version
1124
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}vt_version
1125
+ # platform - SOAP::SOAPString
1126
+ # architecture - SOAP::SOAPString
1127
+ # vt_technology - SOAP::SOAPString
1128
+ class Vt_version
1129
+ attr_accessor :platform
1130
+ attr_accessor :architecture
1131
+ attr_accessor :vt_technology
1132
+
1133
+ def initialize(platform = nil, architecture = nil, vt_technology = nil)
1134
+ @platform = platform
1135
+ @architecture = architecture
1136
+ @vt_technology = vt_technology
1137
+ end
1138
+ end
1139
+
1140
+ attr_accessor :env_config
1141
+ attr_accessor :id
1142
+ attr_accessor :name
1143
+ attr_accessor :comment
1144
+ attr_accessor :vt_version
1145
+
1146
+ def initialize(env_config = nil, id = nil, name = nil, comment = nil, vt_version = nil)
1147
+ @env_config = env_config
1148
+ @id = id
1149
+ @name = name
1150
+ @comment = comment
1151
+ @vt_version = vt_version
1152
+ end
1153
+ end
1154
+
1155
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}interfaceType
1156
+ # name - SOAP::SOAPString
1157
+ # bandwidth - SOAP::SOAPInt
1158
+ # transfer - Virtuozzo::SOAP::Drivers::Support::TransferType
1159
+ # ipaddress - (any)
1160
+ # flags - SOAP::SOAPInt
1161
+ class InterfaceType
1162
+ attr_accessor :name
1163
+ attr_accessor :bandwidth
1164
+ attr_accessor :transfer
1165
+ attr_accessor :ipaddress
1166
+ attr_accessor :flags
1167
+
1168
+ def initialize(name = nil, bandwidth = nil, transfer = nil, ipaddress = nil, flags = nil)
1169
+ @name = name
1170
+ @bandwidth = bandwidth
1171
+ @transfer = transfer
1172
+ @ipaddress = ipaddress
1173
+ @flags = flags
1174
+ end
1175
+ end
1176
+
1177
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}sys_infoType
1178
+ # load_avg - Virtuozzo::SOAP::Drivers::Support::Load_avgType
1179
+ # processes - Virtuozzo::SOAP::Drivers::Support::ProcessesType
1180
+ # cpu_load - Virtuozzo::SOAP::Drivers::Support::Cpu_loadType
1181
+ # cpu_states - Virtuozzo::SOAP::Drivers::Support::Cpu_loadType
1182
+ # users - SOAP::SOAPInt
1183
+ # uptime - SOAP::SOAPLong
1184
+ # memory - Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Memory
1185
+ # swap - Virtuozzo::SOAP::Drivers::Support::Sys_infoType::Swap
1186
+ class Sys_infoType
1187
+
1188
+ # inner class for member: memory
1189
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}memory
1190
+ # total - SOAP::SOAPLong
1191
+ # used - SOAP::SOAPLong
1192
+ class Memory < ResourceType
1193
+ attr_accessor :total
1194
+ attr_accessor :used
1195
+
1196
+ def initialize(total = nil, used = nil)
1197
+ @total = total
1198
+ @used = used
1199
+ end
1200
+ end
1201
+
1202
+ # inner class for member: swap
1203
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}swap
1204
+ # total - SOAP::SOAPLong
1205
+ # used - SOAP::SOAPLong
1206
+ class Swap < ResourceType
1207
+ attr_accessor :total
1208
+ attr_accessor :used
1209
+
1210
+ def initialize(total = nil, used = nil)
1211
+ @total = total
1212
+ @used = used
1213
+ end
1214
+ end
1215
+
1216
+ attr_accessor :load_avg
1217
+ attr_accessor :processes
1218
+ attr_accessor :cpu_load
1219
+ attr_accessor :cpu_states
1220
+ attr_accessor :users
1221
+ attr_accessor :uptime
1222
+ attr_accessor :memory
1223
+ attr_accessor :swap
1224
+
1225
+ def initialize(load_avg = nil, processes = nil, cpu_load = nil, cpu_states = nil, users = nil, uptime = nil, memory = nil, swap = nil)
1226
+ @load_avg = load_avg
1227
+ @processes = processes
1228
+ @cpu_load = cpu_load
1229
+ @cpu_states = cpu_states
1230
+ @users = users
1231
+ @uptime = uptime
1232
+ @memory = memory
1233
+ @swap = swap
1234
+ end
1235
+ end
1236
+
1237
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ps_infoType
1238
+ # process - Virtuozzo::SOAP::Drivers::Support::Ps_infoType::C_Process
1239
+ # param_id - SOAP::SOAPString
1240
+ # run - SOAP::SOAPInt
1241
+ # idle - SOAP::SOAPInt
1242
+ # zombie - SOAP::SOAPInt
1243
+ # sleep - SOAP::SOAPInt
1244
+ # uninterrupt - SOAP::SOAPInt
1245
+ # stopped - SOAP::SOAPInt
1246
+ # total - SOAP::SOAPInt
1247
+ class Ps_infoType
1248
+
1249
+ # inner class for member: process
1250
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}process
1251
+ # pid - SOAP::SOAPInt
1252
+ # param - SOAP::SOAPBase64
1253
+ class C_Process
1254
+ attr_accessor :pid
1255
+ attr_accessor :param
1256
+
1257
+ def initialize(pid = nil, param = [])
1258
+ @pid = pid
1259
+ @param = param
1260
+ end
1261
+ end
1262
+
1263
+ attr_accessor :process
1264
+ attr_accessor :param_id
1265
+ attr_accessor :run
1266
+ attr_accessor :idle
1267
+ attr_accessor :zombie
1268
+ attr_accessor :sleep
1269
+ attr_accessor :uninterrupt
1270
+ attr_accessor :stopped
1271
+ attr_accessor :total
1272
+
1273
+ def initialize(process = [], param_id = [], run = nil, idle = nil, zombie = nil, sleep = nil, uninterrupt = nil, stopped = nil, total = nil)
1274
+ @process = process
1275
+ @param_id = param_id
1276
+ @run = run
1277
+ @idle = idle
1278
+ @zombie = zombie
1279
+ @sleep = sleep
1280
+ @uninterrupt = uninterrupt
1281
+ @stopped = stopped
1282
+ @total = total
1283
+ end
1284
+ end
1285
+
1286
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}load_avg_statsType
1287
+ # l1 - Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L1
1288
+ # l2 - Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L2
1289
+ # l3 - Virtuozzo::SOAP::Drivers::Support::Load_avg_statsType::L3
1290
+ class Load_avg_statsType
1291
+
1292
+ # inner class for member: l1
1293
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}l1
1294
+ # avg - SOAP::SOAPLong
1295
+ # min - SOAP::SOAPLong
1296
+ # max - SOAP::SOAPLong
1297
+ # cur - SOAP::SOAPLong
1298
+ class L1 < StatsType
1299
+ attr_accessor :avg
1300
+ attr_accessor :min
1301
+ attr_accessor :max
1302
+ attr_accessor :cur
1303
+
1304
+ def initialize(avg = nil, min = nil, max = nil, cur = nil)
1305
+ @avg = avg
1306
+ @min = min
1307
+ @max = max
1308
+ @cur = cur
1309
+ end
1310
+ end
1311
+
1312
+ # inner class for member: l2
1313
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}l2
1314
+ # avg - SOAP::SOAPLong
1315
+ # min - SOAP::SOAPLong
1316
+ # max - SOAP::SOAPLong
1317
+ # cur - SOAP::SOAPLong
1318
+ class L2 < StatsType
1319
+ attr_accessor :avg
1320
+ attr_accessor :min
1321
+ attr_accessor :max
1322
+ attr_accessor :cur
1323
+
1324
+ def initialize(avg = nil, min = nil, max = nil, cur = nil)
1325
+ @avg = avg
1326
+ @min = min
1327
+ @max = max
1328
+ @cur = cur
1329
+ end
1330
+ end
1331
+
1332
+ # inner class for member: l3
1333
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}l3
1334
+ # avg - SOAP::SOAPLong
1335
+ # min - SOAP::SOAPLong
1336
+ # max - SOAP::SOAPLong
1337
+ # cur - SOAP::SOAPLong
1338
+ class L3 < StatsType
1339
+ attr_accessor :avg
1340
+ attr_accessor :min
1341
+ attr_accessor :max
1342
+ attr_accessor :cur
1343
+
1344
+ def initialize(avg = nil, min = nil, max = nil, cur = nil)
1345
+ @avg = avg
1346
+ @min = min
1347
+ @max = max
1348
+ @cur = cur
1349
+ end
1350
+ end
1351
+
1352
+ attr_accessor :l1
1353
+ attr_accessor :l2
1354
+ attr_accessor :l3
1355
+
1356
+ def initialize(l1 = nil, l2 = nil, l3 = nil)
1357
+ @l1 = l1
1358
+ @l2 = l2
1359
+ @l3 = l3
1360
+ end
1361
+ end
1362
+
1363
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
1364
+ # ip - (any)
1365
+ # netmask - (any)
1366
+ class Ip_addressType
1367
+ attr_accessor :ip
1368
+ attr_accessor :netmask
1369
+
1370
+ def initialize(ip = nil, netmask = nil)
1371
+ @ip = ip
1372
+ @netmask = netmask
1373
+ end
1374
+ end
1375
+
1376
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
1377
+ # eid - (any)
1378
+ # ip_pool - Virtuozzo::SOAP::Drivers::Support::Ip_poolType
1379
+ class Env_resourceType
1380
+ attr_accessor :eid
1381
+ attr_accessor :ip_pool
1382
+
1383
+ def initialize(eid = nil, ip_pool = nil)
1384
+ @eid = eid
1385
+ @ip_pool = ip_pool
1386
+ end
1387
+ end
1388
+
1389
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_poolType
1390
+ # ip_range - Virtuozzo::SOAP::Drivers::Support::Ip_poolType::Ip_range
1391
+ # ip - (any)
1392
+ class Ip_poolType
1393
+
1394
+ # inner class for member: ip_range
1395
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_range
1396
+ # start_ip - (any)
1397
+ # end_ip - (any)
1398
+ class Ip_range
1399
+ attr_accessor :start_ip
1400
+ attr_accessor :end_ip
1401
+
1402
+ def initialize(start_ip = nil, end_ip = nil)
1403
+ @start_ip = start_ip
1404
+ @end_ip = end_ip
1405
+ end
1406
+ end
1407
+
1408
+ attr_accessor :ip_range
1409
+ attr_accessor :ip
1410
+
1411
+ def initialize(ip_range = [], ip = [])
1412
+ @ip_range = ip_range
1413
+ @ip = ip
1414
+ end
1415
+ end
1416
+
1417
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}usageType
1418
+ # total - SOAP::SOAPLong
1419
+ # used - SOAP::SOAPLong
1420
+ # free - SOAP::SOAPLong
1421
+ class UsageType
1422
+ attr_accessor :total
1423
+ attr_accessor :used
1424
+ attr_accessor :free
1425
+
1426
+ def initialize(total = nil, used = nil, free = nil)
1427
+ @total = total
1428
+ @used = used
1429
+ @free = free
1430
+ end
1431
+ end
1432
+
1433
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}credentialType
1434
+ # id - SOAP::SOAPString
1435
+ # policy - SOAP::SOAPInt
1436
+ # description - SOAP::SOAPBase64
1437
+ # cred - Virtuozzo::SOAP::Drivers::Support::CredentialType
1438
+ class CredentialType
1439
+ attr_accessor :id
1440
+ attr_accessor :policy
1441
+ attr_accessor :description
1442
+ attr_accessor :cred
1443
+
1444
+ def initialize(id = nil, policy = nil, description = nil, cred = [])
1445
+ @id = id
1446
+ @policy = policy
1447
+ @description = description
1448
+ @cred = cred
1449
+ end
1450
+ end
1451
+
1452
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}root_credentialType
1453
+ # id - SOAP::SOAPString
1454
+ # policy - SOAP::SOAPInt
1455
+ # description - SOAP::SOAPBase64
1456
+ # cred - Virtuozzo::SOAP::Drivers::Support::CredentialType
1457
+ # objects - Virtuozzo::SOAP::Drivers::Support::Root_credentialType::Objects
1458
+ class Root_credentialType < CredentialType
1459
+
1460
+ # inner class for member: objects
1461
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}objects
1462
+ class Objects < ::Array
1463
+ end
1464
+
1465
+ attr_accessor :id
1466
+ attr_accessor :policy
1467
+ attr_accessor :description
1468
+ attr_accessor :cred
1469
+ attr_accessor :objects
1470
+
1471
+ def initialize(id = nil, policy = nil, description = nil, cred = [], objects = nil)
1472
+ @id = id
1473
+ @policy = policy
1474
+ @description = description
1475
+ @cred = cred
1476
+ @objects = objects
1477
+ end
1478
+ end
1479
+
1480
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}tokenType
1481
+ # user - (any)
1482
+ # groups - Virtuozzo::SOAP::Drivers::Support::TokenType::Groups
1483
+ # deny_only_sids - Virtuozzo::SOAP::Drivers::Support::TokenType::Deny_only_sids
1484
+ # privileges - Virtuozzo::SOAP::Drivers::Support::TokenType::Privileges
1485
+ # source - Virtuozzo::SOAP::Drivers::Support::TokenType::Source
1486
+ class TokenType
1487
+
1488
+ # inner class for member: groups
1489
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}groups
1490
+ class Groups < ::Array
1491
+ end
1492
+
1493
+ # inner class for member: deny_only_sids
1494
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}deny_only_sids
1495
+ class Deny_only_sids < ::Array
1496
+ end
1497
+
1498
+ # inner class for member: privileges
1499
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}privileges
1500
+ class Privileges < ::Array
1501
+ end
1502
+
1503
+ # inner class for member: source
1504
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}source
1505
+ # name - SOAP::SOAPString
1506
+ # id - (any)
1507
+ class Source
1508
+ attr_accessor :name
1509
+ attr_accessor :id
1510
+
1511
+ def initialize(name = nil, id = nil)
1512
+ @name = name
1513
+ @id = id
1514
+ end
1515
+ end
1516
+
1517
+ attr_accessor :user
1518
+ attr_accessor :groups
1519
+ attr_accessor :deny_only_sids
1520
+ attr_accessor :privileges
1521
+ attr_accessor :source
1522
+
1523
+ def initialize(user = nil, groups = nil, deny_only_sids = nil, privileges = nil, source = nil)
1524
+ @user = user
1525
+ @groups = groups
1526
+ @deny_only_sids = deny_only_sids
1527
+ @privileges = privileges
1528
+ @source = source
1529
+ end
1530
+ end
1531
+
1532
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}connectivity_infoType
1533
+ # protocol - SOAP::SOAPString
1534
+ # address - SOAP::SOAPString
1535
+ # port - SOAP::SOAPUnsignedInt
1536
+ class Connectivity_infoType
1537
+ attr_accessor :protocol
1538
+ attr_accessor :address
1539
+ attr_accessor :port
1540
+
1541
+ def initialize(protocol = nil, address = nil, port = nil)
1542
+ @protocol = protocol
1543
+ @address = address
1544
+ @port = port
1545
+ end
1546
+ end
1547
+
1548
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}connection_infoType
1549
+ # protocol - SOAP::SOAPString
1550
+ # address - SOAP::SOAPString
1551
+ # port - SOAP::SOAPUnsignedInt
1552
+ # login - Virtuozzo::SOAP::Drivers::Support::Auth_nameType
1553
+ # password - SOAP::SOAPBase64
1554
+ class Connection_infoType < Connectivity_infoType
1555
+ attr_accessor :protocol
1556
+ attr_accessor :address
1557
+ attr_accessor :port
1558
+ attr_accessor :login
1559
+ attr_accessor :password
1560
+
1561
+ def initialize(protocol = nil, address = nil, port = nil, login = nil, password = nil)
1562
+ @protocol = protocol
1563
+ @address = address
1564
+ @port = port
1565
+ @login = login
1566
+ @password = password
1567
+ end
1568
+ end
1569
+
1570
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}auth_nameType
1571
+ # name - SOAP::SOAPBase64
1572
+ # domain - SOAP::SOAPBase64
1573
+ # realm - (any)
1574
+ class Auth_nameType
1575
+ attr_accessor :name
1576
+ attr_accessor :domain
1577
+ attr_accessor :realm
1578
+
1579
+ def initialize(name = nil, domain = nil, realm = nil)
1580
+ @name = name
1581
+ @domain = domain
1582
+ @realm = realm
1583
+ end
1584
+ end
1585
+
1586
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}eid_listType
1587
+ class Eid_listType < ::Array
1588
+ end
1589
+
1590
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}vt_infoType
1591
+ class Vt_infoType
1592
+ attr_reader :__xmlele_any
1593
+
1594
+ def set_any(elements)
1595
+ @__xmlele_any = elements
1596
+ end
1597
+
1598
+ def initialize
1599
+ @__xmlele_any = nil
1600
+ end
1601
+ end
1602
+
1603
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}vt_infoType
1604
+ # sve_eid - (any)
1605
+ # version - SOAP::SOAPString
1606
+ # release - SOAP::SOAPString
1607
+ class Vt_infoType_ < Vt_infoType
1608
+ attr_reader :__xmlele_any
1609
+ attr_accessor :sve_eid
1610
+ attr_accessor :version
1611
+ attr_accessor :release
1612
+
1613
+ def set_any(elements)
1614
+ @__xmlele_any = elements
1615
+ end
1616
+
1617
+ def initialize(sve_eid = nil, version = nil, release = nil)
1618
+ @__xmlele_any = nil
1619
+ @sve_eid = sve_eid
1620
+ @version = version
1621
+ @release = release
1622
+ end
1623
+ end
1624
+
1625
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}vt_settingsType
1626
+ # default_sample_id - (any)
1627
+ class Vt_settingsType
1628
+ attr_accessor :default_sample_id
1629
+
1630
+ def initialize(default_sample_id = nil)
1631
+ @default_sample_id = default_sample_id
1632
+ end
1633
+ end
1634
+
1635
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}vt_settingsType
1636
+ # default_sample_id - (any)
1637
+ # parameter - Virtuozzo::SOAP::Drivers::Support::Vt_settingsType_::Parameter
1638
+ # service - Virtuozzo::SOAP::Drivers::Support::Redirect_serviceType
1639
+ # qos - Virtuozzo::SOAP::Drivers::Support::QosType
1640
+ class Vt_settingsType_ < Vt_settingsType
1641
+
1642
+ # inner class for member: parameter
1643
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}parameter
1644
+ # id - SOAP::SOAPString
1645
+ # value - SOAP::SOAPString
1646
+ class Parameter
1647
+ attr_accessor :id
1648
+ attr_accessor :value
1649
+
1650
+ def initialize(id = nil, value = nil)
1651
+ @id = id
1652
+ @value = value
1653
+ end
1654
+ end
1655
+
1656
+ attr_accessor :default_sample_id
1657
+ attr_accessor :parameter
1658
+ attr_accessor :service
1659
+ attr_accessor :qos
1660
+
1661
+ def initialize(default_sample_id = nil, parameter = [], service = [], qos = [])
1662
+ @default_sample_id = default_sample_id
1663
+ @parameter = parameter
1664
+ @service = service
1665
+ @qos = qos
1666
+ end
1667
+ end
1668
+
1669
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
1670
+ # initial_group - Virtuozzo::SOAP::Drivers::Support::UserType::Initial_group
1671
+ # group - Virtuozzo::SOAP::Drivers::Support::UserType::Group
1672
+ # uid - SOAP::SOAPInt
1673
+ # shell - SOAP::SOAPString
1674
+ # password - SOAP::SOAPBase64
1675
+ # home_dir - SOAP::SOAPString
1676
+ # name - SOAP::SOAPString
1677
+ # comment - SOAP::SOAPString
1678
+ class UserType
1679
+
1680
+ # inner class for member: initial_group
1681
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}initial_group
1682
+ # name - SOAP::SOAPString
1683
+ # gid - SOAP::SOAPInt
1684
+ class Initial_group < GroupType
1685
+ attr_accessor :name
1686
+ attr_accessor :gid
1687
+
1688
+ def initialize(name = nil, gid = nil)
1689
+ @name = name
1690
+ @gid = gid
1691
+ end
1692
+ end
1693
+
1694
+ # inner class for member: group
1695
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}group
1696
+ # name - SOAP::SOAPString
1697
+ # gid - SOAP::SOAPInt
1698
+ class Group < GroupType
1699
+ attr_accessor :name
1700
+ attr_accessor :gid
1701
+
1702
+ def initialize(name = nil, gid = nil)
1703
+ @name = name
1704
+ @gid = gid
1705
+ end
1706
+ end
1707
+
1708
+ attr_accessor :initial_group
1709
+ attr_accessor :group
1710
+ attr_accessor :uid
1711
+ attr_accessor :shell
1712
+ attr_accessor :password
1713
+ attr_accessor :home_dir
1714
+ attr_accessor :name
1715
+ attr_accessor :comment
1716
+
1717
+ def initialize(initial_group = nil, group = [], uid = nil, shell = nil, password = nil, home_dir = nil, name = nil, comment = nil)
1718
+ @initial_group = initial_group
1719
+ @group = group
1720
+ @uid = uid
1721
+ @shell = shell
1722
+ @password = password
1723
+ @home_dir = home_dir
1724
+ @name = name
1725
+ @comment = comment
1726
+ end
1727
+ end
1728
+
1729
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
1730
+ # user - Virtuozzo::SOAP::Drivers::Support::GroupType::User
1731
+ # member_group - Virtuozzo::SOAP::Drivers::Support::GroupType::Member_group
1732
+ # name - SOAP::SOAPString
1733
+ # gid - SOAP::SOAPInt
1734
+ class GroupType
1735
+
1736
+ # inner class for member: user
1737
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}user
1738
+ # name - SOAP::SOAPString
1739
+ class User < UserType
1740
+ attr_accessor :name
1741
+
1742
+ def initialize(name = nil)
1743
+ @name = name
1744
+ end
1745
+ end
1746
+
1747
+ # inner class for member: member_group
1748
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}member_group
1749
+ # name - SOAP::SOAPString
1750
+ class Member_group < GroupType
1751
+ attr_accessor :name
1752
+
1753
+ def initialize(name = nil)
1754
+ @name = name
1755
+ end
1756
+ end
1757
+
1758
+ attr_accessor :user
1759
+ attr_accessor :member_group
1760
+ attr_accessor :name
1761
+ attr_accessor :gid
1762
+
1763
+ def initialize(user = [], member_group = [], name = nil, gid = nil)
1764
+ @user = user
1765
+ @member_group = member_group
1766
+ @name = name
1767
+ @gid = gid
1768
+ end
1769
+ end
1770
+
1771
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
1772
+ # name - SOAP::SOAPString
1773
+ # summary - SOAP::SOAPString
1774
+ # os - Virtuozzo::SOAP::Drivers::Support::OsType
1775
+ # description - SOAP::SOAPString
1776
+ # arch - SOAP::SOAPString
1777
+ # version - SOAP::SOAPString
1778
+ class PackageType
1779
+ attr_accessor :name
1780
+ attr_accessor :summary
1781
+ attr_accessor :os
1782
+ attr_accessor :description
1783
+ attr_accessor :arch
1784
+ attr_accessor :version
1785
+
1786
+ def initialize(name = nil, summary = nil, os = nil, description = nil, arch = nil, version = nil)
1787
+ @name = name
1788
+ @summary = summary
1789
+ @os = os
1790
+ @description = description
1791
+ @arch = arch
1792
+ @version = version
1793
+ end
1794
+ end
1795
+
1796
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}package_vztemplateType
1797
+ # name - SOAP::SOAPString
1798
+ # summary - SOAP::SOAPString
1799
+ # os - Virtuozzo::SOAP::Drivers::Support::OsType
1800
+ # description - SOAP::SOAPString
1801
+ # arch - SOAP::SOAPString
1802
+ # version - SOAP::SOAPString
1803
+ # technology - SOAP::SOAPString
1804
+ # os_template - SOAP::SOAPBoolean
1805
+ # cached - SOAP::SOAPBoolean
1806
+ # path - SOAP::SOAPBase64
1807
+ # uptodate - SOAP::SOAPBoolean
1808
+ class Package_vztemplateType < PackageType
1809
+ attr_accessor :name
1810
+ attr_accessor :summary
1811
+ attr_accessor :os
1812
+ attr_accessor :description
1813
+ attr_accessor :arch
1814
+ attr_accessor :version
1815
+ attr_accessor :technology
1816
+ attr_accessor :os_template
1817
+ attr_accessor :cached
1818
+ attr_accessor :path
1819
+ attr_accessor :uptodate
1820
+
1821
+ def initialize(name = nil, summary = nil, os = nil, description = nil, arch = nil, version = nil, technology = [], os_template = nil, cached = nil, path = nil, uptodate = nil)
1822
+ @name = name
1823
+ @summary = summary
1824
+ @os = os
1825
+ @description = description
1826
+ @arch = arch
1827
+ @version = version
1828
+ @technology = technology
1829
+ @os_template = os_template
1830
+ @cached = cached
1831
+ @path = path
1832
+ @uptodate = uptodate
1833
+ end
1834
+ end
1835
+
1836
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}package_std_vztemplateType
1837
+ # name - SOAP::SOAPString
1838
+ # summary - SOAP::SOAPString
1839
+ # os - Virtuozzo::SOAP::Drivers::Support::OsType
1840
+ # description - SOAP::SOAPString
1841
+ # arch - SOAP::SOAPString
1842
+ # version - SOAP::SOAPString
1843
+ # technology - SOAP::SOAPString
1844
+ # os_template - SOAP::SOAPBoolean
1845
+ # cached - SOAP::SOAPBoolean
1846
+ # path - SOAP::SOAPBase64
1847
+ # uptodate - SOAP::SOAPBoolean
1848
+ # base - SOAP::SOAPBoolean
1849
+ class Package_std_vztemplateType < Package_vztemplateType
1850
+ attr_accessor :name
1851
+ attr_accessor :summary
1852
+ attr_accessor :os
1853
+ attr_accessor :description
1854
+ attr_accessor :arch
1855
+ attr_accessor :version
1856
+ attr_accessor :technology
1857
+ attr_accessor :os_template
1858
+ attr_accessor :cached
1859
+ attr_accessor :path
1860
+ attr_accessor :uptodate
1861
+ attr_accessor :base
1862
+
1863
+ 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)
1864
+ @name = name
1865
+ @summary = summary
1866
+ @os = os
1867
+ @description = description
1868
+ @arch = arch
1869
+ @version = version
1870
+ @technology = technology
1871
+ @os_template = os_template
1872
+ @cached = cached
1873
+ @path = path
1874
+ @uptodate = uptodate
1875
+ @base = base
1876
+ end
1877
+ end
1878
+
1879
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}event_dataType
1880
+ class Event_dataType
1881
+ def initialize
1882
+ end
1883
+ end
1884
+
1885
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}alert_dataType
1886
+ # type - SOAP::SOAPInt
1887
+ class Alert_dataType < Event_dataType
1888
+ attr_accessor :type
1889
+
1890
+ def initialize(type = nil)
1891
+ @type = type
1892
+ end
1893
+ end
1894
+
1895
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}named_listType
1896
+ # name - SOAP::SOAPString
1897
+ # value - SOAP::SOAPBase64
1898
+ class Named_listType
1899
+ attr_accessor :name
1900
+ attr_accessor :value
1901
+
1902
+ def initialize(name = nil, value = [])
1903
+ @name = name
1904
+ @value = value
1905
+ end
1906
+ end
1907
+
1908
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}modType
1909
+ # name - SOAP::SOAPString
1910
+ # value - SOAP::SOAPBase64
1911
+ # op - SOAP::SOAPInt
1912
+ class ModType < Named_listType
1913
+ attr_accessor :name
1914
+ attr_accessor :value
1915
+ attr_accessor :op
1916
+
1917
+ def initialize(name = nil, value = [], op = nil)
1918
+ @name = name
1919
+ @value = value
1920
+ @op = op
1921
+ end
1922
+ end
1923
+
1924
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}realmType
1925
+ # id - (any)
1926
+ # type - SOAP::SOAPInt
1927
+ # name - SOAP::SOAPString
1928
+ # builtin - (any)
1929
+ class RealmType
1930
+ attr_accessor :id
1931
+ attr_accessor :type
1932
+ attr_accessor :name
1933
+ attr_accessor :builtin
1934
+
1935
+ def initialize(id = nil, type = nil, name = nil, builtin = nil)
1936
+ @id = id
1937
+ @type = type
1938
+ @name = name
1939
+ @builtin = builtin
1940
+ end
1941
+ end
1942
+
1943
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}eventType
1944
+ # eid - (any)
1945
+ # time - (any)
1946
+ # source - SOAP::SOAPString
1947
+ # category - SOAP::SOAPString
1948
+ # sid - (any)
1949
+ # count - SOAP::SOAPInt
1950
+ # id - (any)
1951
+ # info - Virtuozzo::SOAP::Drivers::Support::InfoType
1952
+ # data - Virtuozzo::SOAP::Drivers::Support::EventType::C_Data
1953
+ class EventType
1954
+
1955
+ # inner class for member: data
1956
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}data
1957
+ # event_data - Virtuozzo::SOAP::Drivers::Support::Event_dataType
1958
+ class C_Data
1959
+ attr_accessor :event_data
1960
+
1961
+ def initialize(event_data = nil)
1962
+ @event_data = event_data
1963
+ end
1964
+ end
1965
+
1966
+ attr_accessor :eid
1967
+ attr_accessor :time
1968
+ attr_accessor :source
1969
+ attr_accessor :category
1970
+ attr_accessor :sid
1971
+ attr_accessor :count
1972
+ attr_accessor :id
1973
+ attr_accessor :info
1974
+ attr_accessor :data
1975
+
1976
+ def initialize(eid = nil, time = nil, source = nil, category = nil, sid = nil, count = nil, id = nil, info = nil, data = nil)
1977
+ @eid = eid
1978
+ @time = time
1979
+ @source = source
1980
+ @category = category
1981
+ @sid = sid
1982
+ @count = count
1983
+ @id = id
1984
+ @info = info
1985
+ @data = data
1986
+ end
1987
+ end
1988
+
1989
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}infoType
1990
+ # message - SOAP::SOAPBase64
1991
+ # translate - (any)
1992
+ # parameter - Virtuozzo::SOAP::Drivers::Support::InfoType
1993
+ # name - SOAP::SOAPString
1994
+ class InfoType
1995
+ attr_accessor :message
1996
+ attr_accessor :translate
1997
+ attr_accessor :parameter
1998
+ attr_accessor :name
1999
+
2000
+ def initialize(message = nil, translate = nil, parameter = [], name = nil)
2001
+ @message = message
2002
+ @translate = translate
2003
+ @parameter = parameter
2004
+ @name = name
2005
+ end
2006
+ end
2007
+
2008
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}aceType
2009
+ # type - SOAP::SOAPInt
2010
+ # sid - (any)
2011
+ # rights - SOAP::SOAPBase64
2012
+ class AceType
2013
+ attr_accessor :type
2014
+ attr_accessor :sid
2015
+ attr_accessor :rights
2016
+
2017
+ def initialize(type = nil, sid = nil, rights = nil)
2018
+ @type = type
2019
+ @sid = sid
2020
+ @rights = rights
2021
+ end
2022
+ end
2023
+
2024
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}security_descriptorType
2025
+ # owner - (any)
2026
+ # group - (any)
2027
+ # dacl - Virtuozzo::SOAP::Drivers::Support::Security_descriptorType::Dacl
2028
+ class Security_descriptorType
2029
+
2030
+ # inner class for member: dacl
2031
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}dacl
2032
+ class Dacl < ::Array
2033
+ end
2034
+
2035
+ attr_accessor :owner
2036
+ attr_accessor :group
2037
+ attr_accessor :dacl
2038
+
2039
+ def initialize(owner = nil, group = nil, dacl = nil)
2040
+ @owner = owner
2041
+ @group = group
2042
+ @dacl = dacl
2043
+ end
2044
+ end
2045
+
2046
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}security_objectType
2047
+ # abstract
2048
+ class Security_objectType
2049
+ def initialize
2050
+ end
2051
+ end
2052
+
2053
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_security_objectType
2054
+ # eid - (any)
2055
+ class Env_security_objectType < Security_objectType
2056
+ attr_accessor :eid
2057
+
2058
+ def initialize(eid = nil)
2059
+ @eid = eid
2060
+ end
2061
+ end
2062
+
2063
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}env_security_objectType
2064
+ # eid - (any)
2065
+ class Env_security_objectType_ < Env_security_objectType
2066
+ attr_accessor :eid
2067
+
2068
+ def initialize(eid = nil)
2069
+ @eid = eid
2070
+ end
2071
+ end
2072
+
2073
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_deviceType
2074
+ # id - SOAP::SOAPString
2075
+ # ip_address - Virtuozzo::SOAP::Drivers::Support::Ip_addressType
2076
+ # dhcp - (any)
2077
+ # network_id - SOAP::SOAPBase64
2078
+ # status - Virtuozzo::SOAP::Drivers::Support::Net_deviceType::Status
2079
+ class Net_deviceType
2080
+
2081
+ # inner class for member: status
2082
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}status
2083
+ # up - (any)
2084
+ # down - (any)
2085
+ class Status
2086
+ attr_accessor :up
2087
+ attr_accessor :down
2088
+
2089
+ def initialize(up = nil, down = nil)
2090
+ @up = up
2091
+ @down = down
2092
+ end
2093
+ end
2094
+
2095
+ attr_accessor :id
2096
+ attr_accessor :ip_address
2097
+ attr_accessor :dhcp
2098
+ attr_accessor :network_id
2099
+ attr_accessor :status
2100
+
2101
+ def initialize(id = nil, ip_address = [], dhcp = nil, network_id = nil, status = nil)
2102
+ @id = id
2103
+ @ip_address = ip_address
2104
+ @dhcp = dhcp
2105
+ @network_id = network_id
2106
+ @status = status
2107
+ end
2108
+ end
2109
+
2110
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_nicType
2111
+ # id - SOAP::SOAPString
2112
+ # ip_address - Virtuozzo::SOAP::Drivers::Support::Ip_addressType
2113
+ # dhcp - (any)
2114
+ # network_id - SOAP::SOAPBase64
2115
+ # status - Virtuozzo::SOAP::Drivers::Support::Net_nicType::Status
2116
+ # mac_address - SOAP::SOAPString
2117
+ class Net_nicType < Net_deviceType
2118
+
2119
+ # inner class for member: status
2120
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}status
2121
+ # up - (any)
2122
+ # down - (any)
2123
+ class Status
2124
+ attr_accessor :up
2125
+ attr_accessor :down
2126
+
2127
+ def initialize(up = nil, down = nil)
2128
+ @up = up
2129
+ @down = down
2130
+ end
2131
+ end
2132
+
2133
+ attr_accessor :id
2134
+ attr_accessor :ip_address
2135
+ attr_accessor :dhcp
2136
+ attr_accessor :network_id
2137
+ attr_accessor :status
2138
+ attr_accessor :mac_address
2139
+
2140
+ def initialize(id = nil, ip_address = [], dhcp = nil, network_id = nil, status = nil, mac_address = nil)
2141
+ @id = id
2142
+ @ip_address = ip_address
2143
+ @dhcp = dhcp
2144
+ @network_id = network_id
2145
+ @status = status
2146
+ @mac_address = mac_address
2147
+ end
2148
+ end
2149
+
2150
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}net_vethType
2151
+ # id - SOAP::SOAPString
2152
+ # ip_address - Virtuozzo::SOAP::Drivers::Support::Ip_addressType
2153
+ # dhcp - (any)
2154
+ # network_id - SOAP::SOAPBase64
2155
+ # status - Virtuozzo::SOAP::Drivers::Support::Net_vethType::Status
2156
+ # mac_address - SOAP::SOAPString
2157
+ # wins_server - SOAP::SOAPString
2158
+ # nameserver - SOAP::SOAPString
2159
+ # default_gateway - SOAP::SOAPString
2160
+ # host_routed - (any)
2161
+ class Net_vethType < Net_nicType
2162
+
2163
+ # inner class for member: status
2164
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}status
2165
+ # up - (any)
2166
+ # down - (any)
2167
+ class Status
2168
+ attr_accessor :up
2169
+ attr_accessor :down
2170
+
2171
+ def initialize(up = nil, down = nil)
2172
+ @up = up
2173
+ @down = down
2174
+ end
2175
+ end
2176
+
2177
+ attr_accessor :id
2178
+ attr_accessor :ip_address
2179
+ attr_accessor :dhcp
2180
+ attr_accessor :network_id
2181
+ attr_accessor :status
2182
+ attr_accessor :mac_address
2183
+ attr_accessor :wins_server
2184
+ attr_accessor :nameserver
2185
+ attr_accessor :default_gateway
2186
+ attr_accessor :host_routed
2187
+
2188
+ 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)
2189
+ @id = id
2190
+ @ip_address = ip_address
2191
+ @dhcp = dhcp
2192
+ @network_id = network_id
2193
+ @status = status
2194
+ @mac_address = mac_address
2195
+ @wins_server = wins_server
2196
+ @nameserver = nameserver
2197
+ @default_gateway = default_gateway
2198
+ @host_routed = host_routed
2199
+ end
2200
+ end
2201
+
2202
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}voc_parameterType
2203
+ # id - SOAP::SOAPString
2204
+ # type - SOAP::SOAPString
2205
+ # min - SOAP::SOAPString
2206
+ # max - SOAP::SOAPString
2207
+ # long - SOAP::SOAPString
2208
+ # short - SOAP::SOAPString
2209
+ # category - SOAP::SOAPString
2210
+ # complex - SOAP::SOAPString
2211
+ # default - SOAP::SOAPString
2212
+ # measure - SOAP::SOAPString
2213
+ # data - (any)
2214
+ # name - (any)
2215
+ class Voc_parameterType
2216
+ attr_accessor :id
2217
+ attr_accessor :type
2218
+ attr_accessor :min
2219
+ attr_accessor :max
2220
+ attr_accessor :long
2221
+ attr_accessor :short
2222
+ attr_accessor :category
2223
+ attr_accessor :complex
2224
+ attr_accessor :default
2225
+ attr_accessor :measure
2226
+ attr_accessor :data
2227
+ attr_accessor :name
2228
+
2229
+ 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)
2230
+ @id = id
2231
+ @type = type
2232
+ @min = min
2233
+ @max = max
2234
+ @long = long
2235
+ @short = short
2236
+ @category = category
2237
+ @complex = complex
2238
+ @default = default
2239
+ @measure = measure
2240
+ @data = data
2241
+ @name = name
2242
+ end
2243
+ end
2244
+
2245
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}vocabularyType
2246
+ # name - SOAP::SOAPString
2247
+ # parameter - Virtuozzo::SOAP::Drivers::Support::Voc_parameterType
2248
+ # category - Virtuozzo::SOAP::Drivers::Support::Voc_parameterType
2249
+ class VocabularyType
2250
+ attr_accessor :name
2251
+ attr_accessor :parameter
2252
+ attr_accessor :category
2253
+
2254
+ def initialize(name = nil, parameter = [], category = [])
2255
+ @name = name
2256
+ @parameter = parameter
2257
+ @category = category
2258
+ end
2259
+ end
2260
+
2261
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}perf_statType
2262
+ # cur - SOAP::SOAPAnySimpleType
2263
+ # avg - SOAP::SOAPAnySimpleType
2264
+ # max - SOAP::SOAPAnySimpleType
2265
+ # min - SOAP::SOAPAnySimpleType
2266
+ class Perf_statType
2267
+ attr_accessor :cur
2268
+ attr_accessor :avg
2269
+ attr_accessor :max
2270
+ attr_accessor :min
2271
+
2272
+ def initialize(cur = nil, avg = nil, max = nil, min = nil)
2273
+ @cur = cur
2274
+ @avg = avg
2275
+ @max = max
2276
+ @min = min
2277
+ end
2278
+ end
2279
+
2280
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}perf_dataType
2281
+ # eid - (any)
2282
+ # m_class - Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class
2283
+ # interval - Virtuozzo::SOAP::Drivers::Support::IntervalType
2284
+ class Perf_dataType
2285
+
2286
+ # inner class for member: class
2287
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}class
2288
+ # name - SOAP::SOAPString
2289
+ # instance - Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance
2290
+ class C_Class
2291
+
2292
+ # inner class for member: instance
2293
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}instance
2294
+ # name - SOAP::SOAPString
2295
+ # counter - Virtuozzo::SOAP::Drivers::Support::Perf_dataType::C_Class::Instance::Counter
2296
+ class Instance
2297
+
2298
+ # inner class for member: counter
2299
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}counter
2300
+ # name - SOAP::SOAPString
2301
+ # value - Virtuozzo::SOAP::Drivers::Support::Perf_statType
2302
+ class Counter
2303
+ attr_accessor :name
2304
+ attr_accessor :value
2305
+
2306
+ def initialize(name = nil, value = nil)
2307
+ @name = name
2308
+ @value = value
2309
+ end
2310
+ end
2311
+
2312
+ attr_accessor :name
2313
+ attr_accessor :counter
2314
+
2315
+ def initialize(name = nil, counter = [])
2316
+ @name = name
2317
+ @counter = counter
2318
+ end
2319
+ end
2320
+
2321
+ attr_accessor :name
2322
+ attr_accessor :instance
2323
+
2324
+ def initialize(name = nil, instance = [])
2325
+ @name = name
2326
+ @instance = instance
2327
+ end
2328
+ end
2329
+
2330
+ attr_accessor :eid
2331
+ attr_accessor :interval
2332
+
2333
+ def m_class
2334
+ @v_class
2335
+ end
2336
+
2337
+ def m_class=(value)
2338
+ @v_class = value
2339
+ end
2340
+
2341
+ def initialize(eid = nil, v_class = [], interval = nil)
2342
+ @eid = eid
2343
+ @v_class = v_class
2344
+ @interval = interval
2345
+ end
2346
+ end
2347
+
2348
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}log_options_baseType
2349
+ class Log_options_baseType
2350
+ def initialize
2351
+ end
2352
+ end
2353
+
2354
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}log_optionsType
2355
+ class Log_optionsType < Log_options_baseType
2356
+ def initialize
2357
+ end
2358
+ end
2359
+
2360
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}log_optionsType
2361
+ # type - SOAP::SOAPInt
2362
+ class Log_optionsType_ < Log_options_baseType
2363
+ attr_accessor :type
2364
+
2365
+ def initialize(type = nil)
2366
+ @type = type
2367
+ end
2368
+ end
2369
+
2370
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}redirect_serviceType
2371
+ # id - SOAP::SOAPString
2372
+ # port - SOAP::SOAPInt
2373
+ # dst - (any)
2374
+ # default - (any)
2375
+ class Redirect_serviceType
2376
+ attr_accessor :id
2377
+ attr_accessor :port
2378
+ attr_accessor :dst
2379
+ attr_accessor :default
2380
+
2381
+ def initialize(id = nil, port = nil, dst = nil, default = nil)
2382
+ @id = id
2383
+ @port = port
2384
+ @dst = dst
2385
+ @default = default
2386
+ end
2387
+ end
2388
+
2389
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}templateType
2390
+ # name - SOAP::SOAPString
2391
+ # version - SOAP::SOAPString
2392
+ class TemplateType
2393
+ attr_accessor :name
2394
+ attr_accessor :version
2395
+
2396
+ def initialize(name = nil, version = nil)
2397
+ @name = name
2398
+ @version = version
2399
+ end
2400
+ end
2401
+
2402
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}transport_type
2403
+ class Transport_type < ::String
2404
+ Tcp = Transport_type.new("tcp")
2405
+ Udp = Transport_type.new("udp")
2406
+ end
2407
+
2408
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}yes_no_type
2409
+ class Yes_no_type < ::String
2410
+ No = Yes_no_type.new("no")
2411
+ Yes = Yes_no_type.new("yes")
2412
+ end
2413
+
2414
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}start_channel
2415
+ class Start_channel < ::String
2416
+ def initialize(*arg)
2417
+ super
2418
+ end
2419
+ end
2420
+
2421
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}start_channelResponse
2422
+ class Start_channelResponse < ::String
2423
+ def initialize(*arg)
2424
+ super
2425
+ end
2426
+ end
2427
+
2428
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}stop_channel
2429
+ class Stop_channel < ::String
2430
+ def initialize(*arg)
2431
+ super
2432
+ end
2433
+ end
2434
+
2435
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}stop_channelResponse
2436
+ class Stop_channelResponse < ::String
2437
+ def initialize(*arg)
2438
+ super
2439
+ end
2440
+ end
2441
+
2442
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}get_channel_status
2443
+ class Get_channel_status < ::String
2444
+ def initialize(*arg)
2445
+ super
2446
+ end
2447
+ end
2448
+
2449
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}get_channel_statusResponse
2450
+ # channel_status - SOAP::SOAPInt
2451
+ class Get_channel_statusResponse
2452
+ attr_accessor :channel_status
2453
+
2454
+ def initialize(channel_status = nil)
2455
+ @channel_status = channel_status
2456
+ end
2457
+ end
2458
+
2459
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}get_key_status
2460
+ class Get_key_status < ::String
2461
+ def initialize(*arg)
2462
+ super
2463
+ end
2464
+ end
2465
+
2466
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}get_key_statusResponse
2467
+ # key_status - SOAP::SOAPInt
2468
+ class Get_key_statusResponse
2469
+ attr_accessor :key_status
2470
+
2471
+ def initialize(key_status = nil)
2472
+ @key_status = key_status
2473
+ end
2474
+ end
2475
+
2476
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}set_key
2477
+ # key - SOAP::SOAPBase64
2478
+ class Set_key
2479
+ attr_accessor :key
2480
+
2481
+ def initialize(key = nil)
2482
+ @key = key
2483
+ end
2484
+ end
2485
+
2486
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}set_keyResponse
2487
+ class Set_keyResponse < ::String
2488
+ def initialize(*arg)
2489
+ super
2490
+ end
2491
+ end
2492
+
2493
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}remove_key
2494
+ class Remove_key < ::String
2495
+ def initialize(*arg)
2496
+ super
2497
+ end
2498
+ end
2499
+
2500
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}remove_keyResponse
2501
+ class Remove_keyResponse < ::String
2502
+ def initialize(*arg)
2503
+ super
2504
+ end
2505
+ end
2506
+
2507
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}problem_report
2508
+ # name - SOAP::SOAPBase64
2509
+ # company - SOAP::SOAPBase64
2510
+ # email - SOAP::SOAPBase64
2511
+ # subject - SOAP::SOAPBase64
2512
+ # problem_description - SOAP::SOAPBase64
2513
+ # ticket - SOAP::SOAPBase64
2514
+ class Problem_report
2515
+ attr_accessor :name
2516
+ attr_accessor :company
2517
+ attr_accessor :email
2518
+ attr_accessor :subject
2519
+ attr_accessor :problem_description
2520
+ attr_accessor :ticket
2521
+
2522
+ def initialize(name = nil, company = nil, email = nil, subject = nil, problem_description = nil, ticket = nil)
2523
+ @name = name
2524
+ @company = company
2525
+ @email = email
2526
+ @subject = subject
2527
+ @problem_description = problem_description
2528
+ @ticket = ticket
2529
+ end
2530
+ end
2531
+
2532
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzasupport}problem_reportResponse
2533
+ # ticket - SOAP::SOAPBase64
2534
+ class Problem_reportResponse
2535
+ attr_accessor :ticket
2536
+
2537
+ def initialize(ticket = nil)
2538
+ @ticket = ticket
2539
+ end
2540
+ end
2541
+
2542
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}packet
2543
+ # auth - Virtuozzo::SOAP::Drivers::Support::AuthType
2544
+ # cookie - SOAP::SOAPString
2545
+ # target - SOAP::SOAPString
2546
+ # origin - SOAP::SOAPString
2547
+ # src - Virtuozzo::SOAP::Drivers::Support::RouteType
2548
+ # dst - Virtuozzo::SOAP::Drivers::Support::RouteType
2549
+ # session - SOAP::SOAPString
2550
+ # data - Virtuozzo::SOAP::Drivers::Support::Packet::C_Data
2551
+ # xmlattr_version - SOAP::SOAPString
2552
+ # xmlattr_id - SOAP::SOAPString
2553
+ # xmlattr_priority - SOAP::SOAPString
2554
+ # xmlattr_time - SOAP::SOAPString
2555
+ # xmlattr_progress - SOAP::SOAPString
2556
+ # xmlattr_log - SOAP::SOAPString
2557
+ # xmlattr_type - SOAP::SOAPInt
2558
+ # xmlattr_timeout - SOAP::SOAPInt
2559
+ # xmlattr_timeout_limit - SOAP::SOAPInt
2560
+ # xmlattr_uid - SOAP::SOAPInt
2561
+ class Packet < Packet_headerType
2562
+ AttrC_Time = XSD::QName.new(nil, "time")
2563
+ AttrId = XSD::QName.new(nil, "id")
2564
+ AttrLog = XSD::QName.new(nil, "log")
2565
+ AttrPriority = XSD::QName.new(nil, "priority")
2566
+ AttrProgress = XSD::QName.new(nil, "progress")
2567
+ AttrTimeout = XSD::QName.new(nil, "timeout")
2568
+ AttrTimeout_limit = XSD::QName.new(nil, "timeout_limit")
2569
+ AttrType = XSD::QName.new(nil, "type")
2570
+ AttrUid = XSD::QName.new(nil, "uid")
2571
+ AttrVersion = XSD::QName.new(nil, "version")
2572
+
2573
+ # inner class for member: data
2574
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}data
2575
+ class C_Data < ::Array
2576
+ end
2577
+
2578
+ attr_accessor :auth
2579
+ attr_accessor :cookie
2580
+ attr_accessor :target
2581
+ attr_accessor :origin
2582
+ attr_accessor :src
2583
+ attr_accessor :dst
2584
+ attr_accessor :session
2585
+ attr_accessor :data
2586
+
2587
+ def __xmlattr
2588
+ @__xmlattr ||= {}
2589
+ end
2590
+
2591
+ def xmlattr_version
2592
+ __xmlattr[AttrVersion]
2593
+ end
2594
+
2595
+ def xmlattr_version=(value)
2596
+ __xmlattr[AttrVersion] = value
2597
+ end
2598
+
2599
+ def xmlattr_id
2600
+ __xmlattr[AttrId]
2601
+ end
2602
+
2603
+ def xmlattr_id=(value)
2604
+ __xmlattr[AttrId] = value
2605
+ end
2606
+
2607
+ def xmlattr_priority
2608
+ __xmlattr[AttrPriority]
2609
+ end
2610
+
2611
+ def xmlattr_priority=(value)
2612
+ __xmlattr[AttrPriority] = value
2613
+ end
2614
+
2615
+ def xmlattr_time
2616
+ __xmlattr[AttrC_Time]
2617
+ end
2618
+
2619
+ def xmlattr_time=(value)
2620
+ __xmlattr[AttrC_Time] = value
2621
+ end
2622
+
2623
+ def xmlattr_progress
2624
+ __xmlattr[AttrProgress]
2625
+ end
2626
+
2627
+ def xmlattr_progress=(value)
2628
+ __xmlattr[AttrProgress] = value
2629
+ end
2630
+
2631
+ def xmlattr_log
2632
+ __xmlattr[AttrLog]
2633
+ end
2634
+
2635
+ def xmlattr_log=(value)
2636
+ __xmlattr[AttrLog] = value
2637
+ end
2638
+
2639
+ def xmlattr_type
2640
+ __xmlattr[AttrType]
2641
+ end
2642
+
2643
+ def xmlattr_type=(value)
2644
+ __xmlattr[AttrType] = value
2645
+ end
2646
+
2647
+ def xmlattr_timeout
2648
+ __xmlattr[AttrTimeout]
2649
+ end
2650
+
2651
+ def xmlattr_timeout=(value)
2652
+ __xmlattr[AttrTimeout] = value
2653
+ end
2654
+
2655
+ def xmlattr_timeout_limit
2656
+ __xmlattr[AttrTimeout_limit]
2657
+ end
2658
+
2659
+ def xmlattr_timeout_limit=(value)
2660
+ __xmlattr[AttrTimeout_limit] = value
2661
+ end
2662
+
2663
+ def xmlattr_uid
2664
+ __xmlattr[AttrUid]
2665
+ end
2666
+
2667
+ def xmlattr_uid=(value)
2668
+ __xmlattr[AttrUid] = value
2669
+ end
2670
+
2671
+ def initialize(auth = nil, cookie = nil, target = [], origin = nil, src = nil, dst = nil, session = nil, data = nil)
2672
+ @auth = auth
2673
+ @cookie = cookie
2674
+ @target = target
2675
+ @origin = origin
2676
+ @src = src
2677
+ @dst = dst
2678
+ @session = session
2679
+ @data = data
2680
+ @__xmlattr = {}
2681
+ end
2682
+ end
2683
+
2684
+ # {http://www.swsoft.com/webservices/vzl/4.0.0/types}ok
2685
+ class Ok < ::String
2686
+ def initialize(*arg)
2687
+ super
2688
+ end
2689
+ end
2690
+
2691
+ # {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}interface_rate
2692
+ # class_id - SOAP::SOAPString
2693
+ # net_device_id - SOAP::SOAPString
2694
+ # rate - SOAP::SOAPLong
2695
+ class Interface_rate
2696
+ attr_accessor :class_id
2697
+ attr_accessor :net_device_id
2698
+ attr_accessor :rate
2699
+
2700
+ def initialize(class_id = nil, net_device_id = nil, rate = nil)
2701
+ @class_id = class_id
2702
+ @net_device_id = net_device_id
2703
+ @rate = rate
2704
+ end
2705
+ end
2706
+
2707
+
2708
+ end; end; end; end