plainprograms-virtuozzo 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +8 -0
- data/Rakefile +1 -2
- data/TODO.rdoc +0 -5
- data/lib/virtuozzo/soap.rb +43 -43
- data/lib/virtuozzo/soap/drivers/{device.rb → devm.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{environment.rb → envm.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{network.rb → networkm.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{template.rb → packagem.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{process_info.rb → proc_info.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{process.rb → processm.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{session.rb → sessionm.rb} +6 -6
- data/lib/virtuozzo/soap/mapping_registries/{device.rb → devm.rb} +645 -645
- data/lib/virtuozzo/soap/mapping_registries/{environment.rb → envm.rb} +872 -872
- data/lib/virtuozzo/soap/mapping_registries/{network.rb → networkm.rb} +533 -533
- data/lib/virtuozzo/soap/mapping_registries/{template.rb → packagem.rb} +648 -648
- data/lib/virtuozzo/soap/mapping_registries/{process_info.rb → proc_info.rb} +480 -480
- data/lib/virtuozzo/soap/mapping_registries/{process.rb → processm.rb} +527 -527
- data/lib/virtuozzo/soap/mapping_registries/{session.rb → sessionm.rb} +523 -523
- data/lib/virtuozzo/soap/types/{device.rb → devm.rb} +160 -160
- data/lib/virtuozzo/soap/types/{environment.rb → envm.rb} +200 -200
- data/lib/virtuozzo/soap/types/{network.rb → networkm.rb} +109 -109
- data/lib/virtuozzo/soap/types/{template.rb → packagem.rb} +152 -152
- data/lib/virtuozzo/soap/types/{process_info.rb → proc_info.rb} +100 -100
- data/lib/virtuozzo/soap/types/{process.rb → processm.rb} +108 -108
- data/lib/virtuozzo/soap/types/{session.rb → sessionm.rb} +106 -106
- data/tasks/rspec.rake +7 -0
- data/tasks/yard.rake +7 -4
- data/virtuozzo.gemspec +3 -3
- metadata +45 -43
@@ -1,12 +1,12 @@
|
|
1
1
|
require 'xsd/qname'
|
2
2
|
|
3
|
-
module Virtuozzo; module SOAP; module Types; module
|
3
|
+
module Virtuozzo; module SOAP; module Types; module Envm
|
4
4
|
|
5
5
|
|
6
6
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}ugid_quota_info
|
7
7
|
# type - SOAP::SOAPInt
|
8
|
-
# quota - Virtuozzo::SOAP::
|
9
|
-
# grace_period - Virtuozzo::SOAP::
|
8
|
+
# quota - Virtuozzo::SOAP::Types::Envm::Quota_type
|
9
|
+
# grace_period - Virtuozzo::SOAP::Types::Envm::Ugid_quota_info::Grace_period
|
10
10
|
class Ugid_quota_info
|
11
11
|
|
12
12
|
# inner class for member: grace_period
|
@@ -36,8 +36,8 @@ end
|
|
36
36
|
|
37
37
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}quota_type
|
38
38
|
# id - SOAP::SOAPInt
|
39
|
-
# diskspace - Virtuozzo::SOAP::
|
40
|
-
# diskinodes - Virtuozzo::SOAP::
|
39
|
+
# diskspace - Virtuozzo::SOAP::Types::Envm::Quota_limit
|
40
|
+
# diskinodes - Virtuozzo::SOAP::Types::Envm::Quota_limit
|
41
41
|
class Quota_type
|
42
42
|
attr_accessor :id
|
43
43
|
attr_accessor :diskspace
|
@@ -141,9 +141,9 @@ end
|
|
141
141
|
# description - SOAP::SOAPBase64
|
142
142
|
# domain - SOAP::SOAPString
|
143
143
|
# hostname - SOAP::SOAPString
|
144
|
-
# address - Virtuozzo::SOAP::
|
144
|
+
# address - Virtuozzo::SOAP::Types::Envm::Ip_addressType
|
145
145
|
# architecture - SOAP::SOAPString
|
146
|
-
# os - Virtuozzo::SOAP::
|
146
|
+
# os - Virtuozzo::SOAP::Types::Envm::OsType
|
147
147
|
# type - SOAP::SOAPString
|
148
148
|
# nameserver - SOAP::SOAPString
|
149
149
|
# search_domain - SOAP::SOAPString
|
@@ -187,16 +187,16 @@ end
|
|
187
187
|
# description - SOAP::SOAPBase64
|
188
188
|
# domain - SOAP::SOAPString
|
189
189
|
# hostname - SOAP::SOAPString
|
190
|
-
# address - Virtuozzo::SOAP::
|
190
|
+
# address - Virtuozzo::SOAP::Types::Envm::Ip_addressType
|
191
191
|
# architecture - SOAP::SOAPString
|
192
|
-
# os - Virtuozzo::SOAP::
|
192
|
+
# os - Virtuozzo::SOAP::Types::Envm::OsType
|
193
193
|
# type - SOAP::SOAPString
|
194
194
|
# nameserver - SOAP::SOAPString
|
195
195
|
# search_domain - SOAP::SOAPString
|
196
196
|
# base_sample_id - (any)
|
197
197
|
# base_snapshot_id - (any)
|
198
198
|
# child_type - SOAP::SOAPString
|
199
|
-
# qos - Virtuozzo::SOAP::
|
199
|
+
# qos - Virtuozzo::SOAP::Types::Envm::QosType
|
200
200
|
class Venv_configType < Env_configType
|
201
201
|
attr_accessor :name
|
202
202
|
attr_accessor :description
|
@@ -236,39 +236,39 @@ end
|
|
236
236
|
# description - SOAP::SOAPBase64
|
237
237
|
# domain - SOAP::SOAPString
|
238
238
|
# hostname - SOAP::SOAPString
|
239
|
-
# address - Virtuozzo::SOAP::
|
239
|
+
# address - Virtuozzo::SOAP::Types::Envm::Ip_addressType
|
240
240
|
# architecture - SOAP::SOAPString
|
241
|
-
# os - Virtuozzo::SOAP::
|
241
|
+
# os - Virtuozzo::SOAP::Types::Envm::OsType
|
242
242
|
# type - SOAP::SOAPString
|
243
243
|
# nameserver - SOAP::SOAPString
|
244
244
|
# search_domain - SOAP::SOAPString
|
245
245
|
# base_sample_id - (any)
|
246
246
|
# base_snapshot_id - (any)
|
247
247
|
# child_type - SOAP::SOAPString
|
248
|
-
# qos - Virtuozzo::SOAP::
|
248
|
+
# qos - Virtuozzo::SOAP::Types::Envm::QosType
|
249
249
|
# veid - (any)
|
250
250
|
# ve_root - SOAP::SOAPString
|
251
251
|
# ve_private - SOAP::SOAPString
|
252
252
|
# on_boot - SOAP::SOAPBoolean
|
253
|
-
# template - Virtuozzo::SOAP::
|
253
|
+
# template - Virtuozzo::SOAP::Types::Envm::TemplateType
|
254
254
|
# disabled - SOAP::SOAPBoolean
|
255
255
|
# offline_management - SOAP::SOAPBoolean
|
256
|
-
# os_template - Virtuozzo::SOAP::
|
257
|
-
# distribution - Virtuozzo::SOAP::
|
258
|
-
# capability - Virtuozzo::SOAP::
|
256
|
+
# os_template - Virtuozzo::SOAP::Types::Envm::TemplateType
|
257
|
+
# distribution - Virtuozzo::SOAP::Types::Envm::TemplateType
|
258
|
+
# capability - Virtuozzo::SOAP::Types::Envm::Venv_configType_::Capability
|
259
259
|
# iptables - SOAP::SOAPString
|
260
260
|
# config_customized - SOAP::SOAPBoolean
|
261
261
|
# class_id - SOAP::SOAPString
|
262
|
-
# ve_type - Virtuozzo::SOAP::
|
262
|
+
# ve_type - Virtuozzo::SOAP::Types::Envm::Venv_configType_::Ve_type
|
263
263
|
# offline_service - SOAP::SOAPString
|
264
264
|
# wins_server - SOAP::SOAPString
|
265
|
-
# net_device - Virtuozzo::SOAP::
|
265
|
+
# net_device - Virtuozzo::SOAP::Types::Envm::Net_vethType
|
266
266
|
# ts_license_server - SOAP::SOAPString
|
267
267
|
# ts_mode - SOAP::SOAPInt
|
268
268
|
# uuid - SOAP::SOAPString
|
269
269
|
# allow_reboot - SOAP::SOAPBoolean
|
270
270
|
# rate_bound - SOAP::SOAPBoolean
|
271
|
-
# interface_rate - Virtuozzo::SOAP::
|
271
|
+
# interface_rate - Virtuozzo::SOAP::Types::Envm::Venv_configType_::Interface_rate
|
272
272
|
# slm_mode - SOAP::SOAPString
|
273
273
|
# origin_sample - SOAP::SOAPString
|
274
274
|
class Venv_configType_ < Venv_configType
|
@@ -417,10 +417,10 @@ end
|
|
417
417
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}envType
|
418
418
|
# parent_eid - (any)
|
419
419
|
# eid - (any)
|
420
|
-
# status - Virtuozzo::SOAP::
|
420
|
+
# status - Virtuozzo::SOAP::Types::Envm::Env_statusType
|
421
421
|
# alert - SOAP::SOAPInt
|
422
|
-
# config - Virtuozzo::SOAP::
|
423
|
-
# virtual_config - Virtuozzo::SOAP::
|
422
|
+
# config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
423
|
+
# virtual_config - Virtuozzo::SOAP::Types::Envm::Venv_configType
|
424
424
|
class EnvType
|
425
425
|
attr_accessor :parent_eid
|
426
426
|
attr_accessor :eid
|
@@ -442,10 +442,10 @@ end
|
|
442
442
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}envType
|
443
443
|
# parent_eid - (any)
|
444
444
|
# eid - (any)
|
445
|
-
# status - Virtuozzo::SOAP::
|
445
|
+
# status - Virtuozzo::SOAP::Types::Envm::Env_statusType
|
446
446
|
# alert - SOAP::SOAPInt
|
447
|
-
# config - Virtuozzo::SOAP::
|
448
|
-
# virtual_config - Virtuozzo::SOAP::
|
447
|
+
# config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
448
|
+
# virtual_config - Virtuozzo::SOAP::Types::Envm::Venv_configType
|
449
449
|
class EnvType_ < EnvType
|
450
450
|
attr_accessor :parent_eid
|
451
451
|
attr_accessor :eid
|
@@ -559,8 +559,8 @@ class CpuType
|
|
559
559
|
end
|
560
560
|
|
561
561
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}transferType
|
562
|
-
# input - Virtuozzo::SOAP::
|
563
|
-
# output - Virtuozzo::SOAP::
|
562
|
+
# input - Virtuozzo::SOAP::Types::Envm::TransferType::Input
|
563
|
+
# output - Virtuozzo::SOAP::Types::Envm::TransferType::Output
|
564
564
|
class TransferType
|
565
565
|
|
566
566
|
# inner class for member: input
|
@@ -614,8 +614,8 @@ class Ip_addressType
|
|
614
614
|
end
|
615
615
|
|
616
616
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}system_nodeType
|
617
|
-
# address - Virtuozzo::SOAP::
|
618
|
-
# login - Virtuozzo::SOAP::
|
617
|
+
# address - Virtuozzo::SOAP::Types::Envm::System_nodeType::Address
|
618
|
+
# login - Virtuozzo::SOAP::Types::Envm::System_nodeType::Login
|
619
619
|
class System_nodeType
|
620
620
|
|
621
621
|
# inner class for member: address
|
@@ -733,7 +733,7 @@ end
|
|
733
733
|
|
734
734
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_classType
|
735
735
|
# id - SOAP::SOAPString
|
736
|
-
# transfer - Virtuozzo::SOAP::
|
736
|
+
# transfer - Virtuozzo::SOAP::Types::Envm::TransferType
|
737
737
|
class Net_classType
|
738
738
|
attr_accessor :id
|
739
739
|
attr_accessor :transfer
|
@@ -764,11 +764,11 @@ class Ip_rangeType
|
|
764
764
|
end
|
765
765
|
|
766
766
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}sample_confType
|
767
|
-
# env_config - Virtuozzo::SOAP::
|
767
|
+
# env_config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
768
768
|
# id - SOAP::SOAPString
|
769
769
|
# name - SOAP::SOAPString
|
770
770
|
# comment - SOAP::SOAPBase64
|
771
|
-
# vt_version - Virtuozzo::SOAP::
|
771
|
+
# vt_version - Virtuozzo::SOAP::Types::Envm::Sample_confType::Vt_version
|
772
772
|
class Sample_confType
|
773
773
|
|
774
774
|
# inner class for member: vt_version
|
@@ -806,7 +806,7 @@ end
|
|
806
806
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}interfaceType
|
807
807
|
# name - SOAP::SOAPString
|
808
808
|
# bandwidth - SOAP::SOAPInt
|
809
|
-
# transfer - Virtuozzo::SOAP::
|
809
|
+
# transfer - Virtuozzo::SOAP::Types::Envm::TransferType
|
810
810
|
# ipaddress - (any)
|
811
811
|
# flags - SOAP::SOAPInt
|
812
812
|
class InterfaceType
|
@@ -826,14 +826,14 @@ class InterfaceType
|
|
826
826
|
end
|
827
827
|
|
828
828
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}sys_infoType
|
829
|
-
# load_avg - Virtuozzo::SOAP::
|
830
|
-
# processes - Virtuozzo::SOAP::
|
831
|
-
# cpu_load - Virtuozzo::SOAP::
|
832
|
-
# cpu_states - Virtuozzo::SOAP::
|
829
|
+
# load_avg - Virtuozzo::SOAP::Types::Envm::Load_avgType
|
830
|
+
# processes - Virtuozzo::SOAP::Types::Envm::ProcessesType
|
831
|
+
# cpu_load - Virtuozzo::SOAP::Types::Envm::Cpu_loadType
|
832
|
+
# cpu_states - Virtuozzo::SOAP::Types::Envm::Cpu_loadType
|
833
833
|
# users - SOAP::SOAPInt
|
834
834
|
# uptime - SOAP::SOAPLong
|
835
|
-
# memory - Virtuozzo::SOAP::
|
836
|
-
# swap - Virtuozzo::SOAP::
|
835
|
+
# memory - Virtuozzo::SOAP::Types::Envm::Sys_infoType::Memory
|
836
|
+
# swap - Virtuozzo::SOAP::Types::Envm::Sys_infoType::Swap
|
837
837
|
class Sys_infoType
|
838
838
|
|
839
839
|
# inner class for member: memory
|
@@ -886,7 +886,7 @@ class Sys_infoType
|
|
886
886
|
end
|
887
887
|
|
888
888
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ps_infoType
|
889
|
-
# process - Virtuozzo::SOAP::
|
889
|
+
# process - Virtuozzo::SOAP::Types::Envm::Ps_infoType::C_Process
|
890
890
|
# param_id - SOAP::SOAPString
|
891
891
|
# run - SOAP::SOAPInt
|
892
892
|
# idle - SOAP::SOAPInt
|
@@ -935,9 +935,9 @@ class Ps_infoType
|
|
935
935
|
end
|
936
936
|
|
937
937
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}load_avg_statsType
|
938
|
-
# l1 - Virtuozzo::SOAP::
|
939
|
-
# l2 - Virtuozzo::SOAP::
|
940
|
-
# l3 - Virtuozzo::SOAP::
|
938
|
+
# l1 - Virtuozzo::SOAP::Types::Envm::Load_avg_statsType::L1
|
939
|
+
# l2 - Virtuozzo::SOAP::Types::Envm::Load_avg_statsType::L2
|
940
|
+
# l3 - Virtuozzo::SOAP::Types::Envm::Load_avg_statsType::L3
|
941
941
|
class Load_avg_statsType
|
942
942
|
|
943
943
|
# inner class for member: l1
|
@@ -1013,7 +1013,7 @@ end
|
|
1013
1013
|
|
1014
1014
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}env_resourceType
|
1015
1015
|
# eid - (any)
|
1016
|
-
# ip_pool - Virtuozzo::SOAP::
|
1016
|
+
# ip_pool - Virtuozzo::SOAP::Types::Envm::Ip_poolType
|
1017
1017
|
class Env_resourceType
|
1018
1018
|
attr_accessor :eid
|
1019
1019
|
attr_accessor :ip_pool
|
@@ -1025,7 +1025,7 @@ class Env_resourceType
|
|
1025
1025
|
end
|
1026
1026
|
|
1027
1027
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}ip_poolType
|
1028
|
-
# ip_range - Virtuozzo::SOAP::
|
1028
|
+
# ip_range - Virtuozzo::SOAP::Types::Envm::Ip_poolType::Ip_range
|
1029
1029
|
# ip - (any)
|
1030
1030
|
class Ip_poolType
|
1031
1031
|
|
@@ -1072,7 +1072,7 @@ end
|
|
1072
1072
|
# id - SOAP::SOAPString
|
1073
1073
|
# policy - SOAP::SOAPInt
|
1074
1074
|
# description - SOAP::SOAPBase64
|
1075
|
-
# cred - Virtuozzo::SOAP::
|
1075
|
+
# cred - Virtuozzo::SOAP::Types::Envm::CredentialType
|
1076
1076
|
class CredentialType
|
1077
1077
|
attr_accessor :id
|
1078
1078
|
attr_accessor :policy
|
@@ -1091,8 +1091,8 @@ end
|
|
1091
1091
|
# id - SOAP::SOAPString
|
1092
1092
|
# policy - SOAP::SOAPInt
|
1093
1093
|
# description - SOAP::SOAPBase64
|
1094
|
-
# cred - Virtuozzo::SOAP::
|
1095
|
-
# objects - Virtuozzo::SOAP::
|
1094
|
+
# cred - Virtuozzo::SOAP::Types::Envm::CredentialType
|
1095
|
+
# objects - Virtuozzo::SOAP::Types::Envm::Root_credentialType::Objects
|
1096
1096
|
class Root_credentialType < CredentialType
|
1097
1097
|
|
1098
1098
|
# inner class for member: objects
|
@@ -1117,10 +1117,10 @@ end
|
|
1117
1117
|
|
1118
1118
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}tokenType
|
1119
1119
|
# user - (any)
|
1120
|
-
# groups - Virtuozzo::SOAP::
|
1121
|
-
# deny_only_sids - Virtuozzo::SOAP::
|
1122
|
-
# privileges - Virtuozzo::SOAP::
|
1123
|
-
# source - Virtuozzo::SOAP::
|
1120
|
+
# groups - Virtuozzo::SOAP::Types::Envm::TokenType::Groups
|
1121
|
+
# deny_only_sids - Virtuozzo::SOAP::Types::Envm::TokenType::Deny_only_sids
|
1122
|
+
# privileges - Virtuozzo::SOAP::Types::Envm::TokenType::Privileges
|
1123
|
+
# source - Virtuozzo::SOAP::Types::Envm::TokenType::Source
|
1124
1124
|
class TokenType
|
1125
1125
|
|
1126
1126
|
# inner class for member: groups
|
@@ -1187,7 +1187,7 @@ end
|
|
1187
1187
|
# protocol - SOAP::SOAPString
|
1188
1188
|
# address - SOAP::SOAPString
|
1189
1189
|
# port - SOAP::SOAPUnsignedInt
|
1190
|
-
# login - Virtuozzo::SOAP::
|
1190
|
+
# login - Virtuozzo::SOAP::Types::Envm::Auth_nameType
|
1191
1191
|
# password - SOAP::SOAPBase64
|
1192
1192
|
class Connection_infoType < Connectivity_infoType
|
1193
1193
|
attr_accessor :protocol
|
@@ -1272,9 +1272,9 @@ end
|
|
1272
1272
|
|
1273
1273
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}vt_settingsType
|
1274
1274
|
# default_sample_id - (any)
|
1275
|
-
# parameter - Virtuozzo::SOAP::
|
1276
|
-
# service - Virtuozzo::SOAP::
|
1277
|
-
# qos - Virtuozzo::SOAP::
|
1275
|
+
# parameter - Virtuozzo::SOAP::Types::Envm::Vt_settingsType_::Parameter
|
1276
|
+
# service - Virtuozzo::SOAP::Types::Envm::Redirect_serviceType
|
1277
|
+
# qos - Virtuozzo::SOAP::Types::Envm::QosType
|
1278
1278
|
class Vt_settingsType_ < Vt_settingsType
|
1279
1279
|
|
1280
1280
|
# inner class for member: parameter
|
@@ -1305,8 +1305,8 @@ class Vt_settingsType_ < Vt_settingsType
|
|
1305
1305
|
end
|
1306
1306
|
|
1307
1307
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}groupType
|
1308
|
-
# user - Virtuozzo::SOAP::
|
1309
|
-
# member_group - Virtuozzo::SOAP::
|
1308
|
+
# user - Virtuozzo::SOAP::Types::Envm::GroupType::User
|
1309
|
+
# member_group - Virtuozzo::SOAP::Types::Envm::GroupType::Member_group
|
1310
1310
|
# name - SOAP::SOAPString
|
1311
1311
|
# gid - SOAP::SOAPInt
|
1312
1312
|
class GroupType
|
@@ -1324,8 +1324,8 @@ class GroupType
|
|
1324
1324
|
end
|
1325
1325
|
|
1326
1326
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}userType
|
1327
|
-
# initial_group - Virtuozzo::SOAP::
|
1328
|
-
# group - Virtuozzo::SOAP::
|
1327
|
+
# initial_group - Virtuozzo::SOAP::Types::Envm::UserType::Initial_group
|
1328
|
+
# group - Virtuozzo::SOAP::Types::Envm::UserType::Group
|
1329
1329
|
# uid - SOAP::SOAPInt
|
1330
1330
|
# shell - SOAP::SOAPString
|
1331
1331
|
# password - SOAP::SOAPBase64
|
@@ -1410,7 +1410,7 @@ end
|
|
1410
1410
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}packageType
|
1411
1411
|
# name - SOAP::SOAPString
|
1412
1412
|
# summary - SOAP::SOAPString
|
1413
|
-
# os - Virtuozzo::SOAP::
|
1413
|
+
# os - Virtuozzo::SOAP::Types::Envm::OsType
|
1414
1414
|
# description - SOAP::SOAPString
|
1415
1415
|
# arch - SOAP::SOAPString
|
1416
1416
|
# version - SOAP::SOAPString
|
@@ -1435,7 +1435,7 @@ end
|
|
1435
1435
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}package_vztemplateType
|
1436
1436
|
# name - SOAP::SOAPString
|
1437
1437
|
# summary - SOAP::SOAPString
|
1438
|
-
# os - Virtuozzo::SOAP::
|
1438
|
+
# os - Virtuozzo::SOAP::Types::Envm::OsType
|
1439
1439
|
# description - SOAP::SOAPString
|
1440
1440
|
# arch - SOAP::SOAPString
|
1441
1441
|
# version - SOAP::SOAPString
|
@@ -1475,7 +1475,7 @@ end
|
|
1475
1475
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}package_std_vztemplateType
|
1476
1476
|
# name - SOAP::SOAPString
|
1477
1477
|
# summary - SOAP::SOAPString
|
1478
|
-
# os - Virtuozzo::SOAP::
|
1478
|
+
# os - Virtuozzo::SOAP::Types::Envm::OsType
|
1479
1479
|
# description - SOAP::SOAPString
|
1480
1480
|
# arch - SOAP::SOAPString
|
1481
1481
|
# version - SOAP::SOAPString
|
@@ -1587,13 +1587,13 @@ end
|
|
1587
1587
|
# sid - (any)
|
1588
1588
|
# count - SOAP::SOAPInt
|
1589
1589
|
# id - (any)
|
1590
|
-
# info - Virtuozzo::SOAP::
|
1591
|
-
# data - Virtuozzo::SOAP::
|
1590
|
+
# info - Virtuozzo::SOAP::Types::Envm::InfoType
|
1591
|
+
# data - Virtuozzo::SOAP::Types::Envm::EventType::C_Data
|
1592
1592
|
class EventType
|
1593
1593
|
|
1594
1594
|
# inner class for member: data
|
1595
1595
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}data
|
1596
|
-
# event_data - Virtuozzo::SOAP::
|
1596
|
+
# event_data - Virtuozzo::SOAP::Types::Envm::Event_dataType
|
1597
1597
|
class C_Data
|
1598
1598
|
attr_accessor :event_data
|
1599
1599
|
|
@@ -1628,7 +1628,7 @@ end
|
|
1628
1628
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}infoType
|
1629
1629
|
# message - SOAP::SOAPBase64
|
1630
1630
|
# translate - (any)
|
1631
|
-
# parameter - Virtuozzo::SOAP::
|
1631
|
+
# parameter - Virtuozzo::SOAP::Types::Envm::InfoType
|
1632
1632
|
# name - SOAP::SOAPString
|
1633
1633
|
class InfoType
|
1634
1634
|
attr_accessor :message
|
@@ -1663,7 +1663,7 @@ end
|
|
1663
1663
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}security_descriptorType
|
1664
1664
|
# owner - (any)
|
1665
1665
|
# group - (any)
|
1666
|
-
# dacl - Virtuozzo::SOAP::
|
1666
|
+
# dacl - Virtuozzo::SOAP::Types::Envm::Security_descriptorType::Dacl
|
1667
1667
|
class Security_descriptorType
|
1668
1668
|
|
1669
1669
|
# inner class for member: dacl
|
@@ -1711,10 +1711,10 @@ end
|
|
1711
1711
|
|
1712
1712
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_deviceType
|
1713
1713
|
# id - SOAP::SOAPString
|
1714
|
-
# ip_address - Virtuozzo::SOAP::
|
1714
|
+
# ip_address - Virtuozzo::SOAP::Types::Envm::Ip_addressType
|
1715
1715
|
# dhcp - (any)
|
1716
1716
|
# network_id - SOAP::SOAPBase64
|
1717
|
-
# status - Virtuozzo::SOAP::
|
1717
|
+
# status - Virtuozzo::SOAP::Types::Envm::Net_deviceType::Status
|
1718
1718
|
class Net_deviceType
|
1719
1719
|
|
1720
1720
|
# inner class for member: status
|
@@ -1748,10 +1748,10 @@ end
|
|
1748
1748
|
|
1749
1749
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}net_nicType
|
1750
1750
|
# id - SOAP::SOAPString
|
1751
|
-
# ip_address - Virtuozzo::SOAP::
|
1751
|
+
# ip_address - Virtuozzo::SOAP::Types::Envm::Ip_addressType
|
1752
1752
|
# dhcp - (any)
|
1753
1753
|
# network_id - SOAP::SOAPBase64
|
1754
|
-
# status - Virtuozzo::SOAP::
|
1754
|
+
# status - Virtuozzo::SOAP::Types::Envm::Net_nicType::Status
|
1755
1755
|
# mac_address - SOAP::SOAPString
|
1756
1756
|
class Net_nicType < Net_deviceType
|
1757
1757
|
|
@@ -1788,10 +1788,10 @@ end
|
|
1788
1788
|
|
1789
1789
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzatypes}net_vethType
|
1790
1790
|
# id - SOAP::SOAPString
|
1791
|
-
# ip_address - Virtuozzo::SOAP::
|
1791
|
+
# ip_address - Virtuozzo::SOAP::Types::Envm::Ip_addressType
|
1792
1792
|
# dhcp - (any)
|
1793
1793
|
# network_id - SOAP::SOAPBase64
|
1794
|
-
# status - Virtuozzo::SOAP::
|
1794
|
+
# status - Virtuozzo::SOAP::Types::Envm::Net_vethType::Status
|
1795
1795
|
# mac_address - SOAP::SOAPString
|
1796
1796
|
# wins_server - SOAP::SOAPString
|
1797
1797
|
# nameserver - SOAP::SOAPString
|
@@ -1883,8 +1883,8 @@ end
|
|
1883
1883
|
|
1884
1884
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}vocabularyType
|
1885
1885
|
# name - SOAP::SOAPString
|
1886
|
-
# parameter - Virtuozzo::SOAP::
|
1887
|
-
# category - Virtuozzo::SOAP::
|
1886
|
+
# parameter - Virtuozzo::SOAP::Types::Envm::Voc_parameterType
|
1887
|
+
# category - Virtuozzo::SOAP::Types::Envm::Voc_parameterType
|
1888
1888
|
class VocabularyType
|
1889
1889
|
attr_accessor :name
|
1890
1890
|
attr_accessor :parameter
|
@@ -1918,26 +1918,26 @@ end
|
|
1918
1918
|
|
1919
1919
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}perf_dataType
|
1920
1920
|
# eid - (any)
|
1921
|
-
# m_class - Virtuozzo::SOAP::
|
1922
|
-
# interval - Virtuozzo::SOAP::
|
1921
|
+
# m_class - Virtuozzo::SOAP::Types::Envm::Perf_dataType::C_Class
|
1922
|
+
# interval - Virtuozzo::SOAP::Types::Envm::IntervalType
|
1923
1923
|
class Perf_dataType
|
1924
1924
|
|
1925
1925
|
# inner class for member: class
|
1926
1926
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}class
|
1927
1927
|
# name - SOAP::SOAPString
|
1928
|
-
# instance - Virtuozzo::SOAP::
|
1928
|
+
# instance - Virtuozzo::SOAP::Types::Envm::Perf_dataType::C_Class::Instance
|
1929
1929
|
class C_Class
|
1930
1930
|
|
1931
1931
|
# inner class for member: instance
|
1932
1932
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}instance
|
1933
1933
|
# name - SOAP::SOAPString
|
1934
|
-
# counter - Virtuozzo::SOAP::
|
1934
|
+
# counter - Virtuozzo::SOAP::Types::Envm::Perf_dataType::C_Class::Instance::Counter
|
1935
1935
|
class Instance
|
1936
1936
|
|
1937
1937
|
# inner class for member: counter
|
1938
1938
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/types}counter
|
1939
1939
|
# name - SOAP::SOAPString
|
1940
|
-
# value - Virtuozzo::SOAP::
|
1940
|
+
# value - Virtuozzo::SOAP::Types::Envm::Perf_statType
|
1941
1941
|
class Counter
|
1942
1942
|
attr_accessor :name
|
1943
1943
|
attr_accessor :value
|
@@ -2007,12 +2007,12 @@ class Log_optionsType_ < Log_options_baseType
|
|
2007
2007
|
end
|
2008
2008
|
|
2009
2009
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}packet_headerType
|
2010
|
-
# auth - Virtuozzo::SOAP::
|
2010
|
+
# auth - Virtuozzo::SOAP::Types::Envm::AuthType
|
2011
2011
|
# cookie - SOAP::SOAPString
|
2012
2012
|
# target - SOAP::SOAPString
|
2013
2013
|
# origin - SOAP::SOAPString
|
2014
|
-
# src - Virtuozzo::SOAP::
|
2015
|
-
# dst - Virtuozzo::SOAP::
|
2014
|
+
# src - Virtuozzo::SOAP::Types::Envm::RouteType
|
2015
|
+
# dst - Virtuozzo::SOAP::Types::Envm::RouteType
|
2016
2016
|
# session - SOAP::SOAPString
|
2017
2017
|
# xmlattr_version - SOAP::SOAPString
|
2018
2018
|
# xmlattr_id - SOAP::SOAPString
|
@@ -2141,7 +2141,7 @@ class Packet_headerType
|
|
2141
2141
|
end
|
2142
2142
|
|
2143
2143
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operatorType
|
2144
|
-
# configuration - Virtuozzo::SOAP::
|
2144
|
+
# configuration - Virtuozzo::SOAP::Types::Envm::ConfigurationType
|
2145
2145
|
class OperatorType
|
2146
2146
|
attr_accessor :configuration
|
2147
2147
|
|
@@ -2151,9 +2151,9 @@ class OperatorType
|
|
2151
2151
|
end
|
2152
2152
|
|
2153
2153
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operator_functionalType
|
2154
|
-
# configuration - Virtuozzo::SOAP::
|
2155
|
-
# ok - Virtuozzo::SOAP::
|
2156
|
-
# error - Virtuozzo::SOAP::
|
2154
|
+
# configuration - Virtuozzo::SOAP::Types::Envm::ConfigurationType
|
2155
|
+
# ok - Virtuozzo::SOAP::Types::Envm::Operator_functionalType::Ok
|
2156
|
+
# error - Virtuozzo::SOAP::Types::Envm::Operator_functionalType::Error
|
2157
2157
|
class Operator_functionalType < OperatorType
|
2158
2158
|
|
2159
2159
|
# inner class for member: ok
|
@@ -2189,12 +2189,12 @@ class Operator_functionalType < OperatorType
|
|
2189
2189
|
end
|
2190
2190
|
|
2191
2191
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}operator_periodicType
|
2192
|
-
# configuration - Virtuozzo::SOAP::
|
2193
|
-
# ok - Virtuozzo::SOAP::
|
2194
|
-
# error - Virtuozzo::SOAP::
|
2195
|
-
# start_monitor - Virtuozzo::SOAP::
|
2196
|
-
# stop_monitor - Virtuozzo::SOAP::
|
2197
|
-
# set_period - Virtuozzo::SOAP::
|
2192
|
+
# configuration - Virtuozzo::SOAP::Types::Envm::ConfigurationType
|
2193
|
+
# ok - Virtuozzo::SOAP::Types::Envm::Operator_periodicType::Ok
|
2194
|
+
# error - Virtuozzo::SOAP::Types::Envm::Operator_periodicType::Error
|
2195
|
+
# start_monitor - Virtuozzo::SOAP::Types::Envm::Start_monitorType
|
2196
|
+
# stop_monitor - Virtuozzo::SOAP::Types::Envm::Stop_monitorType
|
2197
|
+
# set_period - Virtuozzo::SOAP::Types::Envm::Set_periodType
|
2198
2198
|
# report - (any)
|
2199
2199
|
class Operator_periodicType < Operator_functionalType
|
2200
2200
|
|
@@ -2239,37 +2239,37 @@ class Operator_periodicType < Operator_functionalType
|
|
2239
2239
|
end
|
2240
2240
|
|
2241
2241
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}envmType
|
2242
|
-
# configuration - Virtuozzo::SOAP::
|
2243
|
-
# ok - Virtuozzo::SOAP::
|
2244
|
-
# error - Virtuozzo::SOAP::
|
2245
|
-
# create - Virtuozzo::SOAP::
|
2246
|
-
# repair - Virtuozzo::SOAP::
|
2247
|
-
# stop_repair - Virtuozzo::SOAP::
|
2248
|
-
# start - Virtuozzo::SOAP::
|
2249
|
-
# stop - Virtuozzo::SOAP::
|
2250
|
-
# restart - Virtuozzo::SOAP::
|
2251
|
-
# destroy - Virtuozzo::SOAP::
|
2252
|
-
# suspend - Virtuozzo::SOAP::
|
2253
|
-
# resume - Virtuozzo::SOAP::
|
2254
|
-
# get_info - Virtuozzo::SOAP::
|
2255
|
-
# get_list - Virtuozzo::SOAP::
|
2256
|
-
# set - Virtuozzo::SOAP::
|
2257
|
-
# put_private - Virtuozzo::SOAP::
|
2258
|
-
# get_private - Virtuozzo::SOAP::
|
2259
|
-
# get_vt_settings - Virtuozzo::SOAP::
|
2260
|
-
# set_vt_settings - Virtuozzo::SOAP::
|
2261
|
-
# get_vt_info - Virtuozzo::SOAP::
|
2262
|
-
# get_log - Virtuozzo::SOAP::
|
2263
|
-
# get_native_config - Virtuozzo::SOAP::
|
2264
|
-
# get_virtual_config - Virtuozzo::SOAP::
|
2265
|
-
# env - Virtuozzo::SOAP::
|
2242
|
+
# configuration - Virtuozzo::SOAP::Types::Envm::ConfigurationType
|
2243
|
+
# ok - Virtuozzo::SOAP::Types::Envm::EnvmType::Ok
|
2244
|
+
# error - Virtuozzo::SOAP::Types::Envm::EnvmType::Error
|
2245
|
+
# create - Virtuozzo::SOAP::Types::Envm::Create
|
2246
|
+
# repair - Virtuozzo::SOAP::Types::Envm::Repair
|
2247
|
+
# stop_repair - Virtuozzo::SOAP::Types::Envm::Stop_repair
|
2248
|
+
# start - Virtuozzo::SOAP::Types::Envm::Start
|
2249
|
+
# stop - Virtuozzo::SOAP::Types::Envm::Stop
|
2250
|
+
# restart - Virtuozzo::SOAP::Types::Envm::Restart
|
2251
|
+
# destroy - Virtuozzo::SOAP::Types::Envm::Destroy
|
2252
|
+
# suspend - Virtuozzo::SOAP::Types::Envm::Suspend
|
2253
|
+
# resume - Virtuozzo::SOAP::Types::Envm::Resume
|
2254
|
+
# get_info - Virtuozzo::SOAP::Types::Envm::Get_info
|
2255
|
+
# get_list - Virtuozzo::SOAP::Types::Envm::Get_list
|
2256
|
+
# set - Virtuozzo::SOAP::Types::Envm::Set
|
2257
|
+
# put_private - Virtuozzo::SOAP::Types::Envm::Put_private
|
2258
|
+
# get_private - Virtuozzo::SOAP::Types::Envm::Get_private
|
2259
|
+
# get_vt_settings - Virtuozzo::SOAP::Types::Envm::Get_vt_settings
|
2260
|
+
# set_vt_settings - Virtuozzo::SOAP::Types::Envm::Set_vt_settings
|
2261
|
+
# get_vt_info - Virtuozzo::SOAP::Types::Envm::Get_vt_info
|
2262
|
+
# get_log - Virtuozzo::SOAP::Types::Envm::Get_log
|
2263
|
+
# get_native_config - Virtuozzo::SOAP::Types::Envm::Get_native_config
|
2264
|
+
# get_virtual_config - Virtuozzo::SOAP::Types::Envm::Get_virtual_config
|
2265
|
+
# env - Virtuozzo::SOAP::Types::Envm::EnvType
|
2266
2266
|
# eid - (any)
|
2267
2267
|
# value - SOAP::SOAPBase64
|
2268
|
-
# vt_settings - Virtuozzo::SOAP::
|
2269
|
-
# vt_info - Virtuozzo::SOAP::
|
2270
|
-
# env_config - Virtuozzo::SOAP::
|
2271
|
-
# virtual_config - Virtuozzo::SOAP::
|
2272
|
-
# native_config - Virtuozzo::SOAP::
|
2268
|
+
# vt_settings - Virtuozzo::SOAP::Types::Envm::Vt_settingsType
|
2269
|
+
# vt_info - Virtuozzo::SOAP::Types::Envm::Vt_infoType
|
2270
|
+
# env_config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
2271
|
+
# virtual_config - Virtuozzo::SOAP::Types::Envm::Venv_configType
|
2272
|
+
# native_config - Virtuozzo::SOAP::Types::Envm::Native_configType
|
2273
2273
|
# log - SOAP::SOAPBase64
|
2274
2274
|
class EnvmType < Operator_functionalType
|
2275
2275
|
|
@@ -2364,56 +2364,56 @@ class EnvmType < Operator_functionalType
|
|
2364
2364
|
end
|
2365
2365
|
|
2366
2366
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}vzaenvmType
|
2367
|
-
# configuration - Virtuozzo::SOAP::
|
2368
|
-
# ok - Virtuozzo::SOAP::
|
2369
|
-
# error - Virtuozzo::SOAP::
|
2370
|
-
# create - Virtuozzo::SOAP::
|
2371
|
-
# repair - Virtuozzo::SOAP::
|
2372
|
-
# stop_repair - Virtuozzo::SOAP::
|
2373
|
-
# start - Virtuozzo::SOAP::
|
2374
|
-
# stop - Virtuozzo::SOAP::
|
2375
|
-
# restart - Virtuozzo::SOAP::
|
2376
|
-
# destroy - Virtuozzo::SOAP::
|
2377
|
-
# suspend - Virtuozzo::SOAP::
|
2378
|
-
# resume - Virtuozzo::SOAP::
|
2379
|
-
# get_info - Virtuozzo::SOAP::
|
2380
|
-
# get_list - Virtuozzo::SOAP::
|
2381
|
-
# set - Virtuozzo::SOAP::
|
2382
|
-
# put_private - Virtuozzo::SOAP::
|
2383
|
-
# get_private - Virtuozzo::SOAP::
|
2384
|
-
# get_vt_settings - Virtuozzo::SOAP::
|
2385
|
-
# set_vt_settings - Virtuozzo::SOAP::
|
2386
|
-
# get_vt_info - Virtuozzo::SOAP::
|
2387
|
-
# get_log - Virtuozzo::SOAP::
|
2388
|
-
# get_native_config - Virtuozzo::SOAP::
|
2389
|
-
# get_virtual_config - Virtuozzo::SOAP::
|
2390
|
-
# env - Virtuozzo::SOAP::
|
2367
|
+
# configuration - Virtuozzo::SOAP::Types::Envm::ConfigurationType
|
2368
|
+
# ok - Virtuozzo::SOAP::Types::Envm::VzaenvmType::Ok
|
2369
|
+
# error - Virtuozzo::SOAP::Types::Envm::VzaenvmType::Error
|
2370
|
+
# create - Virtuozzo::SOAP::Types::Envm::Create
|
2371
|
+
# repair - Virtuozzo::SOAP::Types::Envm::Repair
|
2372
|
+
# stop_repair - Virtuozzo::SOAP::Types::Envm::Stop_repair
|
2373
|
+
# start - Virtuozzo::SOAP::Types::Envm::Start
|
2374
|
+
# stop - Virtuozzo::SOAP::Types::Envm::Stop
|
2375
|
+
# restart - Virtuozzo::SOAP::Types::Envm::Restart
|
2376
|
+
# destroy - Virtuozzo::SOAP::Types::Envm::Destroy
|
2377
|
+
# suspend - Virtuozzo::SOAP::Types::Envm::Suspend
|
2378
|
+
# resume - Virtuozzo::SOAP::Types::Envm::Resume
|
2379
|
+
# get_info - Virtuozzo::SOAP::Types::Envm::Get_info
|
2380
|
+
# get_list - Virtuozzo::SOAP::Types::Envm::Get_list
|
2381
|
+
# set - Virtuozzo::SOAP::Types::Envm::Set
|
2382
|
+
# put_private - Virtuozzo::SOAP::Types::Envm::Put_private
|
2383
|
+
# get_private - Virtuozzo::SOAP::Types::Envm::Get_private
|
2384
|
+
# get_vt_settings - Virtuozzo::SOAP::Types::Envm::Get_vt_settings
|
2385
|
+
# set_vt_settings - Virtuozzo::SOAP::Types::Envm::Set_vt_settings
|
2386
|
+
# get_vt_info - Virtuozzo::SOAP::Types::Envm::Get_vt_info
|
2387
|
+
# get_log - Virtuozzo::SOAP::Types::Envm::Get_log
|
2388
|
+
# get_native_config - Virtuozzo::SOAP::Types::Envm::Get_native_config
|
2389
|
+
# get_virtual_config - Virtuozzo::SOAP::Types::Envm::Get_virtual_config
|
2390
|
+
# env - Virtuozzo::SOAP::Types::Envm::EnvType
|
2391
2391
|
# eid - (any)
|
2392
2392
|
# value - SOAP::SOAPBase64
|
2393
|
-
# vt_settings - Virtuozzo::SOAP::
|
2394
|
-
# vt_info - Virtuozzo::SOAP::
|
2395
|
-
# env_config - Virtuozzo::SOAP::
|
2396
|
-
# virtual_config - Virtuozzo::SOAP::
|
2397
|
-
# native_config - Virtuozzo::SOAP::
|
2393
|
+
# vt_settings - Virtuozzo::SOAP::Types::Envm::Vt_settingsType
|
2394
|
+
# vt_info - Virtuozzo::SOAP::Types::Envm::Vt_infoType
|
2395
|
+
# env_config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
2396
|
+
# virtual_config - Virtuozzo::SOAP::Types::Envm::Venv_configType
|
2397
|
+
# native_config - Virtuozzo::SOAP::Types::Envm::Native_configType
|
2398
2398
|
# log - SOAP::SOAPBase64
|
2399
|
-
# mount - Virtuozzo::SOAP::
|
2400
|
-
# umount - Virtuozzo::SOAP::
|
2401
|
-
# set_user_password - Virtuozzo::SOAP::
|
2402
|
-
# upgrade - Virtuozzo::SOAP::
|
2403
|
-
# determine_env - Virtuozzo::SOAP::
|
2404
|
-
# set_ugid_quota - Virtuozzo::SOAP::
|
2405
|
-
# get_ugid_quota - Virtuozzo::SOAP::
|
2406
|
-
# get_split_conf - Virtuozzo::SOAP::
|
2407
|
-
# validate - Virtuozzo::SOAP::
|
2408
|
-
# get_script - Virtuozzo::SOAP::
|
2409
|
-
# set_script - Virtuozzo::SOAP::
|
2410
|
-
# del_script - Virtuozzo::SOAP::
|
2411
|
-
# recover_template - Virtuozzo::SOAP::
|
2399
|
+
# mount - Virtuozzo::SOAP::Types::Envm::Mount
|
2400
|
+
# umount - Virtuozzo::SOAP::Types::Envm::Umount
|
2401
|
+
# set_user_password - Virtuozzo::SOAP::Types::Envm::Set_user_password
|
2402
|
+
# upgrade - Virtuozzo::SOAP::Types::Envm::Upgrade
|
2403
|
+
# determine_env - Virtuozzo::SOAP::Types::Envm::Determine_env
|
2404
|
+
# set_ugid_quota - Virtuozzo::SOAP::Types::Envm::Set_ugid_quota
|
2405
|
+
# get_ugid_quota - Virtuozzo::SOAP::Types::Envm::Get_ugid_quota
|
2406
|
+
# get_split_conf - Virtuozzo::SOAP::Types::Envm::Get_split_conf
|
2407
|
+
# validate - Virtuozzo::SOAP::Types::Envm::Validate
|
2408
|
+
# get_script - Virtuozzo::SOAP::Types::Envm::Get_script
|
2409
|
+
# set_script - Virtuozzo::SOAP::Types::Envm::Set_script
|
2410
|
+
# del_script - Virtuozzo::SOAP::Types::Envm::Del_script
|
2411
|
+
# recover_template - Virtuozzo::SOAP::Types::Envm::Recover_template
|
2412
2412
|
# veid - (any)
|
2413
|
-
# ugid_quota - Virtuozzo::SOAP::
|
2414
|
-
# config - Virtuozzo::SOAP::
|
2415
|
-
# validation - Virtuozzo::SOAP::
|
2416
|
-
# script - Virtuozzo::SOAP::
|
2413
|
+
# ugid_quota - Virtuozzo::SOAP::Types::Envm::Ugid_quota_info
|
2414
|
+
# config - Virtuozzo::SOAP::Types::Envm::Venv_configType_
|
2415
|
+
# validation - Virtuozzo::SOAP::Types::Envm::ValidationType
|
2416
|
+
# script - Virtuozzo::SOAP::Types::Envm::Script
|
2417
2417
|
class VzaenvmType < EnvmType
|
2418
2418
|
|
2419
2419
|
# inner class for member: ok
|
@@ -2659,7 +2659,7 @@ class Periodic_configurationType < ConfigurationType
|
|
2659
2659
|
end
|
2660
2660
|
|
2661
2661
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}envm_configurationType
|
2662
|
-
# timeouts - Virtuozzo::SOAP::
|
2662
|
+
# timeouts - Virtuozzo::SOAP::Types::Envm::Envm_configurationType::Timeouts
|
2663
2663
|
class Envm_configurationType < ConfigurationType
|
2664
2664
|
|
2665
2665
|
# inner class for member: timeouts
|
@@ -2684,11 +2684,11 @@ class Envm_configurationType < ConfigurationType
|
|
2684
2684
|
end
|
2685
2685
|
|
2686
2686
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}vzaenvm_configurationType
|
2687
|
-
# timeouts - Virtuozzo::SOAP::
|
2687
|
+
# timeouts - Virtuozzo::SOAP::Types::Envm::Vzaenvm_configurationType::Timeouts
|
2688
2688
|
# start_veid - SOAP::SOAPInt
|
2689
2689
|
# end_veid - SOAP::SOAPInt
|
2690
2690
|
# sve_visible - SOAP::SOAPInt
|
2691
|
-
# timeouts - Virtuozzo::SOAP::
|
2691
|
+
# timeouts - Virtuozzo::SOAP::Types::Envm::Vzaenvm_configurationType::Timeouts_
|
2692
2692
|
class Vzaenvm_configurationType < Envm_configurationType
|
2693
2693
|
|
2694
2694
|
# inner class for member: timeouts
|
@@ -2835,7 +2835,7 @@ end
|
|
2835
2835
|
|
2836
2836
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}upgrade
|
2837
2837
|
# eid - (any)
|
2838
|
-
# options - Virtuozzo::SOAP::
|
2838
|
+
# options - Virtuozzo::SOAP::Types::Envm::Upgrade::Options
|
2839
2839
|
class Upgrade
|
2840
2840
|
|
2841
2841
|
# inner class for member: options
|
@@ -2875,7 +2875,7 @@ class Set_user_password
|
|
2875
2875
|
end
|
2876
2876
|
|
2877
2877
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}determine_env
|
2878
|
-
# link - Virtuozzo::SOAP::
|
2878
|
+
# link - Virtuozzo::SOAP::Types::Envm::Determine_env::Link
|
2879
2879
|
class Determine_env
|
2880
2880
|
|
2881
2881
|
# inner class for member: link
|
@@ -2907,7 +2907,7 @@ end
|
|
2907
2907
|
|
2908
2908
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}set_ugid_quota
|
2909
2909
|
# eid - (any)
|
2910
|
-
# ugid_quota - Virtuozzo::SOAP::
|
2910
|
+
# ugid_quota - Virtuozzo::SOAP::Types::Envm::Ugid_quota_info
|
2911
2911
|
class Set_ugid_quota
|
2912
2912
|
attr_accessor :eid
|
2913
2913
|
attr_accessor :ugid_quota
|
@@ -2945,7 +2945,7 @@ class Get_split_conf
|
|
2945
2945
|
end
|
2946
2946
|
|
2947
2947
|
# {http://www.swsoft.com/webservices/vza/4.0.0/vzaenvm}validate
|
2948
|
-
# config - Virtuozzo::SOAP::
|
2948
|
+
# config - Virtuozzo::SOAP::Types::Envm::Venv_configType_
|
2949
2949
|
class Validate
|
2950
2950
|
attr_accessor :config
|
2951
2951
|
|
@@ -3138,14 +3138,14 @@ class Ok < ::String
|
|
3138
3138
|
end
|
3139
3139
|
|
3140
3140
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/protocol}packet
|
3141
|
-
# auth - Virtuozzo::SOAP::
|
3141
|
+
# auth - Virtuozzo::SOAP::Types::Envm::AuthType
|
3142
3142
|
# cookie - SOAP::SOAPString
|
3143
3143
|
# target - SOAP::SOAPString
|
3144
3144
|
# origin - SOAP::SOAPString
|
3145
|
-
# src - Virtuozzo::SOAP::
|
3146
|
-
# dst - Virtuozzo::SOAP::
|
3145
|
+
# src - Virtuozzo::SOAP::Types::Envm::RouteType
|
3146
|
+
# dst - Virtuozzo::SOAP::Types::Envm::RouteType
|
3147
3147
|
# session - SOAP::SOAPString
|
3148
|
-
# data - Virtuozzo::SOAP::
|
3148
|
+
# data - Virtuozzo::SOAP::Types::Envm::Packet::C_Data
|
3149
3149
|
# xmlattr_version - SOAP::SOAPString
|
3150
3150
|
# xmlattr_id - SOAP::SOAPString
|
3151
3151
|
# xmlattr_priority - SOAP::SOAPString
|
@@ -3297,8 +3297,8 @@ end
|
|
3297
3297
|
|
3298
3298
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}create
|
3299
3299
|
# force - (any)
|
3300
|
-
# config - Virtuozzo::SOAP::
|
3301
|
-
# default - Virtuozzo::SOAP::
|
3300
|
+
# config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
3301
|
+
# default - Virtuozzo::SOAP::Types::Envm::Create::Default
|
3302
3302
|
class Create
|
3303
3303
|
|
3304
3304
|
# inner class for member: default
|
@@ -3402,8 +3402,8 @@ end
|
|
3402
3402
|
|
3403
3403
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_info
|
3404
3404
|
# eid - (any)
|
3405
|
-
# config - Virtuozzo::SOAP::
|
3406
|
-
# filter_config - Virtuozzo::SOAP::
|
3405
|
+
# config - Virtuozzo::SOAP::Types::Envm::Get_info::Config
|
3406
|
+
# filter_config - Virtuozzo::SOAP::Types::Envm::Get_info::Filter_config
|
3407
3407
|
class Get_info
|
3408
3408
|
|
3409
3409
|
# inner class for member: config
|
@@ -3441,7 +3441,7 @@ end
|
|
3441
3441
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_list
|
3442
3442
|
# count - SOAP::SOAPInt
|
3443
3443
|
# type - SOAP::SOAPString
|
3444
|
-
# status - Virtuozzo::SOAP::
|
3444
|
+
# status - Virtuozzo::SOAP::Types::Envm::Env_statusType
|
3445
3445
|
class Get_list
|
3446
3446
|
attr_accessor :count
|
3447
3447
|
attr_accessor :type
|
@@ -3456,10 +3456,10 @@ end
|
|
3456
3456
|
|
3457
3457
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}set
|
3458
3458
|
# eid - (any)
|
3459
|
-
# config - Virtuozzo::SOAP::
|
3460
|
-
# force - Virtuozzo::SOAP::
|
3461
|
-
# default - Virtuozzo::SOAP::
|
3462
|
-
# apply_config - Virtuozzo::SOAP::
|
3459
|
+
# config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
3460
|
+
# force - Virtuozzo::SOAP::Types::Envm::Set::Force
|
3461
|
+
# default - Virtuozzo::SOAP::Types::Envm::Set::Default
|
3462
|
+
# apply_config - Virtuozzo::SOAP::Types::Envm::Set::Apply_config
|
3463
3463
|
# set_mode - SOAP::SOAPString
|
3464
3464
|
class Set
|
3465
3465
|
|
@@ -3542,7 +3542,7 @@ class Get_private
|
|
3542
3542
|
end
|
3543
3543
|
|
3544
3544
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_native_config
|
3545
|
-
# virtual_config - Virtuozzo::SOAP::
|
3545
|
+
# virtual_config - Virtuozzo::SOAP::Types::Envm::Venv_configType
|
3546
3546
|
class Get_native_config
|
3547
3547
|
attr_accessor :virtual_config
|
3548
3548
|
|
@@ -3552,7 +3552,7 @@ class Get_native_config
|
|
3552
3552
|
end
|
3553
3553
|
|
3554
3554
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_virtual_config
|
3555
|
-
# native_config - Virtuozzo::SOAP::
|
3555
|
+
# native_config - Virtuozzo::SOAP::Types::Envm::Native_configType
|
3556
3556
|
class Get_virtual_config
|
3557
3557
|
attr_accessor :native_config
|
3558
3558
|
|
@@ -3568,7 +3568,7 @@ class Get_vt_settings
|
|
3568
3568
|
end
|
3569
3569
|
|
3570
3570
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}set_vt_settings
|
3571
|
-
# vt_settings - Virtuozzo::SOAP::
|
3571
|
+
# vt_settings - Virtuozzo::SOAP::Types::Envm::Vt_settingsType
|
3572
3572
|
class Set_vt_settings
|
3573
3573
|
attr_accessor :vt_settings
|
3574
3574
|
|
@@ -3585,7 +3585,7 @@ class Get_vt_info < ::String
|
|
3585
3585
|
end
|
3586
3586
|
|
3587
3587
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_native_configResponse
|
3588
|
-
# native_config - Virtuozzo::SOAP::
|
3588
|
+
# native_config - Virtuozzo::SOAP::Types::Envm::Native_configType
|
3589
3589
|
class Get_native_configResponse
|
3590
3590
|
attr_accessor :native_config
|
3591
3591
|
|
@@ -3595,7 +3595,7 @@ class Get_native_configResponse
|
|
3595
3595
|
end
|
3596
3596
|
|
3597
3597
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_virtual_configResponse
|
3598
|
-
# virtual_config - Virtuozzo::SOAP::
|
3598
|
+
# virtual_config - Virtuozzo::SOAP::Types::Envm::Venv_configType
|
3599
3599
|
class Get_virtual_configResponse
|
3600
3600
|
attr_accessor :virtual_config
|
3601
3601
|
|
@@ -3608,7 +3608,7 @@ end
|
|
3608
3608
|
# start_time - (any)
|
3609
3609
|
# end_time - (any)
|
3610
3610
|
# records - SOAP::SOAPInt
|
3611
|
-
# options - Virtuozzo::SOAP::
|
3611
|
+
# options - Virtuozzo::SOAP::Types::Envm::Log_optionsType
|
3612
3612
|
class Get_log
|
3613
3613
|
attr_accessor :start_time
|
3614
3614
|
attr_accessor :end_time
|
@@ -3624,7 +3624,7 @@ class Get_log
|
|
3624
3624
|
end
|
3625
3625
|
|
3626
3626
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}createResponse
|
3627
|
-
# env - Virtuozzo::SOAP::
|
3627
|
+
# env - Virtuozzo::SOAP::Types::Envm::EnvType
|
3628
3628
|
class CreateResponse
|
3629
3629
|
attr_accessor :env
|
3630
3630
|
|
@@ -3678,7 +3678,7 @@ class Get_listResponse < ::Array
|
|
3678
3678
|
end
|
3679
3679
|
|
3680
3680
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}setResponse
|
3681
|
-
# env_config - Virtuozzo::SOAP::
|
3681
|
+
# env_config - Virtuozzo::SOAP::Types::Envm::Env_configType
|
3682
3682
|
class SetResponse
|
3683
3683
|
attr_accessor :env_config
|
3684
3684
|
|
@@ -3704,7 +3704,7 @@ class Get_privateResponse
|
|
3704
3704
|
end
|
3705
3705
|
|
3706
3706
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_vt_settingsResponse
|
3707
|
-
# vt_settings - Virtuozzo::SOAP::
|
3707
|
+
# vt_settings - Virtuozzo::SOAP::Types::Envm::Vt_settingsType
|
3708
3708
|
class Get_vt_settingsResponse
|
3709
3709
|
attr_accessor :vt_settings
|
3710
3710
|
|
@@ -3720,7 +3720,7 @@ class Set_vt_settingsResponse
|
|
3720
3720
|
end
|
3721
3721
|
|
3722
3722
|
# {http://www.swsoft.com/webservices/vzl/4.0.0/envm}get_vt_infoResponse
|
3723
|
-
# vt_info - Virtuozzo::SOAP::
|
3723
|
+
# vt_info - Virtuozzo::SOAP::Types::Envm::Vt_infoType
|
3724
3724
|
class Get_vt_infoResponse
|
3725
3725
|
attr_accessor :vt_info
|
3726
3726
|
|