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/Manifest +0 -3
- data/Rakefile +2 -2
- data/lib/virtuozzo/soap.rb +1 -1
- 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/virtuozzo.gemspec +3 -3
- metadata +2 -4
- data/script/console +0 -10
- data/script/github-gem-test +0 -15
@@ -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::OpLog::System_nodeType::Address
|
323
336
|
# login - Virtuozzo::SOAP::Types::OpLog::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::OpLog::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::OpLog::GroupType::User
|
971
|
+
# member_group - Virtuozzo::SOAP::Types::OpLog::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::OpLog::UserType::Initial_group
|
971
990
|
# group - Virtuozzo::SOAP::Types::OpLog::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::OpLog::GroupType::User
|
1031
|
-
# member_group - Virtuozzo::SOAP::Types::OpLog::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
|
@@ -2150,7 +2152,7 @@ module Virtuozzo
|
|
2150
2152
|
@__xmlattr = {}
|
2151
2153
|
end
|
2152
2154
|
end
|
2153
|
-
|
2155
|
+
end
|
2154
2156
|
end
|
2155
2157
|
end
|
2156
2158
|
end
|
@@ -346,6 +346,19 @@ module Virtuozzo
|
|
346
346
|
end
|
347
347
|
end
|
348
348
|
|
349
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
350
|
+
# ip - (any)
|
351
|
+
# netmask - (any)
|
352
|
+
class Ip_addressType
|
353
|
+
attr_accessor :ip
|
354
|
+
attr_accessor :netmask
|
355
|
+
|
356
|
+
def initialize(ip = nil, netmask = nil)
|
357
|
+
@ip = ip
|
358
|
+
@netmask = netmask
|
359
|
+
end
|
360
|
+
end
|
361
|
+
|
349
362
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
350
363
|
# address - Virtuozzo::SOAP::Types::PerfMon::System_nodeType::Address
|
351
364
|
# login - Virtuozzo::SOAP::Types::PerfMon::System_nodeType::Login
|
@@ -744,19 +757,6 @@ module Virtuozzo
|
|
744
757
|
end
|
745
758
|
end
|
746
759
|
|
747
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_addressType
|
748
|
-
# ip - (any)
|
749
|
-
# netmask - (any)
|
750
|
-
class Ip_addressType
|
751
|
-
attr_accessor :ip
|
752
|
-
attr_accessor :netmask
|
753
|
-
|
754
|
-
def initialize(ip = nil, netmask = nil)
|
755
|
-
@ip = ip
|
756
|
-
@netmask = netmask
|
757
|
-
end
|
758
|
-
end
|
759
|
-
|
760
760
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
761
761
|
# eid - (any)
|
762
762
|
# ip_pool - Virtuozzo::SOAP::Types::PerfMon::Ip_poolType
|
@@ -994,6 +994,25 @@ module Virtuozzo
|
|
994
994
|
end
|
995
995
|
end
|
996
996
|
|
997
|
+
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
998
|
+
# user - Virtuozzo::SOAP::Types::PerfMon::GroupType::User
|
999
|
+
# member_group - Virtuozzo::SOAP::Types::PerfMon::GroupType::Member_group
|
1000
|
+
# name - SOAP::SOAPString
|
1001
|
+
# gid - SOAP::SOAPInt
|
1002
|
+
class GroupType
|
1003
|
+
attr_accessor :user
|
1004
|
+
attr_accessor :member_group
|
1005
|
+
attr_accessor :name
|
1006
|
+
attr_accessor :gid
|
1007
|
+
|
1008
|
+
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1009
|
+
@user = user
|
1010
|
+
@member_group = member_group
|
1011
|
+
@name = name
|
1012
|
+
@gid = gid
|
1013
|
+
end
|
1014
|
+
end
|
1015
|
+
|
997
1016
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
998
1017
|
# initial_group - Virtuozzo::SOAP::Types::PerfMon::UserType::Initial_group
|
999
1018
|
# group - Virtuozzo::SOAP::Types::PerfMon::UserType::Group
|
@@ -1054,11 +1073,6 @@ module Virtuozzo
|
|
1054
1073
|
end
|
1055
1074
|
end
|
1056
1075
|
|
1057
|
-
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1058
|
-
# user - Virtuozzo::SOAP::Types::PerfMon::GroupType::User
|
1059
|
-
# member_group - Virtuozzo::SOAP::Types::PerfMon::GroupType::Member_group
|
1060
|
-
# name - SOAP::SOAPString
|
1061
|
-
# gid - SOAP::SOAPInt
|
1062
1076
|
class GroupType
|
1063
1077
|
|
1064
1078
|
# inner class for member: user
|
@@ -1082,18 +1096,6 @@ module Virtuozzo
|
|
1082
1096
|
@name = name
|
1083
1097
|
end
|
1084
1098
|
end
|
1085
|
-
|
1086
|
-
attr_accessor :user
|
1087
|
-
attr_accessor :member_group
|
1088
|
-
attr_accessor :name
|
1089
|
-
attr_accessor :gid
|
1090
|
-
|
1091
|
-
def initialize(user = [], member_group = [], name = nil, gid = nil)
|
1092
|
-
@user = user
|
1093
|
-
@member_group = member_group
|
1094
|
-
@name = name
|
1095
|
-
@gid = gid
|
1096
|
-
end
|
1097
1099
|
end
|
1098
1100
|
|
1099
1101
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
@@ -2252,7 +2254,7 @@ module Virtuozzo
|
|
2252
2254
|
@__xmlattr = {}
|
2253
2255
|
end
|
2254
2256
|
end
|
2255
|
-
|
2257
|
+
end
|
2256
2258
|
end
|
2257
2259
|
end
|
2258
2260
|
end
|
@@ -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
|