plainprograms-virtuozzo 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +5 -0
- data/Rakefile +2 -2
- data/lib/virtuozzo/soap/types/alertm.rb +33 -32
- data/lib/virtuozzo/soap/types/authm.rb +32 -30
- data/lib/virtuozzo/soap/types/backupm.rb +32 -30
- data/lib/virtuozzo/soap/types/computerm.rb +32 -30
- data/lib/virtuozzo/soap/types/env_samplem.rb +33 -32
- data/lib/virtuozzo/soap/types/event_log.rb +32 -30
- data/lib/virtuozzo/soap/types/filer.rb +32 -31
- data/lib/virtuozzo/soap/types/firewallm.rb +33 -32
- data/lib/virtuozzo/soap/types/licensem.rb +33 -31
- data/lib/virtuozzo/soap/types/mailer.rb +33 -31
- data/lib/virtuozzo/soap/types/op_log.rb +33 -31
- data/lib/virtuozzo/soap/types/perf_mon.rb +33 -31
- data/lib/virtuozzo/soap/types/res_log.rb +49 -47
- data/lib/virtuozzo/soap/types/resourcem.rb +33 -31
- data/lib/virtuozzo/soap/types/scheduler.rb +33 -32
- data/lib/virtuozzo/soap/types/server_group.rb +32 -30
- data/lib/virtuozzo/soap/types/servicem.rb +33 -31
- data/lib/virtuozzo/soap/types/userm.rb +33 -31
- data/lib/virtuozzo/soap.rb +1 -1
- data/virtuozzo.gemspec +3 -3
- metadata +2 -4
- data/script/console +0 -10
- data/script/github-gem-test +0 -15
@@ -5,6 +5,22 @@ module Virtuozzo
|
|
5
5
|
module Types
|
6
6
|
module ResLog
|
7
7
|
|
8
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/res_log}classType
|
9
|
+
# name - SOAP::SOAPString
|
10
|
+
# instance - SOAP::SOAPString
|
11
|
+
# counter - SOAP::SOAPString
|
12
|
+
class ClassType
|
13
|
+
attr_accessor :name
|
14
|
+
attr_accessor :instance
|
15
|
+
attr_accessor :counter
|
16
|
+
|
17
|
+
def initialize(name = nil, instance = nil, counter = nil)
|
18
|
+
@name = name
|
19
|
+
@instance = instance
|
20
|
+
@counter = counter
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
8
24
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/res_log}logType
|
9
25
|
# m_class - Virtuozzo::SOAP::Types::ResLog::LogType::C_Class
|
10
26
|
# period - SOAP::SOAPInt
|
@@ -37,22 +53,6 @@ module Virtuozzo
|
|
37
53
|
end
|
38
54
|
end
|
39
55
|
|
40
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/res_log}classType
|
41
|
-
# name - SOAP::SOAPString
|
42
|
-
# instance - SOAP::SOAPString
|
43
|
-
# counter - SOAP::SOAPString
|
44
|
-
class ClassType
|
45
|
-
attr_accessor :name
|
46
|
-
attr_accessor :instance
|
47
|
-
attr_accessor :counter
|
48
|
-
|
49
|
-
def initialize(name = nil, instance = nil, counter = nil)
|
50
|
-
@name = name
|
51
|
-
@instance = instance
|
52
|
-
@counter = counter
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
56
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}osType
|
57
57
|
# platform - SOAP::SOAPString
|
58
58
|
# name - SOAP::SOAPString
|
@@ -366,6 +366,19 @@ module Virtuozzo
|
|
366
366
|
end
|
367
367
|
end
|
368
368
|
|
369
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
370
|
+
# ip - (any)
|
371
|
+
# netmask - (any)
|
372
|
+
class Ip_addressType
|
373
|
+
attr_accessor :ip
|
374
|
+
attr_accessor :netmask
|
375
|
+
|
376
|
+
def initialize(ip = nil, netmask = nil)
|
377
|
+
@ip = ip
|
378
|
+
@netmask = netmask
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
369
382
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
370
383
|
# address - Virtuozzo::SOAP::Types::ResLog::System_nodeType::Address
|
371
384
|
# login - Virtuozzo::SOAP::Types::ResLog::System_nodeType::Login
|
@@ -764,19 +777,6 @@ module Virtuozzo
|
|
764
777
|
end
|
765
778
|
end
|
766
779
|
|
767
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
768
|
-
# ip - (any)
|
769
|
-
# netmask - (any)
|
770
|
-
class Ip_addressType
|
771
|
-
attr_accessor :ip
|
772
|
-
attr_accessor :netmask
|
773
|
-
|
774
|
-
def initialize(ip = nil, netmask = nil)
|
775
|
-
@ip = ip
|
776
|
-
@netmask = netmask
|
777
|
-
end
|
778
|
-
end
|
779
|
-
|
780
780
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
781
781
|
# eid - (any)
|
782
782
|
# ip_pool - Virtuozzo::SOAP::Types::ResLog::Ip_poolType
|
@@ -1014,6 +1014,25 @@ module Virtuozzo
|
|
1014
1014
|
end
|
1015
1015
|
end
|
1016
1016
|
|
1017
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1018
|
+
# user - Virtuozzo::SOAP::Types::ResLog::GroupType::User
|
1019
|
+
# member_group - Virtuozzo::SOAP::Types::ResLog::GroupType::Member_group
|
1020
|
+
# name - SOAP::SOAPString
|
1021
|
+
# gid - SOAP::SOAPInt
|
1022
|
+
class GroupType
|
1023
|
+
attr_accessor :user
|
1024
|
+
attr_accessor :member_group
|
1025
|
+
attr_accessor :name
|
1026
|
+
attr_accessor :gid
|
1027
|
+
|
1028
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1029
|
+
@user = user
|
1030
|
+
@member_group = member_group
|
1031
|
+
@name = name
|
1032
|
+
@gid = gid
|
1033
|
+
end
|
1034
|
+
end
|
1035
|
+
|
1017
1036
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
1018
1037
|
# initial_group - Virtuozzo::SOAP::Types::ResLog::UserType::Initial_group
|
1019
1038
|
# group - Virtuozzo::SOAP::Types::ResLog::UserType::Group
|
@@ -1074,11 +1093,6 @@ module Virtuozzo
|
|
1074
1093
|
end
|
1075
1094
|
end
|
1076
1095
|
|
1077
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1078
|
-
# user - Virtuozzo::SOAP::Types::ResLog::GroupType::User
|
1079
|
-
# member_group - Virtuozzo::SOAP::Types::ResLog::GroupType::Member_group
|
1080
|
-
# name - SOAP::SOAPString
|
1081
|
-
# gid - SOAP::SOAPInt
|
1082
1096
|
class GroupType
|
1083
1097
|
|
1084
1098
|
# inner class for member: user
|
@@ -1102,18 +1116,6 @@ module Virtuozzo
|
|
1102
1116
|
@name = name
|
1103
1117
|
end
|
1104
1118
|
end
|
1105
|
-
|
1106
|
-
attr_accessor :user
|
1107
|
-
attr_accessor :member_group
|
1108
|
-
attr_accessor :name
|
1109
|
-
attr_accessor :gid
|
1110
|
-
|
1111
|
-
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1112
|
-
@user = user
|
1113
|
-
@member_group = member_group
|
1114
|
-
@name = name
|
1115
|
-
@gid = gid
|
1116
|
-
end
|
1117
1119
|
end
|
1118
1120
|
|
1119
1121
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -2334,7 +2336,7 @@ module Virtuozzo
|
|
2334
2336
|
@__xmlattr = {}
|
2335
2337
|
end
|
2336
2338
|
end
|
2337
|
-
|
2339
|
+
end
|
2338
2340
|
end
|
2339
2341
|
end
|
2340
2342
|
end
|
@@ -375,6 +375,19 @@ module Virtuozzo
|
|
375
375
|
end
|
376
376
|
end
|
377
377
|
|
378
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
379
|
+
# ip - (any)
|
380
|
+
# netmask - (any)
|
381
|
+
class Ip_addressType
|
382
|
+
attr_accessor :ip
|
383
|
+
attr_accessor :netmask
|
384
|
+
|
385
|
+
def initialize(ip = nil, netmask = nil)
|
386
|
+
@ip = ip
|
387
|
+
@netmask = netmask
|
388
|
+
end
|
389
|
+
end
|
390
|
+
|
378
391
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
379
392
|
# address - Virtuozzo::SOAP::Types::Resourcem::System_nodeType::Address
|
380
393
|
# login - Virtuozzo::SOAP::Types::Resourcem::System_nodeType::Login
|
@@ -773,19 +786,6 @@ module Virtuozzo
|
|
773
786
|
end
|
774
787
|
end
|
775
788
|
|
776
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
777
|
-
# ip - (any)
|
778
|
-
# netmask - (any)
|
779
|
-
class Ip_addressType
|
780
|
-
attr_accessor :ip
|
781
|
-
attr_accessor :netmask
|
782
|
-
|
783
|
-
def initialize(ip = nil, netmask = nil)
|
784
|
-
@ip = ip
|
785
|
-
@netmask = netmask
|
786
|
-
end
|
787
|
-
end
|
788
|
-
|
789
789
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
790
790
|
# eid - (any)
|
791
791
|
# ip_pool - Virtuozzo::SOAP::Types::Resourcem::Ip_poolType
|
@@ -1023,6 +1023,25 @@ module Virtuozzo
|
|
1023
1023
|
end
|
1024
1024
|
end
|
1025
1025
|
|
1026
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1027
|
+
# user - Virtuozzo::SOAP::Types::Resourcem::GroupType::User
|
1028
|
+
# member_group - Virtuozzo::SOAP::Types::Resourcem::GroupType::Member_group
|
1029
|
+
# name - SOAP::SOAPString
|
1030
|
+
# gid - SOAP::SOAPInt
|
1031
|
+
class GroupType
|
1032
|
+
attr_accessor :user
|
1033
|
+
attr_accessor :member_group
|
1034
|
+
attr_accessor :name
|
1035
|
+
attr_accessor :gid
|
1036
|
+
|
1037
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1038
|
+
@user = user
|
1039
|
+
@member_group = member_group
|
1040
|
+
@name = name
|
1041
|
+
@gid = gid
|
1042
|
+
end
|
1043
|
+
end
|
1044
|
+
|
1026
1045
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
1027
1046
|
# initial_group - Virtuozzo::SOAP::Types::Resourcem::UserType::Initial_group
|
1028
1047
|
# group - Virtuozzo::SOAP::Types::Resourcem::UserType::Group
|
@@ -1083,11 +1102,6 @@ module Virtuozzo
|
|
1083
1102
|
end
|
1084
1103
|
end
|
1085
1104
|
|
1086
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1087
|
-
# user - Virtuozzo::SOAP::Types::Resourcem::GroupType::User
|
1088
|
-
# member_group - Virtuozzo::SOAP::Types::Resourcem::GroupType::Member_group
|
1089
|
-
# name - SOAP::SOAPString
|
1090
|
-
# gid - SOAP::SOAPInt
|
1091
1105
|
class GroupType
|
1092
1106
|
|
1093
1107
|
# inner class for member: user
|
@@ -1111,18 +1125,6 @@ module Virtuozzo
|
|
1111
1125
|
@name = name
|
1112
1126
|
end
|
1113
1127
|
end
|
1114
|
-
|
1115
|
-
attr_accessor :user
|
1116
|
-
attr_accessor :member_group
|
1117
|
-
attr_accessor :name
|
1118
|
-
attr_accessor :gid
|
1119
|
-
|
1120
|
-
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1121
|
-
@user = user
|
1122
|
-
@member_group = member_group
|
1123
|
-
@name = name
|
1124
|
-
@gid = gid
|
1125
|
-
end
|
1126
1128
|
end
|
1127
1129
|
|
1128
1130
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -2207,7 +2209,7 @@ module Virtuozzo
|
|
2207
2209
|
@__xmlattr = {}
|
2208
2210
|
end
|
2209
2211
|
end
|
2210
|
-
|
2212
|
+
end
|
2211
2213
|
end
|
2212
2214
|
end
|
2213
2215
|
end
|
@@ -469,6 +469,19 @@ module Virtuozzo
|
|
469
469
|
end
|
470
470
|
end
|
471
471
|
|
472
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
473
|
+
# ip - (any)
|
474
|
+
# netmask - (any)
|
475
|
+
class Ip_addressType
|
476
|
+
attr_accessor :ip
|
477
|
+
attr_accessor :netmask
|
478
|
+
|
479
|
+
def initialize(ip = nil, netmask = nil)
|
480
|
+
@ip = ip
|
481
|
+
@netmask = netmask
|
482
|
+
end
|
483
|
+
end
|
484
|
+
|
472
485
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
473
486
|
# address - Virtuozzo::SOAP::Types::Scheduler::System_nodeType::Address
|
474
487
|
# login - Virtuozzo::SOAP::Types::Scheduler::System_nodeType::Login
|
@@ -867,19 +880,6 @@ module Virtuozzo
|
|
867
880
|
end
|
868
881
|
end
|
869
882
|
|
870
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
871
|
-
# ip - (any)
|
872
|
-
# netmask - (any)
|
873
|
-
class Ip_addressType
|
874
|
-
attr_accessor :ip
|
875
|
-
attr_accessor :netmask
|
876
|
-
|
877
|
-
def initialize(ip = nil, netmask = nil)
|
878
|
-
@ip = ip
|
879
|
-
@netmask = netmask
|
880
|
-
end
|
881
|
-
end
|
882
|
-
|
883
883
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
884
884
|
# eid - (any)
|
885
885
|
# ip_pool - Virtuozzo::SOAP::Types::Scheduler::Ip_poolType
|
@@ -1117,6 +1117,25 @@ module Virtuozzo
|
|
1117
1117
|
end
|
1118
1118
|
end
|
1119
1119
|
|
1120
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1121
|
+
# user - Virtuozzo::SOAP::Types::Scheduler::GroupType::User
|
1122
|
+
# member_group - Virtuozzo::SOAP::Types::Scheduler::GroupType::Member_group
|
1123
|
+
# name - SOAP::SOAPString
|
1124
|
+
# gid - SOAP::SOAPInt
|
1125
|
+
class GroupType
|
1126
|
+
attr_accessor :user
|
1127
|
+
attr_accessor :member_group
|
1128
|
+
attr_accessor :name
|
1129
|
+
attr_accessor :gid
|
1130
|
+
|
1131
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1132
|
+
@user = user
|
1133
|
+
@member_group = member_group
|
1134
|
+
@name = name
|
1135
|
+
@gid = gid
|
1136
|
+
end
|
1137
|
+
end
|
1138
|
+
|
1120
1139
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
1121
1140
|
# initial_group - Virtuozzo::SOAP::Types::Scheduler::UserType::Initial_group
|
1122
1141
|
# group - Virtuozzo::SOAP::Types::Scheduler::UserType::Group
|
@@ -1177,13 +1196,7 @@ module Virtuozzo
|
|
1177
1196
|
end
|
1178
1197
|
end
|
1179
1198
|
|
1180
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1181
|
-
# user - Virtuozzo::SOAP::Types::Scheduler::GroupType::User
|
1182
|
-
# member_group - Virtuozzo::SOAP::Types::Scheduler::GroupType::Member_group
|
1183
|
-
# name - SOAP::SOAPString
|
1184
|
-
# gid - SOAP::SOAPInt
|
1185
1199
|
class GroupType
|
1186
|
-
|
1187
1200
|
# inner class for member: user
|
1188
1201
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}user
|
1189
1202
|
# name - SOAP::SOAPString
|
@@ -1205,18 +1218,6 @@ module Virtuozzo
|
|
1205
1218
|
@name = name
|
1206
1219
|
end
|
1207
1220
|
end
|
1208
|
-
|
1209
|
-
attr_accessor :user
|
1210
|
-
attr_accessor :member_group
|
1211
|
-
attr_accessor :name
|
1212
|
-
attr_accessor :gid
|
1213
|
-
|
1214
|
-
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1215
|
-
@user = user
|
1216
|
-
@member_group = member_group
|
1217
|
-
@name = name
|
1218
|
-
@gid = gid
|
1219
|
-
end
|
1220
1221
|
end
|
1221
1222
|
|
1222
1223
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -2301,7 +2302,7 @@ module Virtuozzo
|
|
2301
2302
|
@__xmlattr = {}
|
2302
2303
|
end
|
2303
2304
|
end
|
2304
|
-
|
2305
|
+
end
|
2305
2306
|
end
|
2306
2307
|
end
|
2307
2308
|
end
|
@@ -375,6 +375,19 @@ module Virtuozzo
|
|
375
375
|
@output = output
|
376
376
|
end
|
377
377
|
end
|
378
|
+
|
379
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
380
|
+
# ip - (any)
|
381
|
+
# netmask - (any)
|
382
|
+
class Ip_addressType
|
383
|
+
attr_accessor :ip
|
384
|
+
attr_accessor :netmask
|
385
|
+
|
386
|
+
def initialize(ip = nil, netmask = nil)
|
387
|
+
@ip = ip
|
388
|
+
@netmask = netmask
|
389
|
+
end
|
390
|
+
end
|
378
391
|
|
379
392
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
380
393
|
# address - Virtuozzo::SOAP::Types::ServerGroup::System_nodeType::Address
|
@@ -774,19 +787,6 @@ module Virtuozzo
|
|
774
787
|
end
|
775
788
|
end
|
776
789
|
|
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
790
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
791
791
|
# eid - (any)
|
792
792
|
# ip_pool - Virtuozzo::SOAP::Types::ServerGroup::Ip_poolType
|
@@ -1024,6 +1024,25 @@ module Virtuozzo
|
|
1024
1024
|
end
|
1025
1025
|
end
|
1026
1026
|
|
1027
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1028
|
+
# user - Virtuozzo::SOAP::Types::ServerGroup::GroupType::User
|
1029
|
+
# member_group - Virtuozzo::SOAP::Types::ServerGroup::GroupType::Member_group
|
1030
|
+
# name - SOAP::SOAPString
|
1031
|
+
# gid - SOAP::SOAPInt
|
1032
|
+
class GroupType
|
1033
|
+
attr_accessor :user
|
1034
|
+
attr_accessor :member_group
|
1035
|
+
attr_accessor :name
|
1036
|
+
attr_accessor :gid
|
1037
|
+
|
1038
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1039
|
+
@user = user
|
1040
|
+
@member_group = member_group
|
1041
|
+
@name = name
|
1042
|
+
@gid = gid
|
1043
|
+
end
|
1044
|
+
end
|
1045
|
+
|
1027
1046
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
1028
1047
|
# initial_group - Virtuozzo::SOAP::Types::ServerGroup::UserType::Initial_group
|
1029
1048
|
# group - Virtuozzo::SOAP::Types::ServerGroup::UserType::Group
|
@@ -1084,11 +1103,6 @@ module Virtuozzo
|
|
1084
1103
|
end
|
1085
1104
|
end
|
1086
1105
|
|
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
1106
|
class GroupType
|
1093
1107
|
|
1094
1108
|
# inner class for member: user
|
@@ -1112,18 +1126,6 @@ module Virtuozzo
|
|
1112
1126
|
@name = name
|
1113
1127
|
end
|
1114
1128
|
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
1129
|
end
|
1128
1130
|
|
1129
1131
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -389,6 +389,19 @@ module Virtuozzo
|
|
389
389
|
end
|
390
390
|
end
|
391
391
|
|
392
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
393
|
+
# ip - (any)
|
394
|
+
# netmask - (any)
|
395
|
+
class Ip_addressType
|
396
|
+
attr_accessor :ip
|
397
|
+
attr_accessor :netmask
|
398
|
+
|
399
|
+
def initialize(ip = nil, netmask = nil)
|
400
|
+
@ip = ip
|
401
|
+
@netmask = netmask
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
392
405
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
393
406
|
# address - Virtuozzo::SOAP::Types::Servicem::System_nodeType::Address
|
394
407
|
# login - Virtuozzo::SOAP::Types::Servicem::System_nodeType::Login
|
@@ -787,19 +800,6 @@ module Virtuozzo
|
|
787
800
|
end
|
788
801
|
end
|
789
802
|
|
790
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
791
|
-
# ip - (any)
|
792
|
-
# netmask - (any)
|
793
|
-
class Ip_addressType
|
794
|
-
attr_accessor :ip
|
795
|
-
attr_accessor :netmask
|
796
|
-
|
797
|
-
def initialize(ip = nil, netmask = nil)
|
798
|
-
@ip = ip
|
799
|
-
@netmask = netmask
|
800
|
-
end
|
801
|
-
end
|
802
|
-
|
803
803
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
804
804
|
# eid - (any)
|
805
805
|
# ip_pool - Virtuozzo::SOAP::Types::Servicem::Ip_poolType
|
@@ -1037,6 +1037,25 @@ module Virtuozzo
|
|
1037
1037
|
end
|
1038
1038
|
end
|
1039
1039
|
|
1040
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1041
|
+
# user - Virtuozzo::SOAP::Types::Servicem::GroupType::User
|
1042
|
+
# member_group - Virtuozzo::SOAP::Types::Servicem::GroupType::Member_group
|
1043
|
+
# name - SOAP::SOAPString
|
1044
|
+
# gid - SOAP::SOAPInt
|
1045
|
+
class GroupType
|
1046
|
+
attr_accessor :user
|
1047
|
+
attr_accessor :member_group
|
1048
|
+
attr_accessor :name
|
1049
|
+
attr_accessor :gid
|
1050
|
+
|
1051
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1052
|
+
@user = user
|
1053
|
+
@member_group = member_group
|
1054
|
+
@name = name
|
1055
|
+
@gid = gid
|
1056
|
+
end
|
1057
|
+
end
|
1058
|
+
|
1040
1059
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
1041
1060
|
# initial_group - Virtuozzo::SOAP::Types::Servicem::UserType::Initial_group
|
1042
1061
|
# group - Virtuozzo::SOAP::Types::Servicem::UserType::Group
|
@@ -1097,11 +1116,6 @@ module Virtuozzo
|
|
1097
1116
|
end
|
1098
1117
|
end
|
1099
1118
|
|
1100
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1101
|
-
# user - Virtuozzo::SOAP::Types::Servicem::GroupType::User
|
1102
|
-
# member_group - Virtuozzo::SOAP::Types::Servicem::GroupType::Member_group
|
1103
|
-
# name - SOAP::SOAPString
|
1104
|
-
# gid - SOAP::SOAPInt
|
1105
1119
|
class GroupType
|
1106
1120
|
|
1107
1121
|
# inner class for member: user
|
@@ -1125,18 +1139,6 @@ module Virtuozzo
|
|
1125
1139
|
@name = name
|
1126
1140
|
end
|
1127
1141
|
end
|
1128
|
-
|
1129
|
-
attr_accessor :user
|
1130
|
-
attr_accessor :member_group
|
1131
|
-
attr_accessor :name
|
1132
|
-
attr_accessor :gid
|
1133
|
-
|
1134
|
-
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1135
|
-
@user = user
|
1136
|
-
@member_group = member_group
|
1137
|
-
@name = name
|
1138
|
-
@gid = gid
|
1139
|
-
end
|
1140
1142
|
end
|
1141
1143
|
|
1142
1144
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -2286,7 +2288,7 @@ module Virtuozzo
|
|
2286
2288
|
@__xmlattr = {}
|
2287
2289
|
end
|
2288
2290
|
end
|
2289
|
-
|
2291
|
+
end
|
2290
2292
|
end
|
2291
2293
|
end
|
2292
2294
|
end
|
@@ -318,6 +318,19 @@ module Virtuozzo
|
|
318
318
|
end
|
319
319
|
end
|
320
320
|
|
321
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
322
|
+
# ip - (any)
|
323
|
+
# netmask - (any)
|
324
|
+
class Ip_addressType
|
325
|
+
attr_accessor :ip
|
326
|
+
attr_accessor :netmask
|
327
|
+
|
328
|
+
def initialize(ip = nil, netmask = nil)
|
329
|
+
@ip = ip
|
330
|
+
@netmask = netmask
|
331
|
+
end
|
332
|
+
end
|
333
|
+
|
321
334
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
322
335
|
# address - Virtuozzo::SOAP::Types::Userm::System_nodeType::Address
|
323
336
|
# login - Virtuozzo::SOAP::Types::Userm::System_nodeType::Login
|
@@ -716,19 +729,6 @@ module Virtuozzo
|
|
716
729
|
end
|
717
730
|
end
|
718
731
|
|
719
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
720
|
-
# ip - (any)
|
721
|
-
# netmask - (any)
|
722
|
-
class Ip_addressType
|
723
|
-
attr_accessor :ip
|
724
|
-
attr_accessor :netmask
|
725
|
-
|
726
|
-
def initialize(ip = nil, netmask = nil)
|
727
|
-
@ip = ip
|
728
|
-
@netmask = netmask
|
729
|
-
end
|
730
|
-
end
|
731
|
-
|
732
732
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
733
733
|
# eid - (any)
|
734
734
|
# ip_pool - Virtuozzo::SOAP::Types::Userm::Ip_poolType
|
@@ -966,6 +966,25 @@ module Virtuozzo
|
|
966
966
|
end
|
967
967
|
end
|
968
968
|
|
969
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
970
|
+
# user - Virtuozzo::SOAP::Types::Userm::GroupType::User
|
971
|
+
# member_group - Virtuozzo::SOAP::Types::Userm::GroupType::Member_group
|
972
|
+
# name - SOAP::SOAPString
|
973
|
+
# gid - SOAP::SOAPInt
|
974
|
+
class GroupType
|
975
|
+
attr_accessor :user
|
976
|
+
attr_accessor :member_group
|
977
|
+
attr_accessor :name
|
978
|
+
attr_accessor :gid
|
979
|
+
|
980
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
981
|
+
@user = user
|
982
|
+
@member_group = member_group
|
983
|
+
@name = name
|
984
|
+
@gid = gid
|
985
|
+
end
|
986
|
+
end
|
987
|
+
|
969
988
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
970
989
|
# initial_group - Virtuozzo::SOAP::Types::Userm::UserType::Initial_group
|
971
990
|
# group - Virtuozzo::SOAP::Types::Userm::UserType::Group
|
@@ -1026,11 +1045,6 @@ module Virtuozzo
|
|
1026
1045
|
end
|
1027
1046
|
end
|
1028
1047
|
|
1029
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1030
|
-
# user - Virtuozzo::SOAP::Types::Userm::GroupType::User
|
1031
|
-
# member_group - Virtuozzo::SOAP::Types::Userm::GroupType::Member_group
|
1032
|
-
# name - SOAP::SOAPString
|
1033
|
-
# gid - SOAP::SOAPInt
|
1034
1048
|
class GroupType
|
1035
1049
|
|
1036
1050
|
# inner class for member: user
|
@@ -1054,18 +1068,6 @@ module Virtuozzo
|
|
1054
1068
|
@name = name
|
1055
1069
|
end
|
1056
1070
|
end
|
1057
|
-
|
1058
|
-
attr_accessor :user
|
1059
|
-
attr_accessor :member_group
|
1060
|
-
attr_accessor :name
|
1061
|
-
attr_accessor :gid
|
1062
|
-
|
1063
|
-
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1064
|
-
@user = user
|
1065
|
-
@member_group = member_group
|
1066
|
-
@name = name
|
1067
|
-
@gid = gid
|
1068
|
-
end
|
1069
1071
|
end
|
1070
1072
|
|
1071
1073
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -2593,7 +2595,7 @@ module Virtuozzo
|
|
2593
2595
|
@__xmlattr = {}
|
2594
2596
|
end
|
2595
2597
|
end
|
2596
|
-
|
2598
|
+
end
|
2597
2599
|
end
|
2598
2600
|
end
|
2599
2601
|
end
|
data/lib/virtuozzo/soap.rb
CHANGED
@@ -174,7 +174,7 @@ module Virtuozzo
|
|
174
174
|
#
|
175
175
|
# @return [SOAP::RPC::Driver] alertm SOAP::RPC::Driver instance.
|
176
176
|
def alertm
|
177
|
-
@
|
177
|
+
@alertm ||= Virtuozzo::SOAP::Drivers::Alertm.new(@endpoint)
|
178
178
|
end
|
179
179
|
|
180
180
|
##
|