plainprograms-virtuozzo 0.2.0 → 0.4.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 +12 -1
- data/Rakefile +1 -1
- data/lib/virtuozzo/soap/drivers/{device_driver.rb → device.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{environment_driver.rb → environment.rb} +3 -3
- data/lib/virtuozzo/soap/drivers/{network_driver.rb → network.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{process_driver.rb → process.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{process_info_driver.rb → process_info.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{relocator_driver.rb → relocator.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{session_driver.rb → session.rb} +3 -3
- data/lib/virtuozzo/soap/drivers/{support_driver.rb → support.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{template_driver.rb → template.rb} +6 -6
- data/lib/virtuozzo/soap/drivers/{up2date_driver.rb → up2date.rb} +7 -6
- data/lib/virtuozzo/soap/mapping_registries/device.rb +643 -643
- data/lib/virtuozzo/soap/mapping_registries/environment.rb +870 -870
- data/lib/virtuozzo/soap/mapping_registries/network.rb +531 -531
- data/lib/virtuozzo/soap/mapping_registries/process.rb +525 -525
- data/lib/virtuozzo/soap/mapping_registries/process_info.rb +478 -478
- data/lib/virtuozzo/soap/mapping_registries/relocator.rb +629 -629
- data/lib/virtuozzo/soap/mapping_registries/session.rb +521 -521
- data/lib/virtuozzo/soap/mapping_registries/support.rb +515 -515
- data/lib/virtuozzo/soap/mapping_registries/template.rb +646 -646
- data/lib/virtuozzo/soap/mapping_registries/up2date.rb +517 -517
- data/lib/virtuozzo/soap/{drivers/device/types.rb → types/device.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/environment/types.rb → types/environment.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/network/types.rb → types/network.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/process/types.rb → types/process.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/process_info/types.rb → types/process_info.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/relocator/types.rb → types/relocator.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/session/types.rb → types/session.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/support/types.rb → types/support.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/template/types.rb → types/template.rb} +1 -1
- data/lib/virtuozzo/soap/{drivers/up2date/types.rb → types/up2date.rb} +1 -1
- data/lib/virtuozzo/soap.rb +103 -67
- data/virtuozzo.gemspec +4 -4
- metadata +43 -43
@@ -1,4 +1,4 @@
|
|
1
|
-
require 'virtuozzo/soap/
|
1
|
+
require 'virtuozzo/soap/types/process'
|
2
2
|
require 'soap/mapping'
|
3
3
|
|
4
4
|
module Virtuozzo # :nodoc:
|
@@ -18,21 +18,21 @@ module Virtuozzo # :nodoc:
|
|
18
18
|
NsXMLSchema = "http://www.w3.org/2001/XMLSchema"
|
19
19
|
|
20
20
|
EncodedRegistry.register(
|
21
|
-
:class => Virtuozzo::SOAP::
|
21
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType,
|
22
22
|
:schema_type => XSD::QName.new(NsVzaprocessm, "vzaprocessmType"),
|
23
23
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
24
24
|
:schema_element => [ :choice,
|
25
|
-
["configuration", ["Virtuozzo::SOAP::
|
26
|
-
["ok", ["Virtuozzo::SOAP::
|
27
|
-
["error", ["Virtuozzo::SOAP::
|
25
|
+
["configuration", ["Virtuozzo::SOAP::Types::Process::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
26
|
+
["ok", ["Virtuozzo::SOAP::Types::Process::VzaprocessmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
27
|
+
["error", ["Virtuozzo::SOAP::Types::Process::VzaprocessmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
28
28
|
[
|
29
|
-
["kill", "Virtuozzo::SOAP::
|
29
|
+
["kill", "Virtuozzo::SOAP::Types::Process::Kill[]", [0, 1]]
|
30
30
|
]
|
31
31
|
]
|
32
32
|
)
|
33
33
|
|
34
34
|
EncodedRegistry.register(
|
35
|
-
:class => Virtuozzo::SOAP::
|
35
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType::Ok,
|
36
36
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
37
37
|
:is_anonymous => true,
|
38
38
|
:schema_qualified => true,
|
@@ -40,7 +40,7 @@ module Virtuozzo # :nodoc:
|
|
40
40
|
)
|
41
41
|
|
42
42
|
EncodedRegistry.register(
|
43
|
-
:class => Virtuozzo::SOAP::
|
43
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType::Error,
|
44
44
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
45
45
|
:is_anonymous => true,
|
46
46
|
:schema_qualified => true,
|
@@ -51,15 +51,15 @@ module Virtuozzo # :nodoc:
|
|
51
51
|
)
|
52
52
|
|
53
53
|
EncodedRegistry.register(
|
54
|
-
:class => Virtuozzo::SOAP::
|
54
|
+
:class => Virtuozzo::SOAP::Types::Process::Packet_headerType,
|
55
55
|
:schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
|
56
56
|
:schema_element => [
|
57
|
-
["auth", "Virtuozzo::SOAP::
|
57
|
+
["auth", "Virtuozzo::SOAP::Types::Process::AuthType", [0, 1]],
|
58
58
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
59
59
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
60
60
|
["origin", "SOAP::SOAPString", [0, 1]],
|
61
|
-
["src", "Virtuozzo::SOAP::
|
62
|
-
["dst", "Virtuozzo::SOAP::
|
61
|
+
["src", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
62
|
+
["dst", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
63
63
|
["session", "SOAP::SOAPString", [0, 1]]
|
64
64
|
],
|
65
65
|
:schema_attribute => {
|
@@ -77,26 +77,26 @@ module Virtuozzo # :nodoc:
|
|
77
77
|
)
|
78
78
|
|
79
79
|
EncodedRegistry.register(
|
80
|
-
:class => Virtuozzo::SOAP::
|
80
|
+
:class => Virtuozzo::SOAP::Types::Process::OperatorType,
|
81
81
|
:schema_type => XSD::QName.new(NsProtocol, "operatorType"),
|
82
82
|
:schema_element => [ :choice,
|
83
|
-
["configuration", "Virtuozzo::SOAP::
|
83
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"]
|
84
84
|
]
|
85
85
|
)
|
86
86
|
|
87
87
|
EncodedRegistry.register(
|
88
|
-
:class => Virtuozzo::SOAP::
|
88
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType,
|
89
89
|
:schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
90
90
|
:schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
|
91
91
|
:schema_element => [ :choice,
|
92
|
-
["configuration", "Virtuozzo::SOAP::
|
93
|
-
["ok", "Virtuozzo::SOAP::
|
94
|
-
["error", "Virtuozzo::SOAP::
|
92
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"],
|
93
|
+
["ok", "Virtuozzo::SOAP::Types::Process::Operator_functionalType::Ok[]"],
|
94
|
+
["error", "Virtuozzo::SOAP::Types::Process::Operator_functionalType::Error[]"]
|
95
95
|
]
|
96
96
|
)
|
97
97
|
|
98
98
|
EncodedRegistry.register(
|
99
|
-
:class => Virtuozzo::SOAP::
|
99
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType::Ok,
|
100
100
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
101
101
|
:is_anonymous => true,
|
102
102
|
:schema_qualified => true,
|
@@ -104,7 +104,7 @@ module Virtuozzo # :nodoc:
|
|
104
104
|
)
|
105
105
|
|
106
106
|
EncodedRegistry.register(
|
107
|
-
:class => Virtuozzo::SOAP::
|
107
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType::Error,
|
108
108
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
109
109
|
:is_anonymous => true,
|
110
110
|
:schema_qualified => true,
|
@@ -115,24 +115,24 @@ module Virtuozzo # :nodoc:
|
|
115
115
|
)
|
116
116
|
|
117
117
|
EncodedRegistry.register(
|
118
|
-
:class => Virtuozzo::SOAP::
|
118
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType,
|
119
119
|
:schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
|
120
120
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
121
121
|
:schema_element => [ :choice,
|
122
|
-
["configuration", "Virtuozzo::SOAP::
|
123
|
-
["ok", "Virtuozzo::SOAP::
|
124
|
-
["error", "Virtuozzo::SOAP::
|
122
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"],
|
123
|
+
["ok", "Virtuozzo::SOAP::Types::Process::Operator_periodicType::Ok[]"],
|
124
|
+
["error", "Virtuozzo::SOAP::Types::Process::Operator_periodicType::Error[]"],
|
125
125
|
[ :choice,
|
126
|
-
["start_monitor", "Virtuozzo::SOAP::
|
127
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
128
|
-
["set_period", "Virtuozzo::SOAP::
|
126
|
+
["start_monitor", "Virtuozzo::SOAP::Types::Process::Start_monitorType"],
|
127
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::Process::Stop_monitorType"],
|
128
|
+
["set_period", "Virtuozzo::SOAP::Types::Process::Set_periodType", [0, 1]],
|
129
129
|
["report", nil, [0, 1]]
|
130
130
|
]
|
131
131
|
]
|
132
132
|
)
|
133
133
|
|
134
134
|
EncodedRegistry.register(
|
135
|
-
:class => Virtuozzo::SOAP::
|
135
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType::Ok,
|
136
136
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
137
137
|
:is_anonymous => true,
|
138
138
|
:schema_qualified => true,
|
@@ -140,7 +140,7 @@ module Virtuozzo # :nodoc:
|
|
140
140
|
)
|
141
141
|
|
142
142
|
EncodedRegistry.register(
|
143
|
-
:class => Virtuozzo::SOAP::
|
143
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType::Error,
|
144
144
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
145
145
|
:is_anonymous => true,
|
146
146
|
:schema_qualified => true,
|
@@ -151,7 +151,7 @@ module Virtuozzo # :nodoc:
|
|
151
151
|
)
|
152
152
|
|
153
153
|
EncodedRegistry.register(
|
154
|
-
:class => Virtuozzo::SOAP::
|
154
|
+
:class => Virtuozzo::SOAP::Types::Process::Set_periodType,
|
155
155
|
:schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
|
156
156
|
:schema_element => [
|
157
157
|
["collect", "SOAP::SOAPInt"],
|
@@ -161,7 +161,7 @@ module Virtuozzo # :nodoc:
|
|
161
161
|
)
|
162
162
|
|
163
163
|
EncodedRegistry.register(
|
164
|
-
:class => Virtuozzo::SOAP::
|
164
|
+
:class => Virtuozzo::SOAP::Types::Process::Start_monitorType,
|
165
165
|
:schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
|
166
166
|
:schema_element => [
|
167
167
|
["period", "SOAP::SOAPInt"],
|
@@ -170,7 +170,7 @@ module Virtuozzo # :nodoc:
|
|
170
170
|
)
|
171
171
|
|
172
172
|
EncodedRegistry.register(
|
173
|
-
:class => Virtuozzo::SOAP::
|
173
|
+
:class => Virtuozzo::SOAP::Types::Process::Stop_monitorType,
|
174
174
|
:schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
|
175
175
|
:schema_element => [
|
176
176
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -178,7 +178,7 @@ module Virtuozzo # :nodoc:
|
|
178
178
|
)
|
179
179
|
|
180
180
|
EncodedRegistry.register(
|
181
|
-
:class => Virtuozzo::SOAP::
|
181
|
+
:class => Virtuozzo::SOAP::Types::Process::AuthType,
|
182
182
|
:schema_type => XSD::QName.new(NsProtocol, "authType"),
|
183
183
|
:schema_element => [
|
184
184
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -186,7 +186,7 @@ module Virtuozzo # :nodoc:
|
|
186
186
|
)
|
187
187
|
|
188
188
|
EncodedRegistry.register(
|
189
|
-
:class => Virtuozzo::SOAP::
|
189
|
+
:class => Virtuozzo::SOAP::Types::Process::Event_configurationType,
|
190
190
|
:schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
|
191
191
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
192
192
|
:schema_element => [
|
@@ -195,7 +195,7 @@ module Virtuozzo # :nodoc:
|
|
195
195
|
)
|
196
196
|
|
197
197
|
EncodedRegistry.register(
|
198
|
-
:class => Virtuozzo::SOAP::
|
198
|
+
:class => Virtuozzo::SOAP::Types::Process::Periodic_configurationType,
|
199
199
|
:schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
|
200
200
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
201
201
|
:schema_element => [
|
@@ -207,7 +207,7 @@ module Virtuozzo # :nodoc:
|
|
207
207
|
)
|
208
208
|
|
209
209
|
EncodedRegistry.register(
|
210
|
-
:class => Virtuozzo::SOAP::
|
210
|
+
:class => Virtuozzo::SOAP::Types::Process::RouteType,
|
211
211
|
:schema_type => XSD::QName.new(NsProtocol, "routeType"),
|
212
212
|
:schema_element => [
|
213
213
|
["director", "SOAP::SOAPString", [0, 1]],
|
@@ -218,21 +218,21 @@ module Virtuozzo # :nodoc:
|
|
218
218
|
)
|
219
219
|
|
220
220
|
EncodedRegistry.register(
|
221
|
-
:class => Virtuozzo::SOAP::
|
221
|
+
:class => Virtuozzo::SOAP::Types::Process::DataType,
|
222
222
|
:schema_type => XSD::QName.new(NsProtocol, "dataType"),
|
223
223
|
:schema_element => [
|
224
|
-
["operator", "Virtuozzo::SOAP::
|
224
|
+
["operator", "Virtuozzo::SOAP::Types::Process::OperatorType[]"]
|
225
225
|
]
|
226
226
|
)
|
227
227
|
|
228
228
|
EncodedRegistry.register(
|
229
|
-
:class => Virtuozzo::SOAP::
|
229
|
+
:class => Virtuozzo::SOAP::Types::Process::ConfigurationType,
|
230
230
|
:schema_type => XSD::QName.new(NsProtocol, "configurationType"),
|
231
231
|
:schema_element => []
|
232
232
|
)
|
233
233
|
|
234
234
|
EncodedRegistry.register(
|
235
|
-
:class => Virtuozzo::SOAP::
|
235
|
+
:class => Virtuozzo::SOAP::Types::Process::OsType,
|
236
236
|
:schema_type => XSD::QName.new(NsTypes, "osType"),
|
237
237
|
:schema_element => [
|
238
238
|
["platform", "SOAP::SOAPString", [0, 1]],
|
@@ -243,7 +243,7 @@ module Virtuozzo # :nodoc:
|
|
243
243
|
)
|
244
244
|
|
245
245
|
EncodedRegistry.register(
|
246
|
-
:class => Virtuozzo::SOAP::
|
246
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_statusType,
|
247
247
|
:schema_type => XSD::QName.new(NsTypes, "env_statusType"),
|
248
248
|
:schema_element => [
|
249
249
|
["state", "SOAP::SOAPInt", [0, 1]],
|
@@ -252,7 +252,7 @@ module Virtuozzo # :nodoc:
|
|
252
252
|
)
|
253
253
|
|
254
254
|
EncodedRegistry.register(
|
255
|
-
:class => Virtuozzo::SOAP::
|
255
|
+
:class => Virtuozzo::SOAP::Types::Process::QosType,
|
256
256
|
:schema_type => XSD::QName.new(NsTypes, "qosType"),
|
257
257
|
:schema_element => [
|
258
258
|
["id", "SOAP::SOAPString"],
|
@@ -263,16 +263,16 @@ module Virtuozzo # :nodoc:
|
|
263
263
|
)
|
264
264
|
|
265
265
|
EncodedRegistry.register(
|
266
|
-
:class => Virtuozzo::SOAP::
|
266
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_configType,
|
267
267
|
:schema_type => XSD::QName.new(NsTypes, "env_configType"),
|
268
268
|
:schema_element => [
|
269
269
|
["name", "SOAP::SOAPString", [0, 1]],
|
270
270
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
271
271
|
["domain", "SOAP::SOAPString", [0, 1]],
|
272
272
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
273
|
-
["address", "Virtuozzo::SOAP::
|
273
|
+
["address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
274
274
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
275
|
-
["os", "Virtuozzo::SOAP::
|
275
|
+
["os", "Virtuozzo::SOAP::Types::Process::OsType", [0, 1]],
|
276
276
|
["type", "SOAP::SOAPString", [0, 1]],
|
277
277
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
278
278
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
@@ -283,7 +283,7 @@ module Virtuozzo # :nodoc:
|
|
283
283
|
)
|
284
284
|
|
285
285
|
EncodedRegistry.register(
|
286
|
-
:class => Virtuozzo::SOAP::
|
286
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType,
|
287
287
|
:schema_type => XSD::QName.new(NsTypes, "venv_configType"),
|
288
288
|
:schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
|
289
289
|
:schema_element => [
|
@@ -291,40 +291,40 @@ module Virtuozzo # :nodoc:
|
|
291
291
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
292
292
|
["domain", "SOAP::SOAPString", [0, 1]],
|
293
293
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
294
|
-
["address", "Virtuozzo::SOAP::
|
294
|
+
["address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
295
295
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
296
|
-
["os", "Virtuozzo::SOAP::
|
296
|
+
["os", "Virtuozzo::SOAP::Types::Process::OsType", [0, 1]],
|
297
297
|
["type", "SOAP::SOAPString", [0, 1]],
|
298
298
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
299
299
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
300
300
|
["base_sample_id", nil, [0, 1]],
|
301
301
|
["base_snapshot_id", nil, [0, 1]],
|
302
302
|
["child_type", "SOAP::SOAPString[]", [0, nil]],
|
303
|
-
["qos", "Virtuozzo::SOAP::
|
303
|
+
["qos", "Virtuozzo::SOAP::Types::Process::QosType[]", [0, nil]]
|
304
304
|
]
|
305
305
|
)
|
306
306
|
|
307
307
|
EncodedRegistry.register(
|
308
|
-
:class => Virtuozzo::SOAP::
|
308
|
+
:class => Virtuozzo::SOAP::Types::Process::Native_configType,
|
309
309
|
:schema_type => XSD::QName.new(NsTypes, "native_configType"),
|
310
310
|
:schema_element => []
|
311
311
|
)
|
312
312
|
|
313
313
|
EncodedRegistry.register(
|
314
|
-
:class => Virtuozzo::SOAP::
|
314
|
+
:class => Virtuozzo::SOAP::Types::Process::EnvType,
|
315
315
|
:schema_type => XSD::QName.new(NsTypes, "envType"),
|
316
316
|
:schema_element => [
|
317
317
|
["parent_eid", nil],
|
318
318
|
["eid", nil],
|
319
|
-
["status", "Virtuozzo::SOAP::
|
319
|
+
["status", "Virtuozzo::SOAP::Types::Process::Env_statusType", [0, 1]],
|
320
320
|
["alert", "SOAP::SOAPInt", [0, 1]],
|
321
|
-
["config", "Virtuozzo::SOAP::
|
322
|
-
["virtual_config", "Virtuozzo::SOAP::
|
321
|
+
["config", "Virtuozzo::SOAP::Types::Process::Env_configType", [0, 1]],
|
322
|
+
["virtual_config", "Virtuozzo::SOAP::Types::Process::Venv_configType", [0, 1]]
|
323
323
|
]
|
324
324
|
)
|
325
325
|
|
326
326
|
EncodedRegistry.register(
|
327
|
-
:class => Virtuozzo::SOAP::
|
327
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessesType,
|
328
328
|
:schema_type => XSD::QName.new(NsTypes, "processesType"),
|
329
329
|
:schema_element => [
|
330
330
|
["run", "SOAP::SOAPInt"],
|
@@ -337,7 +337,7 @@ module Virtuozzo # :nodoc:
|
|
337
337
|
)
|
338
338
|
|
339
339
|
EncodedRegistry.register(
|
340
|
-
:class => Virtuozzo::SOAP::
|
340
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avgType,
|
341
341
|
:schema_type => XSD::QName.new(NsTypes, "load_avgType"),
|
342
342
|
:schema_element => [
|
343
343
|
["l1", "SOAP::SOAPDouble"],
|
@@ -347,7 +347,7 @@ module Virtuozzo # :nodoc:
|
|
347
347
|
)
|
348
348
|
|
349
349
|
EncodedRegistry.register(
|
350
|
-
:class => Virtuozzo::SOAP::
|
350
|
+
:class => Virtuozzo::SOAP::Types::Process::Cpu_loadType,
|
351
351
|
:schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
|
352
352
|
:schema_element => [
|
353
353
|
["system", "SOAP::SOAPLong"],
|
@@ -358,7 +358,7 @@ module Virtuozzo # :nodoc:
|
|
358
358
|
)
|
359
359
|
|
360
360
|
EncodedRegistry.register(
|
361
|
-
:class => Virtuozzo::SOAP::
|
361
|
+
:class => Virtuozzo::SOAP::Types::Process::CpuType,
|
362
362
|
:schema_type => XSD::QName.new(NsTypes, "cpuType"),
|
363
363
|
:schema_element => [
|
364
364
|
["mhz", "SOAP::SOAPInt"],
|
@@ -374,16 +374,16 @@ module Virtuozzo # :nodoc:
|
|
374
374
|
)
|
375
375
|
|
376
376
|
EncodedRegistry.register(
|
377
|
-
:class => Virtuozzo::SOAP::
|
377
|
+
:class => Virtuozzo::SOAP::Types::Process::TransferType,
|
378
378
|
:schema_type => XSD::QName.new(NsTypes, "transferType"),
|
379
379
|
:schema_element => [
|
380
|
-
["input", "Virtuozzo::SOAP::
|
381
|
-
["output", "Virtuozzo::SOAP::
|
380
|
+
["input", "Virtuozzo::SOAP::Types::Process::TransferType::Input"],
|
381
|
+
["output", "Virtuozzo::SOAP::Types::Process::TransferType::Output"]
|
382
382
|
]
|
383
383
|
)
|
384
384
|
|
385
385
|
EncodedRegistry.register(
|
386
|
-
:class => Virtuozzo::SOAP::
|
386
|
+
:class => Virtuozzo::SOAP::Types::Process::TransferType::Input,
|
387
387
|
:schema_name => XSD::QName.new(NsTypes, "input"),
|
388
388
|
:is_anonymous => true,
|
389
389
|
:schema_qualified => true,
|
@@ -394,7 +394,7 @@ module Virtuozzo # :nodoc:
|
|
394
394
|
)
|
395
395
|
|
396
396
|
EncodedRegistry.register(
|
397
|
-
:class => Virtuozzo::SOAP::
|
397
|
+
:class => Virtuozzo::SOAP::Types::Process::TransferType::Output,
|
398
398
|
:schema_name => XSD::QName.new(NsTypes, "output"),
|
399
399
|
:is_anonymous => true,
|
400
400
|
:schema_qualified => true,
|
@@ -405,16 +405,16 @@ module Virtuozzo # :nodoc:
|
|
405
405
|
)
|
406
406
|
|
407
407
|
EncodedRegistry.register(
|
408
|
-
:class => Virtuozzo::SOAP::
|
408
|
+
:class => Virtuozzo::SOAP::Types::Process::System_nodeType,
|
409
409
|
:schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
|
410
410
|
:schema_element => [
|
411
|
-
["address", "Virtuozzo::SOAP::
|
412
|
-
["login", "Virtuozzo::SOAP::
|
411
|
+
["address", "Virtuozzo::SOAP::Types::Process::System_nodeType::Address"],
|
412
|
+
["login", "Virtuozzo::SOAP::Types::Process::System_nodeType::Login", [0, 1]]
|
413
413
|
]
|
414
414
|
)
|
415
415
|
|
416
416
|
EncodedRegistry.register(
|
417
|
-
:class => Virtuozzo::SOAP::
|
417
|
+
:class => Virtuozzo::SOAP::Types::Process::System_nodeType::Address,
|
418
418
|
:schema_name => XSD::QName.new(NsTypes, "address"),
|
419
419
|
:is_anonymous => true,
|
420
420
|
:schema_qualified => true,
|
@@ -424,7 +424,7 @@ module Virtuozzo # :nodoc:
|
|
424
424
|
)
|
425
425
|
|
426
426
|
EncodedRegistry.register(
|
427
|
-
:class => Virtuozzo::SOAP::
|
427
|
+
:class => Virtuozzo::SOAP::Types::Process::System_nodeType::Login,
|
428
428
|
:schema_name => XSD::QName.new(NsTypes, "login"),
|
429
429
|
:is_anonymous => true,
|
430
430
|
:schema_qualified => true,
|
@@ -435,7 +435,7 @@ module Virtuozzo # :nodoc:
|
|
435
435
|
)
|
436
436
|
|
437
437
|
EncodedRegistry.register(
|
438
|
-
:class => Virtuozzo::SOAP::
|
438
|
+
:class => Virtuozzo::SOAP::Types::Process::ResourceType,
|
439
439
|
:schema_type => XSD::QName.new(NsTypes, "resourceType"),
|
440
440
|
:schema_element => [
|
441
441
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -448,7 +448,7 @@ module Virtuozzo # :nodoc:
|
|
448
448
|
)
|
449
449
|
|
450
450
|
EncodedRegistry.register(
|
451
|
-
:class => Virtuozzo::SOAP::
|
451
|
+
:class => Virtuozzo::SOAP::Types::Process::IntervalType,
|
452
452
|
:schema_type => XSD::QName.new(NsTypes, "intervalType"),
|
453
453
|
:schema_element => [
|
454
454
|
["start_time", nil],
|
@@ -457,7 +457,7 @@ module Virtuozzo # :nodoc:
|
|
457
457
|
)
|
458
458
|
|
459
459
|
EncodedRegistry.register(
|
460
|
-
:class => Virtuozzo::SOAP::
|
460
|
+
:class => Virtuozzo::SOAP::Types::Process::StatsType,
|
461
461
|
:schema_type => XSD::QName.new(NsTypes, "statsType"),
|
462
462
|
:schema_element => [
|
463
463
|
["avg", "SOAP::SOAPLong", [0, 1]],
|
@@ -471,7 +471,7 @@ module Virtuozzo # :nodoc:
|
|
471
471
|
)
|
472
472
|
|
473
473
|
EncodedRegistry.register(
|
474
|
-
:class => Virtuozzo::SOAP::
|
474
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_addressType,
|
475
475
|
:schema_type => XSD::QName.new(NsTypes, "net_addressType"),
|
476
476
|
:schema_element => [
|
477
477
|
["host", nil],
|
@@ -480,16 +480,16 @@ module Virtuozzo # :nodoc:
|
|
480
480
|
)
|
481
481
|
|
482
482
|
EncodedRegistry.register(
|
483
|
-
:class => Virtuozzo::SOAP::
|
483
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_classType,
|
484
484
|
:schema_type => XSD::QName.new(NsTypes, "net_classType"),
|
485
485
|
:schema_element => [
|
486
486
|
["id", "SOAP::SOAPString", [0, 1]],
|
487
|
-
["transfer", "Virtuozzo::SOAP::
|
487
|
+
["transfer", "Virtuozzo::SOAP::Types::Process::TransferType", [0, 1]]
|
488
488
|
]
|
489
489
|
)
|
490
490
|
|
491
491
|
EncodedRegistry.register(
|
492
|
-
:class => Virtuozzo::SOAP::
|
492
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_rangeType,
|
493
493
|
:schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
|
494
494
|
:schema_element => [
|
495
495
|
["id", "SOAP::SOAPString", [0, 1]],
|
@@ -500,19 +500,19 @@ module Virtuozzo # :nodoc:
|
|
500
500
|
)
|
501
501
|
|
502
502
|
EncodedRegistry.register(
|
503
|
-
:class => Virtuozzo::SOAP::
|
503
|
+
:class => Virtuozzo::SOAP::Types::Process::Sample_confType,
|
504
504
|
:schema_type => XSD::QName.new(NsTypes, "sample_confType"),
|
505
505
|
:schema_element => [
|
506
|
-
["env_config", "Virtuozzo::SOAP::
|
506
|
+
["env_config", "Virtuozzo::SOAP::Types::Process::Env_configType"],
|
507
507
|
["id", "SOAP::SOAPString", [0, 1]],
|
508
508
|
["name", "SOAP::SOAPString"],
|
509
509
|
["comment", "SOAP::SOAPBase64", [0, 1]],
|
510
|
-
["vt_version", "Virtuozzo::SOAP::
|
510
|
+
["vt_version", "Virtuozzo::SOAP::Types::Process::Sample_confType::Vt_version", [0, 1]]
|
511
511
|
]
|
512
512
|
)
|
513
513
|
|
514
514
|
EncodedRegistry.register(
|
515
|
-
:class => Virtuozzo::SOAP::
|
515
|
+
:class => Virtuozzo::SOAP::Types::Process::Sample_confType::Vt_version,
|
516
516
|
:schema_name => XSD::QName.new(NsTypes, "vt_version"),
|
517
517
|
:is_anonymous => true,
|
518
518
|
:schema_qualified => true,
|
@@ -524,34 +524,34 @@ module Virtuozzo # :nodoc:
|
|
524
524
|
)
|
525
525
|
|
526
526
|
EncodedRegistry.register(
|
527
|
-
:class => Virtuozzo::SOAP::
|
527
|
+
:class => Virtuozzo::SOAP::Types::Process::InterfaceType,
|
528
528
|
:schema_type => XSD::QName.new(NsTypes, "interfaceType"),
|
529
529
|
:schema_element => [
|
530
530
|
["name", "SOAP::SOAPString"],
|
531
531
|
["bandwidth", "SOAP::SOAPInt", [0, 1]],
|
532
|
-
["transfer", "Virtuozzo::SOAP::
|
532
|
+
["transfer", "Virtuozzo::SOAP::Types::Process::TransferType", [0, 1]],
|
533
533
|
["ipaddress", nil, [0, 1]],
|
534
534
|
["flags", "SOAP::SOAPInt", [0, 1]]
|
535
535
|
]
|
536
536
|
)
|
537
537
|
|
538
538
|
EncodedRegistry.register(
|
539
|
-
:class => Virtuozzo::SOAP::
|
539
|
+
:class => Virtuozzo::SOAP::Types::Process::Sys_infoType,
|
540
540
|
:schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
|
541
541
|
:schema_element => [
|
542
|
-
["load_avg", "Virtuozzo::SOAP::
|
543
|
-
["processes", "Virtuozzo::SOAP::
|
544
|
-
["cpu_load", "Virtuozzo::SOAP::
|
545
|
-
["cpu_states", "Virtuozzo::SOAP::
|
542
|
+
["load_avg", "Virtuozzo::SOAP::Types::Process::Load_avgType"],
|
543
|
+
["processes", "Virtuozzo::SOAP::Types::Process::ProcessesType"],
|
544
|
+
["cpu_load", "Virtuozzo::SOAP::Types::Process::Cpu_loadType"],
|
545
|
+
["cpu_states", "Virtuozzo::SOAP::Types::Process::Cpu_loadType"],
|
546
546
|
["users", "SOAP::SOAPInt"],
|
547
547
|
["uptime", "SOAP::SOAPLong"],
|
548
|
-
["memory", "Virtuozzo::SOAP::
|
549
|
-
["swap", "Virtuozzo::SOAP::
|
548
|
+
["memory", "Virtuozzo::SOAP::Types::Process::Sys_infoType::Memory", [0, 1]],
|
549
|
+
["swap", "Virtuozzo::SOAP::Types::Process::Sys_infoType::Swap", [0, 1]]
|
550
550
|
]
|
551
551
|
)
|
552
552
|
|
553
553
|
EncodedRegistry.register(
|
554
|
-
:class => Virtuozzo::SOAP::
|
554
|
+
:class => Virtuozzo::SOAP::Types::Process::Sys_infoType::Memory,
|
555
555
|
:schema_name => XSD::QName.new(NsTypes, "memory"),
|
556
556
|
:is_anonymous => true,
|
557
557
|
:schema_qualified => true,
|
@@ -562,7 +562,7 @@ module Virtuozzo # :nodoc:
|
|
562
562
|
)
|
563
563
|
|
564
564
|
EncodedRegistry.register(
|
565
|
-
:class => Virtuozzo::SOAP::
|
565
|
+
:class => Virtuozzo::SOAP::Types::Process::Sys_infoType::Swap,
|
566
566
|
:schema_name => XSD::QName.new(NsTypes, "swap"),
|
567
567
|
:is_anonymous => true,
|
568
568
|
:schema_qualified => true,
|
@@ -573,10 +573,10 @@ module Virtuozzo # :nodoc:
|
|
573
573
|
)
|
574
574
|
|
575
575
|
EncodedRegistry.register(
|
576
|
-
:class => Virtuozzo::SOAP::
|
576
|
+
:class => Virtuozzo::SOAP::Types::Process::Ps_infoType,
|
577
577
|
:schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
|
578
578
|
:schema_element => [
|
579
|
-
["process", "Virtuozzo::SOAP::
|
579
|
+
["process", "Virtuozzo::SOAP::Types::Process::Ps_infoType::C_Process[]", [1, nil]],
|
580
580
|
["param_id", "SOAP::SOAPString[]", [1, nil]],
|
581
581
|
["run", "SOAP::SOAPInt"],
|
582
582
|
["idle", "SOAP::SOAPInt"],
|
@@ -589,7 +589,7 @@ module Virtuozzo # :nodoc:
|
|
589
589
|
)
|
590
590
|
|
591
591
|
EncodedRegistry.register(
|
592
|
-
:class => Virtuozzo::SOAP::
|
592
|
+
:class => Virtuozzo::SOAP::Types::Process::Ps_infoType::C_Process,
|
593
593
|
:schema_name => XSD::QName.new(NsTypes, "process"),
|
594
594
|
:is_anonymous => true,
|
595
595
|
:schema_qualified => true,
|
@@ -600,17 +600,17 @@ module Virtuozzo # :nodoc:
|
|
600
600
|
)
|
601
601
|
|
602
602
|
EncodedRegistry.register(
|
603
|
-
:class => Virtuozzo::SOAP::
|
603
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType,
|
604
604
|
:schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
|
605
605
|
:schema_element => [
|
606
|
-
["l1", "Virtuozzo::SOAP::
|
607
|
-
["l2", "Virtuozzo::SOAP::
|
608
|
-
["l3", "Virtuozzo::SOAP::
|
606
|
+
["l1", "Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L1"],
|
607
|
+
["l2", "Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L2", [0, 1]],
|
608
|
+
["l3", "Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L3", [0, 1]]
|
609
609
|
]
|
610
610
|
)
|
611
611
|
|
612
612
|
EncodedRegistry.register(
|
613
|
-
:class => Virtuozzo::SOAP::
|
613
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L1,
|
614
614
|
:schema_name => XSD::QName.new(NsTypes, "l1"),
|
615
615
|
:is_anonymous => true,
|
616
616
|
:schema_qualified => true,
|
@@ -623,7 +623,7 @@ module Virtuozzo # :nodoc:
|
|
623
623
|
)
|
624
624
|
|
625
625
|
EncodedRegistry.register(
|
626
|
-
:class => Virtuozzo::SOAP::
|
626
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L2,
|
627
627
|
:schema_name => XSD::QName.new(NsTypes, "l2"),
|
628
628
|
:is_anonymous => true,
|
629
629
|
:schema_qualified => true,
|
@@ -636,7 +636,7 @@ module Virtuozzo # :nodoc:
|
|
636
636
|
)
|
637
637
|
|
638
638
|
EncodedRegistry.register(
|
639
|
-
:class => Virtuozzo::SOAP::
|
639
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L3,
|
640
640
|
:schema_name => XSD::QName.new(NsTypes, "l3"),
|
641
641
|
:is_anonymous => true,
|
642
642
|
:schema_qualified => true,
|
@@ -649,7 +649,7 @@ module Virtuozzo # :nodoc:
|
|
649
649
|
)
|
650
650
|
|
651
651
|
EncodedRegistry.register(
|
652
|
-
:class => Virtuozzo::SOAP::
|
652
|
+
:class => Virtuozzo::SOAP::Types::Process::Alert_dataType,
|
653
653
|
:schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
|
654
654
|
:schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
|
655
655
|
:schema_element => [
|
@@ -658,7 +658,7 @@ module Virtuozzo # :nodoc:
|
|
658
658
|
)
|
659
659
|
|
660
660
|
EncodedRegistry.register(
|
661
|
-
:class => Virtuozzo::SOAP::
|
661
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_addressType,
|
662
662
|
:schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
|
663
663
|
:schema_element => [
|
664
664
|
["ip", nil],
|
@@ -667,25 +667,25 @@ module Virtuozzo # :nodoc:
|
|
667
667
|
)
|
668
668
|
|
669
669
|
EncodedRegistry.register(
|
670
|
-
:class => Virtuozzo::SOAP::
|
670
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_resourceType,
|
671
671
|
:schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
|
672
672
|
:schema_element => [
|
673
673
|
["eid", nil],
|
674
|
-
["ip_pool", "Virtuozzo::SOAP::
|
674
|
+
["ip_pool", "Virtuozzo::SOAP::Types::Process::Ip_poolType", [0, 1]]
|
675
675
|
]
|
676
676
|
)
|
677
677
|
|
678
678
|
EncodedRegistry.register(
|
679
|
-
:class => Virtuozzo::SOAP::
|
679
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_poolType,
|
680
680
|
:schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
|
681
681
|
:schema_element => [ :choice,
|
682
|
-
["ip_range", "Virtuozzo::SOAP::
|
682
|
+
["ip_range", "Virtuozzo::SOAP::Types::Process::Ip_poolType::Ip_range[]"],
|
683
683
|
["ip", "[]"]
|
684
684
|
]
|
685
685
|
)
|
686
686
|
|
687
687
|
EncodedRegistry.register(
|
688
|
-
:class => Virtuozzo::SOAP::
|
688
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_poolType::Ip_range,
|
689
689
|
:schema_name => XSD::QName.new(NsTypes, "ip_range"),
|
690
690
|
:is_anonymous => true,
|
691
691
|
:schema_qualified => true,
|
@@ -696,7 +696,7 @@ module Virtuozzo # :nodoc:
|
|
696
696
|
)
|
697
697
|
|
698
698
|
EncodedRegistry.register(
|
699
|
-
:class => Virtuozzo::SOAP::
|
699
|
+
:class => Virtuozzo::SOAP::Types::Process::UsageType,
|
700
700
|
:schema_type => XSD::QName.new(NsTypes, "usageType"),
|
701
701
|
:schema_element => [
|
702
702
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -706,20 +706,20 @@ module Virtuozzo # :nodoc:
|
|
706
706
|
)
|
707
707
|
|
708
708
|
EncodedRegistry.register(
|
709
|
-
:class => Virtuozzo::SOAP::
|
709
|
+
:class => Virtuozzo::SOAP::Types::Process::Root_credentialType,
|
710
710
|
:schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
|
711
711
|
:schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
|
712
712
|
:schema_element => [
|
713
713
|
["id", "SOAP::SOAPString"],
|
714
714
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
715
715
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
716
|
-
["cred", "Virtuozzo::SOAP::
|
717
|
-
["objects", "Virtuozzo::SOAP::
|
716
|
+
["cred", "Virtuozzo::SOAP::Types::Process::CredentialType[]", [0, nil]],
|
717
|
+
["objects", "Virtuozzo::SOAP::Types::Process::Root_credentialType::Objects", [0, 1]]
|
718
718
|
]
|
719
719
|
)
|
720
720
|
|
721
721
|
EncodedRegistry.register(
|
722
|
-
:class => Virtuozzo::SOAP::
|
722
|
+
:class => Virtuozzo::SOAP::Types::Process::Root_credentialType::Objects,
|
723
723
|
:schema_name => XSD::QName.new(NsTypes, "objects"),
|
724
724
|
:is_anonymous => true,
|
725
725
|
:schema_qualified => true,
|
@@ -729,30 +729,30 @@ module Virtuozzo # :nodoc:
|
|
729
729
|
)
|
730
730
|
|
731
731
|
EncodedRegistry.register(
|
732
|
-
:class => Virtuozzo::SOAP::
|
732
|
+
:class => Virtuozzo::SOAP::Types::Process::CredentialType,
|
733
733
|
:schema_type => XSD::QName.new(NsTypes, "credentialType"),
|
734
734
|
:schema_element => [
|
735
735
|
["id", "SOAP::SOAPString"],
|
736
736
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
737
737
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
738
|
-
["cred", "Virtuozzo::SOAP::
|
738
|
+
["cred", "Virtuozzo::SOAP::Types::Process::CredentialType[]", [0, nil]]
|
739
739
|
]
|
740
740
|
)
|
741
741
|
|
742
742
|
EncodedRegistry.register(
|
743
|
-
:class => Virtuozzo::SOAP::
|
743
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType,
|
744
744
|
:schema_type => XSD::QName.new(NsTypes, "tokenType"),
|
745
745
|
:schema_element => [
|
746
746
|
["user", nil],
|
747
|
-
["groups", "Virtuozzo::SOAP::
|
748
|
-
["deny_only_sids", "Virtuozzo::SOAP::
|
749
|
-
["privileges", "Virtuozzo::SOAP::
|
750
|
-
["source", "Virtuozzo::SOAP::
|
747
|
+
["groups", "Virtuozzo::SOAP::Types::Process::TokenType::Groups", [0, 1]],
|
748
|
+
["deny_only_sids", "Virtuozzo::SOAP::Types::Process::TokenType::Deny_only_sids", [0, 1]],
|
749
|
+
["privileges", "Virtuozzo::SOAP::Types::Process::TokenType::Privileges", [0, 1]],
|
750
|
+
["source", "Virtuozzo::SOAP::Types::Process::TokenType::Source", [0, 1]]
|
751
751
|
]
|
752
752
|
)
|
753
753
|
|
754
754
|
EncodedRegistry.register(
|
755
|
-
:class => Virtuozzo::SOAP::
|
755
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Groups,
|
756
756
|
:schema_name => XSD::QName.new(NsTypes, "groups"),
|
757
757
|
:is_anonymous => true,
|
758
758
|
:schema_qualified => true,
|
@@ -762,7 +762,7 @@ module Virtuozzo # :nodoc:
|
|
762
762
|
)
|
763
763
|
|
764
764
|
EncodedRegistry.register(
|
765
|
-
:class => Virtuozzo::SOAP::
|
765
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Deny_only_sids,
|
766
766
|
:schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
|
767
767
|
:is_anonymous => true,
|
768
768
|
:schema_qualified => true,
|
@@ -772,7 +772,7 @@ module Virtuozzo # :nodoc:
|
|
772
772
|
)
|
773
773
|
|
774
774
|
EncodedRegistry.register(
|
775
|
-
:class => Virtuozzo::SOAP::
|
775
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Privileges,
|
776
776
|
:schema_name => XSD::QName.new(NsTypes, "privileges"),
|
777
777
|
:is_anonymous => true,
|
778
778
|
:schema_qualified => true,
|
@@ -782,7 +782,7 @@ module Virtuozzo # :nodoc:
|
|
782
782
|
)
|
783
783
|
|
784
784
|
EncodedRegistry.register(
|
785
|
-
:class => Virtuozzo::SOAP::
|
785
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Source,
|
786
786
|
:schema_name => XSD::QName.new(NsTypes, "source"),
|
787
787
|
:is_anonymous => true,
|
788
788
|
:schema_qualified => true,
|
@@ -793,7 +793,7 @@ module Virtuozzo # :nodoc:
|
|
793
793
|
)
|
794
794
|
|
795
795
|
EncodedRegistry.register(
|
796
|
-
:class => Virtuozzo::SOAP::
|
796
|
+
:class => Virtuozzo::SOAP::Types::Process::Connectivity_infoType,
|
797
797
|
:schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
798
798
|
:schema_element => [
|
799
799
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
@@ -803,7 +803,7 @@ module Virtuozzo # :nodoc:
|
|
803
803
|
)
|
804
804
|
|
805
805
|
EncodedRegistry.register(
|
806
|
-
:class => Virtuozzo::SOAP::
|
806
|
+
:class => Virtuozzo::SOAP::Types::Process::Auth_nameType,
|
807
807
|
:schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
|
808
808
|
:schema_element => [
|
809
809
|
["name", "SOAP::SOAPBase64", [0, 1]],
|
@@ -813,20 +813,20 @@ module Virtuozzo # :nodoc:
|
|
813
813
|
)
|
814
814
|
|
815
815
|
EncodedRegistry.register(
|
816
|
-
:class => Virtuozzo::SOAP::
|
816
|
+
:class => Virtuozzo::SOAP::Types::Process::Connection_infoType,
|
817
817
|
:schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
|
818
818
|
:schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
819
819
|
:schema_element => [
|
820
820
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
821
821
|
["address", "SOAP::SOAPString"],
|
822
822
|
["port", "SOAP::SOAPUnsignedInt", [0, 1]],
|
823
|
-
["login", "Virtuozzo::SOAP::
|
823
|
+
["login", "Virtuozzo::SOAP::Types::Process::Auth_nameType", [0, 1]],
|
824
824
|
["password", "SOAP::SOAPBase64", [0, 1]]
|
825
825
|
]
|
826
826
|
)
|
827
827
|
|
828
828
|
EncodedRegistry.register(
|
829
|
-
:class => Virtuozzo::SOAP::
|
829
|
+
:class => Virtuozzo::SOAP::Types::Process::Eid_listType,
|
830
830
|
:schema_type => XSD::QName.new(NsTypes, "eid_listType"),
|
831
831
|
:schema_element => [
|
832
832
|
["eid", "[]", [0, nil]]
|
@@ -834,7 +834,7 @@ module Virtuozzo # :nodoc:
|
|
834
834
|
)
|
835
835
|
|
836
836
|
EncodedRegistry.register(
|
837
|
-
:class => Virtuozzo::SOAP::
|
837
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_infoType,
|
838
838
|
:schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
|
839
839
|
:schema_element => [
|
840
840
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -842,7 +842,7 @@ module Virtuozzo # :nodoc:
|
|
842
842
|
)
|
843
843
|
|
844
844
|
EncodedRegistry.register(
|
845
|
-
:class => Virtuozzo::SOAP::
|
845
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_settingsType,
|
846
846
|
:schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
|
847
847
|
:schema_element => [
|
848
848
|
["default_sample_id", nil, [0, 1]]
|
@@ -850,11 +850,11 @@ module Virtuozzo # :nodoc:
|
|
850
850
|
)
|
851
851
|
|
852
852
|
EncodedRegistry.register(
|
853
|
-
:class => Virtuozzo::SOAP::
|
853
|
+
:class => Virtuozzo::SOAP::Types::Process::UserType,
|
854
854
|
:schema_type => XSD::QName.new(NsTypes, "userType"),
|
855
855
|
:schema_element => [
|
856
|
-
["initial_group", "Virtuozzo::SOAP::
|
857
|
-
["group", "Virtuozzo::SOAP::
|
856
|
+
["initial_group", "Virtuozzo::SOAP::Types::Process::UserType::Initial_group", [0, 1]],
|
857
|
+
["group", "Virtuozzo::SOAP::Types::Process::UserType::Group[]", [0, nil]],
|
858
858
|
["uid", "SOAP::SOAPInt", [0, 1]],
|
859
859
|
["shell", "SOAP::SOAPString", [0, 1]],
|
860
860
|
["password", "SOAP::SOAPBase64", [0, 1]],
|
@@ -865,7 +865,7 @@ module Virtuozzo # :nodoc:
|
|
865
865
|
)
|
866
866
|
|
867
867
|
EncodedRegistry.register(
|
868
|
-
:class => Virtuozzo::SOAP::
|
868
|
+
:class => Virtuozzo::SOAP::Types::Process::UserType::Initial_group,
|
869
869
|
:schema_name => XSD::QName.new(NsTypes, "initial_group"),
|
870
870
|
:is_anonymous => true,
|
871
871
|
:schema_qualified => true,
|
@@ -876,7 +876,7 @@ module Virtuozzo # :nodoc:
|
|
876
876
|
)
|
877
877
|
|
878
878
|
EncodedRegistry.register(
|
879
|
-
:class => Virtuozzo::SOAP::
|
879
|
+
:class => Virtuozzo::SOAP::Types::Process::UserType::Group,
|
880
880
|
:schema_name => XSD::QName.new(NsTypes, "group"),
|
881
881
|
:is_anonymous => true,
|
882
882
|
:schema_qualified => true,
|
@@ -887,18 +887,18 @@ module Virtuozzo # :nodoc:
|
|
887
887
|
)
|
888
888
|
|
889
889
|
EncodedRegistry.register(
|
890
|
-
:class => Virtuozzo::SOAP::
|
890
|
+
:class => Virtuozzo::SOAP::Types::Process::GroupType,
|
891
891
|
:schema_type => XSD::QName.new(NsTypes, "groupType"),
|
892
892
|
:schema_element => [
|
893
|
-
["user", "Virtuozzo::SOAP::
|
894
|
-
["member_group", "Virtuozzo::SOAP::
|
893
|
+
["user", "Virtuozzo::SOAP::Types::Process::GroupType::User[]", [0, nil]],
|
894
|
+
["member_group", "Virtuozzo::SOAP::Types::Process::GroupType::Member_group[]", [0, nil]],
|
895
895
|
["name", "SOAP::SOAPString", [0, 1]],
|
896
896
|
["gid", "SOAP::SOAPInt", [0, 1]]
|
897
897
|
]
|
898
898
|
)
|
899
899
|
|
900
900
|
EncodedRegistry.register(
|
901
|
-
:class => Virtuozzo::SOAP::
|
901
|
+
:class => Virtuozzo::SOAP::Types::Process::GroupType::User,
|
902
902
|
:schema_name => XSD::QName.new(NsTypes, "user"),
|
903
903
|
:is_anonymous => true,
|
904
904
|
:schema_qualified => true,
|
@@ -908,7 +908,7 @@ module Virtuozzo # :nodoc:
|
|
908
908
|
)
|
909
909
|
|
910
910
|
EncodedRegistry.register(
|
911
|
-
:class => Virtuozzo::SOAP::
|
911
|
+
:class => Virtuozzo::SOAP::Types::Process::GroupType::Member_group,
|
912
912
|
:schema_name => XSD::QName.new(NsTypes, "member_group"),
|
913
913
|
:is_anonymous => true,
|
914
914
|
:schema_qualified => true,
|
@@ -918,12 +918,12 @@ module Virtuozzo # :nodoc:
|
|
918
918
|
)
|
919
919
|
|
920
920
|
EncodedRegistry.register(
|
921
|
-
:class => Virtuozzo::SOAP::
|
921
|
+
:class => Virtuozzo::SOAP::Types::Process::PackageType,
|
922
922
|
:schema_type => XSD::QName.new(NsTypes, "packageType"),
|
923
923
|
:schema_element => [
|
924
924
|
["name", "SOAP::SOAPString"],
|
925
925
|
["summary", "SOAP::SOAPString", [0, 1]],
|
926
|
-
["os", "Virtuozzo::SOAP::
|
926
|
+
["os", "Virtuozzo::SOAP::Types::Process::OsType", [0, 1]],
|
927
927
|
["description", "SOAP::SOAPString", [0, 1]],
|
928
928
|
["arch", "SOAP::SOAPString", [0, 1]],
|
929
929
|
["version", "SOAP::SOAPString", [0, 1]]
|
@@ -931,13 +931,13 @@ module Virtuozzo # :nodoc:
|
|
931
931
|
)
|
932
932
|
|
933
933
|
EncodedRegistry.register(
|
934
|
-
:class => Virtuozzo::SOAP::
|
934
|
+
:class => Virtuozzo::SOAP::Types::Process::Event_dataType,
|
935
935
|
:schema_type => XSD::QName.new(NsTypes, "event_dataType"),
|
936
936
|
:schema_element => []
|
937
937
|
)
|
938
938
|
|
939
939
|
EncodedRegistry.register(
|
940
|
-
:class => Virtuozzo::SOAP::
|
940
|
+
:class => Virtuozzo::SOAP::Types::Process::Named_listType,
|
941
941
|
:schema_type => XSD::QName.new(NsTypes, "named_listType"),
|
942
942
|
:schema_element => [
|
943
943
|
["name", "SOAP::SOAPString"],
|
@@ -946,7 +946,7 @@ module Virtuozzo # :nodoc:
|
|
946
946
|
)
|
947
947
|
|
948
948
|
EncodedRegistry.register(
|
949
|
-
:class => Virtuozzo::SOAP::
|
949
|
+
:class => Virtuozzo::SOAP::Types::Process::ModType,
|
950
950
|
:schema_type => XSD::QName.new(NsTypes, "modType"),
|
951
951
|
:schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
|
952
952
|
:schema_element => [
|
@@ -957,7 +957,7 @@ module Virtuozzo # :nodoc:
|
|
957
957
|
)
|
958
958
|
|
959
959
|
EncodedRegistry.register(
|
960
|
-
:class => Virtuozzo::SOAP::
|
960
|
+
:class => Virtuozzo::SOAP::Types::Process::RealmType,
|
961
961
|
:schema_type => XSD::QName.new(NsTypes, "realmType"),
|
962
962
|
:schema_element => [
|
963
963
|
["id", nil, [0, 1]],
|
@@ -968,7 +968,7 @@ module Virtuozzo # :nodoc:
|
|
968
968
|
)
|
969
969
|
|
970
970
|
EncodedRegistry.register(
|
971
|
-
:class => Virtuozzo::SOAP::
|
971
|
+
:class => Virtuozzo::SOAP::Types::Process::EventType,
|
972
972
|
:schema_type => XSD::QName.new(NsTypes, "eventType"),
|
973
973
|
:schema_element => [
|
974
974
|
["eid", nil],
|
@@ -978,34 +978,34 @@ module Virtuozzo # :nodoc:
|
|
978
978
|
["sid", nil, [0, 1]],
|
979
979
|
["count", "SOAP::SOAPInt"],
|
980
980
|
["id", nil],
|
981
|
-
["info", "Virtuozzo::SOAP::
|
982
|
-
["data", "Virtuozzo::SOAP::
|
981
|
+
["info", "Virtuozzo::SOAP::Types::Process::InfoType"],
|
982
|
+
["data", "Virtuozzo::SOAP::Types::Process::EventType::C_Data", [0, 1]]
|
983
983
|
]
|
984
984
|
)
|
985
985
|
|
986
986
|
EncodedRegistry.register(
|
987
|
-
:class => Virtuozzo::SOAP::
|
987
|
+
:class => Virtuozzo::SOAP::Types::Process::EventType::C_Data,
|
988
988
|
:schema_name => XSD::QName.new(NsTypes, "data"),
|
989
989
|
:is_anonymous => true,
|
990
990
|
:schema_qualified => true,
|
991
991
|
:schema_element => [
|
992
|
-
["event_data", "Virtuozzo::SOAP::
|
992
|
+
["event_data", "Virtuozzo::SOAP::Types::Process::Event_dataType"]
|
993
993
|
]
|
994
994
|
)
|
995
995
|
|
996
996
|
EncodedRegistry.register(
|
997
|
-
:class => Virtuozzo::SOAP::
|
997
|
+
:class => Virtuozzo::SOAP::Types::Process::InfoType,
|
998
998
|
:schema_type => XSD::QName.new(NsTypes, "infoType"),
|
999
999
|
:schema_element => [
|
1000
1000
|
["message", "SOAP::SOAPBase64"],
|
1001
1001
|
["translate", nil, [0, 1]],
|
1002
|
-
["parameter", "Virtuozzo::SOAP::
|
1002
|
+
["parameter", "Virtuozzo::SOAP::Types::Process::InfoType[]", [0, nil]],
|
1003
1003
|
["name", "SOAP::SOAPString"]
|
1004
1004
|
]
|
1005
1005
|
)
|
1006
1006
|
|
1007
1007
|
EncodedRegistry.register(
|
1008
|
-
:class => Virtuozzo::SOAP::
|
1008
|
+
:class => Virtuozzo::SOAP::Types::Process::AceType,
|
1009
1009
|
:schema_type => XSD::QName.new(NsTypes, "aceType"),
|
1010
1010
|
:schema_element => [
|
1011
1011
|
["type", "SOAP::SOAPInt"],
|
@@ -1015,27 +1015,27 @@ module Virtuozzo # :nodoc:
|
|
1015
1015
|
)
|
1016
1016
|
|
1017
1017
|
EncodedRegistry.register(
|
1018
|
-
:class => Virtuozzo::SOAP::
|
1018
|
+
:class => Virtuozzo::SOAP::Types::Process::Security_descriptorType,
|
1019
1019
|
:schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
|
1020
1020
|
:schema_element => [
|
1021
1021
|
["owner", nil],
|
1022
1022
|
["group", nil],
|
1023
|
-
["dacl", "Virtuozzo::SOAP::
|
1023
|
+
["dacl", "Virtuozzo::SOAP::Types::Process::Security_descriptorType::Dacl", [0, 1]]
|
1024
1024
|
]
|
1025
1025
|
)
|
1026
1026
|
|
1027
1027
|
EncodedRegistry.register(
|
1028
|
-
:class => Virtuozzo::SOAP::
|
1028
|
+
:class => Virtuozzo::SOAP::Types::Process::Security_descriptorType::Dacl,
|
1029
1029
|
:schema_name => XSD::QName.new(NsTypes, "dacl"),
|
1030
1030
|
:is_anonymous => true,
|
1031
1031
|
:schema_qualified => true,
|
1032
1032
|
:schema_element => [
|
1033
|
-
["ace", "Virtuozzo::SOAP::
|
1033
|
+
["ace", "Virtuozzo::SOAP::Types::Process::AceType[]", [0, nil]]
|
1034
1034
|
]
|
1035
1035
|
)
|
1036
1036
|
|
1037
1037
|
EncodedRegistry.register(
|
1038
|
-
:class => Virtuozzo::SOAP::
|
1038
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_security_objectType,
|
1039
1039
|
:schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
|
1040
1040
|
:schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
|
1041
1041
|
:schema_element => [
|
@@ -1044,19 +1044,19 @@ module Virtuozzo # :nodoc:
|
|
1044
1044
|
)
|
1045
1045
|
|
1046
1046
|
EncodedRegistry.register(
|
1047
|
-
:class => Virtuozzo::SOAP::
|
1047
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_deviceType,
|
1048
1048
|
:schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
|
1049
1049
|
:schema_element => [
|
1050
1050
|
["id", "SOAP::SOAPString", [0, 1]],
|
1051
|
-
["ip_address", "Virtuozzo::SOAP::
|
1051
|
+
["ip_address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
1052
1052
|
["dhcp", nil, [0, 1]],
|
1053
1053
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
1054
|
-
["status", "Virtuozzo::SOAP::
|
1054
|
+
["status", "Virtuozzo::SOAP::Types::Process::Net_deviceType::Status", [0, 1]]
|
1055
1055
|
]
|
1056
1056
|
)
|
1057
1057
|
|
1058
1058
|
EncodedRegistry.register(
|
1059
|
-
:class => Virtuozzo::SOAP::
|
1059
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_deviceType::Status,
|
1060
1060
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
1061
1061
|
:is_anonymous => true,
|
1062
1062
|
:schema_qualified => true,
|
@@ -1067,7 +1067,7 @@ module Virtuozzo # :nodoc:
|
|
1067
1067
|
)
|
1068
1068
|
|
1069
1069
|
EncodedRegistry.register(
|
1070
|
-
:class => Virtuozzo::SOAP::
|
1070
|
+
:class => Virtuozzo::SOAP::Types::Process::Voc_parameterType,
|
1071
1071
|
:schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
|
1072
1072
|
:schema_element => [
|
1073
1073
|
["id", "SOAP::SOAPString"],
|
@@ -1086,31 +1086,31 @@ module Virtuozzo # :nodoc:
|
|
1086
1086
|
)
|
1087
1087
|
|
1088
1088
|
EncodedRegistry.register(
|
1089
|
-
:class => Virtuozzo::SOAP::
|
1089
|
+
:class => Virtuozzo::SOAP::Types::Process::VocabularyType,
|
1090
1090
|
:schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
|
1091
1091
|
:schema_element => [
|
1092
1092
|
["name", "SOAP::SOAPString"],
|
1093
|
-
["parameter", "Virtuozzo::SOAP::
|
1094
|
-
["category", "Virtuozzo::SOAP::
|
1093
|
+
["parameter", "Virtuozzo::SOAP::Types::Process::Voc_parameterType[]", [0, nil]],
|
1094
|
+
["category", "Virtuozzo::SOAP::Types::Process::Voc_parameterType[]", [0, nil]]
|
1095
1095
|
]
|
1096
1096
|
)
|
1097
1097
|
|
1098
1098
|
EncodedRegistry.register(
|
1099
|
-
:class => Virtuozzo::SOAP::
|
1099
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_nicType,
|
1100
1100
|
:schema_type => XSD::QName.new(NsTypes, "net_nicType"),
|
1101
1101
|
:schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
|
1102
1102
|
:schema_element => [
|
1103
1103
|
["id", "SOAP::SOAPString", [0, 1]],
|
1104
|
-
["ip_address", "Virtuozzo::SOAP::
|
1104
|
+
["ip_address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
1105
1105
|
["dhcp", nil, [0, 1]],
|
1106
1106
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
1107
|
-
["status", "Virtuozzo::SOAP::
|
1107
|
+
["status", "Virtuozzo::SOAP::Types::Process::Net_nicType::Status", [0, 1]],
|
1108
1108
|
["mac_address", "SOAP::SOAPString", [0, 1]]
|
1109
1109
|
]
|
1110
1110
|
)
|
1111
1111
|
|
1112
1112
|
EncodedRegistry.register(
|
1113
|
-
:class => Virtuozzo::SOAP::
|
1113
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_nicType::Status,
|
1114
1114
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
1115
1115
|
:is_anonymous => true,
|
1116
1116
|
:schema_qualified => true,
|
@@ -1121,7 +1121,7 @@ module Virtuozzo # :nodoc:
|
|
1121
1121
|
)
|
1122
1122
|
|
1123
1123
|
EncodedRegistry.register(
|
1124
|
-
:class => Virtuozzo::SOAP::
|
1124
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_statType,
|
1125
1125
|
:schema_type => XSD::QName.new(NsTypes, "perf_statType"),
|
1126
1126
|
:schema_element => [
|
1127
1127
|
["cur", "SOAP::SOAPAnySimpleType"],
|
@@ -1132,63 +1132,63 @@ module Virtuozzo # :nodoc:
|
|
1132
1132
|
)
|
1133
1133
|
|
1134
1134
|
EncodedRegistry.register(
|
1135
|
-
:class => Virtuozzo::SOAP::
|
1135
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType,
|
1136
1136
|
:schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
|
1137
1137
|
:schema_element => [
|
1138
1138
|
["eid", nil],
|
1139
|
-
["v_class", ["Virtuozzo::SOAP::
|
1140
|
-
["interval", "Virtuozzo::SOAP::
|
1139
|
+
["v_class", ["Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
|
1140
|
+
["interval", "Virtuozzo::SOAP::Types::Process::IntervalType"]
|
1141
1141
|
]
|
1142
1142
|
)
|
1143
1143
|
|
1144
1144
|
EncodedRegistry.register(
|
1145
|
-
:class => Virtuozzo::SOAP::
|
1145
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance::Counter,
|
1146
1146
|
:schema_name => XSD::QName.new(NsTypes, "counter"),
|
1147
1147
|
:is_anonymous => true,
|
1148
1148
|
:schema_qualified => true,
|
1149
1149
|
:schema_element => [
|
1150
1150
|
["name", "SOAP::SOAPString"],
|
1151
|
-
["value", "Virtuozzo::SOAP::
|
1151
|
+
["value", "Virtuozzo::SOAP::Types::Process::Perf_statType"]
|
1152
1152
|
]
|
1153
1153
|
)
|
1154
1154
|
|
1155
1155
|
EncodedRegistry.register(
|
1156
|
-
:class => Virtuozzo::SOAP::
|
1156
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance,
|
1157
1157
|
:schema_name => XSD::QName.new(NsTypes, "instance"),
|
1158
1158
|
:is_anonymous => true,
|
1159
1159
|
:schema_qualified => true,
|
1160
1160
|
:schema_element => [
|
1161
1161
|
["name", "SOAP::SOAPString", [0, 1]],
|
1162
|
-
["counter", "Virtuozzo::SOAP::
|
1162
|
+
["counter", "Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
|
1163
1163
|
]
|
1164
1164
|
)
|
1165
1165
|
|
1166
1166
|
EncodedRegistry.register(
|
1167
|
-
:class => Virtuozzo::SOAP::
|
1167
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class,
|
1168
1168
|
:schema_name => XSD::QName.new(NsTypes, "class"),
|
1169
1169
|
:is_anonymous => true,
|
1170
1170
|
:schema_qualified => true,
|
1171
1171
|
:schema_element => [
|
1172
1172
|
["name", "SOAP::SOAPString"],
|
1173
|
-
["instance", "Virtuozzo::SOAP::
|
1173
|
+
["instance", "Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance[]", [1, nil]]
|
1174
1174
|
]
|
1175
1175
|
)
|
1176
1176
|
|
1177
1177
|
EncodedRegistry.register(
|
1178
|
-
:class => Virtuozzo::SOAP::
|
1178
|
+
:class => Virtuozzo::SOAP::Types::Process::Log_options_baseType,
|
1179
1179
|
:schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
|
1180
1180
|
:schema_element => []
|
1181
1181
|
)
|
1182
1182
|
|
1183
1183
|
EncodedRegistry.register(
|
1184
|
-
:class => Virtuozzo::SOAP::
|
1184
|
+
:class => Virtuozzo::SOAP::Types::Process::Log_optionsType,
|
1185
1185
|
:schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
|
1186
1186
|
:schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
|
1187
1187
|
:schema_element => []
|
1188
1188
|
)
|
1189
1189
|
|
1190
1190
|
EncodedRegistry.register(
|
1191
|
-
:class => Virtuozzo::SOAP::
|
1191
|
+
:class => Virtuozzo::SOAP::Types::Process::Virtuozzo_configType,
|
1192
1192
|
:schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
|
1193
1193
|
:schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
|
1194
1194
|
:schema_element => [
|
@@ -1197,7 +1197,7 @@ module Virtuozzo # :nodoc:
|
|
1197
1197
|
)
|
1198
1198
|
|
1199
1199
|
EncodedRegistry.register(
|
1200
|
-
:class => Virtuozzo::SOAP::
|
1200
|
+
:class => Virtuozzo::SOAP::Types::Process::Log_optionsType_,
|
1201
1201
|
:schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
|
1202
1202
|
:schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
|
1203
1203
|
:schema_element => [
|
@@ -1206,7 +1206,7 @@ module Virtuozzo # :nodoc:
|
|
1206
1206
|
)
|
1207
1207
|
|
1208
1208
|
EncodedRegistry.register(
|
1209
|
-
:class => Virtuozzo::SOAP::
|
1209
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_,
|
1210
1210
|
:schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
|
1211
1211
|
:schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
|
1212
1212
|
:schema_element => [
|
@@ -1214,46 +1214,46 @@ module Virtuozzo # :nodoc:
|
|
1214
1214
|
["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
|
1215
1215
|
["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
|
1216
1216
|
["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
|
1217
|
-
["address", ["Virtuozzo::SOAP::
|
1217
|
+
["address", ["Virtuozzo::SOAP::Types::Process::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
|
1218
1218
|
["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
|
1219
|
-
["os", ["Virtuozzo::SOAP::
|
1219
|
+
["os", ["Virtuozzo::SOAP::Types::Process::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
|
1220
1220
|
["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
|
1221
1221
|
["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
|
1222
1222
|
["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
|
1223
1223
|
["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
|
1224
1224
|
["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
|
1225
1225
|
["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
|
1226
|
-
["qos", ["Virtuozzo::SOAP::
|
1226
|
+
["qos", ["Virtuozzo::SOAP::Types::Process::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
|
1227
1227
|
["veid", nil, [0, 1]],
|
1228
1228
|
["ve_root", "SOAP::SOAPString", [0, 1]],
|
1229
1229
|
["ve_private", "SOAP::SOAPString", [0, 1]],
|
1230
1230
|
["on_boot", "SOAP::SOAPBoolean", [0, 1]],
|
1231
|
-
["template", "Virtuozzo::SOAP::
|
1231
|
+
["template", "Virtuozzo::SOAP::Types::Process::TemplateType[]", [0, nil]],
|
1232
1232
|
["disabled", "SOAP::SOAPBoolean", [0, 1]],
|
1233
1233
|
["offline_management", "SOAP::SOAPBoolean", [0, 1]],
|
1234
|
-
["os_template", "Virtuozzo::SOAP::
|
1235
|
-
["distribution", "Virtuozzo::SOAP::
|
1236
|
-
["capability", "Virtuozzo::SOAP::
|
1234
|
+
["os_template", "Virtuozzo::SOAP::Types::Process::TemplateType", [0, 1]],
|
1235
|
+
["distribution", "Virtuozzo::SOAP::Types::Process::TemplateType", [0, 1]],
|
1236
|
+
["capability", "Virtuozzo::SOAP::Types::Process::Venv_configType_::Capability[]", [0, nil]],
|
1237
1237
|
["iptables", "SOAP::SOAPString[]", [0, nil]],
|
1238
1238
|
["config_customized", "SOAP::SOAPBoolean", [0, 1]],
|
1239
1239
|
["class_id", "SOAP::SOAPString", [0, 1]],
|
1240
|
-
["ve_type", "Virtuozzo::SOAP::
|
1240
|
+
["ve_type", "Virtuozzo::SOAP::Types::Process::Venv_configType_::Ve_type", [0, 1]],
|
1241
1241
|
["offline_service", "SOAP::SOAPString[]", [0, nil]],
|
1242
1242
|
["wins_server", "SOAP::SOAPString[]", [0, nil]],
|
1243
|
-
["net_device", "Virtuozzo::SOAP::
|
1243
|
+
["net_device", "Virtuozzo::SOAP::Types::Process::Net_vethType[]", [0, nil]],
|
1244
1244
|
["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
|
1245
1245
|
["ts_mode", "SOAP::SOAPInt", [0, 1]],
|
1246
1246
|
["uuid", "SOAP::SOAPString", [0, 1]],
|
1247
1247
|
["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
|
1248
1248
|
["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
|
1249
|
-
["interface_rate", "Virtuozzo::SOAP::
|
1249
|
+
["interface_rate", "Virtuozzo::SOAP::Types::Process::Venv_configType_::Interface_rate[]", [0, nil]],
|
1250
1250
|
["slm_mode", "SOAP::SOAPString", [0, 1]],
|
1251
1251
|
["origin_sample", "SOAP::SOAPString", [0, 1]]
|
1252
1252
|
]
|
1253
1253
|
)
|
1254
1254
|
|
1255
1255
|
EncodedRegistry.register(
|
1256
|
-
:class => Virtuozzo::SOAP::
|
1256
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_::Capability,
|
1257
1257
|
:schema_name => XSD::QName.new(NsVzatypes, "capability"),
|
1258
1258
|
:is_anonymous => true,
|
1259
1259
|
:schema_qualified => true,
|
@@ -1264,7 +1264,7 @@ module Virtuozzo # :nodoc:
|
|
1264
1264
|
)
|
1265
1265
|
|
1266
1266
|
EncodedRegistry.register(
|
1267
|
-
:class => Virtuozzo::SOAP::
|
1267
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_::Ve_type,
|
1268
1268
|
:schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
|
1269
1269
|
:is_anonymous => true,
|
1270
1270
|
:schema_qualified => true,
|
@@ -1275,7 +1275,7 @@ module Virtuozzo # :nodoc:
|
|
1275
1275
|
)
|
1276
1276
|
|
1277
1277
|
EncodedRegistry.register(
|
1278
|
-
:class => Virtuozzo::SOAP::
|
1278
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_::Interface_rate,
|
1279
1279
|
:schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
|
1280
1280
|
:is_anonymous => true,
|
1281
1281
|
:schema_qualified => true,
|
@@ -1286,19 +1286,19 @@ module Virtuozzo # :nodoc:
|
|
1286
1286
|
)
|
1287
1287
|
|
1288
1288
|
EncodedRegistry.register(
|
1289
|
-
:class => Virtuozzo::SOAP::
|
1289
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_settingsType_,
|
1290
1290
|
:schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
|
1291
1291
|
:schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
|
1292
1292
|
:schema_element => [
|
1293
1293
|
["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
|
1294
|
-
["parameter", "Virtuozzo::SOAP::
|
1295
|
-
["service", "Virtuozzo::SOAP::
|
1296
|
-
["qos", "Virtuozzo::SOAP::
|
1294
|
+
["parameter", "Virtuozzo::SOAP::Types::Process::Vt_settingsType_::Parameter[]", [0, nil]],
|
1295
|
+
["service", "Virtuozzo::SOAP::Types::Process::Redirect_serviceType[]", [0, nil]],
|
1296
|
+
["qos", "Virtuozzo::SOAP::Types::Process::QosType[]", [0, nil]]
|
1297
1297
|
]
|
1298
1298
|
)
|
1299
1299
|
|
1300
1300
|
EncodedRegistry.register(
|
1301
|
-
:class => Virtuozzo::SOAP::
|
1301
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_settingsType_::Parameter,
|
1302
1302
|
:schema_name => XSD::QName.new(NsVzatypes, "parameter"),
|
1303
1303
|
:is_anonymous => true,
|
1304
1304
|
:schema_qualified => true,
|
@@ -1309,7 +1309,7 @@ module Virtuozzo # :nodoc:
|
|
1309
1309
|
)
|
1310
1310
|
|
1311
1311
|
EncodedRegistry.register(
|
1312
|
-
:class => Virtuozzo::SOAP::
|
1312
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_infoType_,
|
1313
1313
|
:schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
|
1314
1314
|
:schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
|
1315
1315
|
:schema_element => [
|
@@ -1321,7 +1321,7 @@ module Virtuozzo # :nodoc:
|
|
1321
1321
|
)
|
1322
1322
|
|
1323
1323
|
EncodedRegistry.register(
|
1324
|
-
:class => Virtuozzo::SOAP::
|
1324
|
+
:class => Virtuozzo::SOAP::Types::Process::Redirect_serviceType,
|
1325
1325
|
:schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
|
1326
1326
|
:schema_element => [
|
1327
1327
|
["id", "SOAP::SOAPString"],
|
@@ -1332,7 +1332,7 @@ module Virtuozzo # :nodoc:
|
|
1332
1332
|
)
|
1333
1333
|
|
1334
1334
|
EncodedRegistry.register(
|
1335
|
-
:class => Virtuozzo::SOAP::
|
1335
|
+
:class => Virtuozzo::SOAP::Types::Process::TemplateType,
|
1336
1336
|
:schema_type => XSD::QName.new(NsVzatypes, "templateType"),
|
1337
1337
|
:schema_element => [
|
1338
1338
|
["name", "SOAP::SOAPString"],
|
@@ -1341,13 +1341,13 @@ module Virtuozzo # :nodoc:
|
|
1341
1341
|
)
|
1342
1342
|
|
1343
1343
|
EncodedRegistry.register(
|
1344
|
-
:class => Virtuozzo::SOAP::
|
1344
|
+
:class => Virtuozzo::SOAP::Types::Process::Package_std_vztemplateType,
|
1345
1345
|
:schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
|
1346
1346
|
:schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
|
1347
1347
|
:schema_element => [
|
1348
1348
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
|
1349
1349
|
["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
|
1350
|
-
["os", ["Virtuozzo::SOAP::
|
1350
|
+
["os", ["Virtuozzo::SOAP::Types::Process::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
|
1351
1351
|
["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
|
1352
1352
|
["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
|
1353
1353
|
["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
|
@@ -1361,13 +1361,13 @@ module Virtuozzo # :nodoc:
|
|
1361
1361
|
)
|
1362
1362
|
|
1363
1363
|
EncodedRegistry.register(
|
1364
|
-
:class => Virtuozzo::SOAP::
|
1364
|
+
:class => Virtuozzo::SOAP::Types::Process::Package_vztemplateType,
|
1365
1365
|
:schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
|
1366
1366
|
:schema_basetype => XSD::QName.new(NsTypes, "packageType"),
|
1367
1367
|
:schema_element => [
|
1368
1368
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
|
1369
1369
|
["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
|
1370
|
-
["os", ["Virtuozzo::SOAP::
|
1370
|
+
["os", ["Virtuozzo::SOAP::Types::Process::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
|
1371
1371
|
["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
|
1372
1372
|
["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
|
1373
1373
|
["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
|
@@ -1380,7 +1380,7 @@ module Virtuozzo # :nodoc:
|
|
1380
1380
|
)
|
1381
1381
|
|
1382
1382
|
EncodedRegistry.register(
|
1383
|
-
:class => Virtuozzo::SOAP::
|
1383
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_security_objectType_,
|
1384
1384
|
:schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
|
1385
1385
|
:schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
|
1386
1386
|
:schema_element => [
|
@@ -1389,15 +1389,15 @@ module Virtuozzo # :nodoc:
|
|
1389
1389
|
)
|
1390
1390
|
|
1391
1391
|
EncodedRegistry.register(
|
1392
|
-
:class => Virtuozzo::SOAP::
|
1392
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_vethType,
|
1393
1393
|
:schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
|
1394
1394
|
:schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
|
1395
1395
|
:schema_element => [
|
1396
1396
|
["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
|
1397
|
-
["ip_address", ["Virtuozzo::SOAP::
|
1397
|
+
["ip_address", ["Virtuozzo::SOAP::Types::Process::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
|
1398
1398
|
["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
|
1399
1399
|
["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
|
1400
|
-
["status", ["Virtuozzo::SOAP::
|
1400
|
+
["status", ["Virtuozzo::SOAP::Types::Process::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
|
1401
1401
|
["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
|
1402
1402
|
["wins_server", "SOAP::SOAPString[]", [0, nil]],
|
1403
1403
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
@@ -1407,7 +1407,7 @@ module Virtuozzo # :nodoc:
|
|
1407
1407
|
)
|
1408
1408
|
|
1409
1409
|
EncodedRegistry.register(
|
1410
|
-
:class => Virtuozzo::SOAP::
|
1410
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_vethType::Status,
|
1411
1411
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
1412
1412
|
:is_anonymous => true,
|
1413
1413
|
:schema_qualified => true,
|
@@ -1418,39 +1418,39 @@ module Virtuozzo # :nodoc:
|
|
1418
1418
|
)
|
1419
1419
|
|
1420
1420
|
EncodedRegistry.register(
|
1421
|
-
:class => Virtuozzo::SOAP::
|
1421
|
+
:class => Virtuozzo::SOAP::Types::Process::EnvType_,
|
1422
1422
|
:schema_type => XSD::QName.new(NsVzatypes, "envType"),
|
1423
1423
|
:schema_basetype => XSD::QName.new(NsTypes, "envType"),
|
1424
1424
|
:schema_element => [
|
1425
1425
|
["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
|
1426
1426
|
["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
|
1427
|
-
["status", ["Virtuozzo::SOAP::
|
1427
|
+
["status", ["Virtuozzo::SOAP::Types::Process::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
|
1428
1428
|
["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
|
1429
|
-
["config", ["Virtuozzo::SOAP::
|
1430
|
-
["virtual_config", ["Virtuozzo::SOAP::
|
1429
|
+
["config", ["Virtuozzo::SOAP::Types::Process::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
|
1430
|
+
["virtual_config", ["Virtuozzo::SOAP::Types::Process::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
|
1431
1431
|
]
|
1432
1432
|
)
|
1433
1433
|
|
1434
1434
|
EncodedRegistry.register(
|
1435
|
-
:class => Virtuozzo::SOAP::
|
1435
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType,
|
1436
1436
|
:schema_type => XSD::QName.new(NsProcessm, "processmType"),
|
1437
1437
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1438
1438
|
:schema_element => [ :choice,
|
1439
|
-
["configuration", ["Virtuozzo::SOAP::
|
1440
|
-
["ok", ["Virtuozzo::SOAP::
|
1441
|
-
["error", ["Virtuozzo::SOAP::
|
1439
|
+
["configuration", ["Virtuozzo::SOAP::Types::Process::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
1440
|
+
["ok", ["Virtuozzo::SOAP::Types::Process::ProcessmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
1441
|
+
["error", ["Virtuozzo::SOAP::Types::Process::ProcessmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
1442
1442
|
[
|
1443
|
-
["execute", "Virtuozzo::SOAP::
|
1444
|
-
["kill", "Virtuozzo::SOAP::
|
1443
|
+
["execute", "Virtuozzo::SOAP::Types::Process::Execute[]", [0, 1]],
|
1444
|
+
["kill", "Virtuozzo::SOAP::Types::Process::Kill_[]", [0, 1]]
|
1445
1445
|
],
|
1446
1446
|
[
|
1447
|
-
["exec", "Virtuozzo::SOAP::
|
1447
|
+
["exec", "Virtuozzo::SOAP::Types::Process::Exec[]", [0, 1]]
|
1448
1448
|
]
|
1449
1449
|
]
|
1450
1450
|
)
|
1451
1451
|
|
1452
1452
|
EncodedRegistry.register(
|
1453
|
-
:class => Virtuozzo::SOAP::
|
1453
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType::Ok,
|
1454
1454
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1455
1455
|
:is_anonymous => true,
|
1456
1456
|
:schema_qualified => true,
|
@@ -1458,7 +1458,7 @@ module Virtuozzo # :nodoc:
|
|
1458
1458
|
)
|
1459
1459
|
|
1460
1460
|
EncodedRegistry.register(
|
1461
|
-
:class => Virtuozzo::SOAP::
|
1461
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType::Error,
|
1462
1462
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1463
1463
|
:is_anonymous => true,
|
1464
1464
|
:schema_qualified => true,
|
@@ -1469,31 +1469,31 @@ module Virtuozzo # :nodoc:
|
|
1469
1469
|
)
|
1470
1470
|
|
1471
1471
|
EncodedRegistry.register(
|
1472
|
-
:class => Virtuozzo::SOAP::
|
1472
|
+
:class => Virtuozzo::SOAP::Types::Process::Transport_type,
|
1473
1473
|
:schema_type => XSD::QName.new(NsTypes, "transport_type")
|
1474
1474
|
)
|
1475
1475
|
|
1476
1476
|
EncodedRegistry.register(
|
1477
|
-
:class => Virtuozzo::SOAP::
|
1477
|
+
:class => Virtuozzo::SOAP::Types::Process::Yes_no_type,
|
1478
1478
|
:schema_type => XSD::QName.new(NsTypes, "yes_no_type")
|
1479
1479
|
)
|
1480
1480
|
|
1481
1481
|
LiteralRegistry.register(
|
1482
|
-
:class => Virtuozzo::SOAP::
|
1482
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType,
|
1483
1483
|
:schema_type => XSD::QName.new(NsVzaprocessm, "vzaprocessmType"),
|
1484
1484
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1485
1485
|
:schema_element => [ :choice,
|
1486
|
-
["configuration", ["Virtuozzo::SOAP::
|
1487
|
-
["ok", ["Virtuozzo::SOAP::
|
1488
|
-
["error", ["Virtuozzo::SOAP::
|
1486
|
+
["configuration", ["Virtuozzo::SOAP::Types::Process::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
1487
|
+
["ok", ["Virtuozzo::SOAP::Types::Process::VzaprocessmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
1488
|
+
["error", ["Virtuozzo::SOAP::Types::Process::VzaprocessmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
1489
1489
|
[
|
1490
|
-
["kill", "Virtuozzo::SOAP::
|
1490
|
+
["kill", "Virtuozzo::SOAP::Types::Process::Kill[]", [0, 1]]
|
1491
1491
|
]
|
1492
1492
|
]
|
1493
1493
|
)
|
1494
1494
|
|
1495
1495
|
LiteralRegistry.register(
|
1496
|
-
:class => Virtuozzo::SOAP::
|
1496
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType::Ok,
|
1497
1497
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1498
1498
|
:is_anonymous => true,
|
1499
1499
|
:schema_qualified => true,
|
@@ -1501,7 +1501,7 @@ module Virtuozzo # :nodoc:
|
|
1501
1501
|
)
|
1502
1502
|
|
1503
1503
|
LiteralRegistry.register(
|
1504
|
-
:class => Virtuozzo::SOAP::
|
1504
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType::Error,
|
1505
1505
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1506
1506
|
:is_anonymous => true,
|
1507
1507
|
:schema_qualified => true,
|
@@ -1512,15 +1512,15 @@ module Virtuozzo # :nodoc:
|
|
1512
1512
|
)
|
1513
1513
|
|
1514
1514
|
LiteralRegistry.register(
|
1515
|
-
:class => Virtuozzo::SOAP::
|
1515
|
+
:class => Virtuozzo::SOAP::Types::Process::Packet_headerType,
|
1516
1516
|
:schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
|
1517
1517
|
:schema_element => [
|
1518
|
-
["auth", "Virtuozzo::SOAP::
|
1518
|
+
["auth", "Virtuozzo::SOAP::Types::Process::AuthType", [0, 1]],
|
1519
1519
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
1520
1520
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
1521
1521
|
["origin", "SOAP::SOAPString", [0, 1]],
|
1522
|
-
["src", "Virtuozzo::SOAP::
|
1523
|
-
["dst", "Virtuozzo::SOAP::
|
1522
|
+
["src", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
1523
|
+
["dst", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
1524
1524
|
["session", "SOAP::SOAPString", [0, 1]]
|
1525
1525
|
],
|
1526
1526
|
:schema_attribute => {
|
@@ -1538,26 +1538,26 @@ module Virtuozzo # :nodoc:
|
|
1538
1538
|
)
|
1539
1539
|
|
1540
1540
|
LiteralRegistry.register(
|
1541
|
-
:class => Virtuozzo::SOAP::
|
1541
|
+
:class => Virtuozzo::SOAP::Types::Process::OperatorType,
|
1542
1542
|
:schema_type => XSD::QName.new(NsProtocol, "operatorType"),
|
1543
1543
|
:schema_element => [ :choice,
|
1544
|
-
["configuration", "Virtuozzo::SOAP::
|
1544
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"]
|
1545
1545
|
]
|
1546
1546
|
)
|
1547
1547
|
|
1548
1548
|
LiteralRegistry.register(
|
1549
|
-
:class => Virtuozzo::SOAP::
|
1549
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType,
|
1550
1550
|
:schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1551
1551
|
:schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
|
1552
1552
|
:schema_element => [ :choice,
|
1553
|
-
["configuration", "Virtuozzo::SOAP::
|
1554
|
-
["ok", "Virtuozzo::SOAP::
|
1555
|
-
["error", "Virtuozzo::SOAP::
|
1553
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"],
|
1554
|
+
["ok", "Virtuozzo::SOAP::Types::Process::Operator_functionalType::Ok[]"],
|
1555
|
+
["error", "Virtuozzo::SOAP::Types::Process::Operator_functionalType::Error[]"]
|
1556
1556
|
]
|
1557
1557
|
)
|
1558
1558
|
|
1559
1559
|
LiteralRegistry.register(
|
1560
|
-
:class => Virtuozzo::SOAP::
|
1560
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType::Ok,
|
1561
1561
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1562
1562
|
:is_anonymous => true,
|
1563
1563
|
:schema_qualified => true,
|
@@ -1565,7 +1565,7 @@ module Virtuozzo # :nodoc:
|
|
1565
1565
|
)
|
1566
1566
|
|
1567
1567
|
LiteralRegistry.register(
|
1568
|
-
:class => Virtuozzo::SOAP::
|
1568
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType::Error,
|
1569
1569
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1570
1570
|
:is_anonymous => true,
|
1571
1571
|
:schema_qualified => true,
|
@@ -1576,24 +1576,24 @@ module Virtuozzo # :nodoc:
|
|
1576
1576
|
)
|
1577
1577
|
|
1578
1578
|
LiteralRegistry.register(
|
1579
|
-
:class => Virtuozzo::SOAP::
|
1579
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType,
|
1580
1580
|
:schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
|
1581
1581
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1582
1582
|
:schema_element => [ :choice,
|
1583
|
-
["configuration", "Virtuozzo::SOAP::
|
1584
|
-
["ok", "Virtuozzo::SOAP::
|
1585
|
-
["error", "Virtuozzo::SOAP::
|
1583
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"],
|
1584
|
+
["ok", "Virtuozzo::SOAP::Types::Process::Operator_periodicType::Ok[]"],
|
1585
|
+
["error", "Virtuozzo::SOAP::Types::Process::Operator_periodicType::Error[]"],
|
1586
1586
|
[ :choice,
|
1587
|
-
["start_monitor", "Virtuozzo::SOAP::
|
1588
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
1589
|
-
["set_period", "Virtuozzo::SOAP::
|
1587
|
+
["start_monitor", "Virtuozzo::SOAP::Types::Process::Start_monitorType"],
|
1588
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::Process::Stop_monitorType"],
|
1589
|
+
["set_period", "Virtuozzo::SOAP::Types::Process::Set_periodType", [0, 1]],
|
1590
1590
|
["report", nil, [0, 1]]
|
1591
1591
|
]
|
1592
1592
|
]
|
1593
1593
|
)
|
1594
1594
|
|
1595
1595
|
LiteralRegistry.register(
|
1596
|
-
:class => Virtuozzo::SOAP::
|
1596
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType::Ok,
|
1597
1597
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1598
1598
|
:is_anonymous => true,
|
1599
1599
|
:schema_qualified => true,
|
@@ -1601,7 +1601,7 @@ module Virtuozzo # :nodoc:
|
|
1601
1601
|
)
|
1602
1602
|
|
1603
1603
|
LiteralRegistry.register(
|
1604
|
-
:class => Virtuozzo::SOAP::
|
1604
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType::Error,
|
1605
1605
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1606
1606
|
:is_anonymous => true,
|
1607
1607
|
:schema_qualified => true,
|
@@ -1612,7 +1612,7 @@ module Virtuozzo # :nodoc:
|
|
1612
1612
|
)
|
1613
1613
|
|
1614
1614
|
LiteralRegistry.register(
|
1615
|
-
:class => Virtuozzo::SOAP::
|
1615
|
+
:class => Virtuozzo::SOAP::Types::Process::Set_periodType,
|
1616
1616
|
:schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
|
1617
1617
|
:schema_element => [
|
1618
1618
|
["collect", "SOAP::SOAPInt"],
|
@@ -1622,7 +1622,7 @@ module Virtuozzo # :nodoc:
|
|
1622
1622
|
)
|
1623
1623
|
|
1624
1624
|
LiteralRegistry.register(
|
1625
|
-
:class => Virtuozzo::SOAP::
|
1625
|
+
:class => Virtuozzo::SOAP::Types::Process::Start_monitorType,
|
1626
1626
|
:schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
|
1627
1627
|
:schema_element => [
|
1628
1628
|
["period", "SOAP::SOAPInt"],
|
@@ -1631,7 +1631,7 @@ module Virtuozzo # :nodoc:
|
|
1631
1631
|
)
|
1632
1632
|
|
1633
1633
|
LiteralRegistry.register(
|
1634
|
-
:class => Virtuozzo::SOAP::
|
1634
|
+
:class => Virtuozzo::SOAP::Types::Process::Stop_monitorType,
|
1635
1635
|
:schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
|
1636
1636
|
:schema_element => [
|
1637
1637
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -1639,7 +1639,7 @@ module Virtuozzo # :nodoc:
|
|
1639
1639
|
)
|
1640
1640
|
|
1641
1641
|
LiteralRegistry.register(
|
1642
|
-
:class => Virtuozzo::SOAP::
|
1642
|
+
:class => Virtuozzo::SOAP::Types::Process::AuthType,
|
1643
1643
|
:schema_type => XSD::QName.new(NsProtocol, "authType"),
|
1644
1644
|
:schema_element => [
|
1645
1645
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -1647,7 +1647,7 @@ module Virtuozzo # :nodoc:
|
|
1647
1647
|
)
|
1648
1648
|
|
1649
1649
|
LiteralRegistry.register(
|
1650
|
-
:class => Virtuozzo::SOAP::
|
1650
|
+
:class => Virtuozzo::SOAP::Types::Process::Event_configurationType,
|
1651
1651
|
:schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
|
1652
1652
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
1653
1653
|
:schema_element => [
|
@@ -1656,7 +1656,7 @@ module Virtuozzo # :nodoc:
|
|
1656
1656
|
)
|
1657
1657
|
|
1658
1658
|
LiteralRegistry.register(
|
1659
|
-
:class => Virtuozzo::SOAP::
|
1659
|
+
:class => Virtuozzo::SOAP::Types::Process::Periodic_configurationType,
|
1660
1660
|
:schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
|
1661
1661
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
1662
1662
|
:schema_element => [
|
@@ -1668,7 +1668,7 @@ module Virtuozzo # :nodoc:
|
|
1668
1668
|
)
|
1669
1669
|
|
1670
1670
|
LiteralRegistry.register(
|
1671
|
-
:class => Virtuozzo::SOAP::
|
1671
|
+
:class => Virtuozzo::SOAP::Types::Process::RouteType,
|
1672
1672
|
:schema_type => XSD::QName.new(NsProtocol, "routeType"),
|
1673
1673
|
:schema_element => [
|
1674
1674
|
["director", "SOAP::SOAPString", [0, 1]],
|
@@ -1679,21 +1679,21 @@ module Virtuozzo # :nodoc:
|
|
1679
1679
|
)
|
1680
1680
|
|
1681
1681
|
LiteralRegistry.register(
|
1682
|
-
:class => Virtuozzo::SOAP::
|
1682
|
+
:class => Virtuozzo::SOAP::Types::Process::DataType,
|
1683
1683
|
:schema_type => XSD::QName.new(NsProtocol, "dataType"),
|
1684
1684
|
:schema_element => [
|
1685
|
-
["operator", "Virtuozzo::SOAP::
|
1685
|
+
["operator", "Virtuozzo::SOAP::Types::Process::OperatorType[]"]
|
1686
1686
|
]
|
1687
1687
|
)
|
1688
1688
|
|
1689
1689
|
LiteralRegistry.register(
|
1690
|
-
:class => Virtuozzo::SOAP::
|
1690
|
+
:class => Virtuozzo::SOAP::Types::Process::ConfigurationType,
|
1691
1691
|
:schema_type => XSD::QName.new(NsProtocol, "configurationType"),
|
1692
1692
|
:schema_element => []
|
1693
1693
|
)
|
1694
1694
|
|
1695
1695
|
LiteralRegistry.register(
|
1696
|
-
:class => Virtuozzo::SOAP::
|
1696
|
+
:class => Virtuozzo::SOAP::Types::Process::OsType,
|
1697
1697
|
:schema_type => XSD::QName.new(NsTypes, "osType"),
|
1698
1698
|
:schema_element => [
|
1699
1699
|
["platform", "SOAP::SOAPString", [0, 1]],
|
@@ -1704,7 +1704,7 @@ module Virtuozzo # :nodoc:
|
|
1704
1704
|
)
|
1705
1705
|
|
1706
1706
|
LiteralRegistry.register(
|
1707
|
-
:class => Virtuozzo::SOAP::
|
1707
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_statusType,
|
1708
1708
|
:schema_type => XSD::QName.new(NsTypes, "env_statusType"),
|
1709
1709
|
:schema_element => [
|
1710
1710
|
["state", "SOAP::SOAPInt", [0, 1]],
|
@@ -1713,7 +1713,7 @@ module Virtuozzo # :nodoc:
|
|
1713
1713
|
)
|
1714
1714
|
|
1715
1715
|
LiteralRegistry.register(
|
1716
|
-
:class => Virtuozzo::SOAP::
|
1716
|
+
:class => Virtuozzo::SOAP::Types::Process::QosType,
|
1717
1717
|
:schema_type => XSD::QName.new(NsTypes, "qosType"),
|
1718
1718
|
:schema_element => [
|
1719
1719
|
["id", "SOAP::SOAPString"],
|
@@ -1724,16 +1724,16 @@ module Virtuozzo # :nodoc:
|
|
1724
1724
|
)
|
1725
1725
|
|
1726
1726
|
LiteralRegistry.register(
|
1727
|
-
:class => Virtuozzo::SOAP::
|
1727
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_configType,
|
1728
1728
|
:schema_type => XSD::QName.new(NsTypes, "env_configType"),
|
1729
1729
|
:schema_element => [
|
1730
1730
|
["name", "SOAP::SOAPString", [0, 1]],
|
1731
1731
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
1732
1732
|
["domain", "SOAP::SOAPString", [0, 1]],
|
1733
1733
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
1734
|
-
["address", "Virtuozzo::SOAP::
|
1734
|
+
["address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
1735
1735
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
1736
|
-
["os", "Virtuozzo::SOAP::
|
1736
|
+
["os", "Virtuozzo::SOAP::Types::Process::OsType", [0, 1]],
|
1737
1737
|
["type", "SOAP::SOAPString", [0, 1]],
|
1738
1738
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
1739
1739
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
@@ -1744,7 +1744,7 @@ module Virtuozzo # :nodoc:
|
|
1744
1744
|
)
|
1745
1745
|
|
1746
1746
|
LiteralRegistry.register(
|
1747
|
-
:class => Virtuozzo::SOAP::
|
1747
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType,
|
1748
1748
|
:schema_type => XSD::QName.new(NsTypes, "venv_configType"),
|
1749
1749
|
:schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
|
1750
1750
|
:schema_element => [
|
@@ -1752,40 +1752,40 @@ module Virtuozzo # :nodoc:
|
|
1752
1752
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
1753
1753
|
["domain", "SOAP::SOAPString", [0, 1]],
|
1754
1754
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
1755
|
-
["address", "Virtuozzo::SOAP::
|
1755
|
+
["address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
1756
1756
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
1757
|
-
["os", "Virtuozzo::SOAP::
|
1757
|
+
["os", "Virtuozzo::SOAP::Types::Process::OsType", [0, 1]],
|
1758
1758
|
["type", "SOAP::SOAPString", [0, 1]],
|
1759
1759
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
1760
1760
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
1761
1761
|
["base_sample_id", nil, [0, 1]],
|
1762
1762
|
["base_snapshot_id", nil, [0, 1]],
|
1763
1763
|
["child_type", "SOAP::SOAPString[]", [0, nil]],
|
1764
|
-
["qos", "Virtuozzo::SOAP::
|
1764
|
+
["qos", "Virtuozzo::SOAP::Types::Process::QosType[]", [0, nil]]
|
1765
1765
|
]
|
1766
1766
|
)
|
1767
1767
|
|
1768
1768
|
LiteralRegistry.register(
|
1769
|
-
:class => Virtuozzo::SOAP::
|
1769
|
+
:class => Virtuozzo::SOAP::Types::Process::Native_configType,
|
1770
1770
|
:schema_type => XSD::QName.new(NsTypes, "native_configType"),
|
1771
1771
|
:schema_element => []
|
1772
1772
|
)
|
1773
1773
|
|
1774
1774
|
LiteralRegistry.register(
|
1775
|
-
:class => Virtuozzo::SOAP::
|
1775
|
+
:class => Virtuozzo::SOAP::Types::Process::EnvType,
|
1776
1776
|
:schema_type => XSD::QName.new(NsTypes, "envType"),
|
1777
1777
|
:schema_element => [
|
1778
1778
|
["parent_eid", nil],
|
1779
1779
|
["eid", nil],
|
1780
|
-
["status", "Virtuozzo::SOAP::
|
1780
|
+
["status", "Virtuozzo::SOAP::Types::Process::Env_statusType", [0, 1]],
|
1781
1781
|
["alert", "SOAP::SOAPInt", [0, 1]],
|
1782
|
-
["config", "Virtuozzo::SOAP::
|
1783
|
-
["virtual_config", "Virtuozzo::SOAP::
|
1782
|
+
["config", "Virtuozzo::SOAP::Types::Process::Env_configType", [0, 1]],
|
1783
|
+
["virtual_config", "Virtuozzo::SOAP::Types::Process::Venv_configType", [0, 1]]
|
1784
1784
|
]
|
1785
1785
|
)
|
1786
1786
|
|
1787
1787
|
LiteralRegistry.register(
|
1788
|
-
:class => Virtuozzo::SOAP::
|
1788
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessesType,
|
1789
1789
|
:schema_type => XSD::QName.new(NsTypes, "processesType"),
|
1790
1790
|
:schema_element => [
|
1791
1791
|
["run", "SOAP::SOAPInt"],
|
@@ -1798,7 +1798,7 @@ module Virtuozzo # :nodoc:
|
|
1798
1798
|
)
|
1799
1799
|
|
1800
1800
|
LiteralRegistry.register(
|
1801
|
-
:class => Virtuozzo::SOAP::
|
1801
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avgType,
|
1802
1802
|
:schema_type => XSD::QName.new(NsTypes, "load_avgType"),
|
1803
1803
|
:schema_element => [
|
1804
1804
|
["l1", "SOAP::SOAPDouble"],
|
@@ -1808,7 +1808,7 @@ module Virtuozzo # :nodoc:
|
|
1808
1808
|
)
|
1809
1809
|
|
1810
1810
|
LiteralRegistry.register(
|
1811
|
-
:class => Virtuozzo::SOAP::
|
1811
|
+
:class => Virtuozzo::SOAP::Types::Process::Cpu_loadType,
|
1812
1812
|
:schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
|
1813
1813
|
:schema_element => [
|
1814
1814
|
["system", "SOAP::SOAPLong"],
|
@@ -1819,7 +1819,7 @@ module Virtuozzo # :nodoc:
|
|
1819
1819
|
)
|
1820
1820
|
|
1821
1821
|
LiteralRegistry.register(
|
1822
|
-
:class => Virtuozzo::SOAP::
|
1822
|
+
:class => Virtuozzo::SOAP::Types::Process::CpuType,
|
1823
1823
|
:schema_type => XSD::QName.new(NsTypes, "cpuType"),
|
1824
1824
|
:schema_element => [
|
1825
1825
|
["mhz", "SOAP::SOAPInt"],
|
@@ -1835,16 +1835,16 @@ module Virtuozzo # :nodoc:
|
|
1835
1835
|
)
|
1836
1836
|
|
1837
1837
|
LiteralRegistry.register(
|
1838
|
-
:class => Virtuozzo::SOAP::
|
1838
|
+
:class => Virtuozzo::SOAP::Types::Process::TransferType,
|
1839
1839
|
:schema_type => XSD::QName.new(NsTypes, "transferType"),
|
1840
1840
|
:schema_element => [
|
1841
|
-
["input", "Virtuozzo::SOAP::
|
1842
|
-
["output", "Virtuozzo::SOAP::
|
1841
|
+
["input", "Virtuozzo::SOAP::Types::Process::TransferType::Input"],
|
1842
|
+
["output", "Virtuozzo::SOAP::Types::Process::TransferType::Output"]
|
1843
1843
|
]
|
1844
1844
|
)
|
1845
1845
|
|
1846
1846
|
LiteralRegistry.register(
|
1847
|
-
:class => Virtuozzo::SOAP::
|
1847
|
+
:class => Virtuozzo::SOAP::Types::Process::TransferType::Input,
|
1848
1848
|
:schema_name => XSD::QName.new(NsTypes, "input"),
|
1849
1849
|
:is_anonymous => true,
|
1850
1850
|
:schema_qualified => true,
|
@@ -1855,7 +1855,7 @@ module Virtuozzo # :nodoc:
|
|
1855
1855
|
)
|
1856
1856
|
|
1857
1857
|
LiteralRegistry.register(
|
1858
|
-
:class => Virtuozzo::SOAP::
|
1858
|
+
:class => Virtuozzo::SOAP::Types::Process::TransferType::Output,
|
1859
1859
|
:schema_name => XSD::QName.new(NsTypes, "output"),
|
1860
1860
|
:is_anonymous => true,
|
1861
1861
|
:schema_qualified => true,
|
@@ -1866,16 +1866,16 @@ module Virtuozzo # :nodoc:
|
|
1866
1866
|
)
|
1867
1867
|
|
1868
1868
|
LiteralRegistry.register(
|
1869
|
-
:class => Virtuozzo::SOAP::
|
1869
|
+
:class => Virtuozzo::SOAP::Types::Process::System_nodeType,
|
1870
1870
|
:schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
|
1871
1871
|
:schema_element => [
|
1872
|
-
["address", "Virtuozzo::SOAP::
|
1873
|
-
["login", "Virtuozzo::SOAP::
|
1872
|
+
["address", "Virtuozzo::SOAP::Types::Process::System_nodeType::Address"],
|
1873
|
+
["login", "Virtuozzo::SOAP::Types::Process::System_nodeType::Login", [0, 1]]
|
1874
1874
|
]
|
1875
1875
|
)
|
1876
1876
|
|
1877
1877
|
LiteralRegistry.register(
|
1878
|
-
:class => Virtuozzo::SOAP::
|
1878
|
+
:class => Virtuozzo::SOAP::Types::Process::System_nodeType::Address,
|
1879
1879
|
:schema_name => XSD::QName.new(NsTypes, "address"),
|
1880
1880
|
:is_anonymous => true,
|
1881
1881
|
:schema_qualified => true,
|
@@ -1885,7 +1885,7 @@ module Virtuozzo # :nodoc:
|
|
1885
1885
|
)
|
1886
1886
|
|
1887
1887
|
LiteralRegistry.register(
|
1888
|
-
:class => Virtuozzo::SOAP::
|
1888
|
+
:class => Virtuozzo::SOAP::Types::Process::System_nodeType::Login,
|
1889
1889
|
:schema_name => XSD::QName.new(NsTypes, "login"),
|
1890
1890
|
:is_anonymous => true,
|
1891
1891
|
:schema_qualified => true,
|
@@ -1896,7 +1896,7 @@ module Virtuozzo # :nodoc:
|
|
1896
1896
|
)
|
1897
1897
|
|
1898
1898
|
LiteralRegistry.register(
|
1899
|
-
:class => Virtuozzo::SOAP::
|
1899
|
+
:class => Virtuozzo::SOAP::Types::Process::ResourceType,
|
1900
1900
|
:schema_type => XSD::QName.new(NsTypes, "resourceType"),
|
1901
1901
|
:schema_element => [
|
1902
1902
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -1909,7 +1909,7 @@ module Virtuozzo # :nodoc:
|
|
1909
1909
|
)
|
1910
1910
|
|
1911
1911
|
LiteralRegistry.register(
|
1912
|
-
:class => Virtuozzo::SOAP::
|
1912
|
+
:class => Virtuozzo::SOAP::Types::Process::IntervalType,
|
1913
1913
|
:schema_type => XSD::QName.new(NsTypes, "intervalType"),
|
1914
1914
|
:schema_element => [
|
1915
1915
|
["start_time", nil],
|
@@ -1918,7 +1918,7 @@ module Virtuozzo # :nodoc:
|
|
1918
1918
|
)
|
1919
1919
|
|
1920
1920
|
LiteralRegistry.register(
|
1921
|
-
:class => Virtuozzo::SOAP::
|
1921
|
+
:class => Virtuozzo::SOAP::Types::Process::StatsType,
|
1922
1922
|
:schema_type => XSD::QName.new(NsTypes, "statsType"),
|
1923
1923
|
:schema_element => [
|
1924
1924
|
["avg", "SOAP::SOAPLong", [0, 1]],
|
@@ -1932,7 +1932,7 @@ module Virtuozzo # :nodoc:
|
|
1932
1932
|
)
|
1933
1933
|
|
1934
1934
|
LiteralRegistry.register(
|
1935
|
-
:class => Virtuozzo::SOAP::
|
1935
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_addressType,
|
1936
1936
|
:schema_type => XSD::QName.new(NsTypes, "net_addressType"),
|
1937
1937
|
:schema_element => [
|
1938
1938
|
["host", nil],
|
@@ -1941,16 +1941,16 @@ module Virtuozzo # :nodoc:
|
|
1941
1941
|
)
|
1942
1942
|
|
1943
1943
|
LiteralRegistry.register(
|
1944
|
-
:class => Virtuozzo::SOAP::
|
1944
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_classType,
|
1945
1945
|
:schema_type => XSD::QName.new(NsTypes, "net_classType"),
|
1946
1946
|
:schema_element => [
|
1947
1947
|
["id", "SOAP::SOAPString", [0, 1]],
|
1948
|
-
["transfer", "Virtuozzo::SOAP::
|
1948
|
+
["transfer", "Virtuozzo::SOAP::Types::Process::TransferType", [0, 1]]
|
1949
1949
|
]
|
1950
1950
|
)
|
1951
1951
|
|
1952
1952
|
LiteralRegistry.register(
|
1953
|
-
:class => Virtuozzo::SOAP::
|
1953
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_rangeType,
|
1954
1954
|
:schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
|
1955
1955
|
:schema_element => [
|
1956
1956
|
["id", "SOAP::SOAPString", [0, 1]],
|
@@ -1961,19 +1961,19 @@ module Virtuozzo # :nodoc:
|
|
1961
1961
|
)
|
1962
1962
|
|
1963
1963
|
LiteralRegistry.register(
|
1964
|
-
:class => Virtuozzo::SOAP::
|
1964
|
+
:class => Virtuozzo::SOAP::Types::Process::Sample_confType,
|
1965
1965
|
:schema_type => XSD::QName.new(NsTypes, "sample_confType"),
|
1966
1966
|
:schema_element => [
|
1967
|
-
["env_config", "Virtuozzo::SOAP::
|
1967
|
+
["env_config", "Virtuozzo::SOAP::Types::Process::Env_configType"],
|
1968
1968
|
["id", "SOAP::SOAPString", [0, 1]],
|
1969
1969
|
["name", "SOAP::SOAPString"],
|
1970
1970
|
["comment", "SOAP::SOAPBase64", [0, 1]],
|
1971
|
-
["vt_version", "Virtuozzo::SOAP::
|
1971
|
+
["vt_version", "Virtuozzo::SOAP::Types::Process::Sample_confType::Vt_version", [0, 1]]
|
1972
1972
|
]
|
1973
1973
|
)
|
1974
1974
|
|
1975
1975
|
LiteralRegistry.register(
|
1976
|
-
:class => Virtuozzo::SOAP::
|
1976
|
+
:class => Virtuozzo::SOAP::Types::Process::Sample_confType::Vt_version,
|
1977
1977
|
:schema_name => XSD::QName.new(NsTypes, "vt_version"),
|
1978
1978
|
:is_anonymous => true,
|
1979
1979
|
:schema_qualified => true,
|
@@ -1985,34 +1985,34 @@ module Virtuozzo # :nodoc:
|
|
1985
1985
|
)
|
1986
1986
|
|
1987
1987
|
LiteralRegistry.register(
|
1988
|
-
:class => Virtuozzo::SOAP::
|
1988
|
+
:class => Virtuozzo::SOAP::Types::Process::InterfaceType,
|
1989
1989
|
:schema_type => XSD::QName.new(NsTypes, "interfaceType"),
|
1990
1990
|
:schema_element => [
|
1991
1991
|
["name", "SOAP::SOAPString"],
|
1992
1992
|
["bandwidth", "SOAP::SOAPInt", [0, 1]],
|
1993
|
-
["transfer", "Virtuozzo::SOAP::
|
1993
|
+
["transfer", "Virtuozzo::SOAP::Types::Process::TransferType", [0, 1]],
|
1994
1994
|
["ipaddress", nil, [0, 1]],
|
1995
1995
|
["flags", "SOAP::SOAPInt", [0, 1]]
|
1996
1996
|
]
|
1997
1997
|
)
|
1998
1998
|
|
1999
1999
|
LiteralRegistry.register(
|
2000
|
-
:class => Virtuozzo::SOAP::
|
2000
|
+
:class => Virtuozzo::SOAP::Types::Process::Sys_infoType,
|
2001
2001
|
:schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
|
2002
2002
|
:schema_element => [
|
2003
|
-
["load_avg", "Virtuozzo::SOAP::
|
2004
|
-
["processes", "Virtuozzo::SOAP::
|
2005
|
-
["cpu_load", "Virtuozzo::SOAP::
|
2006
|
-
["cpu_states", "Virtuozzo::SOAP::
|
2003
|
+
["load_avg", "Virtuozzo::SOAP::Types::Process::Load_avgType"],
|
2004
|
+
["processes", "Virtuozzo::SOAP::Types::Process::ProcessesType"],
|
2005
|
+
["cpu_load", "Virtuozzo::SOAP::Types::Process::Cpu_loadType"],
|
2006
|
+
["cpu_states", "Virtuozzo::SOAP::Types::Process::Cpu_loadType"],
|
2007
2007
|
["users", "SOAP::SOAPInt"],
|
2008
2008
|
["uptime", "SOAP::SOAPLong"],
|
2009
|
-
["memory", "Virtuozzo::SOAP::
|
2010
|
-
["swap", "Virtuozzo::SOAP::
|
2009
|
+
["memory", "Virtuozzo::SOAP::Types::Process::Sys_infoType::Memory", [0, 1]],
|
2010
|
+
["swap", "Virtuozzo::SOAP::Types::Process::Sys_infoType::Swap", [0, 1]]
|
2011
2011
|
]
|
2012
2012
|
)
|
2013
2013
|
|
2014
2014
|
LiteralRegistry.register(
|
2015
|
-
:class => Virtuozzo::SOAP::
|
2015
|
+
:class => Virtuozzo::SOAP::Types::Process::Sys_infoType::Memory,
|
2016
2016
|
:schema_name => XSD::QName.new(NsTypes, "memory"),
|
2017
2017
|
:is_anonymous => true,
|
2018
2018
|
:schema_qualified => true,
|
@@ -2023,7 +2023,7 @@ module Virtuozzo # :nodoc:
|
|
2023
2023
|
)
|
2024
2024
|
|
2025
2025
|
LiteralRegistry.register(
|
2026
|
-
:class => Virtuozzo::SOAP::
|
2026
|
+
:class => Virtuozzo::SOAP::Types::Process::Sys_infoType::Swap,
|
2027
2027
|
:schema_name => XSD::QName.new(NsTypes, "swap"),
|
2028
2028
|
:is_anonymous => true,
|
2029
2029
|
:schema_qualified => true,
|
@@ -2034,10 +2034,10 @@ module Virtuozzo # :nodoc:
|
|
2034
2034
|
)
|
2035
2035
|
|
2036
2036
|
LiteralRegistry.register(
|
2037
|
-
:class => Virtuozzo::SOAP::
|
2037
|
+
:class => Virtuozzo::SOAP::Types::Process::Ps_infoType,
|
2038
2038
|
:schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
|
2039
2039
|
:schema_element => [
|
2040
|
-
["process", "Virtuozzo::SOAP::
|
2040
|
+
["process", "Virtuozzo::SOAP::Types::Process::Ps_infoType::C_Process[]", [1, nil]],
|
2041
2041
|
["param_id", "SOAP::SOAPString[]", [1, nil]],
|
2042
2042
|
["run", "SOAP::SOAPInt"],
|
2043
2043
|
["idle", "SOAP::SOAPInt"],
|
@@ -2050,7 +2050,7 @@ module Virtuozzo # :nodoc:
|
|
2050
2050
|
)
|
2051
2051
|
|
2052
2052
|
LiteralRegistry.register(
|
2053
|
-
:class => Virtuozzo::SOAP::
|
2053
|
+
:class => Virtuozzo::SOAP::Types::Process::Ps_infoType::C_Process,
|
2054
2054
|
:schema_name => XSD::QName.new(NsTypes, "process"),
|
2055
2055
|
:is_anonymous => true,
|
2056
2056
|
:schema_qualified => true,
|
@@ -2061,17 +2061,17 @@ module Virtuozzo # :nodoc:
|
|
2061
2061
|
)
|
2062
2062
|
|
2063
2063
|
LiteralRegistry.register(
|
2064
|
-
:class => Virtuozzo::SOAP::
|
2064
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType,
|
2065
2065
|
:schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
|
2066
2066
|
:schema_element => [
|
2067
|
-
["l1", "Virtuozzo::SOAP::
|
2068
|
-
["l2", "Virtuozzo::SOAP::
|
2069
|
-
["l3", "Virtuozzo::SOAP::
|
2067
|
+
["l1", "Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L1"],
|
2068
|
+
["l2", "Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L2", [0, 1]],
|
2069
|
+
["l3", "Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L3", [0, 1]]
|
2070
2070
|
]
|
2071
2071
|
)
|
2072
2072
|
|
2073
2073
|
LiteralRegistry.register(
|
2074
|
-
:class => Virtuozzo::SOAP::
|
2074
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L1,
|
2075
2075
|
:schema_name => XSD::QName.new(NsTypes, "l1"),
|
2076
2076
|
:is_anonymous => true,
|
2077
2077
|
:schema_qualified => true,
|
@@ -2084,7 +2084,7 @@ module Virtuozzo # :nodoc:
|
|
2084
2084
|
)
|
2085
2085
|
|
2086
2086
|
LiteralRegistry.register(
|
2087
|
-
:class => Virtuozzo::SOAP::
|
2087
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L2,
|
2088
2088
|
:schema_name => XSD::QName.new(NsTypes, "l2"),
|
2089
2089
|
:is_anonymous => true,
|
2090
2090
|
:schema_qualified => true,
|
@@ -2097,7 +2097,7 @@ module Virtuozzo # :nodoc:
|
|
2097
2097
|
)
|
2098
2098
|
|
2099
2099
|
LiteralRegistry.register(
|
2100
|
-
:class => Virtuozzo::SOAP::
|
2100
|
+
:class => Virtuozzo::SOAP::Types::Process::Load_avg_statsType::L3,
|
2101
2101
|
:schema_name => XSD::QName.new(NsTypes, "l3"),
|
2102
2102
|
:is_anonymous => true,
|
2103
2103
|
:schema_qualified => true,
|
@@ -2110,7 +2110,7 @@ module Virtuozzo # :nodoc:
|
|
2110
2110
|
)
|
2111
2111
|
|
2112
2112
|
LiteralRegistry.register(
|
2113
|
-
:class => Virtuozzo::SOAP::
|
2113
|
+
:class => Virtuozzo::SOAP::Types::Process::Alert_dataType,
|
2114
2114
|
:schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
|
2115
2115
|
:schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
|
2116
2116
|
:schema_element => [
|
@@ -2119,7 +2119,7 @@ module Virtuozzo # :nodoc:
|
|
2119
2119
|
)
|
2120
2120
|
|
2121
2121
|
LiteralRegistry.register(
|
2122
|
-
:class => Virtuozzo::SOAP::
|
2122
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_addressType,
|
2123
2123
|
:schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
|
2124
2124
|
:schema_element => [
|
2125
2125
|
["ip", nil],
|
@@ -2128,25 +2128,25 @@ module Virtuozzo # :nodoc:
|
|
2128
2128
|
)
|
2129
2129
|
|
2130
2130
|
LiteralRegistry.register(
|
2131
|
-
:class => Virtuozzo::SOAP::
|
2131
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_resourceType,
|
2132
2132
|
:schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
|
2133
2133
|
:schema_element => [
|
2134
2134
|
["eid", nil],
|
2135
|
-
["ip_pool", "Virtuozzo::SOAP::
|
2135
|
+
["ip_pool", "Virtuozzo::SOAP::Types::Process::Ip_poolType", [0, 1]]
|
2136
2136
|
]
|
2137
2137
|
)
|
2138
2138
|
|
2139
2139
|
LiteralRegistry.register(
|
2140
|
-
:class => Virtuozzo::SOAP::
|
2140
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_poolType,
|
2141
2141
|
:schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
|
2142
2142
|
:schema_element => [ :choice,
|
2143
|
-
["ip_range", "Virtuozzo::SOAP::
|
2143
|
+
["ip_range", "Virtuozzo::SOAP::Types::Process::Ip_poolType::Ip_range[]"],
|
2144
2144
|
["ip", "[]"]
|
2145
2145
|
]
|
2146
2146
|
)
|
2147
2147
|
|
2148
2148
|
LiteralRegistry.register(
|
2149
|
-
:class => Virtuozzo::SOAP::
|
2149
|
+
:class => Virtuozzo::SOAP::Types::Process::Ip_poolType::Ip_range,
|
2150
2150
|
:schema_name => XSD::QName.new(NsTypes, "ip_range"),
|
2151
2151
|
:is_anonymous => true,
|
2152
2152
|
:schema_qualified => true,
|
@@ -2157,7 +2157,7 @@ module Virtuozzo # :nodoc:
|
|
2157
2157
|
)
|
2158
2158
|
|
2159
2159
|
LiteralRegistry.register(
|
2160
|
-
:class => Virtuozzo::SOAP::
|
2160
|
+
:class => Virtuozzo::SOAP::Types::Process::UsageType,
|
2161
2161
|
:schema_type => XSD::QName.new(NsTypes, "usageType"),
|
2162
2162
|
:schema_element => [
|
2163
2163
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -2167,20 +2167,20 @@ module Virtuozzo # :nodoc:
|
|
2167
2167
|
)
|
2168
2168
|
|
2169
2169
|
LiteralRegistry.register(
|
2170
|
-
:class => Virtuozzo::SOAP::
|
2170
|
+
:class => Virtuozzo::SOAP::Types::Process::Root_credentialType,
|
2171
2171
|
:schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
|
2172
2172
|
:schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
|
2173
2173
|
:schema_element => [
|
2174
2174
|
["id", "SOAP::SOAPString"],
|
2175
2175
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
2176
2176
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
2177
|
-
["cred", "Virtuozzo::SOAP::
|
2178
|
-
["objects", "Virtuozzo::SOAP::
|
2177
|
+
["cred", "Virtuozzo::SOAP::Types::Process::CredentialType[]", [0, nil]],
|
2178
|
+
["objects", "Virtuozzo::SOAP::Types::Process::Root_credentialType::Objects", [0, 1]]
|
2179
2179
|
]
|
2180
2180
|
)
|
2181
2181
|
|
2182
2182
|
LiteralRegistry.register(
|
2183
|
-
:class => Virtuozzo::SOAP::
|
2183
|
+
:class => Virtuozzo::SOAP::Types::Process::Root_credentialType::Objects,
|
2184
2184
|
:schema_name => XSD::QName.new(NsTypes, "objects"),
|
2185
2185
|
:is_anonymous => true,
|
2186
2186
|
:schema_qualified => true,
|
@@ -2190,30 +2190,30 @@ module Virtuozzo # :nodoc:
|
|
2190
2190
|
)
|
2191
2191
|
|
2192
2192
|
LiteralRegistry.register(
|
2193
|
-
:class => Virtuozzo::SOAP::
|
2193
|
+
:class => Virtuozzo::SOAP::Types::Process::CredentialType,
|
2194
2194
|
:schema_type => XSD::QName.new(NsTypes, "credentialType"),
|
2195
2195
|
:schema_element => [
|
2196
2196
|
["id", "SOAP::SOAPString"],
|
2197
2197
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
2198
2198
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
2199
|
-
["cred", "Virtuozzo::SOAP::
|
2199
|
+
["cred", "Virtuozzo::SOAP::Types::Process::CredentialType[]", [0, nil]]
|
2200
2200
|
]
|
2201
2201
|
)
|
2202
2202
|
|
2203
2203
|
LiteralRegistry.register(
|
2204
|
-
:class => Virtuozzo::SOAP::
|
2204
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType,
|
2205
2205
|
:schema_type => XSD::QName.new(NsTypes, "tokenType"),
|
2206
2206
|
:schema_element => [
|
2207
2207
|
["user", nil],
|
2208
|
-
["groups", "Virtuozzo::SOAP::
|
2209
|
-
["deny_only_sids", "Virtuozzo::SOAP::
|
2210
|
-
["privileges", "Virtuozzo::SOAP::
|
2211
|
-
["source", "Virtuozzo::SOAP::
|
2208
|
+
["groups", "Virtuozzo::SOAP::Types::Process::TokenType::Groups", [0, 1]],
|
2209
|
+
["deny_only_sids", "Virtuozzo::SOAP::Types::Process::TokenType::Deny_only_sids", [0, 1]],
|
2210
|
+
["privileges", "Virtuozzo::SOAP::Types::Process::TokenType::Privileges", [0, 1]],
|
2211
|
+
["source", "Virtuozzo::SOAP::Types::Process::TokenType::Source", [0, 1]]
|
2212
2212
|
]
|
2213
2213
|
)
|
2214
2214
|
|
2215
2215
|
LiteralRegistry.register(
|
2216
|
-
:class => Virtuozzo::SOAP::
|
2216
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Groups,
|
2217
2217
|
:schema_name => XSD::QName.new(NsTypes, "groups"),
|
2218
2218
|
:is_anonymous => true,
|
2219
2219
|
:schema_qualified => true,
|
@@ -2223,7 +2223,7 @@ module Virtuozzo # :nodoc:
|
|
2223
2223
|
)
|
2224
2224
|
|
2225
2225
|
LiteralRegistry.register(
|
2226
|
-
:class => Virtuozzo::SOAP::
|
2226
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Deny_only_sids,
|
2227
2227
|
:schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
|
2228
2228
|
:is_anonymous => true,
|
2229
2229
|
:schema_qualified => true,
|
@@ -2233,7 +2233,7 @@ module Virtuozzo # :nodoc:
|
|
2233
2233
|
)
|
2234
2234
|
|
2235
2235
|
LiteralRegistry.register(
|
2236
|
-
:class => Virtuozzo::SOAP::
|
2236
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Privileges,
|
2237
2237
|
:schema_name => XSD::QName.new(NsTypes, "privileges"),
|
2238
2238
|
:is_anonymous => true,
|
2239
2239
|
:schema_qualified => true,
|
@@ -2243,7 +2243,7 @@ module Virtuozzo # :nodoc:
|
|
2243
2243
|
)
|
2244
2244
|
|
2245
2245
|
LiteralRegistry.register(
|
2246
|
-
:class => Virtuozzo::SOAP::
|
2246
|
+
:class => Virtuozzo::SOAP::Types::Process::TokenType::Source,
|
2247
2247
|
:schema_name => XSD::QName.new(NsTypes, "source"),
|
2248
2248
|
:is_anonymous => true,
|
2249
2249
|
:schema_qualified => true,
|
@@ -2254,7 +2254,7 @@ module Virtuozzo # :nodoc:
|
|
2254
2254
|
)
|
2255
2255
|
|
2256
2256
|
LiteralRegistry.register(
|
2257
|
-
:class => Virtuozzo::SOAP::
|
2257
|
+
:class => Virtuozzo::SOAP::Types::Process::Connectivity_infoType,
|
2258
2258
|
:schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
2259
2259
|
:schema_element => [
|
2260
2260
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
@@ -2264,7 +2264,7 @@ module Virtuozzo # :nodoc:
|
|
2264
2264
|
)
|
2265
2265
|
|
2266
2266
|
LiteralRegistry.register(
|
2267
|
-
:class => Virtuozzo::SOAP::
|
2267
|
+
:class => Virtuozzo::SOAP::Types::Process::Auth_nameType,
|
2268
2268
|
:schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
|
2269
2269
|
:schema_element => [
|
2270
2270
|
["name", "SOAP::SOAPBase64", [0, 1]],
|
@@ -2274,20 +2274,20 @@ module Virtuozzo # :nodoc:
|
|
2274
2274
|
)
|
2275
2275
|
|
2276
2276
|
LiteralRegistry.register(
|
2277
|
-
:class => Virtuozzo::SOAP::
|
2277
|
+
:class => Virtuozzo::SOAP::Types::Process::Connection_infoType,
|
2278
2278
|
:schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
|
2279
2279
|
:schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
2280
2280
|
:schema_element => [
|
2281
2281
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
2282
2282
|
["address", "SOAP::SOAPString"],
|
2283
2283
|
["port", "SOAP::SOAPUnsignedInt", [0, 1]],
|
2284
|
-
["login", "Virtuozzo::SOAP::
|
2284
|
+
["login", "Virtuozzo::SOAP::Types::Process::Auth_nameType", [0, 1]],
|
2285
2285
|
["password", "SOAP::SOAPBase64", [0, 1]]
|
2286
2286
|
]
|
2287
2287
|
)
|
2288
2288
|
|
2289
2289
|
LiteralRegistry.register(
|
2290
|
-
:class => Virtuozzo::SOAP::
|
2290
|
+
:class => Virtuozzo::SOAP::Types::Process::Eid_listType,
|
2291
2291
|
:schema_type => XSD::QName.new(NsTypes, "eid_listType"),
|
2292
2292
|
:schema_element => [
|
2293
2293
|
["eid", "[]", [0, nil]]
|
@@ -2295,7 +2295,7 @@ module Virtuozzo # :nodoc:
|
|
2295
2295
|
)
|
2296
2296
|
|
2297
2297
|
LiteralRegistry.register(
|
2298
|
-
:class => Virtuozzo::SOAP::
|
2298
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_infoType,
|
2299
2299
|
:schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
|
2300
2300
|
:schema_element => [
|
2301
2301
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -2303,7 +2303,7 @@ module Virtuozzo # :nodoc:
|
|
2303
2303
|
)
|
2304
2304
|
|
2305
2305
|
LiteralRegistry.register(
|
2306
|
-
:class => Virtuozzo::SOAP::
|
2306
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_settingsType,
|
2307
2307
|
:schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
|
2308
2308
|
:schema_element => [
|
2309
2309
|
["default_sample_id", nil, [0, 1]]
|
@@ -2311,11 +2311,11 @@ module Virtuozzo # :nodoc:
|
|
2311
2311
|
)
|
2312
2312
|
|
2313
2313
|
LiteralRegistry.register(
|
2314
|
-
:class => Virtuozzo::SOAP::
|
2314
|
+
:class => Virtuozzo::SOAP::Types::Process::UserType,
|
2315
2315
|
:schema_type => XSD::QName.new(NsTypes, "userType"),
|
2316
2316
|
:schema_element => [
|
2317
|
-
["initial_group", "Virtuozzo::SOAP::
|
2318
|
-
["group", "Virtuozzo::SOAP::
|
2317
|
+
["initial_group", "Virtuozzo::SOAP::Types::Process::UserType::Initial_group", [0, 1]],
|
2318
|
+
["group", "Virtuozzo::SOAP::Types::Process::UserType::Group[]", [0, nil]],
|
2319
2319
|
["uid", "SOAP::SOAPInt", [0, 1]],
|
2320
2320
|
["shell", "SOAP::SOAPString", [0, 1]],
|
2321
2321
|
["password", "SOAP::SOAPBase64", [0, 1]],
|
@@ -2326,7 +2326,7 @@ module Virtuozzo # :nodoc:
|
|
2326
2326
|
)
|
2327
2327
|
|
2328
2328
|
LiteralRegistry.register(
|
2329
|
-
:class => Virtuozzo::SOAP::
|
2329
|
+
:class => Virtuozzo::SOAP::Types::Process::UserType::Initial_group,
|
2330
2330
|
:schema_name => XSD::QName.new(NsTypes, "initial_group"),
|
2331
2331
|
:is_anonymous => true,
|
2332
2332
|
:schema_qualified => true,
|
@@ -2337,7 +2337,7 @@ module Virtuozzo # :nodoc:
|
|
2337
2337
|
)
|
2338
2338
|
|
2339
2339
|
LiteralRegistry.register(
|
2340
|
-
:class => Virtuozzo::SOAP::
|
2340
|
+
:class => Virtuozzo::SOAP::Types::Process::UserType::Group,
|
2341
2341
|
:schema_name => XSD::QName.new(NsTypes, "group"),
|
2342
2342
|
:is_anonymous => true,
|
2343
2343
|
:schema_qualified => true,
|
@@ -2348,18 +2348,18 @@ module Virtuozzo # :nodoc:
|
|
2348
2348
|
)
|
2349
2349
|
|
2350
2350
|
LiteralRegistry.register(
|
2351
|
-
:class => Virtuozzo::SOAP::
|
2351
|
+
:class => Virtuozzo::SOAP::Types::Process::GroupType,
|
2352
2352
|
:schema_type => XSD::QName.new(NsTypes, "groupType"),
|
2353
2353
|
:schema_element => [
|
2354
|
-
["user", "Virtuozzo::SOAP::
|
2355
|
-
["member_group", "Virtuozzo::SOAP::
|
2354
|
+
["user", "Virtuozzo::SOAP::Types::Process::GroupType::User[]", [0, nil]],
|
2355
|
+
["member_group", "Virtuozzo::SOAP::Types::Process::GroupType::Member_group[]", [0, nil]],
|
2356
2356
|
["name", "SOAP::SOAPString", [0, 1]],
|
2357
2357
|
["gid", "SOAP::SOAPInt", [0, 1]]
|
2358
2358
|
]
|
2359
2359
|
)
|
2360
2360
|
|
2361
2361
|
LiteralRegistry.register(
|
2362
|
-
:class => Virtuozzo::SOAP::
|
2362
|
+
:class => Virtuozzo::SOAP::Types::Process::GroupType::User,
|
2363
2363
|
:schema_name => XSD::QName.new(NsTypes, "user"),
|
2364
2364
|
:is_anonymous => true,
|
2365
2365
|
:schema_qualified => true,
|
@@ -2369,7 +2369,7 @@ module Virtuozzo # :nodoc:
|
|
2369
2369
|
)
|
2370
2370
|
|
2371
2371
|
LiteralRegistry.register(
|
2372
|
-
:class => Virtuozzo::SOAP::
|
2372
|
+
:class => Virtuozzo::SOAP::Types::Process::GroupType::Member_group,
|
2373
2373
|
:schema_name => XSD::QName.new(NsTypes, "member_group"),
|
2374
2374
|
:is_anonymous => true,
|
2375
2375
|
:schema_qualified => true,
|
@@ -2379,12 +2379,12 @@ module Virtuozzo # :nodoc:
|
|
2379
2379
|
)
|
2380
2380
|
|
2381
2381
|
LiteralRegistry.register(
|
2382
|
-
:class => Virtuozzo::SOAP::
|
2382
|
+
:class => Virtuozzo::SOAP::Types::Process::PackageType,
|
2383
2383
|
:schema_type => XSD::QName.new(NsTypes, "packageType"),
|
2384
2384
|
:schema_element => [
|
2385
2385
|
["name", "SOAP::SOAPString"],
|
2386
2386
|
["summary", "SOAP::SOAPString", [0, 1]],
|
2387
|
-
["os", "Virtuozzo::SOAP::
|
2387
|
+
["os", "Virtuozzo::SOAP::Types::Process::OsType", [0, 1]],
|
2388
2388
|
["description", "SOAP::SOAPString", [0, 1]],
|
2389
2389
|
["arch", "SOAP::SOAPString", [0, 1]],
|
2390
2390
|
["version", "SOAP::SOAPString", [0, 1]]
|
@@ -2392,13 +2392,13 @@ module Virtuozzo # :nodoc:
|
|
2392
2392
|
)
|
2393
2393
|
|
2394
2394
|
LiteralRegistry.register(
|
2395
|
-
:class => Virtuozzo::SOAP::
|
2395
|
+
:class => Virtuozzo::SOAP::Types::Process::Event_dataType,
|
2396
2396
|
:schema_type => XSD::QName.new(NsTypes, "event_dataType"),
|
2397
2397
|
:schema_element => []
|
2398
2398
|
)
|
2399
2399
|
|
2400
2400
|
LiteralRegistry.register(
|
2401
|
-
:class => Virtuozzo::SOAP::
|
2401
|
+
:class => Virtuozzo::SOAP::Types::Process::Named_listType,
|
2402
2402
|
:schema_type => XSD::QName.new(NsTypes, "named_listType"),
|
2403
2403
|
:schema_element => [
|
2404
2404
|
["name", "SOAP::SOAPString"],
|
@@ -2407,7 +2407,7 @@ module Virtuozzo # :nodoc:
|
|
2407
2407
|
)
|
2408
2408
|
|
2409
2409
|
LiteralRegistry.register(
|
2410
|
-
:class => Virtuozzo::SOAP::
|
2410
|
+
:class => Virtuozzo::SOAP::Types::Process::ModType,
|
2411
2411
|
:schema_type => XSD::QName.new(NsTypes, "modType"),
|
2412
2412
|
:schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
|
2413
2413
|
:schema_element => [
|
@@ -2418,7 +2418,7 @@ module Virtuozzo # :nodoc:
|
|
2418
2418
|
)
|
2419
2419
|
|
2420
2420
|
LiteralRegistry.register(
|
2421
|
-
:class => Virtuozzo::SOAP::
|
2421
|
+
:class => Virtuozzo::SOAP::Types::Process::RealmType,
|
2422
2422
|
:schema_type => XSD::QName.new(NsTypes, "realmType"),
|
2423
2423
|
:schema_element => [
|
2424
2424
|
["id", nil, [0, 1]],
|
@@ -2429,7 +2429,7 @@ module Virtuozzo # :nodoc:
|
|
2429
2429
|
)
|
2430
2430
|
|
2431
2431
|
LiteralRegistry.register(
|
2432
|
-
:class => Virtuozzo::SOAP::
|
2432
|
+
:class => Virtuozzo::SOAP::Types::Process::EventType,
|
2433
2433
|
:schema_type => XSD::QName.new(NsTypes, "eventType"),
|
2434
2434
|
:schema_element => [
|
2435
2435
|
["eid", nil],
|
@@ -2439,34 +2439,34 @@ module Virtuozzo # :nodoc:
|
|
2439
2439
|
["sid", nil, [0, 1]],
|
2440
2440
|
["count", "SOAP::SOAPInt"],
|
2441
2441
|
["id", nil],
|
2442
|
-
["info", "Virtuozzo::SOAP::
|
2443
|
-
["data", "Virtuozzo::SOAP::
|
2442
|
+
["info", "Virtuozzo::SOAP::Types::Process::InfoType"],
|
2443
|
+
["data", "Virtuozzo::SOAP::Types::Process::EventType::C_Data", [0, 1]]
|
2444
2444
|
]
|
2445
2445
|
)
|
2446
2446
|
|
2447
2447
|
LiteralRegistry.register(
|
2448
|
-
:class => Virtuozzo::SOAP::
|
2448
|
+
:class => Virtuozzo::SOAP::Types::Process::EventType::C_Data,
|
2449
2449
|
:schema_name => XSD::QName.new(NsTypes, "data"),
|
2450
2450
|
:is_anonymous => true,
|
2451
2451
|
:schema_qualified => true,
|
2452
2452
|
:schema_element => [
|
2453
|
-
["event_data", "Virtuozzo::SOAP::
|
2453
|
+
["event_data", "Virtuozzo::SOAP::Types::Process::Event_dataType"]
|
2454
2454
|
]
|
2455
2455
|
)
|
2456
2456
|
|
2457
2457
|
LiteralRegistry.register(
|
2458
|
-
:class => Virtuozzo::SOAP::
|
2458
|
+
:class => Virtuozzo::SOAP::Types::Process::InfoType,
|
2459
2459
|
:schema_type => XSD::QName.new(NsTypes, "infoType"),
|
2460
2460
|
:schema_element => [
|
2461
2461
|
["message", "SOAP::SOAPBase64"],
|
2462
2462
|
["translate", nil, [0, 1]],
|
2463
|
-
["parameter", "Virtuozzo::SOAP::
|
2463
|
+
["parameter", "Virtuozzo::SOAP::Types::Process::InfoType[]", [0, nil]],
|
2464
2464
|
["name", "SOAP::SOAPString"]
|
2465
2465
|
]
|
2466
2466
|
)
|
2467
2467
|
|
2468
2468
|
LiteralRegistry.register(
|
2469
|
-
:class => Virtuozzo::SOAP::
|
2469
|
+
:class => Virtuozzo::SOAP::Types::Process::AceType,
|
2470
2470
|
:schema_type => XSD::QName.new(NsTypes, "aceType"),
|
2471
2471
|
:schema_element => [
|
2472
2472
|
["type", "SOAP::SOAPInt"],
|
@@ -2476,27 +2476,27 @@ module Virtuozzo # :nodoc:
|
|
2476
2476
|
)
|
2477
2477
|
|
2478
2478
|
LiteralRegistry.register(
|
2479
|
-
:class => Virtuozzo::SOAP::
|
2479
|
+
:class => Virtuozzo::SOAP::Types::Process::Security_descriptorType,
|
2480
2480
|
:schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
|
2481
2481
|
:schema_element => [
|
2482
2482
|
["owner", nil],
|
2483
2483
|
["group", nil],
|
2484
|
-
["dacl", "Virtuozzo::SOAP::
|
2484
|
+
["dacl", "Virtuozzo::SOAP::Types::Process::Security_descriptorType::Dacl", [0, 1]]
|
2485
2485
|
]
|
2486
2486
|
)
|
2487
2487
|
|
2488
2488
|
LiteralRegistry.register(
|
2489
|
-
:class => Virtuozzo::SOAP::
|
2489
|
+
:class => Virtuozzo::SOAP::Types::Process::Security_descriptorType::Dacl,
|
2490
2490
|
:schema_name => XSD::QName.new(NsTypes, "dacl"),
|
2491
2491
|
:is_anonymous => true,
|
2492
2492
|
:schema_qualified => true,
|
2493
2493
|
:schema_element => [
|
2494
|
-
["ace", "Virtuozzo::SOAP::
|
2494
|
+
["ace", "Virtuozzo::SOAP::Types::Process::AceType[]", [0, nil]]
|
2495
2495
|
]
|
2496
2496
|
)
|
2497
2497
|
|
2498
2498
|
LiteralRegistry.register(
|
2499
|
-
:class => Virtuozzo::SOAP::
|
2499
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_security_objectType,
|
2500
2500
|
:schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
|
2501
2501
|
:schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
|
2502
2502
|
:schema_element => [
|
@@ -2505,19 +2505,19 @@ module Virtuozzo # :nodoc:
|
|
2505
2505
|
)
|
2506
2506
|
|
2507
2507
|
LiteralRegistry.register(
|
2508
|
-
:class => Virtuozzo::SOAP::
|
2508
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_deviceType,
|
2509
2509
|
:schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
|
2510
2510
|
:schema_element => [
|
2511
2511
|
["id", "SOAP::SOAPString", [0, 1]],
|
2512
|
-
["ip_address", "Virtuozzo::SOAP::
|
2512
|
+
["ip_address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
2513
2513
|
["dhcp", nil, [0, 1]],
|
2514
2514
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
2515
|
-
["status", "Virtuozzo::SOAP::
|
2515
|
+
["status", "Virtuozzo::SOAP::Types::Process::Net_deviceType::Status", [0, 1]]
|
2516
2516
|
]
|
2517
2517
|
)
|
2518
2518
|
|
2519
2519
|
LiteralRegistry.register(
|
2520
|
-
:class => Virtuozzo::SOAP::
|
2520
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_deviceType::Status,
|
2521
2521
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
2522
2522
|
:is_anonymous => true,
|
2523
2523
|
:schema_qualified => true,
|
@@ -2528,7 +2528,7 @@ module Virtuozzo # :nodoc:
|
|
2528
2528
|
)
|
2529
2529
|
|
2530
2530
|
LiteralRegistry.register(
|
2531
|
-
:class => Virtuozzo::SOAP::
|
2531
|
+
:class => Virtuozzo::SOAP::Types::Process::Voc_parameterType,
|
2532
2532
|
:schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
|
2533
2533
|
:schema_element => [
|
2534
2534
|
["id", "SOAP::SOAPString"],
|
@@ -2547,31 +2547,31 @@ module Virtuozzo # :nodoc:
|
|
2547
2547
|
)
|
2548
2548
|
|
2549
2549
|
LiteralRegistry.register(
|
2550
|
-
:class => Virtuozzo::SOAP::
|
2550
|
+
:class => Virtuozzo::SOAP::Types::Process::VocabularyType,
|
2551
2551
|
:schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
|
2552
2552
|
:schema_element => [
|
2553
2553
|
["name", "SOAP::SOAPString"],
|
2554
|
-
["parameter", "Virtuozzo::SOAP::
|
2555
|
-
["category", "Virtuozzo::SOAP::
|
2554
|
+
["parameter", "Virtuozzo::SOAP::Types::Process::Voc_parameterType[]", [0, nil]],
|
2555
|
+
["category", "Virtuozzo::SOAP::Types::Process::Voc_parameterType[]", [0, nil]]
|
2556
2556
|
]
|
2557
2557
|
)
|
2558
2558
|
|
2559
2559
|
LiteralRegistry.register(
|
2560
|
-
:class => Virtuozzo::SOAP::
|
2560
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_nicType,
|
2561
2561
|
:schema_type => XSD::QName.new(NsTypes, "net_nicType"),
|
2562
2562
|
:schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
|
2563
2563
|
:schema_element => [
|
2564
2564
|
["id", "SOAP::SOAPString", [0, 1]],
|
2565
|
-
["ip_address", "Virtuozzo::SOAP::
|
2565
|
+
["ip_address", "Virtuozzo::SOAP::Types::Process::Ip_addressType[]", [0, nil]],
|
2566
2566
|
["dhcp", nil, [0, 1]],
|
2567
2567
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
2568
|
-
["status", "Virtuozzo::SOAP::
|
2568
|
+
["status", "Virtuozzo::SOAP::Types::Process::Net_nicType::Status", [0, 1]],
|
2569
2569
|
["mac_address", "SOAP::SOAPString", [0, 1]]
|
2570
2570
|
]
|
2571
2571
|
)
|
2572
2572
|
|
2573
2573
|
LiteralRegistry.register(
|
2574
|
-
:class => Virtuozzo::SOAP::
|
2574
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_nicType::Status,
|
2575
2575
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
2576
2576
|
:is_anonymous => true,
|
2577
2577
|
:schema_qualified => true,
|
@@ -2582,7 +2582,7 @@ module Virtuozzo # :nodoc:
|
|
2582
2582
|
)
|
2583
2583
|
|
2584
2584
|
LiteralRegistry.register(
|
2585
|
-
:class => Virtuozzo::SOAP::
|
2585
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_statType,
|
2586
2586
|
:schema_type => XSD::QName.new(NsTypes, "perf_statType"),
|
2587
2587
|
:schema_element => [
|
2588
2588
|
["cur", "SOAP::SOAPAnySimpleType"],
|
@@ -2593,63 +2593,63 @@ module Virtuozzo # :nodoc:
|
|
2593
2593
|
)
|
2594
2594
|
|
2595
2595
|
LiteralRegistry.register(
|
2596
|
-
:class => Virtuozzo::SOAP::
|
2596
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType,
|
2597
2597
|
:schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
|
2598
2598
|
:schema_element => [
|
2599
2599
|
["eid", nil],
|
2600
|
-
["v_class", ["Virtuozzo::SOAP::
|
2601
|
-
["interval", "Virtuozzo::SOAP::
|
2600
|
+
["v_class", ["Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
|
2601
|
+
["interval", "Virtuozzo::SOAP::Types::Process::IntervalType"]
|
2602
2602
|
]
|
2603
2603
|
)
|
2604
2604
|
|
2605
2605
|
LiteralRegistry.register(
|
2606
|
-
:class => Virtuozzo::SOAP::
|
2606
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance::Counter,
|
2607
2607
|
:schema_name => XSD::QName.new(NsTypes, "counter"),
|
2608
2608
|
:is_anonymous => true,
|
2609
2609
|
:schema_qualified => true,
|
2610
2610
|
:schema_element => [
|
2611
2611
|
["name", "SOAP::SOAPString"],
|
2612
|
-
["value", "Virtuozzo::SOAP::
|
2612
|
+
["value", "Virtuozzo::SOAP::Types::Process::Perf_statType"]
|
2613
2613
|
]
|
2614
2614
|
)
|
2615
2615
|
|
2616
2616
|
LiteralRegistry.register(
|
2617
|
-
:class => Virtuozzo::SOAP::
|
2617
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance,
|
2618
2618
|
:schema_name => XSD::QName.new(NsTypes, "instance"),
|
2619
2619
|
:is_anonymous => true,
|
2620
2620
|
:schema_qualified => true,
|
2621
2621
|
:schema_element => [
|
2622
2622
|
["name", "SOAP::SOAPString", [0, 1]],
|
2623
|
-
["counter", "Virtuozzo::SOAP::
|
2623
|
+
["counter", "Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
|
2624
2624
|
]
|
2625
2625
|
)
|
2626
2626
|
|
2627
2627
|
LiteralRegistry.register(
|
2628
|
-
:class => Virtuozzo::SOAP::
|
2628
|
+
:class => Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class,
|
2629
2629
|
:schema_name => XSD::QName.new(NsTypes, "class"),
|
2630
2630
|
:is_anonymous => true,
|
2631
2631
|
:schema_qualified => true,
|
2632
2632
|
:schema_element => [
|
2633
2633
|
["name", "SOAP::SOAPString"],
|
2634
|
-
["instance", "Virtuozzo::SOAP::
|
2634
|
+
["instance", "Virtuozzo::SOAP::Types::Process::Perf_dataType::C_Class::Instance[]", [1, nil]]
|
2635
2635
|
]
|
2636
2636
|
)
|
2637
2637
|
|
2638
2638
|
LiteralRegistry.register(
|
2639
|
-
:class => Virtuozzo::SOAP::
|
2639
|
+
:class => Virtuozzo::SOAP::Types::Process::Log_options_baseType,
|
2640
2640
|
:schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
|
2641
2641
|
:schema_element => []
|
2642
2642
|
)
|
2643
2643
|
|
2644
2644
|
LiteralRegistry.register(
|
2645
|
-
:class => Virtuozzo::SOAP::
|
2645
|
+
:class => Virtuozzo::SOAP::Types::Process::Log_optionsType,
|
2646
2646
|
:schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
|
2647
2647
|
:schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
|
2648
2648
|
:schema_element => []
|
2649
2649
|
)
|
2650
2650
|
|
2651
2651
|
LiteralRegistry.register(
|
2652
|
-
:class => Virtuozzo::SOAP::
|
2652
|
+
:class => Virtuozzo::SOAP::Types::Process::Virtuozzo_configType,
|
2653
2653
|
:schema_type => XSD::QName.new(NsVzatypes, "virtuozzo_configType"),
|
2654
2654
|
:schema_basetype => XSD::QName.new(NsTypes, "native_configType"),
|
2655
2655
|
:schema_element => [
|
@@ -2658,7 +2658,7 @@ module Virtuozzo # :nodoc:
|
|
2658
2658
|
)
|
2659
2659
|
|
2660
2660
|
LiteralRegistry.register(
|
2661
|
-
:class => Virtuozzo::SOAP::
|
2661
|
+
:class => Virtuozzo::SOAP::Types::Process::Log_optionsType_,
|
2662
2662
|
:schema_type => XSD::QName.new(NsVzatypes, "log_optionsType"),
|
2663
2663
|
:schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
|
2664
2664
|
:schema_element => [
|
@@ -2667,7 +2667,7 @@ module Virtuozzo # :nodoc:
|
|
2667
2667
|
)
|
2668
2668
|
|
2669
2669
|
LiteralRegistry.register(
|
2670
|
-
:class => Virtuozzo::SOAP::
|
2670
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_,
|
2671
2671
|
:schema_type => XSD::QName.new(NsVzatypes, "venv_configType"),
|
2672
2672
|
:schema_basetype => XSD::QName.new(NsTypes, "venv_configType"),
|
2673
2673
|
:schema_element => [
|
@@ -2675,46 +2675,46 @@ module Virtuozzo # :nodoc:
|
|
2675
2675
|
["description", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "description")], [0, 1]],
|
2676
2676
|
["domain", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "domain")], [0, 1]],
|
2677
2677
|
["hostname", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "hostname")], [0, 1]],
|
2678
|
-
["address", ["Virtuozzo::SOAP::
|
2678
|
+
["address", ["Virtuozzo::SOAP::Types::Process::Ip_addressType[]", XSD::QName.new(NsTypes, "address")], [0, nil]],
|
2679
2679
|
["architecture", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "architecture")], [0, 1]],
|
2680
|
-
["os", ["Virtuozzo::SOAP::
|
2680
|
+
["os", ["Virtuozzo::SOAP::Types::Process::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
|
2681
2681
|
["type", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "type")], [0, 1]],
|
2682
2682
|
["nameserver", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "nameserver")], [0, nil]],
|
2683
2683
|
["search_domain", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "search_domain")], [0, nil]],
|
2684
2684
|
["base_sample_id", [nil, XSD::QName.new(NsTypes, "base_sample_id")], [0, 1]],
|
2685
2685
|
["base_snapshot_id", [nil, XSD::QName.new(NsTypes, "base_snapshot_id")], [0, 1]],
|
2686
2686
|
["child_type", ["SOAP::SOAPString[]", XSD::QName.new(NsTypes, "child_type")], [0, nil]],
|
2687
|
-
["qos", ["Virtuozzo::SOAP::
|
2687
|
+
["qos", ["Virtuozzo::SOAP::Types::Process::QosType[]", XSD::QName.new(NsTypes, "qos")], [0, nil]],
|
2688
2688
|
["veid", nil, [0, 1]],
|
2689
2689
|
["ve_root", "SOAP::SOAPString", [0, 1]],
|
2690
2690
|
["ve_private", "SOAP::SOAPString", [0, 1]],
|
2691
2691
|
["on_boot", "SOAP::SOAPBoolean", [0, 1]],
|
2692
|
-
["template", "Virtuozzo::SOAP::
|
2692
|
+
["template", "Virtuozzo::SOAP::Types::Process::TemplateType[]", [0, nil]],
|
2693
2693
|
["disabled", "SOAP::SOAPBoolean", [0, 1]],
|
2694
2694
|
["offline_management", "SOAP::SOAPBoolean", [0, 1]],
|
2695
|
-
["os_template", "Virtuozzo::SOAP::
|
2696
|
-
["distribution", "Virtuozzo::SOAP::
|
2697
|
-
["capability", "Virtuozzo::SOAP::
|
2695
|
+
["os_template", "Virtuozzo::SOAP::Types::Process::TemplateType", [0, 1]],
|
2696
|
+
["distribution", "Virtuozzo::SOAP::Types::Process::TemplateType", [0, 1]],
|
2697
|
+
["capability", "Virtuozzo::SOAP::Types::Process::Venv_configType_::Capability[]", [0, nil]],
|
2698
2698
|
["iptables", "SOAP::SOAPString[]", [0, nil]],
|
2699
2699
|
["config_customized", "SOAP::SOAPBoolean", [0, 1]],
|
2700
2700
|
["class_id", "SOAP::SOAPString", [0, 1]],
|
2701
|
-
["ve_type", "Virtuozzo::SOAP::
|
2701
|
+
["ve_type", "Virtuozzo::SOAP::Types::Process::Venv_configType_::Ve_type", [0, 1]],
|
2702
2702
|
["offline_service", "SOAP::SOAPString[]", [0, nil]],
|
2703
2703
|
["wins_server", "SOAP::SOAPString[]", [0, nil]],
|
2704
|
-
["net_device", "Virtuozzo::SOAP::
|
2704
|
+
["net_device", "Virtuozzo::SOAP::Types::Process::Net_vethType[]", [0, nil]],
|
2705
2705
|
["ts_license_server", "SOAP::SOAPString[]", [0, nil]],
|
2706
2706
|
["ts_mode", "SOAP::SOAPInt", [0, 1]],
|
2707
2707
|
["uuid", "SOAP::SOAPString", [0, 1]],
|
2708
2708
|
["allow_reboot", "SOAP::SOAPBoolean", [0, 1]],
|
2709
2709
|
["rate_bound", "SOAP::SOAPBoolean", [0, 1]],
|
2710
|
-
["interface_rate", "Virtuozzo::SOAP::
|
2710
|
+
["interface_rate", "Virtuozzo::SOAP::Types::Process::Venv_configType_::Interface_rate[]", [0, nil]],
|
2711
2711
|
["slm_mode", "SOAP::SOAPString", [0, 1]],
|
2712
2712
|
["origin_sample", "SOAP::SOAPString", [0, 1]]
|
2713
2713
|
]
|
2714
2714
|
)
|
2715
2715
|
|
2716
2716
|
LiteralRegistry.register(
|
2717
|
-
:class => Virtuozzo::SOAP::
|
2717
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_::Capability,
|
2718
2718
|
:schema_name => XSD::QName.new(NsVzatypes, "capability"),
|
2719
2719
|
:is_anonymous => true,
|
2720
2720
|
:schema_qualified => true,
|
@@ -2725,7 +2725,7 @@ module Virtuozzo # :nodoc:
|
|
2725
2725
|
)
|
2726
2726
|
|
2727
2727
|
LiteralRegistry.register(
|
2728
|
-
:class => Virtuozzo::SOAP::
|
2728
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_::Ve_type,
|
2729
2729
|
:schema_name => XSD::QName.new(NsVzatypes, "ve_type"),
|
2730
2730
|
:is_anonymous => true,
|
2731
2731
|
:schema_qualified => true,
|
@@ -2736,7 +2736,7 @@ module Virtuozzo # :nodoc:
|
|
2736
2736
|
)
|
2737
2737
|
|
2738
2738
|
LiteralRegistry.register(
|
2739
|
-
:class => Virtuozzo::SOAP::
|
2739
|
+
:class => Virtuozzo::SOAP::Types::Process::Venv_configType_::Interface_rate,
|
2740
2740
|
:schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
|
2741
2741
|
:is_anonymous => true,
|
2742
2742
|
:schema_qualified => true,
|
@@ -2747,19 +2747,19 @@ module Virtuozzo # :nodoc:
|
|
2747
2747
|
)
|
2748
2748
|
|
2749
2749
|
LiteralRegistry.register(
|
2750
|
-
:class => Virtuozzo::SOAP::
|
2750
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_settingsType_,
|
2751
2751
|
:schema_type => XSD::QName.new(NsVzatypes, "vt_settingsType"),
|
2752
2752
|
:schema_basetype => XSD::QName.new(NsTypes, "vt_settingsType"),
|
2753
2753
|
:schema_element => [
|
2754
2754
|
["default_sample_id", [nil, XSD::QName.new(NsTypes, "default_sample_id")], [0, 1]],
|
2755
|
-
["parameter", "Virtuozzo::SOAP::
|
2756
|
-
["service", "Virtuozzo::SOAP::
|
2757
|
-
["qos", "Virtuozzo::SOAP::
|
2755
|
+
["parameter", "Virtuozzo::SOAP::Types::Process::Vt_settingsType_::Parameter[]", [0, nil]],
|
2756
|
+
["service", "Virtuozzo::SOAP::Types::Process::Redirect_serviceType[]", [0, nil]],
|
2757
|
+
["qos", "Virtuozzo::SOAP::Types::Process::QosType[]", [0, nil]]
|
2758
2758
|
]
|
2759
2759
|
)
|
2760
2760
|
|
2761
2761
|
LiteralRegistry.register(
|
2762
|
-
:class => Virtuozzo::SOAP::
|
2762
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_settingsType_::Parameter,
|
2763
2763
|
:schema_name => XSD::QName.new(NsVzatypes, "parameter"),
|
2764
2764
|
:is_anonymous => true,
|
2765
2765
|
:schema_qualified => true,
|
@@ -2770,7 +2770,7 @@ module Virtuozzo # :nodoc:
|
|
2770
2770
|
)
|
2771
2771
|
|
2772
2772
|
LiteralRegistry.register(
|
2773
|
-
:class => Virtuozzo::SOAP::
|
2773
|
+
:class => Virtuozzo::SOAP::Types::Process::Vt_infoType_,
|
2774
2774
|
:schema_type => XSD::QName.new(NsVzatypes, "vt_infoType"),
|
2775
2775
|
:schema_basetype => XSD::QName.new(NsTypes, "vt_infoType"),
|
2776
2776
|
:schema_element => [
|
@@ -2782,7 +2782,7 @@ module Virtuozzo # :nodoc:
|
|
2782
2782
|
)
|
2783
2783
|
|
2784
2784
|
LiteralRegistry.register(
|
2785
|
-
:class => Virtuozzo::SOAP::
|
2785
|
+
:class => Virtuozzo::SOAP::Types::Process::Redirect_serviceType,
|
2786
2786
|
:schema_type => XSD::QName.new(NsVzatypes, "redirect_serviceType"),
|
2787
2787
|
:schema_element => [
|
2788
2788
|
["id", "SOAP::SOAPString"],
|
@@ -2793,7 +2793,7 @@ module Virtuozzo # :nodoc:
|
|
2793
2793
|
)
|
2794
2794
|
|
2795
2795
|
LiteralRegistry.register(
|
2796
|
-
:class => Virtuozzo::SOAP::
|
2796
|
+
:class => Virtuozzo::SOAP::Types::Process::TemplateType,
|
2797
2797
|
:schema_type => XSD::QName.new(NsVzatypes, "templateType"),
|
2798
2798
|
:schema_element => [
|
2799
2799
|
["name", "SOAP::SOAPString"],
|
@@ -2802,13 +2802,13 @@ module Virtuozzo # :nodoc:
|
|
2802
2802
|
)
|
2803
2803
|
|
2804
2804
|
LiteralRegistry.register(
|
2805
|
-
:class => Virtuozzo::SOAP::
|
2805
|
+
:class => Virtuozzo::SOAP::Types::Process::Package_std_vztemplateType,
|
2806
2806
|
:schema_type => XSD::QName.new(NsVzatypes, "package_std_vztemplateType"),
|
2807
2807
|
:schema_basetype => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
|
2808
2808
|
:schema_element => [
|
2809
2809
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
|
2810
2810
|
["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
|
2811
|
-
["os", ["Virtuozzo::SOAP::
|
2811
|
+
["os", ["Virtuozzo::SOAP::Types::Process::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
|
2812
2812
|
["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
|
2813
2813
|
["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
|
2814
2814
|
["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
|
@@ -2822,13 +2822,13 @@ module Virtuozzo # :nodoc:
|
|
2822
2822
|
)
|
2823
2823
|
|
2824
2824
|
LiteralRegistry.register(
|
2825
|
-
:class => Virtuozzo::SOAP::
|
2825
|
+
:class => Virtuozzo::SOAP::Types::Process::Package_vztemplateType,
|
2826
2826
|
:schema_type => XSD::QName.new(NsVzatypes, "package_vztemplateType"),
|
2827
2827
|
:schema_basetype => XSD::QName.new(NsTypes, "packageType"),
|
2828
2828
|
:schema_element => [
|
2829
2829
|
["name", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "name")]],
|
2830
2830
|
["summary", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "summary")], [0, 1]],
|
2831
|
-
["os", ["Virtuozzo::SOAP::
|
2831
|
+
["os", ["Virtuozzo::SOAP::Types::Process::OsType", XSD::QName.new(NsTypes, "os")], [0, 1]],
|
2832
2832
|
["description", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "description")], [0, 1]],
|
2833
2833
|
["arch", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "arch")], [0, 1]],
|
2834
2834
|
["version", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "version")], [0, 1]],
|
@@ -2841,7 +2841,7 @@ module Virtuozzo # :nodoc:
|
|
2841
2841
|
)
|
2842
2842
|
|
2843
2843
|
LiteralRegistry.register(
|
2844
|
-
:class => Virtuozzo::SOAP::
|
2844
|
+
:class => Virtuozzo::SOAP::Types::Process::Env_security_objectType_,
|
2845
2845
|
:schema_type => XSD::QName.new(NsVzatypes, "env_security_objectType"),
|
2846
2846
|
:schema_basetype => XSD::QName.new(NsTypes, "env_security_objectType"),
|
2847
2847
|
:schema_element => [
|
@@ -2850,15 +2850,15 @@ module Virtuozzo # :nodoc:
|
|
2850
2850
|
)
|
2851
2851
|
|
2852
2852
|
LiteralRegistry.register(
|
2853
|
-
:class => Virtuozzo::SOAP::
|
2853
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_vethType,
|
2854
2854
|
:schema_type => XSD::QName.new(NsVzatypes, "net_vethType"),
|
2855
2855
|
:schema_basetype => XSD::QName.new(NsTypes, "net_nicType"),
|
2856
2856
|
:schema_element => [
|
2857
2857
|
["id", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "id")], [0, 1]],
|
2858
|
-
["ip_address", ["Virtuozzo::SOAP::
|
2858
|
+
["ip_address", ["Virtuozzo::SOAP::Types::Process::Ip_addressType[]", XSD::QName.new(NsTypes, "ip_address")], [0, nil]],
|
2859
2859
|
["dhcp", [nil, XSD::QName.new(NsTypes, "dhcp")], [0, 1]],
|
2860
2860
|
["network_id", ["SOAP::SOAPBase64", XSD::QName.new(NsTypes, "network_id")], [0, 1]],
|
2861
|
-
["status", ["Virtuozzo::SOAP::
|
2861
|
+
["status", ["Virtuozzo::SOAP::Types::Process::Net_vethType::Status", XSD::QName.new(NsTypes, "status")], [0, 1]],
|
2862
2862
|
["mac_address", ["SOAP::SOAPString", XSD::QName.new(NsTypes, "mac_address")], [0, 1]],
|
2863
2863
|
["wins_server", "SOAP::SOAPString[]", [0, nil]],
|
2864
2864
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
@@ -2868,7 +2868,7 @@ module Virtuozzo # :nodoc:
|
|
2868
2868
|
)
|
2869
2869
|
|
2870
2870
|
LiteralRegistry.register(
|
2871
|
-
:class => Virtuozzo::SOAP::
|
2871
|
+
:class => Virtuozzo::SOAP::Types::Process::Net_vethType::Status,
|
2872
2872
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
2873
2873
|
:is_anonymous => true,
|
2874
2874
|
:schema_qualified => true,
|
@@ -2879,39 +2879,39 @@ module Virtuozzo # :nodoc:
|
|
2879
2879
|
)
|
2880
2880
|
|
2881
2881
|
LiteralRegistry.register(
|
2882
|
-
:class => Virtuozzo::SOAP::
|
2882
|
+
:class => Virtuozzo::SOAP::Types::Process::EnvType_,
|
2883
2883
|
:schema_type => XSD::QName.new(NsVzatypes, "envType"),
|
2884
2884
|
:schema_basetype => XSD::QName.new(NsTypes, "envType"),
|
2885
2885
|
:schema_element => [
|
2886
2886
|
["parent_eid", [nil, XSD::QName.new(NsTypes, "parent_eid")]],
|
2887
2887
|
["eid", [nil, XSD::QName.new(NsTypes, "eid")]],
|
2888
|
-
["status", ["Virtuozzo::SOAP::
|
2888
|
+
["status", ["Virtuozzo::SOAP::Types::Process::Env_statusType", XSD::QName.new(NsTypes, "status")], [0, 1]],
|
2889
2889
|
["alert", ["SOAP::SOAPInt", XSD::QName.new(NsTypes, "alert")], [0, 1]],
|
2890
|
-
["config", ["Virtuozzo::SOAP::
|
2891
|
-
["virtual_config", ["Virtuozzo::SOAP::
|
2890
|
+
["config", ["Virtuozzo::SOAP::Types::Process::Env_configType", XSD::QName.new(NsTypes, "config")], [0, 1]],
|
2891
|
+
["virtual_config", ["Virtuozzo::SOAP::Types::Process::Venv_configType", XSD::QName.new(NsTypes, "virtual_config")], [0, 1]]
|
2892
2892
|
]
|
2893
2893
|
)
|
2894
2894
|
|
2895
2895
|
LiteralRegistry.register(
|
2896
|
-
:class => Virtuozzo::SOAP::
|
2896
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType,
|
2897
2897
|
:schema_type => XSD::QName.new(NsProcessm, "processmType"),
|
2898
2898
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
2899
2899
|
:schema_element => [ :choice,
|
2900
|
-
["configuration", ["Virtuozzo::SOAP::
|
2901
|
-
["ok", ["Virtuozzo::SOAP::
|
2902
|
-
["error", ["Virtuozzo::SOAP::
|
2900
|
+
["configuration", ["Virtuozzo::SOAP::Types::Process::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
2901
|
+
["ok", ["Virtuozzo::SOAP::Types::Process::ProcessmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
2902
|
+
["error", ["Virtuozzo::SOAP::Types::Process::ProcessmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
2903
2903
|
[
|
2904
|
-
["execute", "Virtuozzo::SOAP::
|
2905
|
-
["kill", "Virtuozzo::SOAP::
|
2904
|
+
["execute", "Virtuozzo::SOAP::Types::Process::Execute[]", [0, 1]],
|
2905
|
+
["kill", "Virtuozzo::SOAP::Types::Process::Kill_[]", [0, 1]]
|
2906
2906
|
],
|
2907
2907
|
[
|
2908
|
-
["exec", "Virtuozzo::SOAP::
|
2908
|
+
["exec", "Virtuozzo::SOAP::Types::Process::Exec[]", [0, 1]]
|
2909
2909
|
]
|
2910
2910
|
]
|
2911
2911
|
)
|
2912
2912
|
|
2913
2913
|
LiteralRegistry.register(
|
2914
|
-
:class => Virtuozzo::SOAP::
|
2914
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType::Ok,
|
2915
2915
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2916
2916
|
:is_anonymous => true,
|
2917
2917
|
:schema_qualified => true,
|
@@ -2919,7 +2919,7 @@ module Virtuozzo # :nodoc:
|
|
2919
2919
|
)
|
2920
2920
|
|
2921
2921
|
LiteralRegistry.register(
|
2922
|
-
:class => Virtuozzo::SOAP::
|
2922
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType::Error,
|
2923
2923
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2924
2924
|
:is_anonymous => true,
|
2925
2925
|
:schema_qualified => true,
|
@@ -2930,25 +2930,25 @@ module Virtuozzo # :nodoc:
|
|
2930
2930
|
)
|
2931
2931
|
|
2932
2932
|
LiteralRegistry.register(
|
2933
|
-
:class => Virtuozzo::SOAP::
|
2933
|
+
:class => Virtuozzo::SOAP::Types::Process::Transport_type,
|
2934
2934
|
:schema_type => XSD::QName.new(NsTypes, "transport_type")
|
2935
2935
|
)
|
2936
2936
|
|
2937
2937
|
LiteralRegistry.register(
|
2938
|
-
:class => Virtuozzo::SOAP::
|
2938
|
+
:class => Virtuozzo::SOAP::Types::Process::Yes_no_type,
|
2939
2939
|
:schema_type => XSD::QName.new(NsTypes, "yes_no_type")
|
2940
2940
|
)
|
2941
2941
|
|
2942
2942
|
LiteralRegistry.register(
|
2943
|
-
:class => Virtuozzo::SOAP::
|
2943
|
+
:class => Virtuozzo::SOAP::Types::Process::Packet_headerType,
|
2944
2944
|
:schema_name => XSD::QName.new(NsVzaprocessm_0, "packet_header"),
|
2945
2945
|
:schema_element => [
|
2946
|
-
["auth", "Virtuozzo::SOAP::
|
2946
|
+
["auth", "Virtuozzo::SOAP::Types::Process::AuthType", [0, 1]],
|
2947
2947
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
2948
2948
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
2949
2949
|
["origin", "SOAP::SOAPString", [0, 1]],
|
2950
|
-
["src", "Virtuozzo::SOAP::
|
2951
|
-
["dst", "Virtuozzo::SOAP::
|
2950
|
+
["src", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
2951
|
+
["dst", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
2952
2952
|
["session", "SOAP::SOAPString", [0, 1]]
|
2953
2953
|
],
|
2954
2954
|
:schema_attribute => {
|
@@ -2966,20 +2966,20 @@ module Virtuozzo # :nodoc:
|
|
2966
2966
|
)
|
2967
2967
|
|
2968
2968
|
LiteralRegistry.register(
|
2969
|
-
:class => Virtuozzo::SOAP::
|
2969
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType,
|
2970
2970
|
:schema_name => XSD::QName.new(NsVzaprocessm, "vzaprocessm"),
|
2971
2971
|
:schema_element => [ :choice,
|
2972
|
-
["configuration", ["Virtuozzo::SOAP::
|
2973
|
-
["ok", ["Virtuozzo::SOAP::
|
2974
|
-
["error", ["Virtuozzo::SOAP::
|
2972
|
+
["configuration", ["Virtuozzo::SOAP::Types::Process::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
2973
|
+
["ok", ["Virtuozzo::SOAP::Types::Process::VzaprocessmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
2974
|
+
["error", ["Virtuozzo::SOAP::Types::Process::VzaprocessmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
2975
2975
|
[
|
2976
|
-
["kill", "Virtuozzo::SOAP::
|
2976
|
+
["kill", "Virtuozzo::SOAP::Types::Process::Kill[]", [0, 1]]
|
2977
2977
|
]
|
2978
2978
|
]
|
2979
2979
|
)
|
2980
2980
|
|
2981
2981
|
LiteralRegistry.register(
|
2982
|
-
:class => Virtuozzo::SOAP::
|
2982
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType::Ok,
|
2983
2983
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2984
2984
|
:is_anonymous => true,
|
2985
2985
|
:schema_qualified => true,
|
@@ -2987,7 +2987,7 @@ module Virtuozzo # :nodoc:
|
|
2987
2987
|
)
|
2988
2988
|
|
2989
2989
|
LiteralRegistry.register(
|
2990
|
-
:class => Virtuozzo::SOAP::
|
2990
|
+
:class => Virtuozzo::SOAP::Types::Process::VzaprocessmType::Error,
|
2991
2991
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2992
2992
|
:is_anonymous => true,
|
2993
2993
|
:schema_qualified => true,
|
@@ -2998,7 +2998,7 @@ module Virtuozzo # :nodoc:
|
|
2998
2998
|
)
|
2999
2999
|
|
3000
3000
|
LiteralRegistry.register(
|
3001
|
-
:class => Virtuozzo::SOAP::
|
3001
|
+
:class => Virtuozzo::SOAP::Types::Process::Kill,
|
3002
3002
|
:schema_name => XSD::QName.new(NsVzaprocessm, "kill"),
|
3003
3003
|
:schema_element => [
|
3004
3004
|
["eid", nil],
|
@@ -3008,23 +3008,23 @@ module Virtuozzo # :nodoc:
|
|
3008
3008
|
)
|
3009
3009
|
|
3010
3010
|
LiteralRegistry.register(
|
3011
|
-
:class => Virtuozzo::SOAP::
|
3011
|
+
:class => Virtuozzo::SOAP::Types::Process::KillResponse,
|
3012
3012
|
:schema_name => XSD::QName.new(NsVzaprocessm, "killResponse"),
|
3013
3013
|
:schema_element => []
|
3014
3014
|
)
|
3015
3015
|
|
3016
3016
|
LiteralRegistry.register(
|
3017
|
-
:class => Virtuozzo::SOAP::
|
3017
|
+
:class => Virtuozzo::SOAP::Types::Process::Packet,
|
3018
3018
|
:schema_name => XSD::QName.new(NsProtocol, "packet"),
|
3019
3019
|
:schema_element => [
|
3020
|
-
["auth", "Virtuozzo::SOAP::
|
3020
|
+
["auth", "Virtuozzo::SOAP::Types::Process::AuthType", [0, 1]],
|
3021
3021
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
3022
3022
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
3023
3023
|
["origin", "SOAP::SOAPString", [0, 1]],
|
3024
|
-
["src", "Virtuozzo::SOAP::
|
3025
|
-
["dst", "Virtuozzo::SOAP::
|
3024
|
+
["src", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
3025
|
+
["dst", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
3026
3026
|
["session", "SOAP::SOAPString", [0, 1]],
|
3027
|
-
["data", "Virtuozzo::SOAP::
|
3027
|
+
["data", "Virtuozzo::SOAP::Types::Process::Packet::C_Data"]
|
3028
3028
|
],
|
3029
3029
|
:schema_attribute => {
|
3030
3030
|
XSD::QName.new(nil, "version") => "SOAP::SOAPString",
|
@@ -3041,25 +3041,25 @@ module Virtuozzo # :nodoc:
|
|
3041
3041
|
)
|
3042
3042
|
|
3043
3043
|
LiteralRegistry.register(
|
3044
|
-
:class => Virtuozzo::SOAP::
|
3044
|
+
:class => Virtuozzo::SOAP::Types::Process::Packet::C_Data,
|
3045
3045
|
:schema_name => XSD::QName.new(NsProtocol, "data"),
|
3046
3046
|
:is_anonymous => true,
|
3047
3047
|
:schema_qualified => true,
|
3048
3048
|
:schema_element => [
|
3049
|
-
["operator", "Virtuozzo::SOAP::
|
3049
|
+
["operator", "Virtuozzo::SOAP::Types::Process::OperatorType[]"]
|
3050
3050
|
]
|
3051
3051
|
)
|
3052
3052
|
|
3053
3053
|
LiteralRegistry.register(
|
3054
|
-
:class => Virtuozzo::SOAP::
|
3054
|
+
:class => Virtuozzo::SOAP::Types::Process::Packet_headerType,
|
3055
3055
|
:schema_name => XSD::QName.new(NsProtocol, "packet_header"),
|
3056
3056
|
:schema_element => [
|
3057
|
-
["auth", "Virtuozzo::SOAP::
|
3057
|
+
["auth", "Virtuozzo::SOAP::Types::Process::AuthType", [0, 1]],
|
3058
3058
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
3059
3059
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
3060
3060
|
["origin", "SOAP::SOAPString", [0, 1]],
|
3061
|
-
["src", "Virtuozzo::SOAP::
|
3062
|
-
["dst", "Virtuozzo::SOAP::
|
3061
|
+
["src", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
3062
|
+
["dst", "Virtuozzo::SOAP::Types::Process::RouteType", [0, 1]],
|
3063
3063
|
["session", "SOAP::SOAPString", [0, 1]]
|
3064
3064
|
],
|
3065
3065
|
:schema_attribute => {
|
@@ -3077,31 +3077,31 @@ module Virtuozzo # :nodoc:
|
|
3077
3077
|
)
|
3078
3078
|
|
3079
3079
|
LiteralRegistry.register(
|
3080
|
-
:class => Virtuozzo::SOAP::
|
3080
|
+
:class => Virtuozzo::SOAP::Types::Process::OperatorType,
|
3081
3081
|
:schema_name => XSD::QName.new(NsProtocol, "operator"),
|
3082
3082
|
:schema_element => [ :choice,
|
3083
|
-
["configuration", "Virtuozzo::SOAP::
|
3083
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"]
|
3084
3084
|
]
|
3085
3085
|
)
|
3086
3086
|
|
3087
3087
|
LiteralRegistry.register(
|
3088
|
-
:class => Virtuozzo::SOAP::
|
3088
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType,
|
3089
3089
|
:schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
|
3090
3090
|
:schema_element => [ :choice,
|
3091
|
-
["configuration", "Virtuozzo::SOAP::
|
3092
|
-
["ok", "Virtuozzo::SOAP::
|
3093
|
-
["error", "Virtuozzo::SOAP::
|
3091
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"],
|
3092
|
+
["ok", "Virtuozzo::SOAP::Types::Process::Operator_periodicType::Ok[]"],
|
3093
|
+
["error", "Virtuozzo::SOAP::Types::Process::Operator_periodicType::Error[]"],
|
3094
3094
|
[ :choice,
|
3095
|
-
["start_monitor", "Virtuozzo::SOAP::
|
3096
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
3097
|
-
["set_period", "Virtuozzo::SOAP::
|
3095
|
+
["start_monitor", "Virtuozzo::SOAP::Types::Process::Start_monitorType"],
|
3096
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::Process::Stop_monitorType"],
|
3097
|
+
["set_period", "Virtuozzo::SOAP::Types::Process::Set_periodType", [0, 1]],
|
3098
3098
|
["report", nil, [0, 1]]
|
3099
3099
|
]
|
3100
3100
|
]
|
3101
3101
|
)
|
3102
3102
|
|
3103
3103
|
LiteralRegistry.register(
|
3104
|
-
:class => Virtuozzo::SOAP::
|
3104
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType::Ok,
|
3105
3105
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
3106
3106
|
:is_anonymous => true,
|
3107
3107
|
:schema_qualified => true,
|
@@ -3109,7 +3109,7 @@ module Virtuozzo # :nodoc:
|
|
3109
3109
|
)
|
3110
3110
|
|
3111
3111
|
LiteralRegistry.register(
|
3112
|
-
:class => Virtuozzo::SOAP::
|
3112
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_periodicType::Error,
|
3113
3113
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
3114
3114
|
:is_anonymous => true,
|
3115
3115
|
:schema_qualified => true,
|
@@ -3120,17 +3120,17 @@ module Virtuozzo # :nodoc:
|
|
3120
3120
|
)
|
3121
3121
|
|
3122
3122
|
LiteralRegistry.register(
|
3123
|
-
:class => Virtuozzo::SOAP::
|
3123
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType,
|
3124
3124
|
:schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
|
3125
3125
|
:schema_element => [ :choice,
|
3126
|
-
["configuration", "Virtuozzo::SOAP::
|
3127
|
-
["ok", "Virtuozzo::SOAP::
|
3128
|
-
["error", "Virtuozzo::SOAP::
|
3126
|
+
["configuration", "Virtuozzo::SOAP::Types::Process::ConfigurationType"],
|
3127
|
+
["ok", "Virtuozzo::SOAP::Types::Process::Operator_functionalType::Ok[]"],
|
3128
|
+
["error", "Virtuozzo::SOAP::Types::Process::Operator_functionalType::Error[]"]
|
3129
3129
|
]
|
3130
3130
|
)
|
3131
3131
|
|
3132
3132
|
LiteralRegistry.register(
|
3133
|
-
:class => Virtuozzo::SOAP::
|
3133
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType::Ok,
|
3134
3134
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
3135
3135
|
:is_anonymous => true,
|
3136
3136
|
:schema_qualified => true,
|
@@ -3138,7 +3138,7 @@ module Virtuozzo # :nodoc:
|
|
3138
3138
|
)
|
3139
3139
|
|
3140
3140
|
LiteralRegistry.register(
|
3141
|
-
:class => Virtuozzo::SOAP::
|
3141
|
+
:class => Virtuozzo::SOAP::Types::Process::Operator_functionalType::Error,
|
3142
3142
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
3143
3143
|
:is_anonymous => true,
|
3144
3144
|
:schema_qualified => true,
|
@@ -3149,13 +3149,13 @@ module Virtuozzo # :nodoc:
|
|
3149
3149
|
)
|
3150
3150
|
|
3151
3151
|
LiteralRegistry.register(
|
3152
|
-
:class => Virtuozzo::SOAP::
|
3152
|
+
:class => Virtuozzo::SOAP::Types::Process::Event_dataType,
|
3153
3153
|
:schema_name => XSD::QName.new(NsTypes, "event_data"),
|
3154
3154
|
:schema_element => []
|
3155
3155
|
)
|
3156
3156
|
|
3157
3157
|
LiteralRegistry.register(
|
3158
|
-
:class => Virtuozzo::SOAP::
|
3158
|
+
:class => Virtuozzo::SOAP::Types::Process::Voc_parameterType,
|
3159
3159
|
:schema_name => XSD::QName.new(NsTypes, "parameter"),
|
3160
3160
|
:schema_element => [
|
3161
3161
|
["id", "SOAP::SOAPString"],
|
@@ -3174,7 +3174,7 @@ module Virtuozzo # :nodoc:
|
|
3174
3174
|
)
|
3175
3175
|
|
3176
3176
|
LiteralRegistry.register(
|
3177
|
-
:class => Virtuozzo::SOAP::
|
3177
|
+
:class => Virtuozzo::SOAP::Types::Process::Voc_parameterType,
|
3178
3178
|
:schema_name => XSD::QName.new(NsTypes, "category"),
|
3179
3179
|
:schema_element => [
|
3180
3180
|
["id", "SOAP::SOAPString"],
|
@@ -3193,7 +3193,7 @@ module Virtuozzo # :nodoc:
|
|
3193
3193
|
)
|
3194
3194
|
|
3195
3195
|
LiteralRegistry.register(
|
3196
|
-
:class => Virtuozzo::SOAP::
|
3196
|
+
:class => Virtuozzo::SOAP::Types::Process::Interface_rate,
|
3197
3197
|
:schema_name => XSD::QName.new(NsVzatypes, "interface_rate"),
|
3198
3198
|
:schema_element => [
|
3199
3199
|
["class_id", "SOAP::SOAPString"],
|
@@ -3203,24 +3203,24 @@ module Virtuozzo # :nodoc:
|
|
3203
3203
|
)
|
3204
3204
|
|
3205
3205
|
LiteralRegistry.register(
|
3206
|
-
:class => Virtuozzo::SOAP::
|
3206
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType,
|
3207
3207
|
:schema_name => XSD::QName.new(NsProcessm, "processm"),
|
3208
3208
|
:schema_element => [ :choice,
|
3209
|
-
["configuration", ["Virtuozzo::SOAP::
|
3210
|
-
["ok", ["Virtuozzo::SOAP::
|
3211
|
-
["error", ["Virtuozzo::SOAP::
|
3209
|
+
["configuration", ["Virtuozzo::SOAP::Types::Process::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
3210
|
+
["ok", ["Virtuozzo::SOAP::Types::Process::ProcessmType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
3211
|
+
["error", ["Virtuozzo::SOAP::Types::Process::ProcessmType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
3212
3212
|
[
|
3213
|
-
["execute", "Virtuozzo::SOAP::
|
3214
|
-
["kill", "Virtuozzo::SOAP::
|
3213
|
+
["execute", "Virtuozzo::SOAP::Types::Process::Execute[]", [0, 1]],
|
3214
|
+
["kill", "Virtuozzo::SOAP::Types::Process::Kill_[]", [0, 1]]
|
3215
3215
|
],
|
3216
3216
|
[
|
3217
|
-
["exec", "Virtuozzo::SOAP::
|
3217
|
+
["exec", "Virtuozzo::SOAP::Types::Process::Exec[]", [0, 1]]
|
3218
3218
|
]
|
3219
3219
|
]
|
3220
3220
|
)
|
3221
3221
|
|
3222
3222
|
LiteralRegistry.register(
|
3223
|
-
:class => Virtuozzo::SOAP::
|
3223
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType::Ok,
|
3224
3224
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
3225
3225
|
:is_anonymous => true,
|
3226
3226
|
:schema_qualified => true,
|
@@ -3228,7 +3228,7 @@ module Virtuozzo # :nodoc:
|
|
3228
3228
|
)
|
3229
3229
|
|
3230
3230
|
LiteralRegistry.register(
|
3231
|
-
:class => Virtuozzo::SOAP::
|
3231
|
+
:class => Virtuozzo::SOAP::Types::Process::ProcessmType::Error,
|
3232
3232
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
3233
3233
|
:is_anonymous => true,
|
3234
3234
|
:schema_qualified => true,
|
@@ -3239,7 +3239,7 @@ module Virtuozzo # :nodoc:
|
|
3239
3239
|
)
|
3240
3240
|
|
3241
3241
|
LiteralRegistry.register(
|
3242
|
-
:class => Virtuozzo::SOAP::
|
3242
|
+
:class => Virtuozzo::SOAP::Types::Process::Kill_,
|
3243
3243
|
:schema_name => XSD::QName.new(NsProcessm, "kill"),
|
3244
3244
|
:schema_element => [
|
3245
3245
|
["pid", "SOAP::SOAPInt[]", [1, nil]],
|
@@ -3248,19 +3248,19 @@ module Virtuozzo # :nodoc:
|
|
3248
3248
|
)
|
3249
3249
|
|
3250
3250
|
LiteralRegistry.register(
|
3251
|
-
:class => Virtuozzo::SOAP::
|
3251
|
+
:class => Virtuozzo::SOAP::Types::Process::Execute,
|
3252
3252
|
:schema_name => XSD::QName.new(NsProcessm, "execute"),
|
3253
3253
|
:schema_element => [
|
3254
3254
|
["argv", "SOAP::SOAPBase64[]", [0, nil]],
|
3255
3255
|
["envp", "SOAP::SOAPBase64[]", [0, nil]],
|
3256
3256
|
["stream_mode", nil, [0, 1]],
|
3257
|
-
["cred", "Virtuozzo::SOAP::
|
3258
|
-
["stdio", "Virtuozzo::SOAP::
|
3257
|
+
["cred", "Virtuozzo::SOAP::Types::Process::Execute::Cred"],
|
3258
|
+
["stdio", "Virtuozzo::SOAP::Types::Process::Execute::Stdio", [0, 1]]
|
3259
3259
|
]
|
3260
3260
|
)
|
3261
3261
|
|
3262
3262
|
LiteralRegistry.register(
|
3263
|
-
:class => Virtuozzo::SOAP::
|
3263
|
+
:class => Virtuozzo::SOAP::Types::Process::Execute::Cred,
|
3264
3264
|
:schema_name => XSD::QName.new(NsProcessm, "cred"),
|
3265
3265
|
:is_anonymous => true,
|
3266
3266
|
:schema_qualified => true,
|
@@ -3280,7 +3280,7 @@ module Virtuozzo # :nodoc:
|
|
3280
3280
|
)
|
3281
3281
|
|
3282
3282
|
LiteralRegistry.register(
|
3283
|
-
:class => Virtuozzo::SOAP::
|
3283
|
+
:class => Virtuozzo::SOAP::Types::Process::Execute::Stdio,
|
3284
3284
|
:schema_name => XSD::QName.new(NsProcessm, "stdio"),
|
3285
3285
|
:is_anonymous => true,
|
3286
3286
|
:schema_qualified => true,
|
@@ -3293,7 +3293,7 @@ module Virtuozzo # :nodoc:
|
|
3293
3293
|
)
|
3294
3294
|
|
3295
3295
|
LiteralRegistry.register(
|
3296
|
-
:class => Virtuozzo::SOAP::
|
3296
|
+
:class => Virtuozzo::SOAP::Types::Process::Exec,
|
3297
3297
|
:schema_name => XSD::QName.new(NsProcessm, "exec"),
|
3298
3298
|
:schema_element => [
|
3299
3299
|
["status", "SOAP::SOAPInt"],
|
@@ -3303,15 +3303,15 @@ module Virtuozzo # :nodoc:
|
|
3303
3303
|
)
|
3304
3304
|
|
3305
3305
|
LiteralRegistry.register(
|
3306
|
-
:class => Virtuozzo::SOAP::
|
3306
|
+
:class => Virtuozzo::SOAP::Types::Process::ExecuteResponse,
|
3307
3307
|
:schema_name => XSD::QName.new(NsProcessm, "executeResponse"),
|
3308
3308
|
:schema_element => [
|
3309
|
-
["exec", "Virtuozzo::SOAP::
|
3309
|
+
["exec", "Virtuozzo::SOAP::Types::Process::Exec"]
|
3310
3310
|
]
|
3311
3311
|
)
|
3312
3312
|
|
3313
3313
|
LiteralRegistry.register(
|
3314
|
-
:class => Virtuozzo::SOAP::
|
3314
|
+
:class => Virtuozzo::SOAP::Types::Process::KillResponse_,
|
3315
3315
|
:schema_name => XSD::QName.new(NsProcessm, "killResponse"),
|
3316
3316
|
:schema_element => []
|
3317
3317
|
)
|