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_info'
|
2
2
|
require 'soap/mapping'
|
3
3
|
|
4
4
|
module Virtuozzo # :nodoc:
|
@@ -17,26 +17,26 @@ module Virtuozzo # :nodoc:
|
|
17
17
|
NsXMLSchema = "http://www.w3.org/2001/XMLSchema"
|
18
18
|
|
19
19
|
EncodedRegistry.register(
|
20
|
-
:class => Virtuozzo::SOAP::
|
20
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType,
|
21
21
|
:schema_type => XSD::QName.new(NsVzaproc_info, "vzaproc_infoType"),
|
22
22
|
:schema_basetype => XSD::QName.new(NsProc_info, "proc_infoType"),
|
23
23
|
:schema_element => [
|
24
|
-
["configuration", ["Virtuozzo::SOAP::
|
25
|
-
["ok", ["Virtuozzo::SOAP::
|
26
|
-
["error", ["Virtuozzo::SOAP::
|
24
|
+
["configuration", ["Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
25
|
+
["ok", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
26
|
+
["error", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
27
27
|
[
|
28
|
-
["start_monitor", ["Virtuozzo::SOAP::
|
29
|
-
["stop_monitor", ["Virtuozzo::SOAP::
|
30
|
-
["get", ["Virtuozzo::SOAP::
|
28
|
+
["start_monitor", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Start_monitor[]", XSD::QName.new(NsProc_info, "start_monitor")]],
|
29
|
+
["stop_monitor", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Stop_monitor[]", XSD::QName.new(NsProc_info, "stop_monitor")]],
|
30
|
+
["get", ["Virtuozzo::SOAP::Types::ProcessInfo::Get[]", XSD::QName.new(NsProc_info, "get")]]
|
31
31
|
],
|
32
32
|
[
|
33
|
-
["ps_info", ["Virtuozzo::SOAP::
|
33
|
+
["ps_info", ["Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType[]", XSD::QName.new(NsProc_info, "ps_info")], [0, 1]]
|
34
34
|
]
|
35
35
|
]
|
36
36
|
)
|
37
37
|
|
38
38
|
EncodedRegistry.register(
|
39
|
-
:class => Virtuozzo::SOAP::
|
39
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Ok,
|
40
40
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
41
41
|
:is_anonymous => true,
|
42
42
|
:schema_qualified => true,
|
@@ -44,7 +44,7 @@ module Virtuozzo # :nodoc:
|
|
44
44
|
)
|
45
45
|
|
46
46
|
EncodedRegistry.register(
|
47
|
-
:class => Virtuozzo::SOAP::
|
47
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Error,
|
48
48
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
49
49
|
:is_anonymous => true,
|
50
50
|
:schema_qualified => true,
|
@@ -55,7 +55,7 @@ module Virtuozzo # :nodoc:
|
|
55
55
|
)
|
56
56
|
|
57
57
|
EncodedRegistry.register(
|
58
|
-
:class => Virtuozzo::SOAP::
|
58
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Start_monitor,
|
59
59
|
:schema_name => XSD::QName.new(NsProc_info, "start_monitor"),
|
60
60
|
:is_anonymous => true,
|
61
61
|
:schema_qualified => true,
|
@@ -68,7 +68,7 @@ module Virtuozzo # :nodoc:
|
|
68
68
|
)
|
69
69
|
|
70
70
|
EncodedRegistry.register(
|
71
|
-
:class => Virtuozzo::SOAP::
|
71
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Stop_monitor,
|
72
72
|
:schema_name => XSD::QName.new(NsProc_info, "stop_monitor"),
|
73
73
|
:is_anonymous => true,
|
74
74
|
:schema_qualified => true,
|
@@ -76,7 +76,7 @@ module Virtuozzo # :nodoc:
|
|
76
76
|
)
|
77
77
|
|
78
78
|
EncodedRegistry.register(
|
79
|
-
:class => Virtuozzo::SOAP::
|
79
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::OsType,
|
80
80
|
:schema_type => XSD::QName.new(NsTypes, "osType"),
|
81
81
|
:schema_element => [
|
82
82
|
["platform", "SOAP::SOAPString", [0, 1]],
|
@@ -87,7 +87,7 @@ module Virtuozzo # :nodoc:
|
|
87
87
|
)
|
88
88
|
|
89
89
|
EncodedRegistry.register(
|
90
|
-
:class => Virtuozzo::SOAP::
|
90
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_statusType,
|
91
91
|
:schema_type => XSD::QName.new(NsTypes, "env_statusType"),
|
92
92
|
:schema_element => [
|
93
93
|
["state", "SOAP::SOAPInt", [0, 1]],
|
@@ -96,7 +96,7 @@ module Virtuozzo # :nodoc:
|
|
96
96
|
)
|
97
97
|
|
98
98
|
EncodedRegistry.register(
|
99
|
-
:class => Virtuozzo::SOAP::
|
99
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::QosType,
|
100
100
|
:schema_type => XSD::QName.new(NsTypes, "qosType"),
|
101
101
|
:schema_element => [
|
102
102
|
["id", "SOAP::SOAPString"],
|
@@ -107,16 +107,16 @@ module Virtuozzo # :nodoc:
|
|
107
107
|
)
|
108
108
|
|
109
109
|
EncodedRegistry.register(
|
110
|
-
:class => Virtuozzo::SOAP::
|
110
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_configType,
|
111
111
|
:schema_type => XSD::QName.new(NsTypes, "env_configType"),
|
112
112
|
:schema_element => [
|
113
113
|
["name", "SOAP::SOAPString", [0, 1]],
|
114
114
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
115
115
|
["domain", "SOAP::SOAPString", [0, 1]],
|
116
116
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
117
|
-
["address", "Virtuozzo::SOAP::
|
117
|
+
["address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
118
118
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
119
|
-
["os", "Virtuozzo::SOAP::
|
119
|
+
["os", "Virtuozzo::SOAP::Types::ProcessInfo::OsType", [0, 1]],
|
120
120
|
["type", "SOAP::SOAPString", [0, 1]],
|
121
121
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
122
122
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
@@ -127,7 +127,7 @@ module Virtuozzo # :nodoc:
|
|
127
127
|
)
|
128
128
|
|
129
129
|
EncodedRegistry.register(
|
130
|
-
:class => Virtuozzo::SOAP::
|
130
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Venv_configType,
|
131
131
|
:schema_type => XSD::QName.new(NsTypes, "venv_configType"),
|
132
132
|
:schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
|
133
133
|
:schema_element => [
|
@@ -135,40 +135,40 @@ module Virtuozzo # :nodoc:
|
|
135
135
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
136
136
|
["domain", "SOAP::SOAPString", [0, 1]],
|
137
137
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
138
|
-
["address", "Virtuozzo::SOAP::
|
138
|
+
["address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
139
139
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
140
|
-
["os", "Virtuozzo::SOAP::
|
140
|
+
["os", "Virtuozzo::SOAP::Types::ProcessInfo::OsType", [0, 1]],
|
141
141
|
["type", "SOAP::SOAPString", [0, 1]],
|
142
142
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
143
143
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
144
144
|
["base_sample_id", nil, [0, 1]],
|
145
145
|
["base_snapshot_id", nil, [0, 1]],
|
146
146
|
["child_type", "SOAP::SOAPString[]", [0, nil]],
|
147
|
-
["qos", "Virtuozzo::SOAP::
|
147
|
+
["qos", "Virtuozzo::SOAP::Types::ProcessInfo::QosType[]", [0, nil]]
|
148
148
|
]
|
149
149
|
)
|
150
150
|
|
151
151
|
EncodedRegistry.register(
|
152
|
-
:class => Virtuozzo::SOAP::
|
152
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Native_configType,
|
153
153
|
:schema_type => XSD::QName.new(NsTypes, "native_configType"),
|
154
154
|
:schema_element => []
|
155
155
|
)
|
156
156
|
|
157
157
|
EncodedRegistry.register(
|
158
|
-
:class => Virtuozzo::SOAP::
|
158
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::EnvType,
|
159
159
|
:schema_type => XSD::QName.new(NsTypes, "envType"),
|
160
160
|
:schema_element => [
|
161
161
|
["parent_eid", nil],
|
162
162
|
["eid", nil],
|
163
|
-
["status", "Virtuozzo::SOAP::
|
163
|
+
["status", "Virtuozzo::SOAP::Types::ProcessInfo::Env_statusType", [0, 1]],
|
164
164
|
["alert", "SOAP::SOAPInt", [0, 1]],
|
165
|
-
["config", "Virtuozzo::SOAP::
|
166
|
-
["virtual_config", "Virtuozzo::SOAP::
|
165
|
+
["config", "Virtuozzo::SOAP::Types::ProcessInfo::Env_configType", [0, 1]],
|
166
|
+
["virtual_config", "Virtuozzo::SOAP::Types::ProcessInfo::Venv_configType", [0, 1]]
|
167
167
|
]
|
168
168
|
)
|
169
169
|
|
170
170
|
EncodedRegistry.register(
|
171
|
-
:class => Virtuozzo::SOAP::
|
171
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ProcessesType,
|
172
172
|
:schema_type => XSD::QName.new(NsTypes, "processesType"),
|
173
173
|
:schema_element => [
|
174
174
|
["run", "SOAP::SOAPInt"],
|
@@ -181,7 +181,7 @@ module Virtuozzo # :nodoc:
|
|
181
181
|
)
|
182
182
|
|
183
183
|
EncodedRegistry.register(
|
184
|
-
:class => Virtuozzo::SOAP::
|
184
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avgType,
|
185
185
|
:schema_type => XSD::QName.new(NsTypes, "load_avgType"),
|
186
186
|
:schema_element => [
|
187
187
|
["l1", "SOAP::SOAPDouble"],
|
@@ -191,7 +191,7 @@ module Virtuozzo # :nodoc:
|
|
191
191
|
)
|
192
192
|
|
193
193
|
EncodedRegistry.register(
|
194
|
-
:class => Virtuozzo::SOAP::
|
194
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Cpu_loadType,
|
195
195
|
:schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
|
196
196
|
:schema_element => [
|
197
197
|
["system", "SOAP::SOAPLong"],
|
@@ -202,7 +202,7 @@ module Virtuozzo # :nodoc:
|
|
202
202
|
)
|
203
203
|
|
204
204
|
EncodedRegistry.register(
|
205
|
-
:class => Virtuozzo::SOAP::
|
205
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::CpuType,
|
206
206
|
:schema_type => XSD::QName.new(NsTypes, "cpuType"),
|
207
207
|
:schema_element => [
|
208
208
|
["mhz", "SOAP::SOAPInt"],
|
@@ -218,16 +218,16 @@ module Virtuozzo # :nodoc:
|
|
218
218
|
)
|
219
219
|
|
220
220
|
EncodedRegistry.register(
|
221
|
-
:class => Virtuozzo::SOAP::
|
221
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TransferType,
|
222
222
|
:schema_type => XSD::QName.new(NsTypes, "transferType"),
|
223
223
|
:schema_element => [
|
224
|
-
["input", "Virtuozzo::SOAP::
|
225
|
-
["output", "Virtuozzo::SOAP::
|
224
|
+
["input", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Input"],
|
225
|
+
["output", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Output"]
|
226
226
|
]
|
227
227
|
)
|
228
228
|
|
229
229
|
EncodedRegistry.register(
|
230
|
-
:class => Virtuozzo::SOAP::
|
230
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Input,
|
231
231
|
:schema_name => XSD::QName.new(NsTypes, "input"),
|
232
232
|
:is_anonymous => true,
|
233
233
|
:schema_qualified => true,
|
@@ -238,7 +238,7 @@ module Virtuozzo # :nodoc:
|
|
238
238
|
)
|
239
239
|
|
240
240
|
EncodedRegistry.register(
|
241
|
-
:class => Virtuozzo::SOAP::
|
241
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Output,
|
242
242
|
:schema_name => XSD::QName.new(NsTypes, "output"),
|
243
243
|
:is_anonymous => true,
|
244
244
|
:schema_qualified => true,
|
@@ -249,16 +249,16 @@ module Virtuozzo # :nodoc:
|
|
249
249
|
)
|
250
250
|
|
251
251
|
EncodedRegistry.register(
|
252
|
-
:class => Virtuozzo::SOAP::
|
252
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType,
|
253
253
|
:schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
|
254
254
|
:schema_element => [
|
255
|
-
["address", "Virtuozzo::SOAP::
|
256
|
-
["login", "Virtuozzo::SOAP::
|
255
|
+
["address", "Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Address"],
|
256
|
+
["login", "Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Login", [0, 1]]
|
257
257
|
]
|
258
258
|
)
|
259
259
|
|
260
260
|
EncodedRegistry.register(
|
261
|
-
:class => Virtuozzo::SOAP::
|
261
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Address,
|
262
262
|
:schema_name => XSD::QName.new(NsTypes, "address"),
|
263
263
|
:is_anonymous => true,
|
264
264
|
:schema_qualified => true,
|
@@ -268,7 +268,7 @@ module Virtuozzo # :nodoc:
|
|
268
268
|
)
|
269
269
|
|
270
270
|
EncodedRegistry.register(
|
271
|
-
:class => Virtuozzo::SOAP::
|
271
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Login,
|
272
272
|
:schema_name => XSD::QName.new(NsTypes, "login"),
|
273
273
|
:is_anonymous => true,
|
274
274
|
:schema_qualified => true,
|
@@ -279,7 +279,7 @@ module Virtuozzo # :nodoc:
|
|
279
279
|
)
|
280
280
|
|
281
281
|
EncodedRegistry.register(
|
282
|
-
:class => Virtuozzo::SOAP::
|
282
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ResourceType,
|
283
283
|
:schema_type => XSD::QName.new(NsTypes, "resourceType"),
|
284
284
|
:schema_element => [
|
285
285
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -292,7 +292,7 @@ module Virtuozzo # :nodoc:
|
|
292
292
|
)
|
293
293
|
|
294
294
|
EncodedRegistry.register(
|
295
|
-
:class => Virtuozzo::SOAP::
|
295
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::IntervalType,
|
296
296
|
:schema_type => XSD::QName.new(NsTypes, "intervalType"),
|
297
297
|
:schema_element => [
|
298
298
|
["start_time", nil],
|
@@ -301,7 +301,7 @@ module Virtuozzo # :nodoc:
|
|
301
301
|
)
|
302
302
|
|
303
303
|
EncodedRegistry.register(
|
304
|
-
:class => Virtuozzo::SOAP::
|
304
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::StatsType,
|
305
305
|
:schema_type => XSD::QName.new(NsTypes, "statsType"),
|
306
306
|
:schema_element => [
|
307
307
|
["avg", "SOAP::SOAPLong", [0, 1]],
|
@@ -315,7 +315,7 @@ module Virtuozzo # :nodoc:
|
|
315
315
|
)
|
316
316
|
|
317
317
|
EncodedRegistry.register(
|
318
|
-
:class => Virtuozzo::SOAP::
|
318
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_addressType,
|
319
319
|
:schema_type => XSD::QName.new(NsTypes, "net_addressType"),
|
320
320
|
:schema_element => [
|
321
321
|
["host", nil],
|
@@ -324,16 +324,16 @@ module Virtuozzo # :nodoc:
|
|
324
324
|
)
|
325
325
|
|
326
326
|
EncodedRegistry.register(
|
327
|
-
:class => Virtuozzo::SOAP::
|
327
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_classType,
|
328
328
|
:schema_type => XSD::QName.new(NsTypes, "net_classType"),
|
329
329
|
:schema_element => [
|
330
330
|
["id", "SOAP::SOAPString", [0, 1]],
|
331
|
-
["transfer", "Virtuozzo::SOAP::
|
331
|
+
["transfer", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType", [0, 1]]
|
332
332
|
]
|
333
333
|
)
|
334
334
|
|
335
335
|
EncodedRegistry.register(
|
336
|
-
:class => Virtuozzo::SOAP::
|
336
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_rangeType,
|
337
337
|
:schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
|
338
338
|
:schema_element => [
|
339
339
|
["id", "SOAP::SOAPString", [0, 1]],
|
@@ -344,19 +344,19 @@ module Virtuozzo # :nodoc:
|
|
344
344
|
)
|
345
345
|
|
346
346
|
EncodedRegistry.register(
|
347
|
-
:class => Virtuozzo::SOAP::
|
347
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sample_confType,
|
348
348
|
:schema_type => XSD::QName.new(NsTypes, "sample_confType"),
|
349
349
|
:schema_element => [
|
350
|
-
["env_config", "Virtuozzo::SOAP::
|
350
|
+
["env_config", "Virtuozzo::SOAP::Types::ProcessInfo::Env_configType"],
|
351
351
|
["id", "SOAP::SOAPString", [0, 1]],
|
352
352
|
["name", "SOAP::SOAPString"],
|
353
353
|
["comment", "SOAP::SOAPBase64", [0, 1]],
|
354
|
-
["vt_version", "Virtuozzo::SOAP::
|
354
|
+
["vt_version", "Virtuozzo::SOAP::Types::ProcessInfo::Sample_confType::Vt_version", [0, 1]]
|
355
355
|
]
|
356
356
|
)
|
357
357
|
|
358
358
|
EncodedRegistry.register(
|
359
|
-
:class => Virtuozzo::SOAP::
|
359
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sample_confType::Vt_version,
|
360
360
|
:schema_name => XSD::QName.new(NsTypes, "vt_version"),
|
361
361
|
:is_anonymous => true,
|
362
362
|
:schema_qualified => true,
|
@@ -368,34 +368,34 @@ module Virtuozzo # :nodoc:
|
|
368
368
|
)
|
369
369
|
|
370
370
|
EncodedRegistry.register(
|
371
|
-
:class => Virtuozzo::SOAP::
|
371
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::InterfaceType,
|
372
372
|
:schema_type => XSD::QName.new(NsTypes, "interfaceType"),
|
373
373
|
:schema_element => [
|
374
374
|
["name", "SOAP::SOAPString"],
|
375
375
|
["bandwidth", "SOAP::SOAPInt", [0, 1]],
|
376
|
-
["transfer", "Virtuozzo::SOAP::
|
376
|
+
["transfer", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType", [0, 1]],
|
377
377
|
["ipaddress", nil, [0, 1]],
|
378
378
|
["flags", "SOAP::SOAPInt", [0, 1]]
|
379
379
|
]
|
380
380
|
)
|
381
381
|
|
382
382
|
EncodedRegistry.register(
|
383
|
-
:class => Virtuozzo::SOAP::
|
383
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType,
|
384
384
|
:schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
|
385
385
|
:schema_element => [
|
386
|
-
["load_avg", "Virtuozzo::SOAP::
|
387
|
-
["processes", "Virtuozzo::SOAP::
|
388
|
-
["cpu_load", "Virtuozzo::SOAP::
|
389
|
-
["cpu_states", "Virtuozzo::SOAP::
|
386
|
+
["load_avg", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avgType"],
|
387
|
+
["processes", "Virtuozzo::SOAP::Types::ProcessInfo::ProcessesType"],
|
388
|
+
["cpu_load", "Virtuozzo::SOAP::Types::ProcessInfo::Cpu_loadType"],
|
389
|
+
["cpu_states", "Virtuozzo::SOAP::Types::ProcessInfo::Cpu_loadType"],
|
390
390
|
["users", "SOAP::SOAPInt"],
|
391
391
|
["uptime", "SOAP::SOAPLong"],
|
392
|
-
["memory", "Virtuozzo::SOAP::
|
393
|
-
["swap", "Virtuozzo::SOAP::
|
392
|
+
["memory", "Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Memory", [0, 1]],
|
393
|
+
["swap", "Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Swap", [0, 1]]
|
394
394
|
]
|
395
395
|
)
|
396
396
|
|
397
397
|
EncodedRegistry.register(
|
398
|
-
:class => Virtuozzo::SOAP::
|
398
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Memory,
|
399
399
|
:schema_name => XSD::QName.new(NsTypes, "memory"),
|
400
400
|
:is_anonymous => true,
|
401
401
|
:schema_qualified => true,
|
@@ -406,7 +406,7 @@ module Virtuozzo # :nodoc:
|
|
406
406
|
)
|
407
407
|
|
408
408
|
EncodedRegistry.register(
|
409
|
-
:class => Virtuozzo::SOAP::
|
409
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Swap,
|
410
410
|
:schema_name => XSD::QName.new(NsTypes, "swap"),
|
411
411
|
:is_anonymous => true,
|
412
412
|
:schema_qualified => true,
|
@@ -417,10 +417,10 @@ module Virtuozzo # :nodoc:
|
|
417
417
|
)
|
418
418
|
|
419
419
|
EncodedRegistry.register(
|
420
|
-
:class => Virtuozzo::SOAP::
|
420
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType,
|
421
421
|
:schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
|
422
422
|
:schema_element => [
|
423
|
-
["process", "Virtuozzo::SOAP::
|
423
|
+
["process", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process[]", [1, nil]],
|
424
424
|
["param_id", "SOAP::SOAPString[]", [1, nil]],
|
425
425
|
["run", "SOAP::SOAPInt"],
|
426
426
|
["idle", "SOAP::SOAPInt"],
|
@@ -433,7 +433,7 @@ module Virtuozzo # :nodoc:
|
|
433
433
|
)
|
434
434
|
|
435
435
|
EncodedRegistry.register(
|
436
|
-
:class => Virtuozzo::SOAP::
|
436
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process,
|
437
437
|
:schema_name => XSD::QName.new(NsTypes, "process"),
|
438
438
|
:is_anonymous => true,
|
439
439
|
:schema_qualified => true,
|
@@ -444,17 +444,17 @@ module Virtuozzo # :nodoc:
|
|
444
444
|
)
|
445
445
|
|
446
446
|
EncodedRegistry.register(
|
447
|
-
:class => Virtuozzo::SOAP::
|
447
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType,
|
448
448
|
:schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
|
449
449
|
:schema_element => [
|
450
|
-
["l1", "Virtuozzo::SOAP::
|
451
|
-
["l2", "Virtuozzo::SOAP::
|
452
|
-
["l3", "Virtuozzo::SOAP::
|
450
|
+
["l1", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L1"],
|
451
|
+
["l2", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L2", [0, 1]],
|
452
|
+
["l3", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L3", [0, 1]]
|
453
453
|
]
|
454
454
|
)
|
455
455
|
|
456
456
|
EncodedRegistry.register(
|
457
|
-
:class => Virtuozzo::SOAP::
|
457
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L1,
|
458
458
|
:schema_name => XSD::QName.new(NsTypes, "l1"),
|
459
459
|
:is_anonymous => true,
|
460
460
|
:schema_qualified => true,
|
@@ -467,7 +467,7 @@ module Virtuozzo # :nodoc:
|
|
467
467
|
)
|
468
468
|
|
469
469
|
EncodedRegistry.register(
|
470
|
-
:class => Virtuozzo::SOAP::
|
470
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L2,
|
471
471
|
:schema_name => XSD::QName.new(NsTypes, "l2"),
|
472
472
|
:is_anonymous => true,
|
473
473
|
:schema_qualified => true,
|
@@ -480,7 +480,7 @@ module Virtuozzo # :nodoc:
|
|
480
480
|
)
|
481
481
|
|
482
482
|
EncodedRegistry.register(
|
483
|
-
:class => Virtuozzo::SOAP::
|
483
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L3,
|
484
484
|
:schema_name => XSD::QName.new(NsTypes, "l3"),
|
485
485
|
:is_anonymous => true,
|
486
486
|
:schema_qualified => true,
|
@@ -493,7 +493,7 @@ module Virtuozzo # :nodoc:
|
|
493
493
|
)
|
494
494
|
|
495
495
|
EncodedRegistry.register(
|
496
|
-
:class => Virtuozzo::SOAP::
|
496
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Alert_dataType,
|
497
497
|
:schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
|
498
498
|
:schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
|
499
499
|
:schema_element => [
|
@@ -502,7 +502,7 @@ module Virtuozzo # :nodoc:
|
|
502
502
|
)
|
503
503
|
|
504
504
|
EncodedRegistry.register(
|
505
|
-
:class => Virtuozzo::SOAP::
|
505
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType,
|
506
506
|
:schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
|
507
507
|
:schema_element => [
|
508
508
|
["ip", nil],
|
@@ -511,25 +511,25 @@ module Virtuozzo # :nodoc:
|
|
511
511
|
)
|
512
512
|
|
513
513
|
EncodedRegistry.register(
|
514
|
-
:class => Virtuozzo::SOAP::
|
514
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_resourceType,
|
515
515
|
:schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
|
516
516
|
:schema_element => [
|
517
517
|
["eid", nil],
|
518
|
-
["ip_pool", "Virtuozzo::SOAP::
|
518
|
+
["ip_pool", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType", [0, 1]]
|
519
519
|
]
|
520
520
|
)
|
521
521
|
|
522
522
|
EncodedRegistry.register(
|
523
|
-
:class => Virtuozzo::SOAP::
|
523
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType,
|
524
524
|
:schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
|
525
525
|
:schema_element => [ :choice,
|
526
|
-
["ip_range", "Virtuozzo::SOAP::
|
526
|
+
["ip_range", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType::Ip_range[]"],
|
527
527
|
["ip", "[]"]
|
528
528
|
]
|
529
529
|
)
|
530
530
|
|
531
531
|
EncodedRegistry.register(
|
532
|
-
:class => Virtuozzo::SOAP::
|
532
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType::Ip_range,
|
533
533
|
:schema_name => XSD::QName.new(NsTypes, "ip_range"),
|
534
534
|
:is_anonymous => true,
|
535
535
|
:schema_qualified => true,
|
@@ -540,7 +540,7 @@ module Virtuozzo # :nodoc:
|
|
540
540
|
)
|
541
541
|
|
542
542
|
EncodedRegistry.register(
|
543
|
-
:class => Virtuozzo::SOAP::
|
543
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UsageType,
|
544
544
|
:schema_type => XSD::QName.new(NsTypes, "usageType"),
|
545
545
|
:schema_element => [
|
546
546
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -550,20 +550,20 @@ module Virtuozzo # :nodoc:
|
|
550
550
|
)
|
551
551
|
|
552
552
|
EncodedRegistry.register(
|
553
|
-
:class => Virtuozzo::SOAP::
|
553
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Root_credentialType,
|
554
554
|
:schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
|
555
555
|
:schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
|
556
556
|
:schema_element => [
|
557
557
|
["id", "SOAP::SOAPString"],
|
558
558
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
559
559
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
560
|
-
["cred", "Virtuozzo::SOAP::
|
561
|
-
["objects", "Virtuozzo::SOAP::
|
560
|
+
["cred", "Virtuozzo::SOAP::Types::ProcessInfo::CredentialType[]", [0, nil]],
|
561
|
+
["objects", "Virtuozzo::SOAP::Types::ProcessInfo::Root_credentialType::Objects", [0, 1]]
|
562
562
|
]
|
563
563
|
)
|
564
564
|
|
565
565
|
EncodedRegistry.register(
|
566
|
-
:class => Virtuozzo::SOAP::
|
566
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Root_credentialType::Objects,
|
567
567
|
:schema_name => XSD::QName.new(NsTypes, "objects"),
|
568
568
|
:is_anonymous => true,
|
569
569
|
:schema_qualified => true,
|
@@ -573,30 +573,30 @@ module Virtuozzo # :nodoc:
|
|
573
573
|
)
|
574
574
|
|
575
575
|
EncodedRegistry.register(
|
576
|
-
:class => Virtuozzo::SOAP::
|
576
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::CredentialType,
|
577
577
|
:schema_type => XSD::QName.new(NsTypes, "credentialType"),
|
578
578
|
:schema_element => [
|
579
579
|
["id", "SOAP::SOAPString"],
|
580
580
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
581
581
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
582
|
-
["cred", "Virtuozzo::SOAP::
|
582
|
+
["cred", "Virtuozzo::SOAP::Types::ProcessInfo::CredentialType[]", [0, nil]]
|
583
583
|
]
|
584
584
|
)
|
585
585
|
|
586
586
|
EncodedRegistry.register(
|
587
|
-
:class => Virtuozzo::SOAP::
|
587
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType,
|
588
588
|
:schema_type => XSD::QName.new(NsTypes, "tokenType"),
|
589
589
|
:schema_element => [
|
590
590
|
["user", nil],
|
591
|
-
["groups", "Virtuozzo::SOAP::
|
592
|
-
["deny_only_sids", "Virtuozzo::SOAP::
|
593
|
-
["privileges", "Virtuozzo::SOAP::
|
594
|
-
["source", "Virtuozzo::SOAP::
|
591
|
+
["groups", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Groups", [0, 1]],
|
592
|
+
["deny_only_sids", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Deny_only_sids", [0, 1]],
|
593
|
+
["privileges", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Privileges", [0, 1]],
|
594
|
+
["source", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Source", [0, 1]]
|
595
595
|
]
|
596
596
|
)
|
597
597
|
|
598
598
|
EncodedRegistry.register(
|
599
|
-
:class => Virtuozzo::SOAP::
|
599
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Groups,
|
600
600
|
:schema_name => XSD::QName.new(NsTypes, "groups"),
|
601
601
|
:is_anonymous => true,
|
602
602
|
:schema_qualified => true,
|
@@ -606,7 +606,7 @@ module Virtuozzo # :nodoc:
|
|
606
606
|
)
|
607
607
|
|
608
608
|
EncodedRegistry.register(
|
609
|
-
:class => Virtuozzo::SOAP::
|
609
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Deny_only_sids,
|
610
610
|
:schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
|
611
611
|
:is_anonymous => true,
|
612
612
|
:schema_qualified => true,
|
@@ -616,7 +616,7 @@ module Virtuozzo # :nodoc:
|
|
616
616
|
)
|
617
617
|
|
618
618
|
EncodedRegistry.register(
|
619
|
-
:class => Virtuozzo::SOAP::
|
619
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Privileges,
|
620
620
|
:schema_name => XSD::QName.new(NsTypes, "privileges"),
|
621
621
|
:is_anonymous => true,
|
622
622
|
:schema_qualified => true,
|
@@ -626,7 +626,7 @@ module Virtuozzo # :nodoc:
|
|
626
626
|
)
|
627
627
|
|
628
628
|
EncodedRegistry.register(
|
629
|
-
:class => Virtuozzo::SOAP::
|
629
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Source,
|
630
630
|
:schema_name => XSD::QName.new(NsTypes, "source"),
|
631
631
|
:is_anonymous => true,
|
632
632
|
:schema_qualified => true,
|
@@ -637,7 +637,7 @@ module Virtuozzo # :nodoc:
|
|
637
637
|
)
|
638
638
|
|
639
639
|
EncodedRegistry.register(
|
640
|
-
:class => Virtuozzo::SOAP::
|
640
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Connectivity_infoType,
|
641
641
|
:schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
642
642
|
:schema_element => [
|
643
643
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
@@ -647,7 +647,7 @@ module Virtuozzo # :nodoc:
|
|
647
647
|
)
|
648
648
|
|
649
649
|
EncodedRegistry.register(
|
650
|
-
:class => Virtuozzo::SOAP::
|
650
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Auth_nameType,
|
651
651
|
:schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
|
652
652
|
:schema_element => [
|
653
653
|
["name", "SOAP::SOAPBase64", [0, 1]],
|
@@ -657,20 +657,20 @@ module Virtuozzo # :nodoc:
|
|
657
657
|
)
|
658
658
|
|
659
659
|
EncodedRegistry.register(
|
660
|
-
:class => Virtuozzo::SOAP::
|
660
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Connection_infoType,
|
661
661
|
:schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
|
662
662
|
:schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
663
663
|
:schema_element => [
|
664
664
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
665
665
|
["address", "SOAP::SOAPString"],
|
666
666
|
["port", "SOAP::SOAPUnsignedInt", [0, 1]],
|
667
|
-
["login", "Virtuozzo::SOAP::
|
667
|
+
["login", "Virtuozzo::SOAP::Types::ProcessInfo::Auth_nameType", [0, 1]],
|
668
668
|
["password", "SOAP::SOAPBase64", [0, 1]]
|
669
669
|
]
|
670
670
|
)
|
671
671
|
|
672
672
|
EncodedRegistry.register(
|
673
|
-
:class => Virtuozzo::SOAP::
|
673
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Eid_listType,
|
674
674
|
:schema_type => XSD::QName.new(NsTypes, "eid_listType"),
|
675
675
|
:schema_element => [
|
676
676
|
["eid", "[]", [0, nil]]
|
@@ -678,7 +678,7 @@ module Virtuozzo # :nodoc:
|
|
678
678
|
)
|
679
679
|
|
680
680
|
EncodedRegistry.register(
|
681
|
-
:class => Virtuozzo::SOAP::
|
681
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vt_infoType,
|
682
682
|
:schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
|
683
683
|
:schema_element => [
|
684
684
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -686,7 +686,7 @@ module Virtuozzo # :nodoc:
|
|
686
686
|
)
|
687
687
|
|
688
688
|
EncodedRegistry.register(
|
689
|
-
:class => Virtuozzo::SOAP::
|
689
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vt_settingsType,
|
690
690
|
:schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
|
691
691
|
:schema_element => [
|
692
692
|
["default_sample_id", nil, [0, 1]]
|
@@ -694,11 +694,11 @@ module Virtuozzo # :nodoc:
|
|
694
694
|
)
|
695
695
|
|
696
696
|
EncodedRegistry.register(
|
697
|
-
:class => Virtuozzo::SOAP::
|
697
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UserType,
|
698
698
|
:schema_type => XSD::QName.new(NsTypes, "userType"),
|
699
699
|
:schema_element => [
|
700
|
-
["initial_group", "Virtuozzo::SOAP::
|
701
|
-
["group", "Virtuozzo::SOAP::
|
700
|
+
["initial_group", "Virtuozzo::SOAP::Types::ProcessInfo::UserType::Initial_group", [0, 1]],
|
701
|
+
["group", "Virtuozzo::SOAP::Types::ProcessInfo::UserType::Group[]", [0, nil]],
|
702
702
|
["uid", "SOAP::SOAPInt", [0, 1]],
|
703
703
|
["shell", "SOAP::SOAPString", [0, 1]],
|
704
704
|
["password", "SOAP::SOAPBase64", [0, 1]],
|
@@ -709,7 +709,7 @@ module Virtuozzo # :nodoc:
|
|
709
709
|
)
|
710
710
|
|
711
711
|
EncodedRegistry.register(
|
712
|
-
:class => Virtuozzo::SOAP::
|
712
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UserType::Initial_group,
|
713
713
|
:schema_name => XSD::QName.new(NsTypes, "initial_group"),
|
714
714
|
:is_anonymous => true,
|
715
715
|
:schema_qualified => true,
|
@@ -720,7 +720,7 @@ module Virtuozzo # :nodoc:
|
|
720
720
|
)
|
721
721
|
|
722
722
|
EncodedRegistry.register(
|
723
|
-
:class => Virtuozzo::SOAP::
|
723
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UserType::Group,
|
724
724
|
:schema_name => XSD::QName.new(NsTypes, "group"),
|
725
725
|
:is_anonymous => true,
|
726
726
|
:schema_qualified => true,
|
@@ -731,18 +731,18 @@ module Virtuozzo # :nodoc:
|
|
731
731
|
)
|
732
732
|
|
733
733
|
EncodedRegistry.register(
|
734
|
-
:class => Virtuozzo::SOAP::
|
734
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GroupType,
|
735
735
|
:schema_type => XSD::QName.new(NsTypes, "groupType"),
|
736
736
|
:schema_element => [
|
737
|
-
["user", "Virtuozzo::SOAP::
|
738
|
-
["member_group", "Virtuozzo::SOAP::
|
737
|
+
["user", "Virtuozzo::SOAP::Types::ProcessInfo::GroupType::User[]", [0, nil]],
|
738
|
+
["member_group", "Virtuozzo::SOAP::Types::ProcessInfo::GroupType::Member_group[]", [0, nil]],
|
739
739
|
["name", "SOAP::SOAPString", [0, 1]],
|
740
740
|
["gid", "SOAP::SOAPInt", [0, 1]]
|
741
741
|
]
|
742
742
|
)
|
743
743
|
|
744
744
|
EncodedRegistry.register(
|
745
|
-
:class => Virtuozzo::SOAP::
|
745
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GroupType::User,
|
746
746
|
:schema_name => XSD::QName.new(NsTypes, "user"),
|
747
747
|
:is_anonymous => true,
|
748
748
|
:schema_qualified => true,
|
@@ -752,7 +752,7 @@ module Virtuozzo # :nodoc:
|
|
752
752
|
)
|
753
753
|
|
754
754
|
EncodedRegistry.register(
|
755
|
-
:class => Virtuozzo::SOAP::
|
755
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GroupType::Member_group,
|
756
756
|
:schema_name => XSD::QName.new(NsTypes, "member_group"),
|
757
757
|
:is_anonymous => true,
|
758
758
|
:schema_qualified => true,
|
@@ -762,12 +762,12 @@ module Virtuozzo # :nodoc:
|
|
762
762
|
)
|
763
763
|
|
764
764
|
EncodedRegistry.register(
|
765
|
-
:class => Virtuozzo::SOAP::
|
765
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::PackageType,
|
766
766
|
:schema_type => XSD::QName.new(NsTypes, "packageType"),
|
767
767
|
:schema_element => [
|
768
768
|
["name", "SOAP::SOAPString"],
|
769
769
|
["summary", "SOAP::SOAPString", [0, 1]],
|
770
|
-
["os", "Virtuozzo::SOAP::
|
770
|
+
["os", "Virtuozzo::SOAP::Types::ProcessInfo::OsType", [0, 1]],
|
771
771
|
["description", "SOAP::SOAPString", [0, 1]],
|
772
772
|
["arch", "SOAP::SOAPString", [0, 1]],
|
773
773
|
["version", "SOAP::SOAPString", [0, 1]]
|
@@ -775,13 +775,13 @@ module Virtuozzo # :nodoc:
|
|
775
775
|
)
|
776
776
|
|
777
777
|
EncodedRegistry.register(
|
778
|
-
:class => Virtuozzo::SOAP::
|
778
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Event_dataType,
|
779
779
|
:schema_type => XSD::QName.new(NsTypes, "event_dataType"),
|
780
780
|
:schema_element => []
|
781
781
|
)
|
782
782
|
|
783
783
|
EncodedRegistry.register(
|
784
|
-
:class => Virtuozzo::SOAP::
|
784
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Named_listType,
|
785
785
|
:schema_type => XSD::QName.new(NsTypes, "named_listType"),
|
786
786
|
:schema_element => [
|
787
787
|
["name", "SOAP::SOAPString"],
|
@@ -790,7 +790,7 @@ module Virtuozzo # :nodoc:
|
|
790
790
|
)
|
791
791
|
|
792
792
|
EncodedRegistry.register(
|
793
|
-
:class => Virtuozzo::SOAP::
|
793
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ModType,
|
794
794
|
:schema_type => XSD::QName.new(NsTypes, "modType"),
|
795
795
|
:schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
|
796
796
|
:schema_element => [
|
@@ -801,7 +801,7 @@ module Virtuozzo # :nodoc:
|
|
801
801
|
)
|
802
802
|
|
803
803
|
EncodedRegistry.register(
|
804
|
-
:class => Virtuozzo::SOAP::
|
804
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::RealmType,
|
805
805
|
:schema_type => XSD::QName.new(NsTypes, "realmType"),
|
806
806
|
:schema_element => [
|
807
807
|
["id", nil, [0, 1]],
|
@@ -812,7 +812,7 @@ module Virtuozzo # :nodoc:
|
|
812
812
|
)
|
813
813
|
|
814
814
|
EncodedRegistry.register(
|
815
|
-
:class => Virtuozzo::SOAP::
|
815
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::EventType,
|
816
816
|
:schema_type => XSD::QName.new(NsTypes, "eventType"),
|
817
817
|
:schema_element => [
|
818
818
|
["eid", nil],
|
@@ -822,34 +822,34 @@ module Virtuozzo # :nodoc:
|
|
822
822
|
["sid", nil, [0, 1]],
|
823
823
|
["count", "SOAP::SOAPInt"],
|
824
824
|
["id", nil],
|
825
|
-
["info", "Virtuozzo::SOAP::
|
826
|
-
["data", "Virtuozzo::SOAP::
|
825
|
+
["info", "Virtuozzo::SOAP::Types::ProcessInfo::InfoType"],
|
826
|
+
["data", "Virtuozzo::SOAP::Types::ProcessInfo::EventType::C_Data", [0, 1]]
|
827
827
|
]
|
828
828
|
)
|
829
829
|
|
830
830
|
EncodedRegistry.register(
|
831
|
-
:class => Virtuozzo::SOAP::
|
831
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::EventType::C_Data,
|
832
832
|
:schema_name => XSD::QName.new(NsTypes, "data"),
|
833
833
|
:is_anonymous => true,
|
834
834
|
:schema_qualified => true,
|
835
835
|
:schema_element => [
|
836
|
-
["event_data", "Virtuozzo::SOAP::
|
836
|
+
["event_data", "Virtuozzo::SOAP::Types::ProcessInfo::Event_dataType"]
|
837
837
|
]
|
838
838
|
)
|
839
839
|
|
840
840
|
EncodedRegistry.register(
|
841
|
-
:class => Virtuozzo::SOAP::
|
841
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::InfoType,
|
842
842
|
:schema_type => XSD::QName.new(NsTypes, "infoType"),
|
843
843
|
:schema_element => [
|
844
844
|
["message", "SOAP::SOAPBase64"],
|
845
845
|
["translate", nil, [0, 1]],
|
846
|
-
["parameter", "Virtuozzo::SOAP::
|
846
|
+
["parameter", "Virtuozzo::SOAP::Types::ProcessInfo::InfoType[]", [0, nil]],
|
847
847
|
["name", "SOAP::SOAPString"]
|
848
848
|
]
|
849
849
|
)
|
850
850
|
|
851
851
|
EncodedRegistry.register(
|
852
|
-
:class => Virtuozzo::SOAP::
|
852
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::AceType,
|
853
853
|
:schema_type => XSD::QName.new(NsTypes, "aceType"),
|
854
854
|
:schema_element => [
|
855
855
|
["type", "SOAP::SOAPInt"],
|
@@ -859,27 +859,27 @@ module Virtuozzo # :nodoc:
|
|
859
859
|
)
|
860
860
|
|
861
861
|
EncodedRegistry.register(
|
862
|
-
:class => Virtuozzo::SOAP::
|
862
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Security_descriptorType,
|
863
863
|
:schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
|
864
864
|
:schema_element => [
|
865
865
|
["owner", nil],
|
866
866
|
["group", nil],
|
867
|
-
["dacl", "Virtuozzo::SOAP::
|
867
|
+
["dacl", "Virtuozzo::SOAP::Types::ProcessInfo::Security_descriptorType::Dacl", [0, 1]]
|
868
868
|
]
|
869
869
|
)
|
870
870
|
|
871
871
|
EncodedRegistry.register(
|
872
|
-
:class => Virtuozzo::SOAP::
|
872
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Security_descriptorType::Dacl,
|
873
873
|
:schema_name => XSD::QName.new(NsTypes, "dacl"),
|
874
874
|
:is_anonymous => true,
|
875
875
|
:schema_qualified => true,
|
876
876
|
:schema_element => [
|
877
|
-
["ace", "Virtuozzo::SOAP::
|
877
|
+
["ace", "Virtuozzo::SOAP::Types::ProcessInfo::AceType[]", [0, nil]]
|
878
878
|
]
|
879
879
|
)
|
880
880
|
|
881
881
|
EncodedRegistry.register(
|
882
|
-
:class => Virtuozzo::SOAP::
|
882
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_security_objectType,
|
883
883
|
:schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
|
884
884
|
:schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
|
885
885
|
:schema_element => [
|
@@ -888,19 +888,19 @@ module Virtuozzo # :nodoc:
|
|
888
888
|
)
|
889
889
|
|
890
890
|
EncodedRegistry.register(
|
891
|
-
:class => Virtuozzo::SOAP::
|
891
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_deviceType,
|
892
892
|
:schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
|
893
893
|
:schema_element => [
|
894
894
|
["id", "SOAP::SOAPString", [0, 1]],
|
895
|
-
["ip_address", "Virtuozzo::SOAP::
|
895
|
+
["ip_address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
896
896
|
["dhcp", nil, [0, 1]],
|
897
897
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
898
|
-
["status", "Virtuozzo::SOAP::
|
898
|
+
["status", "Virtuozzo::SOAP::Types::ProcessInfo::Net_deviceType::Status", [0, 1]]
|
899
899
|
]
|
900
900
|
)
|
901
901
|
|
902
902
|
EncodedRegistry.register(
|
903
|
-
:class => Virtuozzo::SOAP::
|
903
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_deviceType::Status,
|
904
904
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
905
905
|
:is_anonymous => true,
|
906
906
|
:schema_qualified => true,
|
@@ -911,7 +911,7 @@ module Virtuozzo # :nodoc:
|
|
911
911
|
)
|
912
912
|
|
913
913
|
EncodedRegistry.register(
|
914
|
-
:class => Virtuozzo::SOAP::
|
914
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType,
|
915
915
|
:schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
|
916
916
|
:schema_element => [
|
917
917
|
["id", "SOAP::SOAPString"],
|
@@ -930,31 +930,31 @@ module Virtuozzo # :nodoc:
|
|
930
930
|
)
|
931
931
|
|
932
932
|
EncodedRegistry.register(
|
933
|
-
:class => Virtuozzo::SOAP::
|
933
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::VocabularyType,
|
934
934
|
:schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
|
935
935
|
:schema_element => [
|
936
936
|
["name", "SOAP::SOAPString"],
|
937
|
-
["parameter", "Virtuozzo::SOAP::
|
938
|
-
["category", "Virtuozzo::SOAP::
|
937
|
+
["parameter", "Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType[]", [0, nil]],
|
938
|
+
["category", "Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType[]", [0, nil]]
|
939
939
|
]
|
940
940
|
)
|
941
941
|
|
942
942
|
EncodedRegistry.register(
|
943
|
-
:class => Virtuozzo::SOAP::
|
943
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_nicType,
|
944
944
|
:schema_type => XSD::QName.new(NsTypes, "net_nicType"),
|
945
945
|
:schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
|
946
946
|
:schema_element => [
|
947
947
|
["id", "SOAP::SOAPString", [0, 1]],
|
948
|
-
["ip_address", "Virtuozzo::SOAP::
|
948
|
+
["ip_address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
949
949
|
["dhcp", nil, [0, 1]],
|
950
950
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
951
|
-
["status", "Virtuozzo::SOAP::
|
951
|
+
["status", "Virtuozzo::SOAP::Types::ProcessInfo::Net_nicType::Status", [0, 1]],
|
952
952
|
["mac_address", "SOAP::SOAPString", [0, 1]]
|
953
953
|
]
|
954
954
|
)
|
955
955
|
|
956
956
|
EncodedRegistry.register(
|
957
|
-
:class => Virtuozzo::SOAP::
|
957
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_nicType::Status,
|
958
958
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
959
959
|
:is_anonymous => true,
|
960
960
|
:schema_qualified => true,
|
@@ -965,7 +965,7 @@ module Virtuozzo # :nodoc:
|
|
965
965
|
)
|
966
966
|
|
967
967
|
EncodedRegistry.register(
|
968
|
-
:class => Virtuozzo::SOAP::
|
968
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_statType,
|
969
969
|
:schema_type => XSD::QName.new(NsTypes, "perf_statType"),
|
970
970
|
:schema_element => [
|
971
971
|
["cur", "SOAP::SOAPAnySimpleType"],
|
@@ -976,71 +976,71 @@ module Virtuozzo # :nodoc:
|
|
976
976
|
)
|
977
977
|
|
978
978
|
EncodedRegistry.register(
|
979
|
-
:class => Virtuozzo::SOAP::
|
979
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType,
|
980
980
|
:schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
|
981
981
|
:schema_element => [
|
982
982
|
["eid", nil],
|
983
|
-
["v_class", ["Virtuozzo::SOAP::
|
984
|
-
["interval", "Virtuozzo::SOAP::
|
983
|
+
["v_class", ["Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
|
984
|
+
["interval", "Virtuozzo::SOAP::Types::ProcessInfo::IntervalType"]
|
985
985
|
]
|
986
986
|
)
|
987
987
|
|
988
988
|
EncodedRegistry.register(
|
989
|
-
:class => Virtuozzo::SOAP::
|
989
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance::Counter,
|
990
990
|
:schema_name => XSD::QName.new(NsTypes, "counter"),
|
991
991
|
:is_anonymous => true,
|
992
992
|
:schema_qualified => true,
|
993
993
|
:schema_element => [
|
994
994
|
["name", "SOAP::SOAPString"],
|
995
|
-
["value", "Virtuozzo::SOAP::
|
995
|
+
["value", "Virtuozzo::SOAP::Types::ProcessInfo::Perf_statType"]
|
996
996
|
]
|
997
997
|
)
|
998
998
|
|
999
999
|
EncodedRegistry.register(
|
1000
|
-
:class => Virtuozzo::SOAP::
|
1000
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance,
|
1001
1001
|
:schema_name => XSD::QName.new(NsTypes, "instance"),
|
1002
1002
|
:is_anonymous => true,
|
1003
1003
|
:schema_qualified => true,
|
1004
1004
|
:schema_element => [
|
1005
1005
|
["name", "SOAP::SOAPString", [0, 1]],
|
1006
|
-
["counter", "Virtuozzo::SOAP::
|
1006
|
+
["counter", "Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
|
1007
1007
|
]
|
1008
1008
|
)
|
1009
1009
|
|
1010
1010
|
EncodedRegistry.register(
|
1011
|
-
:class => Virtuozzo::SOAP::
|
1011
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class,
|
1012
1012
|
:schema_name => XSD::QName.new(NsTypes, "class"),
|
1013
1013
|
:is_anonymous => true,
|
1014
1014
|
:schema_qualified => true,
|
1015
1015
|
:schema_element => [
|
1016
1016
|
["name", "SOAP::SOAPString"],
|
1017
|
-
["instance", "Virtuozzo::SOAP::
|
1017
|
+
["instance", "Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance[]", [1, nil]]
|
1018
1018
|
]
|
1019
1019
|
)
|
1020
1020
|
|
1021
1021
|
EncodedRegistry.register(
|
1022
|
-
:class => Virtuozzo::SOAP::
|
1022
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Log_options_baseType,
|
1023
1023
|
:schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
|
1024
1024
|
:schema_element => []
|
1025
1025
|
)
|
1026
1026
|
|
1027
1027
|
EncodedRegistry.register(
|
1028
|
-
:class => Virtuozzo::SOAP::
|
1028
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Log_optionsType,
|
1029
1029
|
:schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
|
1030
1030
|
:schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
|
1031
1031
|
:schema_element => []
|
1032
1032
|
)
|
1033
1033
|
|
1034
1034
|
EncodedRegistry.register(
|
1035
|
-
:class => Virtuozzo::SOAP::
|
1035
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Packet_headerType,
|
1036
1036
|
:schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
|
1037
1037
|
:schema_element => [
|
1038
|
-
["auth", "Virtuozzo::SOAP::
|
1038
|
+
["auth", "Virtuozzo::SOAP::Types::ProcessInfo::AuthType", [0, 1]],
|
1039
1039
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
1040
1040
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
1041
1041
|
["origin", "SOAP::SOAPString", [0, 1]],
|
1042
|
-
["src", "Virtuozzo::SOAP::
|
1043
|
-
["dst", "Virtuozzo::SOAP::
|
1042
|
+
["src", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
1043
|
+
["dst", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
1044
1044
|
["session", "SOAP::SOAPString", [0, 1]]
|
1045
1045
|
],
|
1046
1046
|
:schema_attribute => {
|
@@ -1058,26 +1058,26 @@ module Virtuozzo # :nodoc:
|
|
1058
1058
|
)
|
1059
1059
|
|
1060
1060
|
EncodedRegistry.register(
|
1061
|
-
:class => Virtuozzo::SOAP::
|
1061
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::OperatorType,
|
1062
1062
|
:schema_type => XSD::QName.new(NsProtocol, "operatorType"),
|
1063
1063
|
:schema_element => [ :choice,
|
1064
|
-
["configuration", "Virtuozzo::SOAP::
|
1064
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"]
|
1065
1065
|
]
|
1066
1066
|
)
|
1067
1067
|
|
1068
1068
|
EncodedRegistry.register(
|
1069
|
-
:class => Virtuozzo::SOAP::
|
1069
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType,
|
1070
1070
|
:schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1071
1071
|
:schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
|
1072
1072
|
:schema_element => [ :choice,
|
1073
|
-
["configuration", "Virtuozzo::SOAP::
|
1074
|
-
["ok", "Virtuozzo::SOAP::
|
1075
|
-
["error", "Virtuozzo::SOAP::
|
1073
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"],
|
1074
|
+
["ok", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Ok[]"],
|
1075
|
+
["error", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Error[]"]
|
1076
1076
|
]
|
1077
1077
|
)
|
1078
1078
|
|
1079
1079
|
EncodedRegistry.register(
|
1080
|
-
:class => Virtuozzo::SOAP::
|
1080
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Ok,
|
1081
1081
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1082
1082
|
:is_anonymous => true,
|
1083
1083
|
:schema_qualified => true,
|
@@ -1085,7 +1085,7 @@ module Virtuozzo # :nodoc:
|
|
1085
1085
|
)
|
1086
1086
|
|
1087
1087
|
EncodedRegistry.register(
|
1088
|
-
:class => Virtuozzo::SOAP::
|
1088
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Error,
|
1089
1089
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1090
1090
|
:is_anonymous => true,
|
1091
1091
|
:schema_qualified => true,
|
@@ -1096,24 +1096,24 @@ module Virtuozzo # :nodoc:
|
|
1096
1096
|
)
|
1097
1097
|
|
1098
1098
|
EncodedRegistry.register(
|
1099
|
-
:class => Virtuozzo::SOAP::
|
1099
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType,
|
1100
1100
|
:schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
|
1101
1101
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1102
1102
|
:schema_element => [ :choice,
|
1103
|
-
["configuration", "Virtuozzo::SOAP::
|
1104
|
-
["ok", "Virtuozzo::SOAP::
|
1105
|
-
["error", "Virtuozzo::SOAP::
|
1103
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"],
|
1104
|
+
["ok", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Ok[]"],
|
1105
|
+
["error", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Error[]"],
|
1106
1106
|
[ :choice,
|
1107
|
-
["start_monitor", "Virtuozzo::SOAP::
|
1108
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
1109
|
-
["set_period", "Virtuozzo::SOAP::
|
1107
|
+
["start_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Start_monitorType"],
|
1108
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Stop_monitorType"],
|
1109
|
+
["set_period", "Virtuozzo::SOAP::Types::ProcessInfo::Set_periodType", [0, 1]],
|
1110
1110
|
["report", nil, [0, 1]]
|
1111
1111
|
]
|
1112
1112
|
]
|
1113
1113
|
)
|
1114
1114
|
|
1115
1115
|
EncodedRegistry.register(
|
1116
|
-
:class => Virtuozzo::SOAP::
|
1116
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Ok,
|
1117
1117
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1118
1118
|
:is_anonymous => true,
|
1119
1119
|
: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::ProcessInfo::Operator_periodicType::Error,
|
1125
1125
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1126
1126
|
:is_anonymous => true,
|
1127
1127
|
:schema_qualified => true,
|
@@ -1132,7 +1132,7 @@ module Virtuozzo # :nodoc:
|
|
1132
1132
|
)
|
1133
1133
|
|
1134
1134
|
EncodedRegistry.register(
|
1135
|
-
:class => Virtuozzo::SOAP::
|
1135
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Set_periodType,
|
1136
1136
|
:schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
|
1137
1137
|
:schema_element => [
|
1138
1138
|
["collect", "SOAP::SOAPInt"],
|
@@ -1142,7 +1142,7 @@ module Virtuozzo # :nodoc:
|
|
1142
1142
|
)
|
1143
1143
|
|
1144
1144
|
EncodedRegistry.register(
|
1145
|
-
:class => Virtuozzo::SOAP::
|
1145
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Start_monitorType,
|
1146
1146
|
:schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
|
1147
1147
|
:schema_element => [
|
1148
1148
|
["period", "SOAP::SOAPInt"],
|
@@ -1151,7 +1151,7 @@ module Virtuozzo # :nodoc:
|
|
1151
1151
|
)
|
1152
1152
|
|
1153
1153
|
EncodedRegistry.register(
|
1154
|
-
:class => Virtuozzo::SOAP::
|
1154
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Stop_monitorType,
|
1155
1155
|
:schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
|
1156
1156
|
:schema_element => [
|
1157
1157
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -1159,7 +1159,7 @@ module Virtuozzo # :nodoc:
|
|
1159
1159
|
)
|
1160
1160
|
|
1161
1161
|
EncodedRegistry.register(
|
1162
|
-
:class => Virtuozzo::SOAP::
|
1162
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::AuthType,
|
1163
1163
|
:schema_type => XSD::QName.new(NsProtocol, "authType"),
|
1164
1164
|
:schema_element => [
|
1165
1165
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -1167,7 +1167,7 @@ module Virtuozzo # :nodoc:
|
|
1167
1167
|
)
|
1168
1168
|
|
1169
1169
|
EncodedRegistry.register(
|
1170
|
-
:class => Virtuozzo::SOAP::
|
1170
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Event_configurationType,
|
1171
1171
|
:schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
|
1172
1172
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
1173
1173
|
:schema_element => [
|
@@ -1176,7 +1176,7 @@ module Virtuozzo # :nodoc:
|
|
1176
1176
|
)
|
1177
1177
|
|
1178
1178
|
EncodedRegistry.register(
|
1179
|
-
:class => Virtuozzo::SOAP::
|
1179
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Periodic_configurationType,
|
1180
1180
|
:schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
|
1181
1181
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
1182
1182
|
:schema_element => [
|
@@ -1188,7 +1188,7 @@ module Virtuozzo # :nodoc:
|
|
1188
1188
|
)
|
1189
1189
|
|
1190
1190
|
EncodedRegistry.register(
|
1191
|
-
:class => Virtuozzo::SOAP::
|
1191
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::RouteType,
|
1192
1192
|
:schema_type => XSD::QName.new(NsProtocol, "routeType"),
|
1193
1193
|
:schema_element => [
|
1194
1194
|
["director", "SOAP::SOAPString", [0, 1]],
|
@@ -1199,40 +1199,40 @@ module Virtuozzo # :nodoc:
|
|
1199
1199
|
)
|
1200
1200
|
|
1201
1201
|
EncodedRegistry.register(
|
1202
|
-
:class => Virtuozzo::SOAP::
|
1202
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::DataType,
|
1203
1203
|
:schema_type => XSD::QName.new(NsProtocol, "dataType"),
|
1204
1204
|
:schema_element => [
|
1205
|
-
["operator", "Virtuozzo::SOAP::
|
1205
|
+
["operator", "Virtuozzo::SOAP::Types::ProcessInfo::OperatorType[]"]
|
1206
1206
|
]
|
1207
1207
|
)
|
1208
1208
|
|
1209
1209
|
EncodedRegistry.register(
|
1210
|
-
:class => Virtuozzo::SOAP::
|
1210
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType,
|
1211
1211
|
:schema_type => XSD::QName.new(NsProtocol, "configurationType"),
|
1212
1212
|
:schema_element => []
|
1213
1213
|
)
|
1214
1214
|
|
1215
1215
|
EncodedRegistry.register(
|
1216
|
-
:class => Virtuozzo::SOAP::
|
1216
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType,
|
1217
1217
|
:schema_type => XSD::QName.new(NsProc_info, "proc_infoType"),
|
1218
1218
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
1219
1219
|
:schema_element => [ :choice,
|
1220
|
-
["configuration", ["Virtuozzo::SOAP::
|
1221
|
-
["ok", ["Virtuozzo::SOAP::
|
1222
|
-
["error", ["Virtuozzo::SOAP::
|
1220
|
+
["configuration", ["Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
1221
|
+
["ok", ["Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
1222
|
+
["error", ["Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
1223
1223
|
[
|
1224
|
-
["start_monitor", "Virtuozzo::SOAP::
|
1225
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
1226
|
-
["get", "Virtuozzo::SOAP::
|
1224
|
+
["start_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Start_monitor[]"],
|
1225
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Stop_monitor[]"],
|
1226
|
+
["get", "Virtuozzo::SOAP::Types::ProcessInfo::Get[]"]
|
1227
1227
|
],
|
1228
1228
|
[
|
1229
|
-
["ps_info", "Virtuozzo::SOAP::
|
1229
|
+
["ps_info", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType[]", [0, 1]]
|
1230
1230
|
]
|
1231
1231
|
]
|
1232
1232
|
)
|
1233
1233
|
|
1234
1234
|
EncodedRegistry.register(
|
1235
|
-
:class => Virtuozzo::SOAP::
|
1235
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Ok,
|
1236
1236
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1237
1237
|
:is_anonymous => true,
|
1238
1238
|
:schema_qualified => true,
|
@@ -1240,7 +1240,7 @@ module Virtuozzo # :nodoc:
|
|
1240
1240
|
)
|
1241
1241
|
|
1242
1242
|
EncodedRegistry.register(
|
1243
|
-
:class => Virtuozzo::SOAP::
|
1243
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Error,
|
1244
1244
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1245
1245
|
:is_anonymous => true,
|
1246
1246
|
:schema_qualified => true,
|
@@ -1251,7 +1251,7 @@ module Virtuozzo # :nodoc:
|
|
1251
1251
|
)
|
1252
1252
|
|
1253
1253
|
EncodedRegistry.register(
|
1254
|
-
:class => Virtuozzo::SOAP::
|
1254
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Start_monitor,
|
1255
1255
|
:schema_name => XSD::QName.new(NsProc_info, "start_monitor"),
|
1256
1256
|
:is_anonymous => true,
|
1257
1257
|
: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::ProcessInfo::Proc_infoType::Stop_monitor,
|
1268
1268
|
:schema_name => XSD::QName.new(NsProc_info, "stop_monitor"),
|
1269
1269
|
:is_anonymous => true,
|
1270
1270
|
:schema_qualified => true,
|
@@ -1272,7 +1272,7 @@ module Virtuozzo # :nodoc:
|
|
1272
1272
|
)
|
1273
1273
|
|
1274
1274
|
EncodedRegistry.register(
|
1275
|
-
:class => Virtuozzo::SOAP::
|
1275
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_info_configurationType,
|
1276
1276
|
:schema_type => XSD::QName.new(NsProc_info, "proc_info_configurationType"),
|
1277
1277
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
1278
1278
|
:schema_element => [
|
@@ -1282,36 +1282,36 @@ module Virtuozzo # :nodoc:
|
|
1282
1282
|
)
|
1283
1283
|
|
1284
1284
|
EncodedRegistry.register(
|
1285
|
-
:class => Virtuozzo::SOAP::
|
1285
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Transport_type,
|
1286
1286
|
:schema_type => XSD::QName.new(NsTypes, "transport_type")
|
1287
1287
|
)
|
1288
1288
|
|
1289
1289
|
EncodedRegistry.register(
|
1290
|
-
:class => Virtuozzo::SOAP::
|
1290
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Yes_no_type,
|
1291
1291
|
:schema_type => XSD::QName.new(NsTypes, "yes_no_type")
|
1292
1292
|
)
|
1293
1293
|
|
1294
1294
|
LiteralRegistry.register(
|
1295
|
-
:class => Virtuozzo::SOAP::
|
1295
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType,
|
1296
1296
|
:schema_type => XSD::QName.new(NsVzaproc_info, "vzaproc_infoType"),
|
1297
1297
|
:schema_basetype => XSD::QName.new(NsProc_info, "proc_infoType"),
|
1298
1298
|
:schema_element => [
|
1299
|
-
["configuration", ["Virtuozzo::SOAP::
|
1300
|
-
["ok", ["Virtuozzo::SOAP::
|
1301
|
-
["error", ["Virtuozzo::SOAP::
|
1299
|
+
["configuration", ["Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
1300
|
+
["ok", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
1301
|
+
["error", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
1302
1302
|
[
|
1303
|
-
["start_monitor", ["Virtuozzo::SOAP::
|
1304
|
-
["stop_monitor", ["Virtuozzo::SOAP::
|
1305
|
-
["get", ["Virtuozzo::SOAP::
|
1303
|
+
["start_monitor", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Start_monitor[]", XSD::QName.new(NsProc_info, "start_monitor")]],
|
1304
|
+
["stop_monitor", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Stop_monitor[]", XSD::QName.new(NsProc_info, "stop_monitor")]],
|
1305
|
+
["get", ["Virtuozzo::SOAP::Types::ProcessInfo::Get[]", XSD::QName.new(NsProc_info, "get")]]
|
1306
1306
|
],
|
1307
1307
|
[
|
1308
|
-
["ps_info", ["Virtuozzo::SOAP::
|
1308
|
+
["ps_info", ["Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType[]", XSD::QName.new(NsProc_info, "ps_info")], [0, 1]]
|
1309
1309
|
]
|
1310
1310
|
]
|
1311
1311
|
)
|
1312
1312
|
|
1313
1313
|
LiteralRegistry.register(
|
1314
|
-
:class => Virtuozzo::SOAP::
|
1314
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Ok,
|
1315
1315
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
1316
1316
|
:is_anonymous => true,
|
1317
1317
|
:schema_qualified => true,
|
@@ -1319,7 +1319,7 @@ module Virtuozzo # :nodoc:
|
|
1319
1319
|
)
|
1320
1320
|
|
1321
1321
|
LiteralRegistry.register(
|
1322
|
-
:class => Virtuozzo::SOAP::
|
1322
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Error,
|
1323
1323
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
1324
1324
|
:is_anonymous => true,
|
1325
1325
|
:schema_qualified => true,
|
@@ -1330,7 +1330,7 @@ module Virtuozzo # :nodoc:
|
|
1330
1330
|
)
|
1331
1331
|
|
1332
1332
|
LiteralRegistry.register(
|
1333
|
-
:class => Virtuozzo::SOAP::
|
1333
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Start_monitor,
|
1334
1334
|
:schema_name => XSD::QName.new(NsProc_info, "start_monitor"),
|
1335
1335
|
:is_anonymous => true,
|
1336
1336
|
:schema_qualified => true,
|
@@ -1343,7 +1343,7 @@ module Virtuozzo # :nodoc:
|
|
1343
1343
|
)
|
1344
1344
|
|
1345
1345
|
LiteralRegistry.register(
|
1346
|
-
:class => Virtuozzo::SOAP::
|
1346
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_infoType::Stop_monitor,
|
1347
1347
|
:schema_name => XSD::QName.new(NsProc_info, "stop_monitor"),
|
1348
1348
|
:is_anonymous => true,
|
1349
1349
|
:schema_qualified => true,
|
@@ -1351,7 +1351,7 @@ module Virtuozzo # :nodoc:
|
|
1351
1351
|
)
|
1352
1352
|
|
1353
1353
|
LiteralRegistry.register(
|
1354
|
-
:class => Virtuozzo::SOAP::
|
1354
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::OsType,
|
1355
1355
|
:schema_type => XSD::QName.new(NsTypes, "osType"),
|
1356
1356
|
:schema_element => [
|
1357
1357
|
["platform", "SOAP::SOAPString", [0, 1]],
|
@@ -1362,7 +1362,7 @@ module Virtuozzo # :nodoc:
|
|
1362
1362
|
)
|
1363
1363
|
|
1364
1364
|
LiteralRegistry.register(
|
1365
|
-
:class => Virtuozzo::SOAP::
|
1365
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_statusType,
|
1366
1366
|
:schema_type => XSD::QName.new(NsTypes, "env_statusType"),
|
1367
1367
|
:schema_element => [
|
1368
1368
|
["state", "SOAP::SOAPInt", [0, 1]],
|
@@ -1371,7 +1371,7 @@ module Virtuozzo # :nodoc:
|
|
1371
1371
|
)
|
1372
1372
|
|
1373
1373
|
LiteralRegistry.register(
|
1374
|
-
:class => Virtuozzo::SOAP::
|
1374
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::QosType,
|
1375
1375
|
:schema_type => XSD::QName.new(NsTypes, "qosType"),
|
1376
1376
|
:schema_element => [
|
1377
1377
|
["id", "SOAP::SOAPString"],
|
@@ -1382,16 +1382,16 @@ module Virtuozzo # :nodoc:
|
|
1382
1382
|
)
|
1383
1383
|
|
1384
1384
|
LiteralRegistry.register(
|
1385
|
-
:class => Virtuozzo::SOAP::
|
1385
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_configType,
|
1386
1386
|
:schema_type => XSD::QName.new(NsTypes, "env_configType"),
|
1387
1387
|
:schema_element => [
|
1388
1388
|
["name", "SOAP::SOAPString", [0, 1]],
|
1389
1389
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
1390
1390
|
["domain", "SOAP::SOAPString", [0, 1]],
|
1391
1391
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
1392
|
-
["address", "Virtuozzo::SOAP::
|
1392
|
+
["address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
1393
1393
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
1394
|
-
["os", "Virtuozzo::SOAP::
|
1394
|
+
["os", "Virtuozzo::SOAP::Types::ProcessInfo::OsType", [0, 1]],
|
1395
1395
|
["type", "SOAP::SOAPString", [0, 1]],
|
1396
1396
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
1397
1397
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
@@ -1402,7 +1402,7 @@ module Virtuozzo # :nodoc:
|
|
1402
1402
|
)
|
1403
1403
|
|
1404
1404
|
LiteralRegistry.register(
|
1405
|
-
:class => Virtuozzo::SOAP::
|
1405
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Venv_configType,
|
1406
1406
|
:schema_type => XSD::QName.new(NsTypes, "venv_configType"),
|
1407
1407
|
:schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
|
1408
1408
|
:schema_element => [
|
@@ -1410,40 +1410,40 @@ module Virtuozzo # :nodoc:
|
|
1410
1410
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
1411
1411
|
["domain", "SOAP::SOAPString", [0, 1]],
|
1412
1412
|
["hostname", "SOAP::SOAPString", [0, 1]],
|
1413
|
-
["address", "Virtuozzo::SOAP::
|
1413
|
+
["address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
1414
1414
|
["architecture", "SOAP::SOAPString", [0, 1]],
|
1415
|
-
["os", "Virtuozzo::SOAP::
|
1415
|
+
["os", "Virtuozzo::SOAP::Types::ProcessInfo::OsType", [0, 1]],
|
1416
1416
|
["type", "SOAP::SOAPString", [0, 1]],
|
1417
1417
|
["nameserver", "SOAP::SOAPString[]", [0, nil]],
|
1418
1418
|
["search_domain", "SOAP::SOAPString[]", [0, nil]],
|
1419
1419
|
["base_sample_id", nil, [0, 1]],
|
1420
1420
|
["base_snapshot_id", nil, [0, 1]],
|
1421
1421
|
["child_type", "SOAP::SOAPString[]", [0, nil]],
|
1422
|
-
["qos", "Virtuozzo::SOAP::
|
1422
|
+
["qos", "Virtuozzo::SOAP::Types::ProcessInfo::QosType[]", [0, nil]]
|
1423
1423
|
]
|
1424
1424
|
)
|
1425
1425
|
|
1426
1426
|
LiteralRegistry.register(
|
1427
|
-
:class => Virtuozzo::SOAP::
|
1427
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Native_configType,
|
1428
1428
|
:schema_type => XSD::QName.new(NsTypes, "native_configType"),
|
1429
1429
|
:schema_element => []
|
1430
1430
|
)
|
1431
1431
|
|
1432
1432
|
LiteralRegistry.register(
|
1433
|
-
:class => Virtuozzo::SOAP::
|
1433
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::EnvType,
|
1434
1434
|
:schema_type => XSD::QName.new(NsTypes, "envType"),
|
1435
1435
|
:schema_element => [
|
1436
1436
|
["parent_eid", nil],
|
1437
1437
|
["eid", nil],
|
1438
|
-
["status", "Virtuozzo::SOAP::
|
1438
|
+
["status", "Virtuozzo::SOAP::Types::ProcessInfo::Env_statusType", [0, 1]],
|
1439
1439
|
["alert", "SOAP::SOAPInt", [0, 1]],
|
1440
|
-
["config", "Virtuozzo::SOAP::
|
1441
|
-
["virtual_config", "Virtuozzo::SOAP::
|
1440
|
+
["config", "Virtuozzo::SOAP::Types::ProcessInfo::Env_configType", [0, 1]],
|
1441
|
+
["virtual_config", "Virtuozzo::SOAP::Types::ProcessInfo::Venv_configType", [0, 1]]
|
1442
1442
|
]
|
1443
1443
|
)
|
1444
1444
|
|
1445
1445
|
LiteralRegistry.register(
|
1446
|
-
:class => Virtuozzo::SOAP::
|
1446
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ProcessesType,
|
1447
1447
|
:schema_type => XSD::QName.new(NsTypes, "processesType"),
|
1448
1448
|
:schema_element => [
|
1449
1449
|
["run", "SOAP::SOAPInt"],
|
@@ -1456,7 +1456,7 @@ module Virtuozzo # :nodoc:
|
|
1456
1456
|
)
|
1457
1457
|
|
1458
1458
|
LiteralRegistry.register(
|
1459
|
-
:class => Virtuozzo::SOAP::
|
1459
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avgType,
|
1460
1460
|
:schema_type => XSD::QName.new(NsTypes, "load_avgType"),
|
1461
1461
|
:schema_element => [
|
1462
1462
|
["l1", "SOAP::SOAPDouble"],
|
@@ -1466,7 +1466,7 @@ module Virtuozzo # :nodoc:
|
|
1466
1466
|
)
|
1467
1467
|
|
1468
1468
|
LiteralRegistry.register(
|
1469
|
-
:class => Virtuozzo::SOAP::
|
1469
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Cpu_loadType,
|
1470
1470
|
:schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
|
1471
1471
|
:schema_element => [
|
1472
1472
|
["system", "SOAP::SOAPLong"],
|
@@ -1477,7 +1477,7 @@ module Virtuozzo # :nodoc:
|
|
1477
1477
|
)
|
1478
1478
|
|
1479
1479
|
LiteralRegistry.register(
|
1480
|
-
:class => Virtuozzo::SOAP::
|
1480
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::CpuType,
|
1481
1481
|
:schema_type => XSD::QName.new(NsTypes, "cpuType"),
|
1482
1482
|
:schema_element => [
|
1483
1483
|
["mhz", "SOAP::SOAPInt"],
|
@@ -1493,16 +1493,16 @@ module Virtuozzo # :nodoc:
|
|
1493
1493
|
)
|
1494
1494
|
|
1495
1495
|
LiteralRegistry.register(
|
1496
|
-
:class => Virtuozzo::SOAP::
|
1496
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TransferType,
|
1497
1497
|
:schema_type => XSD::QName.new(NsTypes, "transferType"),
|
1498
1498
|
:schema_element => [
|
1499
|
-
["input", "Virtuozzo::SOAP::
|
1500
|
-
["output", "Virtuozzo::SOAP::
|
1499
|
+
["input", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Input"],
|
1500
|
+
["output", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Output"]
|
1501
1501
|
]
|
1502
1502
|
)
|
1503
1503
|
|
1504
1504
|
LiteralRegistry.register(
|
1505
|
-
:class => Virtuozzo::SOAP::
|
1505
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Input,
|
1506
1506
|
:schema_name => XSD::QName.new(NsTypes, "input"),
|
1507
1507
|
:is_anonymous => true,
|
1508
1508
|
:schema_qualified => true,
|
@@ -1513,7 +1513,7 @@ module Virtuozzo # :nodoc:
|
|
1513
1513
|
)
|
1514
1514
|
|
1515
1515
|
LiteralRegistry.register(
|
1516
|
-
:class => Virtuozzo::SOAP::
|
1516
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TransferType::Output,
|
1517
1517
|
:schema_name => XSD::QName.new(NsTypes, "output"),
|
1518
1518
|
:is_anonymous => true,
|
1519
1519
|
:schema_qualified => true,
|
@@ -1524,16 +1524,16 @@ module Virtuozzo # :nodoc:
|
|
1524
1524
|
)
|
1525
1525
|
|
1526
1526
|
LiteralRegistry.register(
|
1527
|
-
:class => Virtuozzo::SOAP::
|
1527
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType,
|
1528
1528
|
:schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
|
1529
1529
|
:schema_element => [
|
1530
|
-
["address", "Virtuozzo::SOAP::
|
1531
|
-
["login", "Virtuozzo::SOAP::
|
1530
|
+
["address", "Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Address"],
|
1531
|
+
["login", "Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Login", [0, 1]]
|
1532
1532
|
]
|
1533
1533
|
)
|
1534
1534
|
|
1535
1535
|
LiteralRegistry.register(
|
1536
|
-
:class => Virtuozzo::SOAP::
|
1536
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Address,
|
1537
1537
|
:schema_name => XSD::QName.new(NsTypes, "address"),
|
1538
1538
|
:is_anonymous => true,
|
1539
1539
|
:schema_qualified => true,
|
@@ -1543,7 +1543,7 @@ module Virtuozzo # :nodoc:
|
|
1543
1543
|
)
|
1544
1544
|
|
1545
1545
|
LiteralRegistry.register(
|
1546
|
-
:class => Virtuozzo::SOAP::
|
1546
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::System_nodeType::Login,
|
1547
1547
|
:schema_name => XSD::QName.new(NsTypes, "login"),
|
1548
1548
|
:is_anonymous => true,
|
1549
1549
|
:schema_qualified => true,
|
@@ -1554,7 +1554,7 @@ module Virtuozzo # :nodoc:
|
|
1554
1554
|
)
|
1555
1555
|
|
1556
1556
|
LiteralRegistry.register(
|
1557
|
-
:class => Virtuozzo::SOAP::
|
1557
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ResourceType,
|
1558
1558
|
:schema_type => XSD::QName.new(NsTypes, "resourceType"),
|
1559
1559
|
:schema_element => [
|
1560
1560
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -1567,7 +1567,7 @@ module Virtuozzo # :nodoc:
|
|
1567
1567
|
)
|
1568
1568
|
|
1569
1569
|
LiteralRegistry.register(
|
1570
|
-
:class => Virtuozzo::SOAP::
|
1570
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::IntervalType,
|
1571
1571
|
:schema_type => XSD::QName.new(NsTypes, "intervalType"),
|
1572
1572
|
:schema_element => [
|
1573
1573
|
["start_time", nil],
|
@@ -1576,7 +1576,7 @@ module Virtuozzo # :nodoc:
|
|
1576
1576
|
)
|
1577
1577
|
|
1578
1578
|
LiteralRegistry.register(
|
1579
|
-
:class => Virtuozzo::SOAP::
|
1579
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::StatsType,
|
1580
1580
|
:schema_type => XSD::QName.new(NsTypes, "statsType"),
|
1581
1581
|
:schema_element => [
|
1582
1582
|
["avg", "SOAP::SOAPLong", [0, 1]],
|
@@ -1590,7 +1590,7 @@ module Virtuozzo # :nodoc:
|
|
1590
1590
|
)
|
1591
1591
|
|
1592
1592
|
LiteralRegistry.register(
|
1593
|
-
:class => Virtuozzo::SOAP::
|
1593
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_addressType,
|
1594
1594
|
:schema_type => XSD::QName.new(NsTypes, "net_addressType"),
|
1595
1595
|
:schema_element => [
|
1596
1596
|
["host", nil],
|
@@ -1599,16 +1599,16 @@ module Virtuozzo # :nodoc:
|
|
1599
1599
|
)
|
1600
1600
|
|
1601
1601
|
LiteralRegistry.register(
|
1602
|
-
:class => Virtuozzo::SOAP::
|
1602
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_classType,
|
1603
1603
|
:schema_type => XSD::QName.new(NsTypes, "net_classType"),
|
1604
1604
|
:schema_element => [
|
1605
1605
|
["id", "SOAP::SOAPString", [0, 1]],
|
1606
|
-
["transfer", "Virtuozzo::SOAP::
|
1606
|
+
["transfer", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType", [0, 1]]
|
1607
1607
|
]
|
1608
1608
|
)
|
1609
1609
|
|
1610
1610
|
LiteralRegistry.register(
|
1611
|
-
:class => Virtuozzo::SOAP::
|
1611
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_rangeType,
|
1612
1612
|
:schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
|
1613
1613
|
:schema_element => [
|
1614
1614
|
["id", "SOAP::SOAPString", [0, 1]],
|
@@ -1619,19 +1619,19 @@ module Virtuozzo # :nodoc:
|
|
1619
1619
|
)
|
1620
1620
|
|
1621
1621
|
LiteralRegistry.register(
|
1622
|
-
:class => Virtuozzo::SOAP::
|
1622
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sample_confType,
|
1623
1623
|
:schema_type => XSD::QName.new(NsTypes, "sample_confType"),
|
1624
1624
|
:schema_element => [
|
1625
|
-
["env_config", "Virtuozzo::SOAP::
|
1625
|
+
["env_config", "Virtuozzo::SOAP::Types::ProcessInfo::Env_configType"],
|
1626
1626
|
["id", "SOAP::SOAPString", [0, 1]],
|
1627
1627
|
["name", "SOAP::SOAPString"],
|
1628
1628
|
["comment", "SOAP::SOAPBase64", [0, 1]],
|
1629
|
-
["vt_version", "Virtuozzo::SOAP::
|
1629
|
+
["vt_version", "Virtuozzo::SOAP::Types::ProcessInfo::Sample_confType::Vt_version", [0, 1]]
|
1630
1630
|
]
|
1631
1631
|
)
|
1632
1632
|
|
1633
1633
|
LiteralRegistry.register(
|
1634
|
-
:class => Virtuozzo::SOAP::
|
1634
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sample_confType::Vt_version,
|
1635
1635
|
:schema_name => XSD::QName.new(NsTypes, "vt_version"),
|
1636
1636
|
:is_anonymous => true,
|
1637
1637
|
:schema_qualified => true,
|
@@ -1643,34 +1643,34 @@ module Virtuozzo # :nodoc:
|
|
1643
1643
|
)
|
1644
1644
|
|
1645
1645
|
LiteralRegistry.register(
|
1646
|
-
:class => Virtuozzo::SOAP::
|
1646
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::InterfaceType,
|
1647
1647
|
:schema_type => XSD::QName.new(NsTypes, "interfaceType"),
|
1648
1648
|
:schema_element => [
|
1649
1649
|
["name", "SOAP::SOAPString"],
|
1650
1650
|
["bandwidth", "SOAP::SOAPInt", [0, 1]],
|
1651
|
-
["transfer", "Virtuozzo::SOAP::
|
1651
|
+
["transfer", "Virtuozzo::SOAP::Types::ProcessInfo::TransferType", [0, 1]],
|
1652
1652
|
["ipaddress", nil, [0, 1]],
|
1653
1653
|
["flags", "SOAP::SOAPInt", [0, 1]]
|
1654
1654
|
]
|
1655
1655
|
)
|
1656
1656
|
|
1657
1657
|
LiteralRegistry.register(
|
1658
|
-
:class => Virtuozzo::SOAP::
|
1658
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType,
|
1659
1659
|
:schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
|
1660
1660
|
:schema_element => [
|
1661
|
-
["load_avg", "Virtuozzo::SOAP::
|
1662
|
-
["processes", "Virtuozzo::SOAP::
|
1663
|
-
["cpu_load", "Virtuozzo::SOAP::
|
1664
|
-
["cpu_states", "Virtuozzo::SOAP::
|
1661
|
+
["load_avg", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avgType"],
|
1662
|
+
["processes", "Virtuozzo::SOAP::Types::ProcessInfo::ProcessesType"],
|
1663
|
+
["cpu_load", "Virtuozzo::SOAP::Types::ProcessInfo::Cpu_loadType"],
|
1664
|
+
["cpu_states", "Virtuozzo::SOAP::Types::ProcessInfo::Cpu_loadType"],
|
1665
1665
|
["users", "SOAP::SOAPInt"],
|
1666
1666
|
["uptime", "SOAP::SOAPLong"],
|
1667
|
-
["memory", "Virtuozzo::SOAP::
|
1668
|
-
["swap", "Virtuozzo::SOAP::
|
1667
|
+
["memory", "Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Memory", [0, 1]],
|
1668
|
+
["swap", "Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Swap", [0, 1]]
|
1669
1669
|
]
|
1670
1670
|
)
|
1671
1671
|
|
1672
1672
|
LiteralRegistry.register(
|
1673
|
-
:class => Virtuozzo::SOAP::
|
1673
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Memory,
|
1674
1674
|
:schema_name => XSD::QName.new(NsTypes, "memory"),
|
1675
1675
|
:is_anonymous => true,
|
1676
1676
|
:schema_qualified => true,
|
@@ -1681,7 +1681,7 @@ module Virtuozzo # :nodoc:
|
|
1681
1681
|
)
|
1682
1682
|
|
1683
1683
|
LiteralRegistry.register(
|
1684
|
-
:class => Virtuozzo::SOAP::
|
1684
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Sys_infoType::Swap,
|
1685
1685
|
:schema_name => XSD::QName.new(NsTypes, "swap"),
|
1686
1686
|
:is_anonymous => true,
|
1687
1687
|
:schema_qualified => true,
|
@@ -1692,10 +1692,10 @@ module Virtuozzo # :nodoc:
|
|
1692
1692
|
)
|
1693
1693
|
|
1694
1694
|
LiteralRegistry.register(
|
1695
|
-
:class => Virtuozzo::SOAP::
|
1695
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType,
|
1696
1696
|
:schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
|
1697
1697
|
:schema_element => [
|
1698
|
-
["process", "Virtuozzo::SOAP::
|
1698
|
+
["process", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process[]", [1, nil]],
|
1699
1699
|
["param_id", "SOAP::SOAPString[]", [1, nil]],
|
1700
1700
|
["run", "SOAP::SOAPInt"],
|
1701
1701
|
["idle", "SOAP::SOAPInt"],
|
@@ -1708,7 +1708,7 @@ module Virtuozzo # :nodoc:
|
|
1708
1708
|
)
|
1709
1709
|
|
1710
1710
|
LiteralRegistry.register(
|
1711
|
-
:class => Virtuozzo::SOAP::
|
1711
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process,
|
1712
1712
|
:schema_name => XSD::QName.new(NsTypes, "process"),
|
1713
1713
|
:is_anonymous => true,
|
1714
1714
|
:schema_qualified => true,
|
@@ -1719,17 +1719,17 @@ module Virtuozzo # :nodoc:
|
|
1719
1719
|
)
|
1720
1720
|
|
1721
1721
|
LiteralRegistry.register(
|
1722
|
-
:class => Virtuozzo::SOAP::
|
1722
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType,
|
1723
1723
|
:schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
|
1724
1724
|
:schema_element => [
|
1725
|
-
["l1", "Virtuozzo::SOAP::
|
1726
|
-
["l2", "Virtuozzo::SOAP::
|
1727
|
-
["l3", "Virtuozzo::SOAP::
|
1725
|
+
["l1", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L1"],
|
1726
|
+
["l2", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L2", [0, 1]],
|
1727
|
+
["l3", "Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L3", [0, 1]]
|
1728
1728
|
]
|
1729
1729
|
)
|
1730
1730
|
|
1731
1731
|
LiteralRegistry.register(
|
1732
|
-
:class => Virtuozzo::SOAP::
|
1732
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L1,
|
1733
1733
|
:schema_name => XSD::QName.new(NsTypes, "l1"),
|
1734
1734
|
:is_anonymous => true,
|
1735
1735
|
:schema_qualified => true,
|
@@ -1742,7 +1742,7 @@ module Virtuozzo # :nodoc:
|
|
1742
1742
|
)
|
1743
1743
|
|
1744
1744
|
LiteralRegistry.register(
|
1745
|
-
:class => Virtuozzo::SOAP::
|
1745
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L2,
|
1746
1746
|
:schema_name => XSD::QName.new(NsTypes, "l2"),
|
1747
1747
|
:is_anonymous => true,
|
1748
1748
|
:schema_qualified => true,
|
@@ -1755,7 +1755,7 @@ module Virtuozzo # :nodoc:
|
|
1755
1755
|
)
|
1756
1756
|
|
1757
1757
|
LiteralRegistry.register(
|
1758
|
-
:class => Virtuozzo::SOAP::
|
1758
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Load_avg_statsType::L3,
|
1759
1759
|
:schema_name => XSD::QName.new(NsTypes, "l3"),
|
1760
1760
|
:is_anonymous => true,
|
1761
1761
|
:schema_qualified => true,
|
@@ -1768,7 +1768,7 @@ module Virtuozzo # :nodoc:
|
|
1768
1768
|
)
|
1769
1769
|
|
1770
1770
|
LiteralRegistry.register(
|
1771
|
-
:class => Virtuozzo::SOAP::
|
1771
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Alert_dataType,
|
1772
1772
|
:schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
|
1773
1773
|
:schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
|
1774
1774
|
:schema_element => [
|
@@ -1777,7 +1777,7 @@ module Virtuozzo # :nodoc:
|
|
1777
1777
|
)
|
1778
1778
|
|
1779
1779
|
LiteralRegistry.register(
|
1780
|
-
:class => Virtuozzo::SOAP::
|
1780
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType,
|
1781
1781
|
:schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
|
1782
1782
|
:schema_element => [
|
1783
1783
|
["ip", nil],
|
@@ -1786,25 +1786,25 @@ module Virtuozzo # :nodoc:
|
|
1786
1786
|
)
|
1787
1787
|
|
1788
1788
|
LiteralRegistry.register(
|
1789
|
-
:class => Virtuozzo::SOAP::
|
1789
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_resourceType,
|
1790
1790
|
:schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
|
1791
1791
|
:schema_element => [
|
1792
1792
|
["eid", nil],
|
1793
|
-
["ip_pool", "Virtuozzo::SOAP::
|
1793
|
+
["ip_pool", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType", [0, 1]]
|
1794
1794
|
]
|
1795
1795
|
)
|
1796
1796
|
|
1797
1797
|
LiteralRegistry.register(
|
1798
|
-
:class => Virtuozzo::SOAP::
|
1798
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType,
|
1799
1799
|
:schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
|
1800
1800
|
:schema_element => [ :choice,
|
1801
|
-
["ip_range", "Virtuozzo::SOAP::
|
1801
|
+
["ip_range", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType::Ip_range[]"],
|
1802
1802
|
["ip", "[]"]
|
1803
1803
|
]
|
1804
1804
|
)
|
1805
1805
|
|
1806
1806
|
LiteralRegistry.register(
|
1807
|
-
:class => Virtuozzo::SOAP::
|
1807
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ip_poolType::Ip_range,
|
1808
1808
|
:schema_name => XSD::QName.new(NsTypes, "ip_range"),
|
1809
1809
|
:is_anonymous => true,
|
1810
1810
|
:schema_qualified => true,
|
@@ -1815,7 +1815,7 @@ module Virtuozzo # :nodoc:
|
|
1815
1815
|
)
|
1816
1816
|
|
1817
1817
|
LiteralRegistry.register(
|
1818
|
-
:class => Virtuozzo::SOAP::
|
1818
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UsageType,
|
1819
1819
|
:schema_type => XSD::QName.new(NsTypes, "usageType"),
|
1820
1820
|
:schema_element => [
|
1821
1821
|
["total", "SOAP::SOAPLong", [0, 1]],
|
@@ -1825,20 +1825,20 @@ module Virtuozzo # :nodoc:
|
|
1825
1825
|
)
|
1826
1826
|
|
1827
1827
|
LiteralRegistry.register(
|
1828
|
-
:class => Virtuozzo::SOAP::
|
1828
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Root_credentialType,
|
1829
1829
|
:schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
|
1830
1830
|
:schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
|
1831
1831
|
:schema_element => [
|
1832
1832
|
["id", "SOAP::SOAPString"],
|
1833
1833
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
1834
1834
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
1835
|
-
["cred", "Virtuozzo::SOAP::
|
1836
|
-
["objects", "Virtuozzo::SOAP::
|
1835
|
+
["cred", "Virtuozzo::SOAP::Types::ProcessInfo::CredentialType[]", [0, nil]],
|
1836
|
+
["objects", "Virtuozzo::SOAP::Types::ProcessInfo::Root_credentialType::Objects", [0, 1]]
|
1837
1837
|
]
|
1838
1838
|
)
|
1839
1839
|
|
1840
1840
|
LiteralRegistry.register(
|
1841
|
-
:class => Virtuozzo::SOAP::
|
1841
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Root_credentialType::Objects,
|
1842
1842
|
:schema_name => XSD::QName.new(NsTypes, "objects"),
|
1843
1843
|
:is_anonymous => true,
|
1844
1844
|
:schema_qualified => true,
|
@@ -1848,30 +1848,30 @@ module Virtuozzo # :nodoc:
|
|
1848
1848
|
)
|
1849
1849
|
|
1850
1850
|
LiteralRegistry.register(
|
1851
|
-
:class => Virtuozzo::SOAP::
|
1851
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::CredentialType,
|
1852
1852
|
:schema_type => XSD::QName.new(NsTypes, "credentialType"),
|
1853
1853
|
:schema_element => [
|
1854
1854
|
["id", "SOAP::SOAPString"],
|
1855
1855
|
["policy", "SOAP::SOAPInt", [0, 1]],
|
1856
1856
|
["description", "SOAP::SOAPBase64", [0, 1]],
|
1857
|
-
["cred", "Virtuozzo::SOAP::
|
1857
|
+
["cred", "Virtuozzo::SOAP::Types::ProcessInfo::CredentialType[]", [0, nil]]
|
1858
1858
|
]
|
1859
1859
|
)
|
1860
1860
|
|
1861
1861
|
LiteralRegistry.register(
|
1862
|
-
:class => Virtuozzo::SOAP::
|
1862
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType,
|
1863
1863
|
:schema_type => XSD::QName.new(NsTypes, "tokenType"),
|
1864
1864
|
:schema_element => [
|
1865
1865
|
["user", nil],
|
1866
|
-
["groups", "Virtuozzo::SOAP::
|
1867
|
-
["deny_only_sids", "Virtuozzo::SOAP::
|
1868
|
-
["privileges", "Virtuozzo::SOAP::
|
1869
|
-
["source", "Virtuozzo::SOAP::
|
1866
|
+
["groups", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Groups", [0, 1]],
|
1867
|
+
["deny_only_sids", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Deny_only_sids", [0, 1]],
|
1868
|
+
["privileges", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Privileges", [0, 1]],
|
1869
|
+
["source", "Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Source", [0, 1]]
|
1870
1870
|
]
|
1871
1871
|
)
|
1872
1872
|
|
1873
1873
|
LiteralRegistry.register(
|
1874
|
-
:class => Virtuozzo::SOAP::
|
1874
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Groups,
|
1875
1875
|
:schema_name => XSD::QName.new(NsTypes, "groups"),
|
1876
1876
|
:is_anonymous => true,
|
1877
1877
|
:schema_qualified => true,
|
@@ -1881,7 +1881,7 @@ module Virtuozzo # :nodoc:
|
|
1881
1881
|
)
|
1882
1882
|
|
1883
1883
|
LiteralRegistry.register(
|
1884
|
-
:class => Virtuozzo::SOAP::
|
1884
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Deny_only_sids,
|
1885
1885
|
:schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
|
1886
1886
|
:is_anonymous => true,
|
1887
1887
|
:schema_qualified => true,
|
@@ -1891,7 +1891,7 @@ module Virtuozzo # :nodoc:
|
|
1891
1891
|
)
|
1892
1892
|
|
1893
1893
|
LiteralRegistry.register(
|
1894
|
-
:class => Virtuozzo::SOAP::
|
1894
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Privileges,
|
1895
1895
|
:schema_name => XSD::QName.new(NsTypes, "privileges"),
|
1896
1896
|
:is_anonymous => true,
|
1897
1897
|
:schema_qualified => true,
|
@@ -1901,7 +1901,7 @@ module Virtuozzo # :nodoc:
|
|
1901
1901
|
)
|
1902
1902
|
|
1903
1903
|
LiteralRegistry.register(
|
1904
|
-
:class => Virtuozzo::SOAP::
|
1904
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::TokenType::Source,
|
1905
1905
|
:schema_name => XSD::QName.new(NsTypes, "source"),
|
1906
1906
|
:is_anonymous => true,
|
1907
1907
|
:schema_qualified => true,
|
@@ -1912,7 +1912,7 @@ module Virtuozzo # :nodoc:
|
|
1912
1912
|
)
|
1913
1913
|
|
1914
1914
|
LiteralRegistry.register(
|
1915
|
-
:class => Virtuozzo::SOAP::
|
1915
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Connectivity_infoType,
|
1916
1916
|
:schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
1917
1917
|
:schema_element => [
|
1918
1918
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
@@ -1922,7 +1922,7 @@ module Virtuozzo # :nodoc:
|
|
1922
1922
|
)
|
1923
1923
|
|
1924
1924
|
LiteralRegistry.register(
|
1925
|
-
:class => Virtuozzo::SOAP::
|
1925
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Auth_nameType,
|
1926
1926
|
:schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
|
1927
1927
|
:schema_element => [
|
1928
1928
|
["name", "SOAP::SOAPBase64", [0, 1]],
|
@@ -1932,20 +1932,20 @@ module Virtuozzo # :nodoc:
|
|
1932
1932
|
)
|
1933
1933
|
|
1934
1934
|
LiteralRegistry.register(
|
1935
|
-
:class => Virtuozzo::SOAP::
|
1935
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Connection_infoType,
|
1936
1936
|
:schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
|
1937
1937
|
:schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
|
1938
1938
|
:schema_element => [
|
1939
1939
|
["protocol", "SOAP::SOAPString", [0, 1]],
|
1940
1940
|
["address", "SOAP::SOAPString"],
|
1941
1941
|
["port", "SOAP::SOAPUnsignedInt", [0, 1]],
|
1942
|
-
["login", "Virtuozzo::SOAP::
|
1942
|
+
["login", "Virtuozzo::SOAP::Types::ProcessInfo::Auth_nameType", [0, 1]],
|
1943
1943
|
["password", "SOAP::SOAPBase64", [0, 1]]
|
1944
1944
|
]
|
1945
1945
|
)
|
1946
1946
|
|
1947
1947
|
LiteralRegistry.register(
|
1948
|
-
:class => Virtuozzo::SOAP::
|
1948
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Eid_listType,
|
1949
1949
|
:schema_type => XSD::QName.new(NsTypes, "eid_listType"),
|
1950
1950
|
:schema_element => [
|
1951
1951
|
["eid", "[]", [0, nil]]
|
@@ -1953,7 +1953,7 @@ module Virtuozzo # :nodoc:
|
|
1953
1953
|
)
|
1954
1954
|
|
1955
1955
|
LiteralRegistry.register(
|
1956
|
-
:class => Virtuozzo::SOAP::
|
1956
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vt_infoType,
|
1957
1957
|
:schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
|
1958
1958
|
:schema_element => [
|
1959
1959
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -1961,7 +1961,7 @@ module Virtuozzo # :nodoc:
|
|
1961
1961
|
)
|
1962
1962
|
|
1963
1963
|
LiteralRegistry.register(
|
1964
|
-
:class => Virtuozzo::SOAP::
|
1964
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vt_settingsType,
|
1965
1965
|
:schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
|
1966
1966
|
:schema_element => [
|
1967
1967
|
["default_sample_id", nil, [0, 1]]
|
@@ -1969,11 +1969,11 @@ module Virtuozzo # :nodoc:
|
|
1969
1969
|
)
|
1970
1970
|
|
1971
1971
|
LiteralRegistry.register(
|
1972
|
-
:class => Virtuozzo::SOAP::
|
1972
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UserType,
|
1973
1973
|
:schema_type => XSD::QName.new(NsTypes, "userType"),
|
1974
1974
|
:schema_element => [
|
1975
|
-
["initial_group", "Virtuozzo::SOAP::
|
1976
|
-
["group", "Virtuozzo::SOAP::
|
1975
|
+
["initial_group", "Virtuozzo::SOAP::Types::ProcessInfo::UserType::Initial_group", [0, 1]],
|
1976
|
+
["group", "Virtuozzo::SOAP::Types::ProcessInfo::UserType::Group[]", [0, nil]],
|
1977
1977
|
["uid", "SOAP::SOAPInt", [0, 1]],
|
1978
1978
|
["shell", "SOAP::SOAPString", [0, 1]],
|
1979
1979
|
["password", "SOAP::SOAPBase64", [0, 1]],
|
@@ -1984,7 +1984,7 @@ module Virtuozzo # :nodoc:
|
|
1984
1984
|
)
|
1985
1985
|
|
1986
1986
|
LiteralRegistry.register(
|
1987
|
-
:class => Virtuozzo::SOAP::
|
1987
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UserType::Initial_group,
|
1988
1988
|
:schema_name => XSD::QName.new(NsTypes, "initial_group"),
|
1989
1989
|
:is_anonymous => true,
|
1990
1990
|
:schema_qualified => true,
|
@@ -1995,7 +1995,7 @@ module Virtuozzo # :nodoc:
|
|
1995
1995
|
)
|
1996
1996
|
|
1997
1997
|
LiteralRegistry.register(
|
1998
|
-
:class => Virtuozzo::SOAP::
|
1998
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::UserType::Group,
|
1999
1999
|
:schema_name => XSD::QName.new(NsTypes, "group"),
|
2000
2000
|
:is_anonymous => true,
|
2001
2001
|
:schema_qualified => true,
|
@@ -2006,18 +2006,18 @@ module Virtuozzo # :nodoc:
|
|
2006
2006
|
)
|
2007
2007
|
|
2008
2008
|
LiteralRegistry.register(
|
2009
|
-
:class => Virtuozzo::SOAP::
|
2009
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GroupType,
|
2010
2010
|
:schema_type => XSD::QName.new(NsTypes, "groupType"),
|
2011
2011
|
:schema_element => [
|
2012
|
-
["user", "Virtuozzo::SOAP::
|
2013
|
-
["member_group", "Virtuozzo::SOAP::
|
2012
|
+
["user", "Virtuozzo::SOAP::Types::ProcessInfo::GroupType::User[]", [0, nil]],
|
2013
|
+
["member_group", "Virtuozzo::SOAP::Types::ProcessInfo::GroupType::Member_group[]", [0, nil]],
|
2014
2014
|
["name", "SOAP::SOAPString", [0, 1]],
|
2015
2015
|
["gid", "SOAP::SOAPInt", [0, 1]]
|
2016
2016
|
]
|
2017
2017
|
)
|
2018
2018
|
|
2019
2019
|
LiteralRegistry.register(
|
2020
|
-
:class => Virtuozzo::SOAP::
|
2020
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GroupType::User,
|
2021
2021
|
:schema_name => XSD::QName.new(NsTypes, "user"),
|
2022
2022
|
:is_anonymous => true,
|
2023
2023
|
:schema_qualified => true,
|
@@ -2027,7 +2027,7 @@ module Virtuozzo # :nodoc:
|
|
2027
2027
|
)
|
2028
2028
|
|
2029
2029
|
LiteralRegistry.register(
|
2030
|
-
:class => Virtuozzo::SOAP::
|
2030
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GroupType::Member_group,
|
2031
2031
|
:schema_name => XSD::QName.new(NsTypes, "member_group"),
|
2032
2032
|
:is_anonymous => true,
|
2033
2033
|
:schema_qualified => true,
|
@@ -2037,12 +2037,12 @@ module Virtuozzo # :nodoc:
|
|
2037
2037
|
)
|
2038
2038
|
|
2039
2039
|
LiteralRegistry.register(
|
2040
|
-
:class => Virtuozzo::SOAP::
|
2040
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::PackageType,
|
2041
2041
|
:schema_type => XSD::QName.new(NsTypes, "packageType"),
|
2042
2042
|
:schema_element => [
|
2043
2043
|
["name", "SOAP::SOAPString"],
|
2044
2044
|
["summary", "SOAP::SOAPString", [0, 1]],
|
2045
|
-
["os", "Virtuozzo::SOAP::
|
2045
|
+
["os", "Virtuozzo::SOAP::Types::ProcessInfo::OsType", [0, 1]],
|
2046
2046
|
["description", "SOAP::SOAPString", [0, 1]],
|
2047
2047
|
["arch", "SOAP::SOAPString", [0, 1]],
|
2048
2048
|
["version", "SOAP::SOAPString", [0, 1]]
|
@@ -2050,13 +2050,13 @@ module Virtuozzo # :nodoc:
|
|
2050
2050
|
)
|
2051
2051
|
|
2052
2052
|
LiteralRegistry.register(
|
2053
|
-
:class => Virtuozzo::SOAP::
|
2053
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Event_dataType,
|
2054
2054
|
:schema_type => XSD::QName.new(NsTypes, "event_dataType"),
|
2055
2055
|
:schema_element => []
|
2056
2056
|
)
|
2057
2057
|
|
2058
2058
|
LiteralRegistry.register(
|
2059
|
-
:class => Virtuozzo::SOAP::
|
2059
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Named_listType,
|
2060
2060
|
:schema_type => XSD::QName.new(NsTypes, "named_listType"),
|
2061
2061
|
:schema_element => [
|
2062
2062
|
["name", "SOAP::SOAPString"],
|
@@ -2065,7 +2065,7 @@ module Virtuozzo # :nodoc:
|
|
2065
2065
|
)
|
2066
2066
|
|
2067
2067
|
LiteralRegistry.register(
|
2068
|
-
:class => Virtuozzo::SOAP::
|
2068
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ModType,
|
2069
2069
|
:schema_type => XSD::QName.new(NsTypes, "modType"),
|
2070
2070
|
:schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
|
2071
2071
|
:schema_element => [
|
@@ -2076,7 +2076,7 @@ module Virtuozzo # :nodoc:
|
|
2076
2076
|
)
|
2077
2077
|
|
2078
2078
|
LiteralRegistry.register(
|
2079
|
-
:class => Virtuozzo::SOAP::
|
2079
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::RealmType,
|
2080
2080
|
:schema_type => XSD::QName.new(NsTypes, "realmType"),
|
2081
2081
|
:schema_element => [
|
2082
2082
|
["id", nil, [0, 1]],
|
@@ -2087,7 +2087,7 @@ module Virtuozzo # :nodoc:
|
|
2087
2087
|
)
|
2088
2088
|
|
2089
2089
|
LiteralRegistry.register(
|
2090
|
-
:class => Virtuozzo::SOAP::
|
2090
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::EventType,
|
2091
2091
|
:schema_type => XSD::QName.new(NsTypes, "eventType"),
|
2092
2092
|
:schema_element => [
|
2093
2093
|
["eid", nil],
|
@@ -2097,34 +2097,34 @@ module Virtuozzo # :nodoc:
|
|
2097
2097
|
["sid", nil, [0, 1]],
|
2098
2098
|
["count", "SOAP::SOAPInt"],
|
2099
2099
|
["id", nil],
|
2100
|
-
["info", "Virtuozzo::SOAP::
|
2101
|
-
["data", "Virtuozzo::SOAP::
|
2100
|
+
["info", "Virtuozzo::SOAP::Types::ProcessInfo::InfoType"],
|
2101
|
+
["data", "Virtuozzo::SOAP::Types::ProcessInfo::EventType::C_Data", [0, 1]]
|
2102
2102
|
]
|
2103
2103
|
)
|
2104
2104
|
|
2105
2105
|
LiteralRegistry.register(
|
2106
|
-
:class => Virtuozzo::SOAP::
|
2106
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::EventType::C_Data,
|
2107
2107
|
:schema_name => XSD::QName.new(NsTypes, "data"),
|
2108
2108
|
:is_anonymous => true,
|
2109
2109
|
:schema_qualified => true,
|
2110
2110
|
:schema_element => [
|
2111
|
-
["event_data", "Virtuozzo::SOAP::
|
2111
|
+
["event_data", "Virtuozzo::SOAP::Types::ProcessInfo::Event_dataType"]
|
2112
2112
|
]
|
2113
2113
|
)
|
2114
2114
|
|
2115
2115
|
LiteralRegistry.register(
|
2116
|
-
:class => Virtuozzo::SOAP::
|
2116
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::InfoType,
|
2117
2117
|
:schema_type => XSD::QName.new(NsTypes, "infoType"),
|
2118
2118
|
:schema_element => [
|
2119
2119
|
["message", "SOAP::SOAPBase64"],
|
2120
2120
|
["translate", nil, [0, 1]],
|
2121
|
-
["parameter", "Virtuozzo::SOAP::
|
2121
|
+
["parameter", "Virtuozzo::SOAP::Types::ProcessInfo::InfoType[]", [0, nil]],
|
2122
2122
|
["name", "SOAP::SOAPString"]
|
2123
2123
|
]
|
2124
2124
|
)
|
2125
2125
|
|
2126
2126
|
LiteralRegistry.register(
|
2127
|
-
:class => Virtuozzo::SOAP::
|
2127
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::AceType,
|
2128
2128
|
:schema_type => XSD::QName.new(NsTypes, "aceType"),
|
2129
2129
|
:schema_element => [
|
2130
2130
|
["type", "SOAP::SOAPInt"],
|
@@ -2134,27 +2134,27 @@ module Virtuozzo # :nodoc:
|
|
2134
2134
|
)
|
2135
2135
|
|
2136
2136
|
LiteralRegistry.register(
|
2137
|
-
:class => Virtuozzo::SOAP::
|
2137
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Security_descriptorType,
|
2138
2138
|
:schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
|
2139
2139
|
:schema_element => [
|
2140
2140
|
["owner", nil],
|
2141
2141
|
["group", nil],
|
2142
|
-
["dacl", "Virtuozzo::SOAP::
|
2142
|
+
["dacl", "Virtuozzo::SOAP::Types::ProcessInfo::Security_descriptorType::Dacl", [0, 1]]
|
2143
2143
|
]
|
2144
2144
|
)
|
2145
2145
|
|
2146
2146
|
LiteralRegistry.register(
|
2147
|
-
:class => Virtuozzo::SOAP::
|
2147
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Security_descriptorType::Dacl,
|
2148
2148
|
:schema_name => XSD::QName.new(NsTypes, "dacl"),
|
2149
2149
|
:is_anonymous => true,
|
2150
2150
|
:schema_qualified => true,
|
2151
2151
|
:schema_element => [
|
2152
|
-
["ace", "Virtuozzo::SOAP::
|
2152
|
+
["ace", "Virtuozzo::SOAP::Types::ProcessInfo::AceType[]", [0, nil]]
|
2153
2153
|
]
|
2154
2154
|
)
|
2155
2155
|
|
2156
2156
|
LiteralRegistry.register(
|
2157
|
-
:class => Virtuozzo::SOAP::
|
2157
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Env_security_objectType,
|
2158
2158
|
:schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
|
2159
2159
|
:schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
|
2160
2160
|
:schema_element => [
|
@@ -2163,19 +2163,19 @@ module Virtuozzo # :nodoc:
|
|
2163
2163
|
)
|
2164
2164
|
|
2165
2165
|
LiteralRegistry.register(
|
2166
|
-
:class => Virtuozzo::SOAP::
|
2166
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_deviceType,
|
2167
2167
|
:schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
|
2168
2168
|
:schema_element => [
|
2169
2169
|
["id", "SOAP::SOAPString", [0, 1]],
|
2170
|
-
["ip_address", "Virtuozzo::SOAP::
|
2170
|
+
["ip_address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
2171
2171
|
["dhcp", nil, [0, 1]],
|
2172
2172
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
2173
|
-
["status", "Virtuozzo::SOAP::
|
2173
|
+
["status", "Virtuozzo::SOAP::Types::ProcessInfo::Net_deviceType::Status", [0, 1]]
|
2174
2174
|
]
|
2175
2175
|
)
|
2176
2176
|
|
2177
2177
|
LiteralRegistry.register(
|
2178
|
-
:class => Virtuozzo::SOAP::
|
2178
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_deviceType::Status,
|
2179
2179
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
2180
2180
|
:is_anonymous => true,
|
2181
2181
|
:schema_qualified => true,
|
@@ -2186,7 +2186,7 @@ module Virtuozzo # :nodoc:
|
|
2186
2186
|
)
|
2187
2187
|
|
2188
2188
|
LiteralRegistry.register(
|
2189
|
-
:class => Virtuozzo::SOAP::
|
2189
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType,
|
2190
2190
|
:schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
|
2191
2191
|
:schema_element => [
|
2192
2192
|
["id", "SOAP::SOAPString"],
|
@@ -2205,31 +2205,31 @@ module Virtuozzo # :nodoc:
|
|
2205
2205
|
)
|
2206
2206
|
|
2207
2207
|
LiteralRegistry.register(
|
2208
|
-
:class => Virtuozzo::SOAP::
|
2208
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::VocabularyType,
|
2209
2209
|
:schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
|
2210
2210
|
:schema_element => [
|
2211
2211
|
["name", "SOAP::SOAPString"],
|
2212
|
-
["parameter", "Virtuozzo::SOAP::
|
2213
|
-
["category", "Virtuozzo::SOAP::
|
2212
|
+
["parameter", "Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType[]", [0, nil]],
|
2213
|
+
["category", "Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType[]", [0, nil]]
|
2214
2214
|
]
|
2215
2215
|
)
|
2216
2216
|
|
2217
2217
|
LiteralRegistry.register(
|
2218
|
-
:class => Virtuozzo::SOAP::
|
2218
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_nicType,
|
2219
2219
|
:schema_type => XSD::QName.new(NsTypes, "net_nicType"),
|
2220
2220
|
:schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
|
2221
2221
|
:schema_element => [
|
2222
2222
|
["id", "SOAP::SOAPString", [0, 1]],
|
2223
|
-
["ip_address", "Virtuozzo::SOAP::
|
2223
|
+
["ip_address", "Virtuozzo::SOAP::Types::ProcessInfo::Ip_addressType[]", [0, nil]],
|
2224
2224
|
["dhcp", nil, [0, 1]],
|
2225
2225
|
["network_id", "SOAP::SOAPBase64", [0, 1]],
|
2226
|
-
["status", "Virtuozzo::SOAP::
|
2226
|
+
["status", "Virtuozzo::SOAP::Types::ProcessInfo::Net_nicType::Status", [0, 1]],
|
2227
2227
|
["mac_address", "SOAP::SOAPString", [0, 1]]
|
2228
2228
|
]
|
2229
2229
|
)
|
2230
2230
|
|
2231
2231
|
LiteralRegistry.register(
|
2232
|
-
:class => Virtuozzo::SOAP::
|
2232
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Net_nicType::Status,
|
2233
2233
|
:schema_name => XSD::QName.new(NsTypes, "status"),
|
2234
2234
|
:is_anonymous => true,
|
2235
2235
|
:schema_qualified => true,
|
@@ -2240,7 +2240,7 @@ module Virtuozzo # :nodoc:
|
|
2240
2240
|
)
|
2241
2241
|
|
2242
2242
|
LiteralRegistry.register(
|
2243
|
-
:class => Virtuozzo::SOAP::
|
2243
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_statType,
|
2244
2244
|
:schema_type => XSD::QName.new(NsTypes, "perf_statType"),
|
2245
2245
|
:schema_element => [
|
2246
2246
|
["cur", "SOAP::SOAPAnySimpleType"],
|
@@ -2251,71 +2251,71 @@ module Virtuozzo # :nodoc:
|
|
2251
2251
|
)
|
2252
2252
|
|
2253
2253
|
LiteralRegistry.register(
|
2254
|
-
:class => Virtuozzo::SOAP::
|
2254
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType,
|
2255
2255
|
:schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
|
2256
2256
|
:schema_element => [
|
2257
2257
|
["eid", nil],
|
2258
|
-
["v_class", ["Virtuozzo::SOAP::
|
2259
|
-
["interval", "Virtuozzo::SOAP::
|
2258
|
+
["v_class", ["Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
|
2259
|
+
["interval", "Virtuozzo::SOAP::Types::ProcessInfo::IntervalType"]
|
2260
2260
|
]
|
2261
2261
|
)
|
2262
2262
|
|
2263
2263
|
LiteralRegistry.register(
|
2264
|
-
:class => Virtuozzo::SOAP::
|
2264
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance::Counter,
|
2265
2265
|
:schema_name => XSD::QName.new(NsTypes, "counter"),
|
2266
2266
|
:is_anonymous => true,
|
2267
2267
|
:schema_qualified => true,
|
2268
2268
|
:schema_element => [
|
2269
2269
|
["name", "SOAP::SOAPString"],
|
2270
|
-
["value", "Virtuozzo::SOAP::
|
2270
|
+
["value", "Virtuozzo::SOAP::Types::ProcessInfo::Perf_statType"]
|
2271
2271
|
]
|
2272
2272
|
)
|
2273
2273
|
|
2274
2274
|
LiteralRegistry.register(
|
2275
|
-
:class => Virtuozzo::SOAP::
|
2275
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance,
|
2276
2276
|
:schema_name => XSD::QName.new(NsTypes, "instance"),
|
2277
2277
|
:is_anonymous => true,
|
2278
2278
|
:schema_qualified => true,
|
2279
2279
|
:schema_element => [
|
2280
2280
|
["name", "SOAP::SOAPString", [0, 1]],
|
2281
|
-
["counter", "Virtuozzo::SOAP::
|
2281
|
+
["counter", "Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
|
2282
2282
|
]
|
2283
2283
|
)
|
2284
2284
|
|
2285
2285
|
LiteralRegistry.register(
|
2286
|
-
:class => Virtuozzo::SOAP::
|
2286
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class,
|
2287
2287
|
:schema_name => XSD::QName.new(NsTypes, "class"),
|
2288
2288
|
:is_anonymous => true,
|
2289
2289
|
:schema_qualified => true,
|
2290
2290
|
:schema_element => [
|
2291
2291
|
["name", "SOAP::SOAPString"],
|
2292
|
-
["instance", "Virtuozzo::SOAP::
|
2292
|
+
["instance", "Virtuozzo::SOAP::Types::ProcessInfo::Perf_dataType::C_Class::Instance[]", [1, nil]]
|
2293
2293
|
]
|
2294
2294
|
)
|
2295
2295
|
|
2296
2296
|
LiteralRegistry.register(
|
2297
|
-
:class => Virtuozzo::SOAP::
|
2297
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Log_options_baseType,
|
2298
2298
|
:schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
|
2299
2299
|
:schema_element => []
|
2300
2300
|
)
|
2301
2301
|
|
2302
2302
|
LiteralRegistry.register(
|
2303
|
-
:class => Virtuozzo::SOAP::
|
2303
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Log_optionsType,
|
2304
2304
|
:schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
|
2305
2305
|
:schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
|
2306
2306
|
:schema_element => []
|
2307
2307
|
)
|
2308
2308
|
|
2309
2309
|
LiteralRegistry.register(
|
2310
|
-
:class => Virtuozzo::SOAP::
|
2310
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Packet_headerType,
|
2311
2311
|
:schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
|
2312
2312
|
:schema_element => [
|
2313
|
-
["auth", "Virtuozzo::SOAP::
|
2313
|
+
["auth", "Virtuozzo::SOAP::Types::ProcessInfo::AuthType", [0, 1]],
|
2314
2314
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
2315
2315
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
2316
2316
|
["origin", "SOAP::SOAPString", [0, 1]],
|
2317
|
-
["src", "Virtuozzo::SOAP::
|
2318
|
-
["dst", "Virtuozzo::SOAP::
|
2317
|
+
["src", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2318
|
+
["dst", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2319
2319
|
["session", "SOAP::SOAPString", [0, 1]]
|
2320
2320
|
],
|
2321
2321
|
:schema_attribute => {
|
@@ -2333,26 +2333,26 @@ module Virtuozzo # :nodoc:
|
|
2333
2333
|
)
|
2334
2334
|
|
2335
2335
|
LiteralRegistry.register(
|
2336
|
-
:class => Virtuozzo::SOAP::
|
2336
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::OperatorType,
|
2337
2337
|
:schema_type => XSD::QName.new(NsProtocol, "operatorType"),
|
2338
2338
|
:schema_element => [ :choice,
|
2339
|
-
["configuration", "Virtuozzo::SOAP::
|
2339
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"]
|
2340
2340
|
]
|
2341
2341
|
)
|
2342
2342
|
|
2343
2343
|
LiteralRegistry.register(
|
2344
|
-
:class => Virtuozzo::SOAP::
|
2344
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType,
|
2345
2345
|
:schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
2346
2346
|
:schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
|
2347
2347
|
:schema_element => [ :choice,
|
2348
|
-
["configuration", "Virtuozzo::SOAP::
|
2349
|
-
["ok", "Virtuozzo::SOAP::
|
2350
|
-
["error", "Virtuozzo::SOAP::
|
2348
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"],
|
2349
|
+
["ok", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Ok[]"],
|
2350
|
+
["error", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Error[]"]
|
2351
2351
|
]
|
2352
2352
|
)
|
2353
2353
|
|
2354
2354
|
LiteralRegistry.register(
|
2355
|
-
:class => Virtuozzo::SOAP::
|
2355
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Ok,
|
2356
2356
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2357
2357
|
:is_anonymous => true,
|
2358
2358
|
:schema_qualified => true,
|
@@ -2360,7 +2360,7 @@ module Virtuozzo # :nodoc:
|
|
2360
2360
|
)
|
2361
2361
|
|
2362
2362
|
LiteralRegistry.register(
|
2363
|
-
:class => Virtuozzo::SOAP::
|
2363
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Error,
|
2364
2364
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2365
2365
|
:is_anonymous => true,
|
2366
2366
|
:schema_qualified => true,
|
@@ -2371,24 +2371,24 @@ module Virtuozzo # :nodoc:
|
|
2371
2371
|
)
|
2372
2372
|
|
2373
2373
|
LiteralRegistry.register(
|
2374
|
-
:class => Virtuozzo::SOAP::
|
2374
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType,
|
2375
2375
|
:schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
|
2376
2376
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
2377
2377
|
:schema_element => [ :choice,
|
2378
|
-
["configuration", "Virtuozzo::SOAP::
|
2379
|
-
["ok", "Virtuozzo::SOAP::
|
2380
|
-
["error", "Virtuozzo::SOAP::
|
2378
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"],
|
2379
|
+
["ok", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Ok[]"],
|
2380
|
+
["error", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Error[]"],
|
2381
2381
|
[ :choice,
|
2382
|
-
["start_monitor", "Virtuozzo::SOAP::
|
2383
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
2384
|
-
["set_period", "Virtuozzo::SOAP::
|
2382
|
+
["start_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Start_monitorType"],
|
2383
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Stop_monitorType"],
|
2384
|
+
["set_period", "Virtuozzo::SOAP::Types::ProcessInfo::Set_periodType", [0, 1]],
|
2385
2385
|
["report", nil, [0, 1]]
|
2386
2386
|
]
|
2387
2387
|
]
|
2388
2388
|
)
|
2389
2389
|
|
2390
2390
|
LiteralRegistry.register(
|
2391
|
-
:class => Virtuozzo::SOAP::
|
2391
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Ok,
|
2392
2392
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2393
2393
|
:is_anonymous => true,
|
2394
2394
|
:schema_qualified => true,
|
@@ -2396,7 +2396,7 @@ module Virtuozzo # :nodoc:
|
|
2396
2396
|
)
|
2397
2397
|
|
2398
2398
|
LiteralRegistry.register(
|
2399
|
-
:class => Virtuozzo::SOAP::
|
2399
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Error,
|
2400
2400
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2401
2401
|
:is_anonymous => true,
|
2402
2402
|
:schema_qualified => true,
|
@@ -2407,7 +2407,7 @@ module Virtuozzo # :nodoc:
|
|
2407
2407
|
)
|
2408
2408
|
|
2409
2409
|
LiteralRegistry.register(
|
2410
|
-
:class => Virtuozzo::SOAP::
|
2410
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Set_periodType,
|
2411
2411
|
:schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
|
2412
2412
|
:schema_element => [
|
2413
2413
|
["collect", "SOAP::SOAPInt"],
|
@@ -2417,7 +2417,7 @@ module Virtuozzo # :nodoc:
|
|
2417
2417
|
)
|
2418
2418
|
|
2419
2419
|
LiteralRegistry.register(
|
2420
|
-
:class => Virtuozzo::SOAP::
|
2420
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Start_monitorType,
|
2421
2421
|
:schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
|
2422
2422
|
:schema_element => [
|
2423
2423
|
["period", "SOAP::SOAPInt"],
|
@@ -2426,7 +2426,7 @@ module Virtuozzo # :nodoc:
|
|
2426
2426
|
)
|
2427
2427
|
|
2428
2428
|
LiteralRegistry.register(
|
2429
|
-
:class => Virtuozzo::SOAP::
|
2429
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Stop_monitorType,
|
2430
2430
|
:schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
|
2431
2431
|
:schema_element => [
|
2432
2432
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -2434,7 +2434,7 @@ module Virtuozzo # :nodoc:
|
|
2434
2434
|
)
|
2435
2435
|
|
2436
2436
|
LiteralRegistry.register(
|
2437
|
-
:class => Virtuozzo::SOAP::
|
2437
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::AuthType,
|
2438
2438
|
:schema_type => XSD::QName.new(NsProtocol, "authType"),
|
2439
2439
|
:schema_element => [
|
2440
2440
|
["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
|
@@ -2442,7 +2442,7 @@ module Virtuozzo # :nodoc:
|
|
2442
2442
|
)
|
2443
2443
|
|
2444
2444
|
LiteralRegistry.register(
|
2445
|
-
:class => Virtuozzo::SOAP::
|
2445
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Event_configurationType,
|
2446
2446
|
:schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
|
2447
2447
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
2448
2448
|
:schema_element => [
|
@@ -2451,7 +2451,7 @@ module Virtuozzo # :nodoc:
|
|
2451
2451
|
)
|
2452
2452
|
|
2453
2453
|
LiteralRegistry.register(
|
2454
|
-
:class => Virtuozzo::SOAP::
|
2454
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Periodic_configurationType,
|
2455
2455
|
:schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
|
2456
2456
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
2457
2457
|
:schema_element => [
|
@@ -2463,7 +2463,7 @@ module Virtuozzo # :nodoc:
|
|
2463
2463
|
)
|
2464
2464
|
|
2465
2465
|
LiteralRegistry.register(
|
2466
|
-
:class => Virtuozzo::SOAP::
|
2466
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::RouteType,
|
2467
2467
|
:schema_type => XSD::QName.new(NsProtocol, "routeType"),
|
2468
2468
|
:schema_element => [
|
2469
2469
|
["director", "SOAP::SOAPString", [0, 1]],
|
@@ -2474,40 +2474,40 @@ module Virtuozzo # :nodoc:
|
|
2474
2474
|
)
|
2475
2475
|
|
2476
2476
|
LiteralRegistry.register(
|
2477
|
-
:class => Virtuozzo::SOAP::
|
2477
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::DataType,
|
2478
2478
|
:schema_type => XSD::QName.new(NsProtocol, "dataType"),
|
2479
2479
|
:schema_element => [
|
2480
|
-
["operator", "Virtuozzo::SOAP::
|
2480
|
+
["operator", "Virtuozzo::SOAP::Types::ProcessInfo::OperatorType[]"]
|
2481
2481
|
]
|
2482
2482
|
)
|
2483
2483
|
|
2484
2484
|
LiteralRegistry.register(
|
2485
|
-
:class => Virtuozzo::SOAP::
|
2485
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType,
|
2486
2486
|
:schema_type => XSD::QName.new(NsProtocol, "configurationType"),
|
2487
2487
|
:schema_element => []
|
2488
2488
|
)
|
2489
2489
|
|
2490
2490
|
LiteralRegistry.register(
|
2491
|
-
:class => Virtuozzo::SOAP::
|
2491
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType,
|
2492
2492
|
:schema_type => XSD::QName.new(NsProc_info, "proc_infoType"),
|
2493
2493
|
:schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
|
2494
2494
|
:schema_element => [ :choice,
|
2495
|
-
["configuration", ["Virtuozzo::SOAP::
|
2496
|
-
["ok", ["Virtuozzo::SOAP::
|
2497
|
-
["error", ["Virtuozzo::SOAP::
|
2495
|
+
["configuration", ["Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
2496
|
+
["ok", ["Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
2497
|
+
["error", ["Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
2498
2498
|
[
|
2499
|
-
["start_monitor", "Virtuozzo::SOAP::
|
2500
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
2501
|
-
["get", "Virtuozzo::SOAP::
|
2499
|
+
["start_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Start_monitor[]"],
|
2500
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Stop_monitor[]"],
|
2501
|
+
["get", "Virtuozzo::SOAP::Types::ProcessInfo::Get[]"]
|
2502
2502
|
],
|
2503
2503
|
[
|
2504
|
-
["ps_info", "Virtuozzo::SOAP::
|
2504
|
+
["ps_info", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType[]", [0, 1]]
|
2505
2505
|
]
|
2506
2506
|
]
|
2507
2507
|
)
|
2508
2508
|
|
2509
2509
|
LiteralRegistry.register(
|
2510
|
-
:class => Virtuozzo::SOAP::
|
2510
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Ok,
|
2511
2511
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2512
2512
|
:is_anonymous => true,
|
2513
2513
|
:schema_qualified => true,
|
@@ -2515,7 +2515,7 @@ module Virtuozzo # :nodoc:
|
|
2515
2515
|
)
|
2516
2516
|
|
2517
2517
|
LiteralRegistry.register(
|
2518
|
-
:class => Virtuozzo::SOAP::
|
2518
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Error,
|
2519
2519
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2520
2520
|
:is_anonymous => true,
|
2521
2521
|
:schema_qualified => true,
|
@@ -2526,7 +2526,7 @@ module Virtuozzo # :nodoc:
|
|
2526
2526
|
)
|
2527
2527
|
|
2528
2528
|
LiteralRegistry.register(
|
2529
|
-
:class => Virtuozzo::SOAP::
|
2529
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Start_monitor,
|
2530
2530
|
:schema_name => XSD::QName.new(NsProc_info, "start_monitor"),
|
2531
2531
|
:is_anonymous => true,
|
2532
2532
|
:schema_qualified => true,
|
@@ -2539,7 +2539,7 @@ module Virtuozzo # :nodoc:
|
|
2539
2539
|
)
|
2540
2540
|
|
2541
2541
|
LiteralRegistry.register(
|
2542
|
-
:class => Virtuozzo::SOAP::
|
2542
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Stop_monitor,
|
2543
2543
|
:schema_name => XSD::QName.new(NsProc_info, "stop_monitor"),
|
2544
2544
|
:is_anonymous => true,
|
2545
2545
|
:schema_qualified => true,
|
@@ -2547,7 +2547,7 @@ module Virtuozzo # :nodoc:
|
|
2547
2547
|
)
|
2548
2548
|
|
2549
2549
|
LiteralRegistry.register(
|
2550
|
-
:class => Virtuozzo::SOAP::
|
2550
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_info_configurationType,
|
2551
2551
|
:schema_type => XSD::QName.new(NsProc_info, "proc_info_configurationType"),
|
2552
2552
|
:schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
|
2553
2553
|
:schema_element => [
|
@@ -2557,25 +2557,25 @@ module Virtuozzo # :nodoc:
|
|
2557
2557
|
)
|
2558
2558
|
|
2559
2559
|
LiteralRegistry.register(
|
2560
|
-
:class => Virtuozzo::SOAP::
|
2560
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Transport_type,
|
2561
2561
|
:schema_type => XSD::QName.new(NsTypes, "transport_type")
|
2562
2562
|
)
|
2563
2563
|
|
2564
2564
|
LiteralRegistry.register(
|
2565
|
-
:class => Virtuozzo::SOAP::
|
2565
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Yes_no_type,
|
2566
2566
|
:schema_type => XSD::QName.new(NsTypes, "yes_no_type")
|
2567
2567
|
)
|
2568
2568
|
|
2569
2569
|
LiteralRegistry.register(
|
2570
|
-
:class => Virtuozzo::SOAP::
|
2570
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Packet_headerType,
|
2571
2571
|
:schema_name => XSD::QName.new(NsVzaproc_info_0, "packet_header"),
|
2572
2572
|
:schema_element => [
|
2573
|
-
["auth", "Virtuozzo::SOAP::
|
2573
|
+
["auth", "Virtuozzo::SOAP::Types::ProcessInfo::AuthType", [0, 1]],
|
2574
2574
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
2575
2575
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
2576
2576
|
["origin", "SOAP::SOAPString", [0, 1]],
|
2577
|
-
["src", "Virtuozzo::SOAP::
|
2578
|
-
["dst", "Virtuozzo::SOAP::
|
2577
|
+
["src", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2578
|
+
["dst", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2579
2579
|
["session", "SOAP::SOAPString", [0, 1]]
|
2580
2580
|
],
|
2581
2581
|
:schema_attribute => {
|
@@ -2593,31 +2593,31 @@ module Virtuozzo # :nodoc:
|
|
2593
2593
|
)
|
2594
2594
|
|
2595
2595
|
LiteralRegistry.register(
|
2596
|
-
:class => Virtuozzo::SOAP::
|
2596
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info,
|
2597
2597
|
:schema_name => XSD::QName.new(NsVzaproc_info, "vzaproc_info"),
|
2598
2598
|
:schema_element => [ :choice,
|
2599
|
-
["configuration", ["Virtuozzo::SOAP::
|
2600
|
-
["ok", ["Virtuozzo::SOAP::
|
2601
|
-
["error", ["Virtuozzo::SOAP::
|
2599
|
+
["configuration", ["Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
2600
|
+
["ok", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
2601
|
+
["error", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
2602
2602
|
[
|
2603
|
-
["start_monitor", ["Virtuozzo::SOAP::
|
2604
|
-
["stop_monitor", ["Virtuozzo::SOAP::
|
2605
|
-
["get", ["Virtuozzo::SOAP::
|
2603
|
+
["start_monitor", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Start_monitor[]", XSD::QName.new(NsProc_info, "start_monitor")]],
|
2604
|
+
["stop_monitor", ["Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Stop_monitor[]", XSD::QName.new(NsProc_info, "stop_monitor")]],
|
2605
|
+
["get", ["Virtuozzo::SOAP::Types::ProcessInfo::Get[]", XSD::QName.new(NsProc_info, "get")]]
|
2606
2606
|
],
|
2607
2607
|
[
|
2608
|
-
["ps_info", ["Virtuozzo::SOAP::
|
2608
|
+
["ps_info", ["Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType[]", XSD::QName.new(NsProc_info, "ps_info")], [0, 1]]
|
2609
2609
|
],
|
2610
2610
|
[ :choice,
|
2611
|
-
["get", "Virtuozzo::SOAP::
|
2611
|
+
["get", "Virtuozzo::SOAP::Types::ProcessInfo::Get_"]
|
2612
2612
|
],
|
2613
2613
|
[ :choice,
|
2614
|
-
["ps_info", "Virtuozzo::SOAP::
|
2614
|
+
["ps_info", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType"]
|
2615
2615
|
]
|
2616
2616
|
]
|
2617
2617
|
)
|
2618
2618
|
|
2619
2619
|
LiteralRegistry.register(
|
2620
|
-
:class => Virtuozzo::SOAP::
|
2620
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Ok,
|
2621
2621
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2622
2622
|
:is_anonymous => true,
|
2623
2623
|
:schema_qualified => true,
|
@@ -2625,7 +2625,7 @@ module Virtuozzo # :nodoc:
|
|
2625
2625
|
)
|
2626
2626
|
|
2627
2627
|
LiteralRegistry.register(
|
2628
|
-
:class => Virtuozzo::SOAP::
|
2628
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Error,
|
2629
2629
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2630
2630
|
:is_anonymous => true,
|
2631
2631
|
:schema_qualified => true,
|
@@ -2636,7 +2636,7 @@ module Virtuozzo # :nodoc:
|
|
2636
2636
|
)
|
2637
2637
|
|
2638
2638
|
LiteralRegistry.register(
|
2639
|
-
:class => Virtuozzo::SOAP::
|
2639
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Start_monitor,
|
2640
2640
|
:schema_name => XSD::QName.new(NsProc_info, "start_monitor"),
|
2641
2641
|
:is_anonymous => true,
|
2642
2642
|
:schema_qualified => true,
|
@@ -2649,7 +2649,7 @@ module Virtuozzo # :nodoc:
|
|
2649
2649
|
)
|
2650
2650
|
|
2651
2651
|
LiteralRegistry.register(
|
2652
|
-
:class => Virtuozzo::SOAP::
|
2652
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Vzaproc_info::Stop_monitor,
|
2653
2653
|
:schema_name => XSD::QName.new(NsProc_info, "stop_monitor"),
|
2654
2654
|
:is_anonymous => true,
|
2655
2655
|
:schema_qualified => true,
|
@@ -2657,7 +2657,7 @@ module Virtuozzo # :nodoc:
|
|
2657
2657
|
)
|
2658
2658
|
|
2659
2659
|
LiteralRegistry.register(
|
2660
|
-
:class => Virtuozzo::SOAP::
|
2660
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Get_,
|
2661
2661
|
:schema_name => XSD::QName.new(NsVzaproc_info, "get"),
|
2662
2662
|
:schema_element => [
|
2663
2663
|
["eid", nil],
|
@@ -2668,10 +2668,10 @@ module Virtuozzo # :nodoc:
|
|
2668
2668
|
)
|
2669
2669
|
|
2670
2670
|
LiteralRegistry.register(
|
2671
|
-
:class => Virtuozzo::SOAP::
|
2671
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType,
|
2672
2672
|
:schema_name => XSD::QName.new(NsVzaproc_info, "ps_info"),
|
2673
2673
|
:schema_element => [
|
2674
|
-
["process", "Virtuozzo::SOAP::
|
2674
|
+
["process", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process[]", [1, nil]],
|
2675
2675
|
["param_id", "SOAP::SOAPString[]", [1, nil]],
|
2676
2676
|
["run", "SOAP::SOAPInt"],
|
2677
2677
|
["idle", "SOAP::SOAPInt"],
|
@@ -2684,7 +2684,7 @@ module Virtuozzo # :nodoc:
|
|
2684
2684
|
)
|
2685
2685
|
|
2686
2686
|
LiteralRegistry.register(
|
2687
|
-
:class => Virtuozzo::SOAP::
|
2687
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process,
|
2688
2688
|
:schema_name => XSD::QName.new(NsTypes, "process"),
|
2689
2689
|
:is_anonymous => true,
|
2690
2690
|
:schema_qualified => true,
|
@@ -2695,21 +2695,21 @@ module Virtuozzo # :nodoc:
|
|
2695
2695
|
)
|
2696
2696
|
|
2697
2697
|
LiteralRegistry.register(
|
2698
|
-
:class => Virtuozzo::SOAP::
|
2698
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GetResponse,
|
2699
2699
|
:schema_name => XSD::QName.new(NsVzaproc_info, "getResponse"),
|
2700
2700
|
:schema_element => [
|
2701
|
-
["ps_info", "Virtuozzo::SOAP::
|
2701
|
+
["ps_info", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType"]
|
2702
2702
|
]
|
2703
2703
|
)
|
2704
2704
|
|
2705
2705
|
LiteralRegistry.register(
|
2706
|
-
:class => Virtuozzo::SOAP::
|
2706
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Event_dataType,
|
2707
2707
|
:schema_name => XSD::QName.new(NsTypes, "event_data"),
|
2708
2708
|
:schema_element => []
|
2709
2709
|
)
|
2710
2710
|
|
2711
2711
|
LiteralRegistry.register(
|
2712
|
-
:class => Virtuozzo::SOAP::
|
2712
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType,
|
2713
2713
|
:schema_name => XSD::QName.new(NsTypes, "parameter"),
|
2714
2714
|
:schema_element => [
|
2715
2715
|
["id", "SOAP::SOAPString"],
|
@@ -2728,7 +2728,7 @@ module Virtuozzo # :nodoc:
|
|
2728
2728
|
)
|
2729
2729
|
|
2730
2730
|
LiteralRegistry.register(
|
2731
|
-
:class => Virtuozzo::SOAP::
|
2731
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Voc_parameterType,
|
2732
2732
|
:schema_name => XSD::QName.new(NsTypes, "category"),
|
2733
2733
|
:schema_element => [
|
2734
2734
|
["id", "SOAP::SOAPString"],
|
@@ -2747,17 +2747,17 @@ module Virtuozzo # :nodoc:
|
|
2747
2747
|
)
|
2748
2748
|
|
2749
2749
|
LiteralRegistry.register(
|
2750
|
-
:class => Virtuozzo::SOAP::
|
2750
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Packet,
|
2751
2751
|
:schema_name => XSD::QName.new(NsProtocol, "packet"),
|
2752
2752
|
:schema_element => [
|
2753
|
-
["auth", "Virtuozzo::SOAP::
|
2753
|
+
["auth", "Virtuozzo::SOAP::Types::ProcessInfo::AuthType", [0, 1]],
|
2754
2754
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
2755
2755
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
2756
2756
|
["origin", "SOAP::SOAPString", [0, 1]],
|
2757
|
-
["src", "Virtuozzo::SOAP::
|
2758
|
-
["dst", "Virtuozzo::SOAP::
|
2757
|
+
["src", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2758
|
+
["dst", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2759
2759
|
["session", "SOAP::SOAPString", [0, 1]],
|
2760
|
-
["data", "Virtuozzo::SOAP::
|
2760
|
+
["data", "Virtuozzo::SOAP::Types::ProcessInfo::Packet::C_Data"]
|
2761
2761
|
],
|
2762
2762
|
:schema_attribute => {
|
2763
2763
|
XSD::QName.new(nil, "version") => "SOAP::SOAPString",
|
@@ -2774,25 +2774,25 @@ module Virtuozzo # :nodoc:
|
|
2774
2774
|
)
|
2775
2775
|
|
2776
2776
|
LiteralRegistry.register(
|
2777
|
-
:class => Virtuozzo::SOAP::
|
2777
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Packet::C_Data,
|
2778
2778
|
:schema_name => XSD::QName.new(NsProtocol, "data"),
|
2779
2779
|
:is_anonymous => true,
|
2780
2780
|
:schema_qualified => true,
|
2781
2781
|
:schema_element => [
|
2782
|
-
["operator", "Virtuozzo::SOAP::
|
2782
|
+
["operator", "Virtuozzo::SOAP::Types::ProcessInfo::OperatorType[]"]
|
2783
2783
|
]
|
2784
2784
|
)
|
2785
2785
|
|
2786
2786
|
LiteralRegistry.register(
|
2787
|
-
:class => Virtuozzo::SOAP::
|
2787
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Packet_headerType,
|
2788
2788
|
:schema_name => XSD::QName.new(NsProtocol, "packet_header"),
|
2789
2789
|
:schema_element => [
|
2790
|
-
["auth", "Virtuozzo::SOAP::
|
2790
|
+
["auth", "Virtuozzo::SOAP::Types::ProcessInfo::AuthType", [0, 1]],
|
2791
2791
|
["cookie", "SOAP::SOAPString", [0, 1]],
|
2792
2792
|
["target", "SOAP::SOAPString[]", [0, nil]],
|
2793
2793
|
["origin", "SOAP::SOAPString", [0, 1]],
|
2794
|
-
["src", "Virtuozzo::SOAP::
|
2795
|
-
["dst", "Virtuozzo::SOAP::
|
2794
|
+
["src", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2795
|
+
["dst", "Virtuozzo::SOAP::Types::ProcessInfo::RouteType", [0, 1]],
|
2796
2796
|
["session", "SOAP::SOAPString", [0, 1]]
|
2797
2797
|
],
|
2798
2798
|
:schema_attribute => {
|
@@ -2810,31 +2810,31 @@ module Virtuozzo # :nodoc:
|
|
2810
2810
|
)
|
2811
2811
|
|
2812
2812
|
LiteralRegistry.register(
|
2813
|
-
:class => Virtuozzo::SOAP::
|
2813
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::OperatorType,
|
2814
2814
|
:schema_name => XSD::QName.new(NsProtocol, "operator"),
|
2815
2815
|
:schema_element => [ :choice,
|
2816
|
-
["configuration", "Virtuozzo::SOAP::
|
2816
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"]
|
2817
2817
|
]
|
2818
2818
|
)
|
2819
2819
|
|
2820
2820
|
LiteralRegistry.register(
|
2821
|
-
:class => Virtuozzo::SOAP::
|
2821
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType,
|
2822
2822
|
:schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
|
2823
2823
|
:schema_element => [ :choice,
|
2824
|
-
["configuration", "Virtuozzo::SOAP::
|
2825
|
-
["ok", "Virtuozzo::SOAP::
|
2826
|
-
["error", "Virtuozzo::SOAP::
|
2824
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"],
|
2825
|
+
["ok", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Ok[]"],
|
2826
|
+
["error", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Error[]"],
|
2827
2827
|
[ :choice,
|
2828
|
-
["start_monitor", "Virtuozzo::SOAP::
|
2829
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
2830
|
-
["set_period", "Virtuozzo::SOAP::
|
2828
|
+
["start_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Start_monitorType"],
|
2829
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Stop_monitorType"],
|
2830
|
+
["set_period", "Virtuozzo::SOAP::Types::ProcessInfo::Set_periodType", [0, 1]],
|
2831
2831
|
["report", nil, [0, 1]]
|
2832
2832
|
]
|
2833
2833
|
]
|
2834
2834
|
)
|
2835
2835
|
|
2836
2836
|
LiteralRegistry.register(
|
2837
|
-
:class => Virtuozzo::SOAP::
|
2837
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Ok,
|
2838
2838
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2839
2839
|
:is_anonymous => true,
|
2840
2840
|
:schema_qualified => true,
|
@@ -2842,7 +2842,7 @@ module Virtuozzo # :nodoc:
|
|
2842
2842
|
)
|
2843
2843
|
|
2844
2844
|
LiteralRegistry.register(
|
2845
|
-
:class => Virtuozzo::SOAP::
|
2845
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_periodicType::Error,
|
2846
2846
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2847
2847
|
:is_anonymous => true,
|
2848
2848
|
:schema_qualified => true,
|
@@ -2853,17 +2853,17 @@ module Virtuozzo # :nodoc:
|
|
2853
2853
|
)
|
2854
2854
|
|
2855
2855
|
LiteralRegistry.register(
|
2856
|
-
:class => Virtuozzo::SOAP::
|
2856
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType,
|
2857
2857
|
:schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
|
2858
2858
|
:schema_element => [ :choice,
|
2859
|
-
["configuration", "Virtuozzo::SOAP::
|
2860
|
-
["ok", "Virtuozzo::SOAP::
|
2861
|
-
["error", "Virtuozzo::SOAP::
|
2859
|
+
["configuration", "Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType"],
|
2860
|
+
["ok", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Ok[]"],
|
2861
|
+
["error", "Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Error[]"]
|
2862
2862
|
]
|
2863
2863
|
)
|
2864
2864
|
|
2865
2865
|
LiteralRegistry.register(
|
2866
|
-
:class => Virtuozzo::SOAP::
|
2866
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Ok,
|
2867
2867
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2868
2868
|
:is_anonymous => true,
|
2869
2869
|
:schema_qualified => true,
|
@@ -2871,7 +2871,7 @@ module Virtuozzo # :nodoc:
|
|
2871
2871
|
)
|
2872
2872
|
|
2873
2873
|
LiteralRegistry.register(
|
2874
|
-
:class => Virtuozzo::SOAP::
|
2874
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Operator_functionalType::Error,
|
2875
2875
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2876
2876
|
:is_anonymous => true,
|
2877
2877
|
:schema_qualified => true,
|
@@ -2882,25 +2882,25 @@ module Virtuozzo # :nodoc:
|
|
2882
2882
|
)
|
2883
2883
|
|
2884
2884
|
LiteralRegistry.register(
|
2885
|
-
:class => Virtuozzo::SOAP::
|
2885
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType,
|
2886
2886
|
:schema_name => XSD::QName.new(NsProc_info, "proc_info"),
|
2887
2887
|
:schema_element => [ :choice,
|
2888
|
-
["configuration", ["Virtuozzo::SOAP::
|
2889
|
-
["ok", ["Virtuozzo::SOAP::
|
2890
|
-
["error", ["Virtuozzo::SOAP::
|
2888
|
+
["configuration", ["Virtuozzo::SOAP::Types::ProcessInfo::ConfigurationType", XSD::QName.new(NsProtocol, "configuration")]],
|
2889
|
+
["ok", ["Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
|
2890
|
+
["error", ["Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Error[]", XSD::QName.new(NsProtocol, "error")]],
|
2891
2891
|
[
|
2892
|
-
["start_monitor", "Virtuozzo::SOAP::
|
2893
|
-
["stop_monitor", "Virtuozzo::SOAP::
|
2894
|
-
["get", "Virtuozzo::SOAP::
|
2892
|
+
["start_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Start_monitor[]"],
|
2893
|
+
["stop_monitor", "Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Stop_monitor[]"],
|
2894
|
+
["get", "Virtuozzo::SOAP::Types::ProcessInfo::Get[]"]
|
2895
2895
|
],
|
2896
2896
|
[
|
2897
|
-
["ps_info", "Virtuozzo::SOAP::
|
2897
|
+
["ps_info", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType[]", [0, 1]]
|
2898
2898
|
]
|
2899
2899
|
]
|
2900
2900
|
)
|
2901
2901
|
|
2902
2902
|
LiteralRegistry.register(
|
2903
|
-
:class => Virtuozzo::SOAP::
|
2903
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Ok,
|
2904
2904
|
:schema_name => XSD::QName.new(NsProtocol, "ok"),
|
2905
2905
|
:is_anonymous => true,
|
2906
2906
|
:schema_qualified => true,
|
@@ -2908,7 +2908,7 @@ module Virtuozzo # :nodoc:
|
|
2908
2908
|
)
|
2909
2909
|
|
2910
2910
|
LiteralRegistry.register(
|
2911
|
-
:class => Virtuozzo::SOAP::
|
2911
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Error,
|
2912
2912
|
:schema_name => XSD::QName.new(NsProtocol, "error"),
|
2913
2913
|
:is_anonymous => true,
|
2914
2914
|
: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::ProcessInfo::Proc_infoType::Start_monitor,
|
2923
2923
|
:schema_name => XSD::QName.new(NsProc_info, "start_monitor"),
|
2924
2924
|
:is_anonymous => true,
|
2925
2925
|
:schema_qualified => true,
|
@@ -2932,7 +2932,7 @@ module Virtuozzo # :nodoc:
|
|
2932
2932
|
)
|
2933
2933
|
|
2934
2934
|
LiteralRegistry.register(
|
2935
|
-
:class => Virtuozzo::SOAP::
|
2935
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Proc_infoType::Stop_monitor,
|
2936
2936
|
:schema_name => XSD::QName.new(NsProc_info, "stop_monitor"),
|
2937
2937
|
:is_anonymous => true,
|
2938
2938
|
:schema_qualified => true,
|
@@ -2940,7 +2940,7 @@ module Virtuozzo # :nodoc:
|
|
2940
2940
|
)
|
2941
2941
|
|
2942
2942
|
LiteralRegistry.register(
|
2943
|
-
:class => Virtuozzo::SOAP::
|
2943
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Get,
|
2944
2944
|
:schema_name => XSD::QName.new(NsProc_info, "get"),
|
2945
2945
|
:schema_element => [
|
2946
2946
|
["key", "SOAP::SOAPString", [0, 1]],
|
@@ -2950,10 +2950,10 @@ module Virtuozzo # :nodoc:
|
|
2950
2950
|
)
|
2951
2951
|
|
2952
2952
|
LiteralRegistry.register(
|
2953
|
-
:class => Virtuozzo::SOAP::
|
2953
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType,
|
2954
2954
|
:schema_name => XSD::QName.new(NsProc_info, "ps_info"),
|
2955
2955
|
:schema_element => [
|
2956
|
-
["process", "Virtuozzo::SOAP::
|
2956
|
+
["process", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process[]", [1, nil]],
|
2957
2957
|
["param_id", "SOAP::SOAPString[]", [1, nil]],
|
2958
2958
|
["run", "SOAP::SOAPInt"],
|
2959
2959
|
["idle", "SOAP::SOAPInt"],
|
@@ -2966,7 +2966,7 @@ module Virtuozzo # :nodoc:
|
|
2966
2966
|
)
|
2967
2967
|
|
2968
2968
|
LiteralRegistry.register(
|
2969
|
-
:class => Virtuozzo::SOAP::
|
2969
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType::C_Process,
|
2970
2970
|
:schema_name => XSD::QName.new(NsTypes, "process"),
|
2971
2971
|
:is_anonymous => true,
|
2972
2972
|
:schema_qualified => true,
|
@@ -2977,10 +2977,10 @@ module Virtuozzo # :nodoc:
|
|
2977
2977
|
)
|
2978
2978
|
|
2979
2979
|
LiteralRegistry.register(
|
2980
|
-
:class => Virtuozzo::SOAP::
|
2980
|
+
:class => Virtuozzo::SOAP::Types::ProcessInfo::GetResponse_,
|
2981
2981
|
:schema_name => XSD::QName.new(NsProc_info, "getResponse"),
|
2982
2982
|
:schema_element => [
|
2983
|
-
["ps_info", "Virtuozzo::SOAP::
|
2983
|
+
["ps_info", "Virtuozzo::SOAP::Types::ProcessInfo::Ps_infoType"]
|
2984
2984
|
]
|
2985
2985
|
)
|
2986
2986
|
end
|