plainprograms-virtuozzo 0.5.3 → 0.6.0

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