virtuozzo 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. data/CHANGELOG.rdoc +86 -0
  2. data/Manifest +42 -0
  3. data/README.rdoc +52 -0
  4. data/Rakefile +20 -0
  5. data/lib/virtuozzo.rb +18 -0
  6. data/lib/virtuozzo/constants.rb +7 -0
  7. data/lib/virtuozzo/soap.rb +220 -0
  8. data/lib/virtuozzo/soap/drivers/device.rb +141 -0
  9. data/lib/virtuozzo/soap/drivers/environment.rb +301 -0
  10. data/lib/virtuozzo/soap/drivers/network.rb +101 -0
  11. data/lib/virtuozzo/soap/drivers/process.rb +69 -0
  12. data/lib/virtuozzo/soap/drivers/process_info.rb +61 -0
  13. data/lib/virtuozzo/soap/drivers/relocator.rb +101 -0
  14. data/lib/virtuozzo/soap/drivers/session.rb +149 -0
  15. data/lib/virtuozzo/soap/drivers/support.rb +109 -0
  16. data/lib/virtuozzo/soap/drivers/template.rb +117 -0
  17. data/lib/virtuozzo/soap/drivers/up2date.rb +93 -0
  18. data/lib/virtuozzo/soap/header_handler.rb +91 -0
  19. data/lib/virtuozzo/soap/mapping_registries/device.rb +3658 -0
  20. data/lib/virtuozzo/soap/mapping_registries/environment.rb +4466 -0
  21. data/lib/virtuozzo/soap/mapping_registries/network.rb +3121 -0
  22. data/lib/virtuozzo/soap/mapping_registries/process.rb +3322 -0
  23. data/lib/virtuozzo/soap/mapping_registries/process_info.rb +2990 -0
  24. data/lib/virtuozzo/soap/mapping_registries/relocator.rb +3661 -0
  25. data/lib/virtuozzo/soap/mapping_registries/session.rb +3044 -0
  26. data/lib/virtuozzo/soap/mapping_registries/support.rb +3237 -0
  27. data/lib/virtuozzo/soap/mapping_registries/template.rb +3757 -0
  28. data/lib/virtuozzo/soap/mapping_registries/up2date.rb +3317 -0
  29. data/lib/virtuozzo/soap/types/device.rb +3145 -0
  30. data/lib/virtuozzo/soap/types/environment.rb +3743 -0
  31. data/lib/virtuozzo/soap/types/network.rb +2404 -0
  32. data/lib/virtuozzo/soap/types/process.rb +2713 -0
  33. data/lib/virtuozzo/soap/types/process_info.rb +2328 -0
  34. data/lib/virtuozzo/soap/types/relocator.rb +2920 -0
  35. data/lib/virtuozzo/soap/types/session.rb +2455 -0
  36. data/lib/virtuozzo/soap/types/support.rb +2711 -0
  37. data/lib/virtuozzo/soap/types/template.rb +3086 -0
  38. data/lib/virtuozzo/soap/types/up2date.rb +2672 -0
  39. data/script/console +10 -0
  40. data/script/github-gem-test +15 -0
  41. data/tasks/yard.rake +12 -0
  42. data/virtuozzo.gemspec +37 -0
  43. metadata +154 -0
@@ -0,0 +1,3317 @@
1
+ require 'virtuozzo/soap/types/up2date'
2
+ require 'soap/mapping'
3
+
4
+ module Virtuozzo # :nodoc:
5
+ module SOAP # :nodoc:
6
+ module MappingRegistries # :nodoc:
7
+ # = Up2date
8
+ #
9
+ module Up2date
10
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
11
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
12
+ NsProtocol = "http://www.swsoft.com/webservices/vzl/4.0.0/protocol"
13
+ NsTypes = "http://www.swsoft.com/webservices/vzl/4.0.0/types"
14
+ NsVzaup2date = "http://www.swsoft.com/webservices/vza/4.0.0/vzaup2date"
15
+ NsVzaup2date_0 = "http://www.swsoft.com/webservices/vza/WSDL/4.0.0/vzaup2date"
16
+ NsXMLSchema = "http://www.w3.org/2001/XMLSchema"
17
+
18
+ EncodedRegistry.register(
19
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType,
20
+ :schema_type => XSD::QName.new(NsVzaup2date, "vzaup2dateType"),
21
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
22
+ :schema_element => [ :choice,
23
+ ["configuration", ["Virtuozzo::SOAP::Types::Up2date::ConfigurationType_", XSD::QName.new(NsProtocol, "configuration")]],
24
+ ["ok", ["Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
25
+ ["error", ["Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Error[]", XSD::QName.new(NsProtocol, "error")]],
26
+ [
27
+ ["get_config", "Virtuozzo::SOAP::Types::Up2date::Get_config[]"],
28
+ ["set_config", "Virtuozzo::SOAP::Types::Up2date::Set_config[]"],
29
+ ["list", "Virtuozzo::SOAP::Types::Up2date::List[]"],
30
+ ["install", "Virtuozzo::SOAP::Types::Up2date::Install[]"],
31
+ ["uninstall", "Virtuozzo::SOAP::Types::Up2date::Uninstall[]"]
32
+ ],
33
+ [
34
+ ["config", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType[]"],
35
+ ["update", "Virtuozzo::SOAP::Types::Up2date::UpdateType[]"]
36
+ ]
37
+ ]
38
+ )
39
+
40
+ EncodedRegistry.register(
41
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Ok,
42
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
43
+ :is_anonymous => true,
44
+ :schema_qualified => true,
45
+ :schema_element => []
46
+ )
47
+
48
+ EncodedRegistry.register(
49
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Error,
50
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
51
+ :is_anonymous => true,
52
+ :schema_qualified => true,
53
+ :schema_element => [
54
+ ["code", "SOAP::SOAPInt"],
55
+ ["message", "SOAP::SOAPString", [0, 1]]
56
+ ]
57
+ )
58
+
59
+ EncodedRegistry.register(
60
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType,
61
+ :schema_type => XSD::QName.new(NsVzaup2date, "configurationType"),
62
+ :schema_element => [
63
+ ["connection", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection", [0, 1]],
64
+ ["product", "Virtuozzo::SOAP::Types::Up2date::Product[]", [0, nil]],
65
+ ["service", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service", [0, 1]]
66
+ ]
67
+ )
68
+
69
+ EncodedRegistry.register(
70
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy::Type,
71
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
72
+ :is_anonymous => true,
73
+ :schema_qualified => true,
74
+ :schema_element => [ :choice,
75
+ ["explorer", nil],
76
+ ["custom", nil],
77
+ ["no_proxy", nil]
78
+ ]
79
+ )
80
+
81
+ EncodedRegistry.register(
82
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy,
83
+ :schema_name => XSD::QName.new(NsVzaup2date, "proxy"),
84
+ :is_anonymous => true,
85
+ :schema_qualified => true,
86
+ :schema_element => [
87
+ ["type", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy::Type", [0, 1]],
88
+ ["server", "SOAP::SOAPString", [0, 1]],
89
+ ["user", "SOAP::SOAPBase64", [0, 1]],
90
+ ["password", "SOAP::SOAPBase64", [0, 1]]
91
+ ]
92
+ )
93
+
94
+ EncodedRegistry.register(
95
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection,
96
+ :schema_name => XSD::QName.new(NsVzaup2date, "connection"),
97
+ :is_anonymous => true,
98
+ :schema_qualified => true,
99
+ :schema_element => [
100
+ ["server", "SOAP::SOAPString"],
101
+ ["user", "SOAP::SOAPBase64", [0, 1]],
102
+ ["password", "SOAP::SOAPBase64", [0, 1]],
103
+ ["proxy", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy", [0, 1]],
104
+ ["local_path", "SOAP::SOAPBase64", [0, 1]],
105
+ ["log_path", "SOAP::SOAPBase64", [0, 1]]
106
+ ]
107
+ )
108
+
109
+ EncodedRegistry.register(
110
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service::Check_period,
111
+ :schema_name => XSD::QName.new(NsVzaup2date, "check_period"),
112
+ :is_anonymous => true,
113
+ :schema_qualified => true,
114
+ :schema_element => [ :choice,
115
+ ["sunday", nil],
116
+ ["monday", nil],
117
+ ["tuesday", nil],
118
+ ["wednesday", nil],
119
+ ["thursday", nil],
120
+ ["friday", nil],
121
+ ["saturday", nil]
122
+ ]
123
+ )
124
+
125
+ EncodedRegistry.register(
126
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service,
127
+ :schema_name => XSD::QName.new(NsVzaup2date, "service"),
128
+ :is_anonymous => true,
129
+ :schema_qualified => true,
130
+ :schema_element => [
131
+ ["autoreboot", nil, [0, 1]],
132
+ ["check_period", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service::Check_period", [0, 1]],
133
+ ["hour", "SOAP::SOAPInt"],
134
+ ["disabled", nil, [0, 1]]
135
+ ]
136
+ )
137
+
138
+ EncodedRegistry.register(
139
+ :class => Virtuozzo::SOAP::Types::Up2date::UpdateType,
140
+ :schema_type => XSD::QName.new(NsVzaup2date, "updateType"),
141
+ :schema_element => [
142
+ ["id", "SOAP::SOAPString", [0, 1]],
143
+ ["name", "SOAP::SOAPBase64", [0, 1]],
144
+ ["description", "SOAP::SOAPBase64", [0, 1]],
145
+ ["size", "SOAP::SOAPLong", [0, 1]],
146
+ ["reboot", nil, [0, 1]],
147
+ ["version", "SOAP::SOAPString", [0, 1]],
148
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
149
+ ["date", nil, [0, 1]]
150
+ ]
151
+ )
152
+
153
+ EncodedRegistry.register(
154
+ :class => Virtuozzo::SOAP::Types::Up2date::System_updateType,
155
+ :schema_type => XSD::QName.new(NsVzaup2date, "system_updateType"),
156
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "updateType"),
157
+ :schema_element => [
158
+ ["id", "SOAP::SOAPString", [0, 1]],
159
+ ["name", "SOAP::SOAPBase64", [0, 1]],
160
+ ["description", "SOAP::SOAPBase64", [0, 1]],
161
+ ["size", "SOAP::SOAPLong", [0, 1]],
162
+ ["reboot", nil, [0, 1]],
163
+ ["version", "SOAP::SOAPString", [0, 1]],
164
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
165
+ ["date", nil, [0, 1]],
166
+ ["type", "Virtuozzo::SOAP::Types::Up2date::System_updateType::Type", [0, 1]],
167
+ ["category", "SOAP::SOAPString", [0, 1]]
168
+ ]
169
+ )
170
+
171
+ EncodedRegistry.register(
172
+ :class => Virtuozzo::SOAP::Types::Up2date::System_updateType::Type,
173
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
174
+ :is_anonymous => true,
175
+ :schema_qualified => true,
176
+ :schema_element => [ :choice,
177
+ ["hotfix", nil],
178
+ ["servicepack", nil],
179
+ ["version", nil]
180
+ ]
181
+ )
182
+
183
+ EncodedRegistry.register(
184
+ :class => Virtuozzo::SOAP::Types::Up2date::Windows_system_updateType,
185
+ :schema_type => XSD::QName.new(NsVzaup2date, "windows_system_updateType"),
186
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "system_updateType"),
187
+ :schema_element => [
188
+ ["id", "SOAP::SOAPString", [0, 1]],
189
+ ["name", "SOAP::SOAPBase64", [0, 1]],
190
+ ["description", "SOAP::SOAPBase64", [0, 1]],
191
+ ["size", "SOAP::SOAPLong", [0, 1]],
192
+ ["reboot", nil, [0, 1]],
193
+ ["version", "SOAP::SOAPString", [0, 1]],
194
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
195
+ ["date", nil, [0, 1]],
196
+ ["type", "Virtuozzo::SOAP::Types::Up2date::Windows_system_updateType::Type", [0, 1]],
197
+ ["category", "SOAP::SOAPString", [0, 1]],
198
+ ["product", "SOAP::SOAPString"]
199
+ ]
200
+ )
201
+
202
+ EncodedRegistry.register(
203
+ :class => Virtuozzo::SOAP::Types::Up2date::Windows_system_updateType::Type,
204
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
205
+ :is_anonymous => true,
206
+ :schema_qualified => true,
207
+ :schema_element => [ :choice,
208
+ ["hotfix", nil],
209
+ ["servicepack", nil],
210
+ ["version", nil]
211
+ ]
212
+ )
213
+
214
+ EncodedRegistry.register(
215
+ :class => Virtuozzo::SOAP::Types::Up2date::Template_updateType,
216
+ :schema_type => XSD::QName.new(NsVzaup2date, "template_updateType"),
217
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "updateType"),
218
+ :schema_element => [
219
+ ["id", "SOAP::SOAPString", [0, 1]],
220
+ ["name", "SOAP::SOAPBase64", [0, 1]],
221
+ ["description", "SOAP::SOAPBase64", [0, 1]],
222
+ ["size", "SOAP::SOAPLong", [0, 1]],
223
+ ["reboot", nil, [0, 1]],
224
+ ["version", "SOAP::SOAPString", [0, 1]],
225
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
226
+ ["date", nil, [0, 1]],
227
+ ["app_template", "Virtuozzo::SOAP::Types::Up2date::App_template_updateType[]", [0, nil]]
228
+ ]
229
+ )
230
+
231
+ EncodedRegistry.register(
232
+ :class => Virtuozzo::SOAP::Types::Up2date::Os_template_updateType,
233
+ :schema_type => XSD::QName.new(NsVzaup2date, "os_template_updateType"),
234
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "template_updateType"),
235
+ :schema_element => [
236
+ ["id", "SOAP::SOAPString", [0, 1]],
237
+ ["name", "SOAP::SOAPBase64", [0, 1]],
238
+ ["description", "SOAP::SOAPBase64", [0, 1]],
239
+ ["size", "SOAP::SOAPLong", [0, 1]],
240
+ ["reboot", nil, [0, 1]],
241
+ ["version", "SOAP::SOAPString", [0, 1]],
242
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
243
+ ["date", nil, [0, 1]],
244
+ ["app_template", "Virtuozzo::SOAP::Types::Up2date::App_template_updateType[]", [0, nil]]
245
+ ]
246
+ )
247
+
248
+ EncodedRegistry.register(
249
+ :class => Virtuozzo::SOAP::Types::Up2date::Ez_template_updateType,
250
+ :schema_type => XSD::QName.new(NsVzaup2date, "ez_template_updateType"),
251
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "template_updateType"),
252
+ :schema_element => [
253
+ ["id", "SOAP::SOAPString", [0, 1]],
254
+ ["name", "SOAP::SOAPBase64", [0, 1]],
255
+ ["description", "SOAP::SOAPBase64", [0, 1]],
256
+ ["size", "SOAP::SOAPLong", [0, 1]],
257
+ ["reboot", nil, [0, 1]],
258
+ ["version", "SOAP::SOAPString", [0, 1]],
259
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
260
+ ["date", nil, [0, 1]],
261
+ ["app_template", "Virtuozzo::SOAP::Types::Up2date::App_template_updateType[]", [0, nil]]
262
+ ]
263
+ )
264
+
265
+ EncodedRegistry.register(
266
+ :class => Virtuozzo::SOAP::Types::Up2date::App_template_updateType,
267
+ :schema_type => XSD::QName.new(NsVzaup2date, "app_template_updateType"),
268
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "updateType"),
269
+ :schema_element => [
270
+ ["id", "SOAP::SOAPString", [0, 1]],
271
+ ["name", "SOAP::SOAPBase64", [0, 1]],
272
+ ["description", "SOAP::SOAPBase64", [0, 1]],
273
+ ["size", "SOAP::SOAPLong", [0, 1]],
274
+ ["reboot", nil, [0, 1]],
275
+ ["version", "SOAP::SOAPString", [0, 1]],
276
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
277
+ ["date", nil, [0, 1]]
278
+ ]
279
+ )
280
+
281
+ EncodedRegistry.register(
282
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2date_configurationType,
283
+ :schema_type => XSD::QName.new(NsVzaup2date, "vzaup2date_configurationType"),
284
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
285
+ :schema_element => [
286
+ ["no_signatures", "SOAP::SOAPInt"]
287
+ ]
288
+ )
289
+
290
+ EncodedRegistry.register(
291
+ :class => Virtuozzo::SOAP::Types::Up2date::Packet_headerType,
292
+ :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
293
+ :schema_element => [
294
+ ["auth", "Virtuozzo::SOAP::Types::Up2date::AuthType", [0, 1]],
295
+ ["cookie", "SOAP::SOAPString", [0, 1]],
296
+ ["target", "SOAP::SOAPString[]", [0, nil]],
297
+ ["origin", "SOAP::SOAPString", [0, 1]],
298
+ ["src", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
299
+ ["dst", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
300
+ ["session", "SOAP::SOAPString", [0, 1]]
301
+ ],
302
+ :schema_attribute => {
303
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
304
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
305
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
306
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
307
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
308
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
309
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
310
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
311
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
312
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
313
+ }
314
+ )
315
+
316
+ EncodedRegistry.register(
317
+ :class => Virtuozzo::SOAP::Types::Up2date::OperatorType,
318
+ :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
319
+ :schema_element => [ :choice,
320
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"]
321
+ ]
322
+ )
323
+
324
+ EncodedRegistry.register(
325
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType,
326
+ :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
327
+ :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
328
+ :schema_element => [ :choice,
329
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"],
330
+ ["ok", "Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Ok[]"],
331
+ ["error", "Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Error[]"]
332
+ ]
333
+ )
334
+
335
+ EncodedRegistry.register(
336
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Ok,
337
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
338
+ :is_anonymous => true,
339
+ :schema_qualified => true,
340
+ :schema_element => []
341
+ )
342
+
343
+ EncodedRegistry.register(
344
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Error,
345
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
346
+ :is_anonymous => true,
347
+ :schema_qualified => true,
348
+ :schema_element => [
349
+ ["code", "SOAP::SOAPInt"],
350
+ ["message", "SOAP::SOAPString", [0, 1]]
351
+ ]
352
+ )
353
+
354
+ EncodedRegistry.register(
355
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType,
356
+ :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
357
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
358
+ :schema_element => [ :choice,
359
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"],
360
+ ["ok", "Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Ok[]"],
361
+ ["error", "Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Error[]"],
362
+ [ :choice,
363
+ ["start_monitor", "Virtuozzo::SOAP::Types::Up2date::Start_monitorType"],
364
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Up2date::Stop_monitorType"],
365
+ ["set_period", "Virtuozzo::SOAP::Types::Up2date::Set_periodType", [0, 1]],
366
+ ["report", nil, [0, 1]]
367
+ ]
368
+ ]
369
+ )
370
+
371
+ EncodedRegistry.register(
372
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Ok,
373
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
374
+ :is_anonymous => true,
375
+ :schema_qualified => true,
376
+ :schema_element => []
377
+ )
378
+
379
+ EncodedRegistry.register(
380
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Error,
381
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
382
+ :is_anonymous => true,
383
+ :schema_qualified => true,
384
+ :schema_element => [
385
+ ["code", "SOAP::SOAPInt"],
386
+ ["message", "SOAP::SOAPString", [0, 1]]
387
+ ]
388
+ )
389
+
390
+ EncodedRegistry.register(
391
+ :class => Virtuozzo::SOAP::Types::Up2date::Set_periodType,
392
+ :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
393
+ :schema_element => [
394
+ ["collect", "SOAP::SOAPInt"],
395
+ ["log", "SOAP::SOAPInt"],
396
+ ["report", "SOAP::SOAPInt"]
397
+ ]
398
+ )
399
+
400
+ EncodedRegistry.register(
401
+ :class => Virtuozzo::SOAP::Types::Up2date::Start_monitorType,
402
+ :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
403
+ :schema_element => [
404
+ ["period", "SOAP::SOAPInt"],
405
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
406
+ ]
407
+ )
408
+
409
+ EncodedRegistry.register(
410
+ :class => Virtuozzo::SOAP::Types::Up2date::Stop_monitorType,
411
+ :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
412
+ :schema_element => [
413
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
414
+ ]
415
+ )
416
+
417
+ EncodedRegistry.register(
418
+ :class => Virtuozzo::SOAP::Types::Up2date::AuthType,
419
+ :schema_type => XSD::QName.new(NsProtocol, "authType"),
420
+ :schema_element => [
421
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
422
+ ]
423
+ )
424
+
425
+ EncodedRegistry.register(
426
+ :class => Virtuozzo::SOAP::Types::Up2date::Event_configurationType,
427
+ :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
428
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
429
+ :schema_element => [
430
+ ["period", "SOAP::SOAPInt"]
431
+ ]
432
+ )
433
+
434
+ EncodedRegistry.register(
435
+ :class => Virtuozzo::SOAP::Types::Up2date::Periodic_configurationType,
436
+ :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
437
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
438
+ :schema_element => [
439
+ ["log_priority", "SOAP::SOAPInt"],
440
+ ["monitor_priority", "SOAP::SOAPInt"],
441
+ ["min_monitor_period", "SOAP::SOAPInt"],
442
+ ["min_monitor_period_root", "SOAP::SOAPInt"]
443
+ ]
444
+ )
445
+
446
+ EncodedRegistry.register(
447
+ :class => Virtuozzo::SOAP::Types::Up2date::RouteType,
448
+ :schema_type => XSD::QName.new(NsProtocol, "routeType"),
449
+ :schema_element => [
450
+ ["director", "SOAP::SOAPString", [0, 1]],
451
+ ["host", "SOAP::SOAPString", [0, 1]],
452
+ ["index", "SOAP::SOAPString", [0, 1]],
453
+ ["target", "SOAP::SOAPString", [0, 1]]
454
+ ]
455
+ )
456
+
457
+ EncodedRegistry.register(
458
+ :class => Virtuozzo::SOAP::Types::Up2date::DataType,
459
+ :schema_type => XSD::QName.new(NsProtocol, "dataType"),
460
+ :schema_element => [
461
+ ["operator", "Virtuozzo::SOAP::Types::Up2date::OperatorType[]"]
462
+ ]
463
+ )
464
+
465
+ EncodedRegistry.register(
466
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType_,
467
+ :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
468
+ :schema_element => []
469
+ )
470
+
471
+ EncodedRegistry.register(
472
+ :class => Virtuozzo::SOAP::Types::Up2date::OsType,
473
+ :schema_type => XSD::QName.new(NsTypes, "osType"),
474
+ :schema_element => [
475
+ ["platform", "SOAP::SOAPString", [0, 1]],
476
+ ["name", "SOAP::SOAPString"],
477
+ ["version", "SOAP::SOAPString", [0, 1]],
478
+ ["kernel", "SOAP::SOAPString", [0, 1]]
479
+ ]
480
+ )
481
+
482
+ EncodedRegistry.register(
483
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_statusType,
484
+ :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
485
+ :schema_element => [
486
+ ["state", "SOAP::SOAPInt", [0, 1]],
487
+ ["transition", "SOAP::SOAPInt", [0, 1]]
488
+ ]
489
+ )
490
+
491
+ EncodedRegistry.register(
492
+ :class => Virtuozzo::SOAP::Types::Up2date::QosType,
493
+ :schema_type => XSD::QName.new(NsTypes, "qosType"),
494
+ :schema_element => [
495
+ ["id", "SOAP::SOAPString"],
496
+ ["soft", "SOAP::SOAPLong", [0, 1]],
497
+ ["hard", "SOAP::SOAPLong", [0, 1]],
498
+ ["cur", "SOAP::SOAPLong", [0, 1]]
499
+ ]
500
+ )
501
+
502
+ EncodedRegistry.register(
503
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_configType,
504
+ :schema_type => XSD::QName.new(NsTypes, "env_configType"),
505
+ :schema_element => [
506
+ ["name", "SOAP::SOAPString", [0, 1]],
507
+ ["description", "SOAP::SOAPBase64", [0, 1]],
508
+ ["domain", "SOAP::SOAPString", [0, 1]],
509
+ ["hostname", "SOAP::SOAPString", [0, 1]],
510
+ ["address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
511
+ ["architecture", "SOAP::SOAPString", [0, 1]],
512
+ ["os", "Virtuozzo::SOAP::Types::Up2date::OsType", [0, 1]],
513
+ ["type", "SOAP::SOAPString", [0, 1]],
514
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
515
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
516
+ ["base_sample_id", nil, [0, 1]],
517
+ ["base_snapshot_id", nil, [0, 1]],
518
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
519
+ ]
520
+ )
521
+
522
+ EncodedRegistry.register(
523
+ :class => Virtuozzo::SOAP::Types::Up2date::Venv_configType,
524
+ :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
525
+ :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
526
+ :schema_element => [
527
+ ["name", "SOAP::SOAPString", [0, 1]],
528
+ ["description", "SOAP::SOAPBase64", [0, 1]],
529
+ ["domain", "SOAP::SOAPString", [0, 1]],
530
+ ["hostname", "SOAP::SOAPString", [0, 1]],
531
+ ["address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
532
+ ["architecture", "SOAP::SOAPString", [0, 1]],
533
+ ["os", "Virtuozzo::SOAP::Types::Up2date::OsType", [0, 1]],
534
+ ["type", "SOAP::SOAPString", [0, 1]],
535
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
536
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
537
+ ["base_sample_id", nil, [0, 1]],
538
+ ["base_snapshot_id", nil, [0, 1]],
539
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
540
+ ["qos", "Virtuozzo::SOAP::Types::Up2date::QosType[]", [0, nil]]
541
+ ]
542
+ )
543
+
544
+ EncodedRegistry.register(
545
+ :class => Virtuozzo::SOAP::Types::Up2date::Native_configType,
546
+ :schema_type => XSD::QName.new(NsTypes, "native_configType"),
547
+ :schema_element => []
548
+ )
549
+
550
+ EncodedRegistry.register(
551
+ :class => Virtuozzo::SOAP::Types::Up2date::EnvType,
552
+ :schema_type => XSD::QName.new(NsTypes, "envType"),
553
+ :schema_element => [
554
+ ["parent_eid", nil],
555
+ ["eid", nil],
556
+ ["status", "Virtuozzo::SOAP::Types::Up2date::Env_statusType", [0, 1]],
557
+ ["alert", "SOAP::SOAPInt", [0, 1]],
558
+ ["config", "Virtuozzo::SOAP::Types::Up2date::Env_configType", [0, 1]],
559
+ ["virtual_config", "Virtuozzo::SOAP::Types::Up2date::Venv_configType", [0, 1]]
560
+ ]
561
+ )
562
+
563
+ EncodedRegistry.register(
564
+ :class => Virtuozzo::SOAP::Types::Up2date::ProcessesType,
565
+ :schema_type => XSD::QName.new(NsTypes, "processesType"),
566
+ :schema_element => [
567
+ ["run", "SOAP::SOAPInt"],
568
+ ["zombie", "SOAP::SOAPInt"],
569
+ ["sleep", "SOAP::SOAPInt"],
570
+ ["uninterrupt", "SOAP::SOAPInt"],
571
+ ["stopped", "SOAP::SOAPInt"],
572
+ ["total", "SOAP::SOAPInt"]
573
+ ]
574
+ )
575
+
576
+ EncodedRegistry.register(
577
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avgType,
578
+ :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
579
+ :schema_element => [
580
+ ["l1", "SOAP::SOAPDouble"],
581
+ ["l2", "SOAP::SOAPDouble", [0, 1]],
582
+ ["l3", "SOAP::SOAPDouble", [0, 1]]
583
+ ]
584
+ )
585
+
586
+ EncodedRegistry.register(
587
+ :class => Virtuozzo::SOAP::Types::Up2date::Cpu_loadType,
588
+ :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
589
+ :schema_element => [
590
+ ["system", "SOAP::SOAPLong"],
591
+ ["user", "SOAP::SOAPLong"],
592
+ ["nice", "SOAP::SOAPLong"],
593
+ ["idle", "SOAP::SOAPLong"]
594
+ ]
595
+ )
596
+
597
+ EncodedRegistry.register(
598
+ :class => Virtuozzo::SOAP::Types::Up2date::CpuType,
599
+ :schema_type => XSD::QName.new(NsTypes, "cpuType"),
600
+ :schema_element => [
601
+ ["mhz", "SOAP::SOAPInt"],
602
+ ["name", "SOAP::SOAPString"],
603
+ ["number", "SOAP::SOAPInt"],
604
+ ["cores", "SOAP::SOAPInt"],
605
+ ["hyperthreads", "SOAP::SOAPInt"],
606
+ ["units", "SOAP::SOAPInt"],
607
+ ["family", "SOAP::SOAPString"],
608
+ ["model", "SOAP::SOAPString"],
609
+ ["bogomips", "SOAP::SOAPInt"]
610
+ ]
611
+ )
612
+
613
+ EncodedRegistry.register(
614
+ :class => Virtuozzo::SOAP::Types::Up2date::TransferType,
615
+ :schema_type => XSD::QName.new(NsTypes, "transferType"),
616
+ :schema_element => [
617
+ ["input", "Virtuozzo::SOAP::Types::Up2date::TransferType::Input"],
618
+ ["output", "Virtuozzo::SOAP::Types::Up2date::TransferType::Output"]
619
+ ]
620
+ )
621
+
622
+ EncodedRegistry.register(
623
+ :class => Virtuozzo::SOAP::Types::Up2date::TransferType::Input,
624
+ :schema_name => XSD::QName.new(NsTypes, "input"),
625
+ :is_anonymous => true,
626
+ :schema_qualified => true,
627
+ :schema_element => [
628
+ ["bytes", "SOAP::SOAPLong"],
629
+ ["packets", "SOAP::SOAPLong", [0, 1]]
630
+ ]
631
+ )
632
+
633
+ EncodedRegistry.register(
634
+ :class => Virtuozzo::SOAP::Types::Up2date::TransferType::Output,
635
+ :schema_name => XSD::QName.new(NsTypes, "output"),
636
+ :is_anonymous => true,
637
+ :schema_qualified => true,
638
+ :schema_element => [
639
+ ["bytes", "SOAP::SOAPLong"],
640
+ ["packets", "SOAP::SOAPLong", [0, 1]]
641
+ ]
642
+ )
643
+
644
+ EncodedRegistry.register(
645
+ :class => Virtuozzo::SOAP::Types::Up2date::System_nodeType,
646
+ :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
647
+ :schema_element => [
648
+ ["address", "Virtuozzo::SOAP::Types::Up2date::System_nodeType::Address"],
649
+ ["login", "Virtuozzo::SOAP::Types::Up2date::System_nodeType::Login", [0, 1]]
650
+ ]
651
+ )
652
+
653
+ EncodedRegistry.register(
654
+ :class => Virtuozzo::SOAP::Types::Up2date::System_nodeType::Address,
655
+ :schema_name => XSD::QName.new(NsTypes, "address"),
656
+ :is_anonymous => true,
657
+ :schema_qualified => true,
658
+ :schema_element => [
659
+ ["ip", nil]
660
+ ]
661
+ )
662
+
663
+ EncodedRegistry.register(
664
+ :class => Virtuozzo::SOAP::Types::Up2date::System_nodeType::Login,
665
+ :schema_name => XSD::QName.new(NsTypes, "login"),
666
+ :is_anonymous => true,
667
+ :schema_qualified => true,
668
+ :schema_element => [
669
+ ["user", "SOAP::SOAPString"],
670
+ ["password", "SOAP::SOAPBase64"]
671
+ ]
672
+ )
673
+
674
+ EncodedRegistry.register(
675
+ :class => Virtuozzo::SOAP::Types::Up2date::ResourceType,
676
+ :schema_type => XSD::QName.new(NsTypes, "resourceType"),
677
+ :schema_element => [
678
+ ["total", "SOAP::SOAPLong", [0, 1]],
679
+ ["used", "SOAP::SOAPLong", [0, 1]],
680
+ ["free", "SOAP::SOAPLong", [0, 1]],
681
+ ["avg", "SOAP::SOAPLong", [0, 1]],
682
+ ["min", "SOAP::SOAPLong", [0, 1]],
683
+ ["max", "SOAP::SOAPLong", [0, 1]]
684
+ ]
685
+ )
686
+
687
+ EncodedRegistry.register(
688
+ :class => Virtuozzo::SOAP::Types::Up2date::IntervalType,
689
+ :schema_type => XSD::QName.new(NsTypes, "intervalType"),
690
+ :schema_element => [
691
+ ["start_time", nil],
692
+ ["end_time", nil]
693
+ ]
694
+ )
695
+
696
+ EncodedRegistry.register(
697
+ :class => Virtuozzo::SOAP::Types::Up2date::StatsType,
698
+ :schema_type => XSD::QName.new(NsTypes, "statsType"),
699
+ :schema_element => [
700
+ ["avg", "SOAP::SOAPLong", [0, 1]],
701
+ ["min", "SOAP::SOAPLong", [0, 1]],
702
+ ["max", "SOAP::SOAPLong", [0, 1]],
703
+ ["total", "SOAP::SOAPLong", [0, 1]],
704
+ ["cur", "SOAP::SOAPLong", [0, 1]],
705
+ ["soft", "SOAP::SOAPLong", [0, 1]],
706
+ ["hard", "SOAP::SOAPLong", [0, 1]]
707
+ ]
708
+ )
709
+
710
+ EncodedRegistry.register(
711
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_addressType,
712
+ :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
713
+ :schema_element => [
714
+ ["host", nil],
715
+ ["mask", nil, [0, 1]]
716
+ ]
717
+ )
718
+
719
+ EncodedRegistry.register(
720
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_classType,
721
+ :schema_type => XSD::QName.new(NsTypes, "net_classType"),
722
+ :schema_element => [
723
+ ["id", "SOAP::SOAPString", [0, 1]],
724
+ ["transfer", "Virtuozzo::SOAP::Types::Up2date::TransferType", [0, 1]]
725
+ ]
726
+ )
727
+
728
+ EncodedRegistry.register(
729
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_rangeType,
730
+ :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
731
+ :schema_element => [
732
+ ["id", "SOAP::SOAPString", [0, 1]],
733
+ ["start_ip", nil, [0, 1]],
734
+ ["subnet_mask", "SOAP::SOAPInt", [0, 1]],
735
+ ["comment", "SOAP::SOAPString", [0, 1]]
736
+ ]
737
+ )
738
+
739
+ EncodedRegistry.register(
740
+ :class => Virtuozzo::SOAP::Types::Up2date::Sample_confType,
741
+ :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
742
+ :schema_element => [
743
+ ["env_config", "Virtuozzo::SOAP::Types::Up2date::Env_configType"],
744
+ ["id", "SOAP::SOAPString", [0, 1]],
745
+ ["name", "SOAP::SOAPString"],
746
+ ["comment", "SOAP::SOAPBase64", [0, 1]],
747
+ ["vt_version", "Virtuozzo::SOAP::Types::Up2date::Sample_confType::Vt_version", [0, 1]]
748
+ ]
749
+ )
750
+
751
+ EncodedRegistry.register(
752
+ :class => Virtuozzo::SOAP::Types::Up2date::Sample_confType::Vt_version,
753
+ :schema_name => XSD::QName.new(NsTypes, "vt_version"),
754
+ :is_anonymous => true,
755
+ :schema_qualified => true,
756
+ :schema_element => [
757
+ ["platform", "SOAP::SOAPString"],
758
+ ["architecture", "SOAP::SOAPString"],
759
+ ["vt_technology", "SOAP::SOAPString"]
760
+ ]
761
+ )
762
+
763
+ EncodedRegistry.register(
764
+ :class => Virtuozzo::SOAP::Types::Up2date::InterfaceType,
765
+ :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
766
+ :schema_element => [
767
+ ["name", "SOAP::SOAPString"],
768
+ ["bandwidth", "SOAP::SOAPInt", [0, 1]],
769
+ ["transfer", "Virtuozzo::SOAP::Types::Up2date::TransferType", [0, 1]],
770
+ ["ipaddress", nil, [0, 1]],
771
+ ["flags", "SOAP::SOAPInt", [0, 1]]
772
+ ]
773
+ )
774
+
775
+ EncodedRegistry.register(
776
+ :class => Virtuozzo::SOAP::Types::Up2date::Sys_infoType,
777
+ :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
778
+ :schema_element => [
779
+ ["load_avg", "Virtuozzo::SOAP::Types::Up2date::Load_avgType"],
780
+ ["processes", "Virtuozzo::SOAP::Types::Up2date::ProcessesType"],
781
+ ["cpu_load", "Virtuozzo::SOAP::Types::Up2date::Cpu_loadType"],
782
+ ["cpu_states", "Virtuozzo::SOAP::Types::Up2date::Cpu_loadType"],
783
+ ["users", "SOAP::SOAPInt"],
784
+ ["uptime", "SOAP::SOAPLong"],
785
+ ["memory", "Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Memory", [0, 1]],
786
+ ["swap", "Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Swap", [0, 1]]
787
+ ]
788
+ )
789
+
790
+ EncodedRegistry.register(
791
+ :class => Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Memory,
792
+ :schema_name => XSD::QName.new(NsTypes, "memory"),
793
+ :is_anonymous => true,
794
+ :schema_qualified => true,
795
+ :schema_element => [
796
+ ["total", "SOAP::SOAPLong", [0, 1]],
797
+ ["used", "SOAP::SOAPLong"]
798
+ ]
799
+ )
800
+
801
+ EncodedRegistry.register(
802
+ :class => Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Swap,
803
+ :schema_name => XSD::QName.new(NsTypes, "swap"),
804
+ :is_anonymous => true,
805
+ :schema_qualified => true,
806
+ :schema_element => [
807
+ ["total", "SOAP::SOAPLong", [0, 1]],
808
+ ["used", "SOAP::SOAPLong"]
809
+ ]
810
+ )
811
+
812
+ EncodedRegistry.register(
813
+ :class => Virtuozzo::SOAP::Types::Up2date::Ps_infoType,
814
+ :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
815
+ :schema_element => [
816
+ ["process", "Virtuozzo::SOAP::Types::Up2date::Ps_infoType::C_Process[]", [1, nil]],
817
+ ["param_id", "SOAP::SOAPString[]", [1, nil]],
818
+ ["run", "SOAP::SOAPInt"],
819
+ ["idle", "SOAP::SOAPInt"],
820
+ ["zombie", "SOAP::SOAPInt"],
821
+ ["sleep", "SOAP::SOAPInt"],
822
+ ["uninterrupt", "SOAP::SOAPInt"],
823
+ ["stopped", "SOAP::SOAPInt"],
824
+ ["total", "SOAP::SOAPInt"]
825
+ ]
826
+ )
827
+
828
+ EncodedRegistry.register(
829
+ :class => Virtuozzo::SOAP::Types::Up2date::Ps_infoType::C_Process,
830
+ :schema_name => XSD::QName.new(NsTypes, "process"),
831
+ :is_anonymous => true,
832
+ :schema_qualified => true,
833
+ :schema_element => [
834
+ ["pid", "SOAP::SOAPInt"],
835
+ ["param", "SOAP::SOAPBase64[]", [0, nil]]
836
+ ]
837
+ )
838
+
839
+ EncodedRegistry.register(
840
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType,
841
+ :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
842
+ :schema_element => [
843
+ ["l1", "Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L1"],
844
+ ["l2", "Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L2", [0, 1]],
845
+ ["l3", "Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L3", [0, 1]]
846
+ ]
847
+ )
848
+
849
+ EncodedRegistry.register(
850
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L1,
851
+ :schema_name => XSD::QName.new(NsTypes, "l1"),
852
+ :is_anonymous => true,
853
+ :schema_qualified => true,
854
+ :schema_element => [
855
+ ["avg", "SOAP::SOAPLong", [0, 1]],
856
+ ["min", "SOAP::SOAPLong", [0, 1]],
857
+ ["max", "SOAP::SOAPLong", [0, 1]],
858
+ ["cur", "SOAP::SOAPLong", [0, 1]]
859
+ ]
860
+ )
861
+
862
+ EncodedRegistry.register(
863
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L2,
864
+ :schema_name => XSD::QName.new(NsTypes, "l2"),
865
+ :is_anonymous => true,
866
+ :schema_qualified => true,
867
+ :schema_element => [
868
+ ["avg", "SOAP::SOAPLong", [0, 1]],
869
+ ["min", "SOAP::SOAPLong", [0, 1]],
870
+ ["max", "SOAP::SOAPLong", [0, 1]],
871
+ ["cur", "SOAP::SOAPLong", [0, 1]]
872
+ ]
873
+ )
874
+
875
+ EncodedRegistry.register(
876
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L3,
877
+ :schema_name => XSD::QName.new(NsTypes, "l3"),
878
+ :is_anonymous => true,
879
+ :schema_qualified => true,
880
+ :schema_element => [
881
+ ["avg", "SOAP::SOAPLong", [0, 1]],
882
+ ["min", "SOAP::SOAPLong", [0, 1]],
883
+ ["max", "SOAP::SOAPLong", [0, 1]],
884
+ ["cur", "SOAP::SOAPLong", [0, 1]]
885
+ ]
886
+ )
887
+
888
+ EncodedRegistry.register(
889
+ :class => Virtuozzo::SOAP::Types::Up2date::Alert_dataType,
890
+ :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
891
+ :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
892
+ :schema_element => [
893
+ ["type", "SOAP::SOAPInt"]
894
+ ]
895
+ )
896
+
897
+ EncodedRegistry.register(
898
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_addressType,
899
+ :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
900
+ :schema_element => [
901
+ ["ip", nil],
902
+ ["netmask", nil, [0, 1]]
903
+ ]
904
+ )
905
+
906
+ EncodedRegistry.register(
907
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_resourceType,
908
+ :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
909
+ :schema_element => [
910
+ ["eid", nil],
911
+ ["ip_pool", "Virtuozzo::SOAP::Types::Up2date::Ip_poolType", [0, 1]]
912
+ ]
913
+ )
914
+
915
+ EncodedRegistry.register(
916
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_poolType,
917
+ :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
918
+ :schema_element => [ :choice,
919
+ ["ip_range", "Virtuozzo::SOAP::Types::Up2date::Ip_poolType::Ip_range[]"],
920
+ ["ip", "[]"]
921
+ ]
922
+ )
923
+
924
+ EncodedRegistry.register(
925
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_poolType::Ip_range,
926
+ :schema_name => XSD::QName.new(NsTypes, "ip_range"),
927
+ :is_anonymous => true,
928
+ :schema_qualified => true,
929
+ :schema_element => [
930
+ ["start_ip", nil],
931
+ ["end_ip", nil]
932
+ ]
933
+ )
934
+
935
+ EncodedRegistry.register(
936
+ :class => Virtuozzo::SOAP::Types::Up2date::UsageType,
937
+ :schema_type => XSD::QName.new(NsTypes, "usageType"),
938
+ :schema_element => [
939
+ ["total", "SOAP::SOAPLong", [0, 1]],
940
+ ["used", "SOAP::SOAPLong", [0, 1]],
941
+ ["free", "SOAP::SOAPLong", [0, 1]]
942
+ ]
943
+ )
944
+
945
+ EncodedRegistry.register(
946
+ :class => Virtuozzo::SOAP::Types::Up2date::Root_credentialType,
947
+ :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
948
+ :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
949
+ :schema_element => [
950
+ ["id", "SOAP::SOAPString"],
951
+ ["policy", "SOAP::SOAPInt", [0, 1]],
952
+ ["description", "SOAP::SOAPBase64", [0, 1]],
953
+ ["cred", "Virtuozzo::SOAP::Types::Up2date::CredentialType[]", [0, nil]],
954
+ ["objects", "Virtuozzo::SOAP::Types::Up2date::Root_credentialType::Objects", [0, 1]]
955
+ ]
956
+ )
957
+
958
+ EncodedRegistry.register(
959
+ :class => Virtuozzo::SOAP::Types::Up2date::Root_credentialType::Objects,
960
+ :schema_name => XSD::QName.new(NsTypes, "objects"),
961
+ :is_anonymous => true,
962
+ :schema_qualified => true,
963
+ :schema_element => [
964
+ ["eid", "SOAP::SOAPString[]", [0, nil]]
965
+ ]
966
+ )
967
+
968
+ EncodedRegistry.register(
969
+ :class => Virtuozzo::SOAP::Types::Up2date::CredentialType,
970
+ :schema_type => XSD::QName.new(NsTypes, "credentialType"),
971
+ :schema_element => [
972
+ ["id", "SOAP::SOAPString"],
973
+ ["policy", "SOAP::SOAPInt", [0, 1]],
974
+ ["description", "SOAP::SOAPBase64", [0, 1]],
975
+ ["cred", "Virtuozzo::SOAP::Types::Up2date::CredentialType[]", [0, nil]]
976
+ ]
977
+ )
978
+
979
+ EncodedRegistry.register(
980
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType,
981
+ :schema_type => XSD::QName.new(NsTypes, "tokenType"),
982
+ :schema_element => [
983
+ ["user", nil],
984
+ ["groups", "Virtuozzo::SOAP::Types::Up2date::TokenType::Groups", [0, 1]],
985
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Up2date::TokenType::Deny_only_sids", [0, 1]],
986
+ ["privileges", "Virtuozzo::SOAP::Types::Up2date::TokenType::Privileges", [0, 1]],
987
+ ["source", "Virtuozzo::SOAP::Types::Up2date::TokenType::Source", [0, 1]]
988
+ ]
989
+ )
990
+
991
+ EncodedRegistry.register(
992
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Groups,
993
+ :schema_name => XSD::QName.new(NsTypes, "groups"),
994
+ :is_anonymous => true,
995
+ :schema_qualified => true,
996
+ :schema_element => [
997
+ ["sid", "[]", [1, nil]]
998
+ ]
999
+ )
1000
+
1001
+ EncodedRegistry.register(
1002
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Deny_only_sids,
1003
+ :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
1004
+ :is_anonymous => true,
1005
+ :schema_qualified => true,
1006
+ :schema_element => [
1007
+ ["sid", "[]", [0, nil]]
1008
+ ]
1009
+ )
1010
+
1011
+ EncodedRegistry.register(
1012
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Privileges,
1013
+ :schema_name => XSD::QName.new(NsTypes, "privileges"),
1014
+ :is_anonymous => true,
1015
+ :schema_qualified => true,
1016
+ :schema_element => [
1017
+ ["privilege", "[]", [0, nil]]
1018
+ ]
1019
+ )
1020
+
1021
+ EncodedRegistry.register(
1022
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Source,
1023
+ :schema_name => XSD::QName.new(NsTypes, "source"),
1024
+ :is_anonymous => true,
1025
+ :schema_qualified => true,
1026
+ :schema_element => [
1027
+ ["name", "SOAP::SOAPString"],
1028
+ ["id", nil]
1029
+ ]
1030
+ )
1031
+
1032
+ EncodedRegistry.register(
1033
+ :class => Virtuozzo::SOAP::Types::Up2date::Connectivity_infoType,
1034
+ :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
1035
+ :schema_element => [
1036
+ ["protocol", "SOAP::SOAPString", [0, 1]],
1037
+ ["address", "SOAP::SOAPString"],
1038
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]]
1039
+ ]
1040
+ )
1041
+
1042
+ EncodedRegistry.register(
1043
+ :class => Virtuozzo::SOAP::Types::Up2date::Auth_nameType,
1044
+ :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
1045
+ :schema_element => [
1046
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1047
+ ["domain", "SOAP::SOAPBase64", [0, 1]],
1048
+ ["realm", nil]
1049
+ ]
1050
+ )
1051
+
1052
+ EncodedRegistry.register(
1053
+ :class => Virtuozzo::SOAP::Types::Up2date::Connection_infoType,
1054
+ :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
1055
+ :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
1056
+ :schema_element => [
1057
+ ["protocol", "SOAP::SOAPString", [0, 1]],
1058
+ ["address", "SOAP::SOAPString"],
1059
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
1060
+ ["login", "Virtuozzo::SOAP::Types::Up2date::Auth_nameType", [0, 1]],
1061
+ ["password", "SOAP::SOAPBase64", [0, 1]]
1062
+ ]
1063
+ )
1064
+
1065
+ EncodedRegistry.register(
1066
+ :class => Virtuozzo::SOAP::Types::Up2date::Eid_listType,
1067
+ :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
1068
+ :schema_element => [
1069
+ ["eid", "[]", [0, nil]]
1070
+ ]
1071
+ )
1072
+
1073
+ EncodedRegistry.register(
1074
+ :class => Virtuozzo::SOAP::Types::Up2date::Vt_infoType,
1075
+ :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
1076
+ :schema_element => [
1077
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1078
+ ]
1079
+ )
1080
+
1081
+ EncodedRegistry.register(
1082
+ :class => Virtuozzo::SOAP::Types::Up2date::Vt_settingsType,
1083
+ :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
1084
+ :schema_element => [
1085
+ ["default_sample_id", nil, [0, 1]]
1086
+ ]
1087
+ )
1088
+
1089
+ EncodedRegistry.register(
1090
+ :class => Virtuozzo::SOAP::Types::Up2date::UserType,
1091
+ :schema_type => XSD::QName.new(NsTypes, "userType"),
1092
+ :schema_element => [
1093
+ ["initial_group", "Virtuozzo::SOAP::Types::Up2date::UserType::Initial_group", [0, 1]],
1094
+ ["group", "Virtuozzo::SOAP::Types::Up2date::UserType::Group[]", [0, nil]],
1095
+ ["uid", "SOAP::SOAPInt", [0, 1]],
1096
+ ["shell", "SOAP::SOAPString", [0, 1]],
1097
+ ["password", "SOAP::SOAPBase64", [0, 1]],
1098
+ ["home_dir", "SOAP::SOAPString", [0, 1]],
1099
+ ["name", "SOAP::SOAPString", [0, 1]],
1100
+ ["comment", "SOAP::SOAPString", [0, 1]]
1101
+ ]
1102
+ )
1103
+
1104
+ EncodedRegistry.register(
1105
+ :class => Virtuozzo::SOAP::Types::Up2date::UserType::Initial_group,
1106
+ :schema_name => XSD::QName.new(NsTypes, "initial_group"),
1107
+ :is_anonymous => true,
1108
+ :schema_qualified => true,
1109
+ :schema_element => [
1110
+ ["name", "SOAP::SOAPString", [0, 1]],
1111
+ ["gid", "SOAP::SOAPInt", [0, 1]]
1112
+ ]
1113
+ )
1114
+
1115
+ EncodedRegistry.register(
1116
+ :class => Virtuozzo::SOAP::Types::Up2date::UserType::Group,
1117
+ :schema_name => XSD::QName.new(NsTypes, "group"),
1118
+ :is_anonymous => true,
1119
+ :schema_qualified => true,
1120
+ :schema_element => [
1121
+ ["name", "SOAP::SOAPString", [0, 1]],
1122
+ ["gid", "SOAP::SOAPInt", [0, 1]]
1123
+ ]
1124
+ )
1125
+
1126
+ EncodedRegistry.register(
1127
+ :class => Virtuozzo::SOAP::Types::Up2date::GroupType,
1128
+ :schema_type => XSD::QName.new(NsTypes, "groupType"),
1129
+ :schema_element => [
1130
+ ["user", "Virtuozzo::SOAP::Types::Up2date::GroupType::User[]", [0, nil]],
1131
+ ["member_group", "Virtuozzo::SOAP::Types::Up2date::GroupType::Member_group[]", [0, nil]],
1132
+ ["name", "SOAP::SOAPString", [0, 1]],
1133
+ ["gid", "SOAP::SOAPInt", [0, 1]]
1134
+ ]
1135
+ )
1136
+
1137
+ EncodedRegistry.register(
1138
+ :class => Virtuozzo::SOAP::Types::Up2date::GroupType::User,
1139
+ :schema_name => XSD::QName.new(NsTypes, "user"),
1140
+ :is_anonymous => true,
1141
+ :schema_qualified => true,
1142
+ :schema_element => [
1143
+ ["name", "SOAP::SOAPString"]
1144
+ ]
1145
+ )
1146
+
1147
+ EncodedRegistry.register(
1148
+ :class => Virtuozzo::SOAP::Types::Up2date::GroupType::Member_group,
1149
+ :schema_name => XSD::QName.new(NsTypes, "member_group"),
1150
+ :is_anonymous => true,
1151
+ :schema_qualified => true,
1152
+ :schema_element => [
1153
+ ["name", "SOAP::SOAPString", [0, 1]]
1154
+ ]
1155
+ )
1156
+
1157
+ EncodedRegistry.register(
1158
+ :class => Virtuozzo::SOAP::Types::Up2date::PackageType,
1159
+ :schema_type => XSD::QName.new(NsTypes, "packageType"),
1160
+ :schema_element => [
1161
+ ["name", "SOAP::SOAPString"],
1162
+ ["summary", "SOAP::SOAPString", [0, 1]],
1163
+ ["os", "Virtuozzo::SOAP::Types::Up2date::OsType", [0, 1]],
1164
+ ["description", "SOAP::SOAPString", [0, 1]],
1165
+ ["arch", "SOAP::SOAPString", [0, 1]],
1166
+ ["version", "SOAP::SOAPString", [0, 1]]
1167
+ ]
1168
+ )
1169
+
1170
+ EncodedRegistry.register(
1171
+ :class => Virtuozzo::SOAP::Types::Up2date::Event_dataType,
1172
+ :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
1173
+ :schema_element => []
1174
+ )
1175
+
1176
+ EncodedRegistry.register(
1177
+ :class => Virtuozzo::SOAP::Types::Up2date::Named_listType,
1178
+ :schema_type => XSD::QName.new(NsTypes, "named_listType"),
1179
+ :schema_element => [
1180
+ ["name", "SOAP::SOAPString"],
1181
+ ["value", "SOAP::SOAPBase64[]", [0, nil]]
1182
+ ]
1183
+ )
1184
+
1185
+ EncodedRegistry.register(
1186
+ :class => Virtuozzo::SOAP::Types::Up2date::ModType,
1187
+ :schema_type => XSD::QName.new(NsTypes, "modType"),
1188
+ :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
1189
+ :schema_element => [
1190
+ ["name", "SOAP::SOAPString"],
1191
+ ["value", "SOAP::SOAPBase64[]", [0, nil]],
1192
+ ["op", "SOAP::SOAPInt", [0, 1]]
1193
+ ]
1194
+ )
1195
+
1196
+ EncodedRegistry.register(
1197
+ :class => Virtuozzo::SOAP::Types::Up2date::RealmType,
1198
+ :schema_type => XSD::QName.new(NsTypes, "realmType"),
1199
+ :schema_element => [
1200
+ ["id", nil, [0, 1]],
1201
+ ["type", "SOAP::SOAPInt"],
1202
+ ["name", "SOAP::SOAPString"],
1203
+ ["builtin", nil, [0, 1]]
1204
+ ]
1205
+ )
1206
+
1207
+ EncodedRegistry.register(
1208
+ :class => Virtuozzo::SOAP::Types::Up2date::EventType,
1209
+ :schema_type => XSD::QName.new(NsTypes, "eventType"),
1210
+ :schema_element => [
1211
+ ["eid", nil],
1212
+ ["time", nil],
1213
+ ["source", "SOAP::SOAPString"],
1214
+ ["category", "SOAP::SOAPString"],
1215
+ ["sid", nil, [0, 1]],
1216
+ ["count", "SOAP::SOAPInt"],
1217
+ ["id", nil],
1218
+ ["info", "Virtuozzo::SOAP::Types::Up2date::InfoType"],
1219
+ ["data", "Virtuozzo::SOAP::Types::Up2date::EventType::C_Data", [0, 1]]
1220
+ ]
1221
+ )
1222
+
1223
+ EncodedRegistry.register(
1224
+ :class => Virtuozzo::SOAP::Types::Up2date::EventType::C_Data,
1225
+ :schema_name => XSD::QName.new(NsTypes, "data"),
1226
+ :is_anonymous => true,
1227
+ :schema_qualified => true,
1228
+ :schema_element => [
1229
+ ["event_data", "Virtuozzo::SOAP::Types::Up2date::Event_dataType"]
1230
+ ]
1231
+ )
1232
+
1233
+ EncodedRegistry.register(
1234
+ :class => Virtuozzo::SOAP::Types::Up2date::InfoType,
1235
+ :schema_type => XSD::QName.new(NsTypes, "infoType"),
1236
+ :schema_element => [
1237
+ ["message", "SOAP::SOAPBase64"],
1238
+ ["translate", nil, [0, 1]],
1239
+ ["parameter", "Virtuozzo::SOAP::Types::Up2date::InfoType[]", [0, nil]],
1240
+ ["name", "SOAP::SOAPString"]
1241
+ ]
1242
+ )
1243
+
1244
+ EncodedRegistry.register(
1245
+ :class => Virtuozzo::SOAP::Types::Up2date::AceType,
1246
+ :schema_type => XSD::QName.new(NsTypes, "aceType"),
1247
+ :schema_element => [
1248
+ ["type", "SOAP::SOAPInt"],
1249
+ ["sid", nil],
1250
+ ["rights", "SOAP::SOAPBase64"]
1251
+ ]
1252
+ )
1253
+
1254
+ EncodedRegistry.register(
1255
+ :class => Virtuozzo::SOAP::Types::Up2date::Security_descriptorType,
1256
+ :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
1257
+ :schema_element => [
1258
+ ["owner", nil],
1259
+ ["group", nil],
1260
+ ["dacl", "Virtuozzo::SOAP::Types::Up2date::Security_descriptorType::Dacl", [0, 1]]
1261
+ ]
1262
+ )
1263
+
1264
+ EncodedRegistry.register(
1265
+ :class => Virtuozzo::SOAP::Types::Up2date::Security_descriptorType::Dacl,
1266
+ :schema_name => XSD::QName.new(NsTypes, "dacl"),
1267
+ :is_anonymous => true,
1268
+ :schema_qualified => true,
1269
+ :schema_element => [
1270
+ ["ace", "Virtuozzo::SOAP::Types::Up2date::AceType[]", [0, nil]]
1271
+ ]
1272
+ )
1273
+
1274
+ EncodedRegistry.register(
1275
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_security_objectType,
1276
+ :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
1277
+ :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
1278
+ :schema_element => [
1279
+ ["eid", nil]
1280
+ ]
1281
+ )
1282
+
1283
+ EncodedRegistry.register(
1284
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_deviceType,
1285
+ :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
1286
+ :schema_element => [
1287
+ ["id", "SOAP::SOAPString", [0, 1]],
1288
+ ["ip_address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
1289
+ ["dhcp", nil, [0, 1]],
1290
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
1291
+ ["status", "Virtuozzo::SOAP::Types::Up2date::Net_deviceType::Status", [0, 1]]
1292
+ ]
1293
+ )
1294
+
1295
+ EncodedRegistry.register(
1296
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_deviceType::Status,
1297
+ :schema_name => XSD::QName.new(NsTypes, "status"),
1298
+ :is_anonymous => true,
1299
+ :schema_qualified => true,
1300
+ :schema_element => [ :choice,
1301
+ ["up", nil],
1302
+ ["down", nil]
1303
+ ]
1304
+ )
1305
+
1306
+ EncodedRegistry.register(
1307
+ :class => Virtuozzo::SOAP::Types::Up2date::Voc_parameterType,
1308
+ :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
1309
+ :schema_element => [
1310
+ ["id", "SOAP::SOAPString"],
1311
+ ["type", "SOAP::SOAPString", [0, 1]],
1312
+ ["min", "SOAP::SOAPString", [0, 1]],
1313
+ ["max", "SOAP::SOAPString", [0, 1]],
1314
+ ["long", "SOAP::SOAPString", [0, 1]],
1315
+ ["short", "SOAP::SOAPString", [0, 1]],
1316
+ ["category", "SOAP::SOAPString[]", [0, nil]],
1317
+ ["complex", "SOAP::SOAPString", [0, 1]],
1318
+ ["default", "SOAP::SOAPString", [0, 1]],
1319
+ ["measure", "SOAP::SOAPString", [0, 1]],
1320
+ ["data", nil, [0, 1]],
1321
+ ["name", nil, [0, 1]]
1322
+ ]
1323
+ )
1324
+
1325
+ EncodedRegistry.register(
1326
+ :class => Virtuozzo::SOAP::Types::Up2date::VocabularyType,
1327
+ :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
1328
+ :schema_element => [
1329
+ ["name", "SOAP::SOAPString"],
1330
+ ["parameter", "Virtuozzo::SOAP::Types::Up2date::Voc_parameterType[]", [0, nil]],
1331
+ ["category", "Virtuozzo::SOAP::Types::Up2date::Voc_parameterType[]", [0, nil]]
1332
+ ]
1333
+ )
1334
+
1335
+ EncodedRegistry.register(
1336
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_nicType,
1337
+ :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
1338
+ :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
1339
+ :schema_element => [
1340
+ ["id", "SOAP::SOAPString", [0, 1]],
1341
+ ["ip_address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
1342
+ ["dhcp", nil, [0, 1]],
1343
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
1344
+ ["status", "Virtuozzo::SOAP::Types::Up2date::Net_nicType::Status", [0, 1]],
1345
+ ["mac_address", "SOAP::SOAPString", [0, 1]]
1346
+ ]
1347
+ )
1348
+
1349
+ EncodedRegistry.register(
1350
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_nicType::Status,
1351
+ :schema_name => XSD::QName.new(NsTypes, "status"),
1352
+ :is_anonymous => true,
1353
+ :schema_qualified => true,
1354
+ :schema_element => [ :choice,
1355
+ ["up", nil],
1356
+ ["down", nil]
1357
+ ]
1358
+ )
1359
+
1360
+ EncodedRegistry.register(
1361
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_statType,
1362
+ :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
1363
+ :schema_element => [
1364
+ ["cur", "SOAP::SOAPAnySimpleType"],
1365
+ ["avg", "SOAP::SOAPAnySimpleType"],
1366
+ ["max", "SOAP::SOAPAnySimpleType"],
1367
+ ["min", "SOAP::SOAPAnySimpleType"]
1368
+ ]
1369
+ )
1370
+
1371
+ EncodedRegistry.register(
1372
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType,
1373
+ :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
1374
+ :schema_element => [
1375
+ ["eid", nil],
1376
+ ["v_class", ["Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
1377
+ ["interval", "Virtuozzo::SOAP::Types::Up2date::IntervalType"]
1378
+ ]
1379
+ )
1380
+
1381
+ EncodedRegistry.register(
1382
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance::Counter,
1383
+ :schema_name => XSD::QName.new(NsTypes, "counter"),
1384
+ :is_anonymous => true,
1385
+ :schema_qualified => true,
1386
+ :schema_element => [
1387
+ ["name", "SOAP::SOAPString"],
1388
+ ["value", "Virtuozzo::SOAP::Types::Up2date::Perf_statType"]
1389
+ ]
1390
+ )
1391
+
1392
+ EncodedRegistry.register(
1393
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance,
1394
+ :schema_name => XSD::QName.new(NsTypes, "instance"),
1395
+ :is_anonymous => true,
1396
+ :schema_qualified => true,
1397
+ :schema_element => [
1398
+ ["name", "SOAP::SOAPString", [0, 1]],
1399
+ ["counter", "Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
1400
+ ]
1401
+ )
1402
+
1403
+ EncodedRegistry.register(
1404
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class,
1405
+ :schema_name => XSD::QName.new(NsTypes, "class"),
1406
+ :is_anonymous => true,
1407
+ :schema_qualified => true,
1408
+ :schema_element => [
1409
+ ["name", "SOAP::SOAPString"],
1410
+ ["instance", "Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance[]", [1, nil]]
1411
+ ]
1412
+ )
1413
+
1414
+ EncodedRegistry.register(
1415
+ :class => Virtuozzo::SOAP::Types::Up2date::Log_options_baseType,
1416
+ :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
1417
+ :schema_element => []
1418
+ )
1419
+
1420
+ EncodedRegistry.register(
1421
+ :class => Virtuozzo::SOAP::Types::Up2date::Log_optionsType,
1422
+ :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
1423
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
1424
+ :schema_element => []
1425
+ )
1426
+
1427
+ EncodedRegistry.register(
1428
+ :class => Virtuozzo::SOAP::Types::Up2date::Transport_type,
1429
+ :schema_type => XSD::QName.new(NsTypes, "transport_type")
1430
+ )
1431
+
1432
+ EncodedRegistry.register(
1433
+ :class => Virtuozzo::SOAP::Types::Up2date::Yes_no_type,
1434
+ :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
1435
+ )
1436
+
1437
+ LiteralRegistry.register(
1438
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType,
1439
+ :schema_type => XSD::QName.new(NsVzaup2date, "vzaup2dateType"),
1440
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1441
+ :schema_element => [ :choice,
1442
+ ["configuration", ["Virtuozzo::SOAP::Types::Up2date::ConfigurationType_", XSD::QName.new(NsProtocol, "configuration")]],
1443
+ ["ok", ["Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
1444
+ ["error", ["Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Error[]", XSD::QName.new(NsProtocol, "error")]],
1445
+ [
1446
+ ["get_config", "Virtuozzo::SOAP::Types::Up2date::Get_config[]"],
1447
+ ["set_config", "Virtuozzo::SOAP::Types::Up2date::Set_config[]"],
1448
+ ["list", "Virtuozzo::SOAP::Types::Up2date::List[]"],
1449
+ ["install", "Virtuozzo::SOAP::Types::Up2date::Install[]"],
1450
+ ["uninstall", "Virtuozzo::SOAP::Types::Up2date::Uninstall[]"]
1451
+ ],
1452
+ [
1453
+ ["config", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType[]"],
1454
+ ["update", "Virtuozzo::SOAP::Types::Up2date::UpdateType[]"]
1455
+ ]
1456
+ ]
1457
+ )
1458
+
1459
+ LiteralRegistry.register(
1460
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Ok,
1461
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1462
+ :is_anonymous => true,
1463
+ :schema_qualified => true,
1464
+ :schema_element => []
1465
+ )
1466
+
1467
+ LiteralRegistry.register(
1468
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Error,
1469
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1470
+ :is_anonymous => true,
1471
+ :schema_qualified => true,
1472
+ :schema_element => [
1473
+ ["code", "SOAP::SOAPInt"],
1474
+ ["message", "SOAP::SOAPString", [0, 1]]
1475
+ ]
1476
+ )
1477
+
1478
+ LiteralRegistry.register(
1479
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType,
1480
+ :schema_type => XSD::QName.new(NsVzaup2date, "configurationType"),
1481
+ :schema_element => [
1482
+ ["connection", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection", [0, 1]],
1483
+ ["product", "Virtuozzo::SOAP::Types::Up2date::Product[]", [0, nil]],
1484
+ ["service", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service", [0, 1]]
1485
+ ]
1486
+ )
1487
+
1488
+ LiteralRegistry.register(
1489
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy::Type,
1490
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
1491
+ :is_anonymous => true,
1492
+ :schema_qualified => true,
1493
+ :schema_element => [ :choice,
1494
+ ["explorer", nil],
1495
+ ["custom", nil],
1496
+ ["no_proxy", nil]
1497
+ ]
1498
+ )
1499
+
1500
+ LiteralRegistry.register(
1501
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy,
1502
+ :schema_name => XSD::QName.new(NsVzaup2date, "proxy"),
1503
+ :is_anonymous => true,
1504
+ :schema_qualified => true,
1505
+ :schema_element => [
1506
+ ["type", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy::Type", [0, 1]],
1507
+ ["server", "SOAP::SOAPString", [0, 1]],
1508
+ ["user", "SOAP::SOAPBase64", [0, 1]],
1509
+ ["password", "SOAP::SOAPBase64", [0, 1]]
1510
+ ]
1511
+ )
1512
+
1513
+ LiteralRegistry.register(
1514
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection,
1515
+ :schema_name => XSD::QName.new(NsVzaup2date, "connection"),
1516
+ :is_anonymous => true,
1517
+ :schema_qualified => true,
1518
+ :schema_element => [
1519
+ ["server", "SOAP::SOAPString"],
1520
+ ["user", "SOAP::SOAPBase64", [0, 1]],
1521
+ ["password", "SOAP::SOAPBase64", [0, 1]],
1522
+ ["proxy", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy", [0, 1]],
1523
+ ["local_path", "SOAP::SOAPBase64", [0, 1]],
1524
+ ["log_path", "SOAP::SOAPBase64", [0, 1]]
1525
+ ]
1526
+ )
1527
+
1528
+ LiteralRegistry.register(
1529
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service::Check_period,
1530
+ :schema_name => XSD::QName.new(NsVzaup2date, "check_period"),
1531
+ :is_anonymous => true,
1532
+ :schema_qualified => true,
1533
+ :schema_element => [ :choice,
1534
+ ["sunday", nil],
1535
+ ["monday", nil],
1536
+ ["tuesday", nil],
1537
+ ["wednesday", nil],
1538
+ ["thursday", nil],
1539
+ ["friday", nil],
1540
+ ["saturday", nil]
1541
+ ]
1542
+ )
1543
+
1544
+ LiteralRegistry.register(
1545
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service,
1546
+ :schema_name => XSD::QName.new(NsVzaup2date, "service"),
1547
+ :is_anonymous => true,
1548
+ :schema_qualified => true,
1549
+ :schema_element => [
1550
+ ["autoreboot", nil, [0, 1]],
1551
+ ["check_period", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service::Check_period", [0, 1]],
1552
+ ["hour", "SOAP::SOAPInt"],
1553
+ ["disabled", nil, [0, 1]]
1554
+ ]
1555
+ )
1556
+
1557
+ LiteralRegistry.register(
1558
+ :class => Virtuozzo::SOAP::Types::Up2date::UpdateType,
1559
+ :schema_type => XSD::QName.new(NsVzaup2date, "updateType"),
1560
+ :schema_element => [
1561
+ ["id", "SOAP::SOAPString", [0, 1]],
1562
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1563
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1564
+ ["size", "SOAP::SOAPLong", [0, 1]],
1565
+ ["reboot", nil, [0, 1]],
1566
+ ["version", "SOAP::SOAPString", [0, 1]],
1567
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1568
+ ["date", nil, [0, 1]]
1569
+ ]
1570
+ )
1571
+
1572
+ LiteralRegistry.register(
1573
+ :class => Virtuozzo::SOAP::Types::Up2date::System_updateType,
1574
+ :schema_type => XSD::QName.new(NsVzaup2date, "system_updateType"),
1575
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "updateType"),
1576
+ :schema_element => [
1577
+ ["id", "SOAP::SOAPString", [0, 1]],
1578
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1579
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1580
+ ["size", "SOAP::SOAPLong", [0, 1]],
1581
+ ["reboot", nil, [0, 1]],
1582
+ ["version", "SOAP::SOAPString", [0, 1]],
1583
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1584
+ ["date", nil, [0, 1]],
1585
+ ["type", "Virtuozzo::SOAP::Types::Up2date::System_updateType::Type", [0, 1]],
1586
+ ["category", "SOAP::SOAPString", [0, 1]]
1587
+ ]
1588
+ )
1589
+
1590
+ LiteralRegistry.register(
1591
+ :class => Virtuozzo::SOAP::Types::Up2date::System_updateType::Type,
1592
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
1593
+ :is_anonymous => true,
1594
+ :schema_qualified => true,
1595
+ :schema_element => [ :choice,
1596
+ ["hotfix", nil],
1597
+ ["servicepack", nil],
1598
+ ["version", nil]
1599
+ ]
1600
+ )
1601
+
1602
+ LiteralRegistry.register(
1603
+ :class => Virtuozzo::SOAP::Types::Up2date::Windows_system_updateType,
1604
+ :schema_type => XSD::QName.new(NsVzaup2date, "windows_system_updateType"),
1605
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "system_updateType"),
1606
+ :schema_element => [
1607
+ ["id", "SOAP::SOAPString", [0, 1]],
1608
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1609
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1610
+ ["size", "SOAP::SOAPLong", [0, 1]],
1611
+ ["reboot", nil, [0, 1]],
1612
+ ["version", "SOAP::SOAPString", [0, 1]],
1613
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1614
+ ["date", nil, [0, 1]],
1615
+ ["type", "Virtuozzo::SOAP::Types::Up2date::Windows_system_updateType::Type", [0, 1]],
1616
+ ["category", "SOAP::SOAPString", [0, 1]],
1617
+ ["product", "SOAP::SOAPString"]
1618
+ ]
1619
+ )
1620
+
1621
+ LiteralRegistry.register(
1622
+ :class => Virtuozzo::SOAP::Types::Up2date::Windows_system_updateType::Type,
1623
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
1624
+ :is_anonymous => true,
1625
+ :schema_qualified => true,
1626
+ :schema_element => [ :choice,
1627
+ ["hotfix", nil],
1628
+ ["servicepack", nil],
1629
+ ["version", nil]
1630
+ ]
1631
+ )
1632
+
1633
+ LiteralRegistry.register(
1634
+ :class => Virtuozzo::SOAP::Types::Up2date::Template_updateType,
1635
+ :schema_type => XSD::QName.new(NsVzaup2date, "template_updateType"),
1636
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "updateType"),
1637
+ :schema_element => [
1638
+ ["id", "SOAP::SOAPString", [0, 1]],
1639
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1640
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1641
+ ["size", "SOAP::SOAPLong", [0, 1]],
1642
+ ["reboot", nil, [0, 1]],
1643
+ ["version", "SOAP::SOAPString", [0, 1]],
1644
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1645
+ ["date", nil, [0, 1]],
1646
+ ["app_template", "Virtuozzo::SOAP::Types::Up2date::App_template_updateType[]", [0, nil]]
1647
+ ]
1648
+ )
1649
+
1650
+ LiteralRegistry.register(
1651
+ :class => Virtuozzo::SOAP::Types::Up2date::Os_template_updateType,
1652
+ :schema_type => XSD::QName.new(NsVzaup2date, "os_template_updateType"),
1653
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "template_updateType"),
1654
+ :schema_element => [
1655
+ ["id", "SOAP::SOAPString", [0, 1]],
1656
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1657
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1658
+ ["size", "SOAP::SOAPLong", [0, 1]],
1659
+ ["reboot", nil, [0, 1]],
1660
+ ["version", "SOAP::SOAPString", [0, 1]],
1661
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1662
+ ["date", nil, [0, 1]],
1663
+ ["app_template", "Virtuozzo::SOAP::Types::Up2date::App_template_updateType[]", [0, nil]]
1664
+ ]
1665
+ )
1666
+
1667
+ LiteralRegistry.register(
1668
+ :class => Virtuozzo::SOAP::Types::Up2date::Ez_template_updateType,
1669
+ :schema_type => XSD::QName.new(NsVzaup2date, "ez_template_updateType"),
1670
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "template_updateType"),
1671
+ :schema_element => [
1672
+ ["id", "SOAP::SOAPString", [0, 1]],
1673
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1674
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1675
+ ["size", "SOAP::SOAPLong", [0, 1]],
1676
+ ["reboot", nil, [0, 1]],
1677
+ ["version", "SOAP::SOAPString", [0, 1]],
1678
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1679
+ ["date", nil, [0, 1]],
1680
+ ["app_template", "Virtuozzo::SOAP::Types::Up2date::App_template_updateType[]", [0, nil]]
1681
+ ]
1682
+ )
1683
+
1684
+ LiteralRegistry.register(
1685
+ :class => Virtuozzo::SOAP::Types::Up2date::App_template_updateType,
1686
+ :schema_type => XSD::QName.new(NsVzaup2date, "app_template_updateType"),
1687
+ :schema_basetype => XSD::QName.new(NsVzaup2date, "updateType"),
1688
+ :schema_element => [
1689
+ ["id", "SOAP::SOAPString", [0, 1]],
1690
+ ["name", "SOAP::SOAPBase64", [0, 1]],
1691
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1692
+ ["size", "SOAP::SOAPLong", [0, 1]],
1693
+ ["reboot", nil, [0, 1]],
1694
+ ["version", "SOAP::SOAPString", [0, 1]],
1695
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
1696
+ ["date", nil, [0, 1]]
1697
+ ]
1698
+ )
1699
+
1700
+ LiteralRegistry.register(
1701
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2date_configurationType,
1702
+ :schema_type => XSD::QName.new(NsVzaup2date, "vzaup2date_configurationType"),
1703
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1704
+ :schema_element => [
1705
+ ["no_signatures", "SOAP::SOAPInt"]
1706
+ ]
1707
+ )
1708
+
1709
+ LiteralRegistry.register(
1710
+ :class => Virtuozzo::SOAP::Types::Up2date::Packet_headerType,
1711
+ :schema_type => XSD::QName.new(NsProtocol, "packet_headerType"),
1712
+ :schema_element => [
1713
+ ["auth", "Virtuozzo::SOAP::Types::Up2date::AuthType", [0, 1]],
1714
+ ["cookie", "SOAP::SOAPString", [0, 1]],
1715
+ ["target", "SOAP::SOAPString[]", [0, nil]],
1716
+ ["origin", "SOAP::SOAPString", [0, 1]],
1717
+ ["src", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
1718
+ ["dst", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
1719
+ ["session", "SOAP::SOAPString", [0, 1]]
1720
+ ],
1721
+ :schema_attribute => {
1722
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
1723
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
1724
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
1725
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
1726
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
1727
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
1728
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
1729
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
1730
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
1731
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
1732
+ }
1733
+ )
1734
+
1735
+ LiteralRegistry.register(
1736
+ :class => Virtuozzo::SOAP::Types::Up2date::OperatorType,
1737
+ :schema_type => XSD::QName.new(NsProtocol, "operatorType"),
1738
+ :schema_element => [ :choice,
1739
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"]
1740
+ ]
1741
+ )
1742
+
1743
+ LiteralRegistry.register(
1744
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType,
1745
+ :schema_type => XSD::QName.new(NsProtocol, "operator_functionalType"),
1746
+ :schema_basetype => XSD::QName.new(NsProtocol, "operatorType"),
1747
+ :schema_element => [ :choice,
1748
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"],
1749
+ ["ok", "Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Ok[]"],
1750
+ ["error", "Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Error[]"]
1751
+ ]
1752
+ )
1753
+
1754
+ LiteralRegistry.register(
1755
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Ok,
1756
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1757
+ :is_anonymous => true,
1758
+ :schema_qualified => true,
1759
+ :schema_element => []
1760
+ )
1761
+
1762
+ LiteralRegistry.register(
1763
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Error,
1764
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1765
+ :is_anonymous => true,
1766
+ :schema_qualified => true,
1767
+ :schema_element => [
1768
+ ["code", "SOAP::SOAPInt"],
1769
+ ["message", "SOAP::SOAPString", [0, 1]]
1770
+ ]
1771
+ )
1772
+
1773
+ LiteralRegistry.register(
1774
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType,
1775
+ :schema_type => XSD::QName.new(NsProtocol, "operator_periodicType"),
1776
+ :schema_basetype => XSD::QName.new(NsProtocol, "operator_functionalType"),
1777
+ :schema_element => [ :choice,
1778
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"],
1779
+ ["ok", "Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Ok[]"],
1780
+ ["error", "Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Error[]"],
1781
+ [ :choice,
1782
+ ["start_monitor", "Virtuozzo::SOAP::Types::Up2date::Start_monitorType"],
1783
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Up2date::Stop_monitorType"],
1784
+ ["set_period", "Virtuozzo::SOAP::Types::Up2date::Set_periodType", [0, 1]],
1785
+ ["report", nil, [0, 1]]
1786
+ ]
1787
+ ]
1788
+ )
1789
+
1790
+ LiteralRegistry.register(
1791
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Ok,
1792
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
1793
+ :is_anonymous => true,
1794
+ :schema_qualified => true,
1795
+ :schema_element => []
1796
+ )
1797
+
1798
+ LiteralRegistry.register(
1799
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Error,
1800
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
1801
+ :is_anonymous => true,
1802
+ :schema_qualified => true,
1803
+ :schema_element => [
1804
+ ["code", "SOAP::SOAPInt"],
1805
+ ["message", "SOAP::SOAPString", [0, 1]]
1806
+ ]
1807
+ )
1808
+
1809
+ LiteralRegistry.register(
1810
+ :class => Virtuozzo::SOAP::Types::Up2date::Set_periodType,
1811
+ :schema_type => XSD::QName.new(NsProtocol, "set_periodType"),
1812
+ :schema_element => [
1813
+ ["collect", "SOAP::SOAPInt"],
1814
+ ["log", "SOAP::SOAPInt"],
1815
+ ["report", "SOAP::SOAPInt"]
1816
+ ]
1817
+ )
1818
+
1819
+ LiteralRegistry.register(
1820
+ :class => Virtuozzo::SOAP::Types::Up2date::Start_monitorType,
1821
+ :schema_type => XSD::QName.new(NsProtocol, "start_monitorType"),
1822
+ :schema_element => [
1823
+ ["period", "SOAP::SOAPInt"],
1824
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1825
+ ]
1826
+ )
1827
+
1828
+ LiteralRegistry.register(
1829
+ :class => Virtuozzo::SOAP::Types::Up2date::Stop_monitorType,
1830
+ :schema_type => XSD::QName.new(NsProtocol, "stop_monitorType"),
1831
+ :schema_element => [
1832
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1833
+ ]
1834
+ )
1835
+
1836
+ LiteralRegistry.register(
1837
+ :class => Virtuozzo::SOAP::Types::Up2date::AuthType,
1838
+ :schema_type => XSD::QName.new(NsProtocol, "authType"),
1839
+ :schema_element => [
1840
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
1841
+ ]
1842
+ )
1843
+
1844
+ LiteralRegistry.register(
1845
+ :class => Virtuozzo::SOAP::Types::Up2date::Event_configurationType,
1846
+ :schema_type => XSD::QName.new(NsProtocol, "event_configurationType"),
1847
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1848
+ :schema_element => [
1849
+ ["period", "SOAP::SOAPInt"]
1850
+ ]
1851
+ )
1852
+
1853
+ LiteralRegistry.register(
1854
+ :class => Virtuozzo::SOAP::Types::Up2date::Periodic_configurationType,
1855
+ :schema_type => XSD::QName.new(NsProtocol, "periodic_configurationType"),
1856
+ :schema_basetype => XSD::QName.new(NsProtocol, "configurationType"),
1857
+ :schema_element => [
1858
+ ["log_priority", "SOAP::SOAPInt"],
1859
+ ["monitor_priority", "SOAP::SOAPInt"],
1860
+ ["min_monitor_period", "SOAP::SOAPInt"],
1861
+ ["min_monitor_period_root", "SOAP::SOAPInt"]
1862
+ ]
1863
+ )
1864
+
1865
+ LiteralRegistry.register(
1866
+ :class => Virtuozzo::SOAP::Types::Up2date::RouteType,
1867
+ :schema_type => XSD::QName.new(NsProtocol, "routeType"),
1868
+ :schema_element => [
1869
+ ["director", "SOAP::SOAPString", [0, 1]],
1870
+ ["host", "SOAP::SOAPString", [0, 1]],
1871
+ ["index", "SOAP::SOAPString", [0, 1]],
1872
+ ["target", "SOAP::SOAPString", [0, 1]]
1873
+ ]
1874
+ )
1875
+
1876
+ LiteralRegistry.register(
1877
+ :class => Virtuozzo::SOAP::Types::Up2date::DataType,
1878
+ :schema_type => XSD::QName.new(NsProtocol, "dataType"),
1879
+ :schema_element => [
1880
+ ["operator", "Virtuozzo::SOAP::Types::Up2date::OperatorType[]"]
1881
+ ]
1882
+ )
1883
+
1884
+ LiteralRegistry.register(
1885
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType_,
1886
+ :schema_type => XSD::QName.new(NsProtocol, "configurationType"),
1887
+ :schema_element => []
1888
+ )
1889
+
1890
+ LiteralRegistry.register(
1891
+ :class => Virtuozzo::SOAP::Types::Up2date::OsType,
1892
+ :schema_type => XSD::QName.new(NsTypes, "osType"),
1893
+ :schema_element => [
1894
+ ["platform", "SOAP::SOAPString", [0, 1]],
1895
+ ["name", "SOAP::SOAPString"],
1896
+ ["version", "SOAP::SOAPString", [0, 1]],
1897
+ ["kernel", "SOAP::SOAPString", [0, 1]]
1898
+ ]
1899
+ )
1900
+
1901
+ LiteralRegistry.register(
1902
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_statusType,
1903
+ :schema_type => XSD::QName.new(NsTypes, "env_statusType"),
1904
+ :schema_element => [
1905
+ ["state", "SOAP::SOAPInt", [0, 1]],
1906
+ ["transition", "SOAP::SOAPInt", [0, 1]]
1907
+ ]
1908
+ )
1909
+
1910
+ LiteralRegistry.register(
1911
+ :class => Virtuozzo::SOAP::Types::Up2date::QosType,
1912
+ :schema_type => XSD::QName.new(NsTypes, "qosType"),
1913
+ :schema_element => [
1914
+ ["id", "SOAP::SOAPString"],
1915
+ ["soft", "SOAP::SOAPLong", [0, 1]],
1916
+ ["hard", "SOAP::SOAPLong", [0, 1]],
1917
+ ["cur", "SOAP::SOAPLong", [0, 1]]
1918
+ ]
1919
+ )
1920
+
1921
+ LiteralRegistry.register(
1922
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_configType,
1923
+ :schema_type => XSD::QName.new(NsTypes, "env_configType"),
1924
+ :schema_element => [
1925
+ ["name", "SOAP::SOAPString", [0, 1]],
1926
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1927
+ ["domain", "SOAP::SOAPString", [0, 1]],
1928
+ ["hostname", "SOAP::SOAPString", [0, 1]],
1929
+ ["address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
1930
+ ["architecture", "SOAP::SOAPString", [0, 1]],
1931
+ ["os", "Virtuozzo::SOAP::Types::Up2date::OsType", [0, 1]],
1932
+ ["type", "SOAP::SOAPString", [0, 1]],
1933
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1934
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1935
+ ["base_sample_id", nil, [0, 1]],
1936
+ ["base_snapshot_id", nil, [0, 1]],
1937
+ ["child_type", "SOAP::SOAPString[]", [0, nil]]
1938
+ ]
1939
+ )
1940
+
1941
+ LiteralRegistry.register(
1942
+ :class => Virtuozzo::SOAP::Types::Up2date::Venv_configType,
1943
+ :schema_type => XSD::QName.new(NsTypes, "venv_configType"),
1944
+ :schema_basetype => XSD::QName.new(NsTypes, "env_configType"),
1945
+ :schema_element => [
1946
+ ["name", "SOAP::SOAPString", [0, 1]],
1947
+ ["description", "SOAP::SOAPBase64", [0, 1]],
1948
+ ["domain", "SOAP::SOAPString", [0, 1]],
1949
+ ["hostname", "SOAP::SOAPString", [0, 1]],
1950
+ ["address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
1951
+ ["architecture", "SOAP::SOAPString", [0, 1]],
1952
+ ["os", "Virtuozzo::SOAP::Types::Up2date::OsType", [0, 1]],
1953
+ ["type", "SOAP::SOAPString", [0, 1]],
1954
+ ["nameserver", "SOAP::SOAPString[]", [0, nil]],
1955
+ ["search_domain", "SOAP::SOAPString[]", [0, nil]],
1956
+ ["base_sample_id", nil, [0, 1]],
1957
+ ["base_snapshot_id", nil, [0, 1]],
1958
+ ["child_type", "SOAP::SOAPString[]", [0, nil]],
1959
+ ["qos", "Virtuozzo::SOAP::Types::Up2date::QosType[]", [0, nil]]
1960
+ ]
1961
+ )
1962
+
1963
+ LiteralRegistry.register(
1964
+ :class => Virtuozzo::SOAP::Types::Up2date::Native_configType,
1965
+ :schema_type => XSD::QName.new(NsTypes, "native_configType"),
1966
+ :schema_element => []
1967
+ )
1968
+
1969
+ LiteralRegistry.register(
1970
+ :class => Virtuozzo::SOAP::Types::Up2date::EnvType,
1971
+ :schema_type => XSD::QName.new(NsTypes, "envType"),
1972
+ :schema_element => [
1973
+ ["parent_eid", nil],
1974
+ ["eid", nil],
1975
+ ["status", "Virtuozzo::SOAP::Types::Up2date::Env_statusType", [0, 1]],
1976
+ ["alert", "SOAP::SOAPInt", [0, 1]],
1977
+ ["config", "Virtuozzo::SOAP::Types::Up2date::Env_configType", [0, 1]],
1978
+ ["virtual_config", "Virtuozzo::SOAP::Types::Up2date::Venv_configType", [0, 1]]
1979
+ ]
1980
+ )
1981
+
1982
+ LiteralRegistry.register(
1983
+ :class => Virtuozzo::SOAP::Types::Up2date::ProcessesType,
1984
+ :schema_type => XSD::QName.new(NsTypes, "processesType"),
1985
+ :schema_element => [
1986
+ ["run", "SOAP::SOAPInt"],
1987
+ ["zombie", "SOAP::SOAPInt"],
1988
+ ["sleep", "SOAP::SOAPInt"],
1989
+ ["uninterrupt", "SOAP::SOAPInt"],
1990
+ ["stopped", "SOAP::SOAPInt"],
1991
+ ["total", "SOAP::SOAPInt"]
1992
+ ]
1993
+ )
1994
+
1995
+ LiteralRegistry.register(
1996
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avgType,
1997
+ :schema_type => XSD::QName.new(NsTypes, "load_avgType"),
1998
+ :schema_element => [
1999
+ ["l1", "SOAP::SOAPDouble"],
2000
+ ["l2", "SOAP::SOAPDouble", [0, 1]],
2001
+ ["l3", "SOAP::SOAPDouble", [0, 1]]
2002
+ ]
2003
+ )
2004
+
2005
+ LiteralRegistry.register(
2006
+ :class => Virtuozzo::SOAP::Types::Up2date::Cpu_loadType,
2007
+ :schema_type => XSD::QName.new(NsTypes, "cpu_loadType"),
2008
+ :schema_element => [
2009
+ ["system", "SOAP::SOAPLong"],
2010
+ ["user", "SOAP::SOAPLong"],
2011
+ ["nice", "SOAP::SOAPLong"],
2012
+ ["idle", "SOAP::SOAPLong"]
2013
+ ]
2014
+ )
2015
+
2016
+ LiteralRegistry.register(
2017
+ :class => Virtuozzo::SOAP::Types::Up2date::CpuType,
2018
+ :schema_type => XSD::QName.new(NsTypes, "cpuType"),
2019
+ :schema_element => [
2020
+ ["mhz", "SOAP::SOAPInt"],
2021
+ ["name", "SOAP::SOAPString"],
2022
+ ["number", "SOAP::SOAPInt"],
2023
+ ["cores", "SOAP::SOAPInt"],
2024
+ ["hyperthreads", "SOAP::SOAPInt"],
2025
+ ["units", "SOAP::SOAPInt"],
2026
+ ["family", "SOAP::SOAPString"],
2027
+ ["model", "SOAP::SOAPString"],
2028
+ ["bogomips", "SOAP::SOAPInt"]
2029
+ ]
2030
+ )
2031
+
2032
+ LiteralRegistry.register(
2033
+ :class => Virtuozzo::SOAP::Types::Up2date::TransferType,
2034
+ :schema_type => XSD::QName.new(NsTypes, "transferType"),
2035
+ :schema_element => [
2036
+ ["input", "Virtuozzo::SOAP::Types::Up2date::TransferType::Input"],
2037
+ ["output", "Virtuozzo::SOAP::Types::Up2date::TransferType::Output"]
2038
+ ]
2039
+ )
2040
+
2041
+ LiteralRegistry.register(
2042
+ :class => Virtuozzo::SOAP::Types::Up2date::TransferType::Input,
2043
+ :schema_name => XSD::QName.new(NsTypes, "input"),
2044
+ :is_anonymous => true,
2045
+ :schema_qualified => true,
2046
+ :schema_element => [
2047
+ ["bytes", "SOAP::SOAPLong"],
2048
+ ["packets", "SOAP::SOAPLong", [0, 1]]
2049
+ ]
2050
+ )
2051
+
2052
+ LiteralRegistry.register(
2053
+ :class => Virtuozzo::SOAP::Types::Up2date::TransferType::Output,
2054
+ :schema_name => XSD::QName.new(NsTypes, "output"),
2055
+ :is_anonymous => true,
2056
+ :schema_qualified => true,
2057
+ :schema_element => [
2058
+ ["bytes", "SOAP::SOAPLong"],
2059
+ ["packets", "SOAP::SOAPLong", [0, 1]]
2060
+ ]
2061
+ )
2062
+
2063
+ LiteralRegistry.register(
2064
+ :class => Virtuozzo::SOAP::Types::Up2date::System_nodeType,
2065
+ :schema_type => XSD::QName.new(NsTypes, "system_nodeType"),
2066
+ :schema_element => [
2067
+ ["address", "Virtuozzo::SOAP::Types::Up2date::System_nodeType::Address"],
2068
+ ["login", "Virtuozzo::SOAP::Types::Up2date::System_nodeType::Login", [0, 1]]
2069
+ ]
2070
+ )
2071
+
2072
+ LiteralRegistry.register(
2073
+ :class => Virtuozzo::SOAP::Types::Up2date::System_nodeType::Address,
2074
+ :schema_name => XSD::QName.new(NsTypes, "address"),
2075
+ :is_anonymous => true,
2076
+ :schema_qualified => true,
2077
+ :schema_element => [
2078
+ ["ip", nil]
2079
+ ]
2080
+ )
2081
+
2082
+ LiteralRegistry.register(
2083
+ :class => Virtuozzo::SOAP::Types::Up2date::System_nodeType::Login,
2084
+ :schema_name => XSD::QName.new(NsTypes, "login"),
2085
+ :is_anonymous => true,
2086
+ :schema_qualified => true,
2087
+ :schema_element => [
2088
+ ["user", "SOAP::SOAPString"],
2089
+ ["password", "SOAP::SOAPBase64"]
2090
+ ]
2091
+ )
2092
+
2093
+ LiteralRegistry.register(
2094
+ :class => Virtuozzo::SOAP::Types::Up2date::ResourceType,
2095
+ :schema_type => XSD::QName.new(NsTypes, "resourceType"),
2096
+ :schema_element => [
2097
+ ["total", "SOAP::SOAPLong", [0, 1]],
2098
+ ["used", "SOAP::SOAPLong", [0, 1]],
2099
+ ["free", "SOAP::SOAPLong", [0, 1]],
2100
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2101
+ ["min", "SOAP::SOAPLong", [0, 1]],
2102
+ ["max", "SOAP::SOAPLong", [0, 1]]
2103
+ ]
2104
+ )
2105
+
2106
+ LiteralRegistry.register(
2107
+ :class => Virtuozzo::SOAP::Types::Up2date::IntervalType,
2108
+ :schema_type => XSD::QName.new(NsTypes, "intervalType"),
2109
+ :schema_element => [
2110
+ ["start_time", nil],
2111
+ ["end_time", nil]
2112
+ ]
2113
+ )
2114
+
2115
+ LiteralRegistry.register(
2116
+ :class => Virtuozzo::SOAP::Types::Up2date::StatsType,
2117
+ :schema_type => XSD::QName.new(NsTypes, "statsType"),
2118
+ :schema_element => [
2119
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2120
+ ["min", "SOAP::SOAPLong", [0, 1]],
2121
+ ["max", "SOAP::SOAPLong", [0, 1]],
2122
+ ["total", "SOAP::SOAPLong", [0, 1]],
2123
+ ["cur", "SOAP::SOAPLong", [0, 1]],
2124
+ ["soft", "SOAP::SOAPLong", [0, 1]],
2125
+ ["hard", "SOAP::SOAPLong", [0, 1]]
2126
+ ]
2127
+ )
2128
+
2129
+ LiteralRegistry.register(
2130
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_addressType,
2131
+ :schema_type => XSD::QName.new(NsTypes, "net_addressType"),
2132
+ :schema_element => [
2133
+ ["host", nil],
2134
+ ["mask", nil, [0, 1]]
2135
+ ]
2136
+ )
2137
+
2138
+ LiteralRegistry.register(
2139
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_classType,
2140
+ :schema_type => XSD::QName.new(NsTypes, "net_classType"),
2141
+ :schema_element => [
2142
+ ["id", "SOAP::SOAPString", [0, 1]],
2143
+ ["transfer", "Virtuozzo::SOAP::Types::Up2date::TransferType", [0, 1]]
2144
+ ]
2145
+ )
2146
+
2147
+ LiteralRegistry.register(
2148
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_rangeType,
2149
+ :schema_type => XSD::QName.new(NsTypes, "ip_rangeType"),
2150
+ :schema_element => [
2151
+ ["id", "SOAP::SOAPString", [0, 1]],
2152
+ ["start_ip", nil, [0, 1]],
2153
+ ["subnet_mask", "SOAP::SOAPInt", [0, 1]],
2154
+ ["comment", "SOAP::SOAPString", [0, 1]]
2155
+ ]
2156
+ )
2157
+
2158
+ LiteralRegistry.register(
2159
+ :class => Virtuozzo::SOAP::Types::Up2date::Sample_confType,
2160
+ :schema_type => XSD::QName.new(NsTypes, "sample_confType"),
2161
+ :schema_element => [
2162
+ ["env_config", "Virtuozzo::SOAP::Types::Up2date::Env_configType"],
2163
+ ["id", "SOAP::SOAPString", [0, 1]],
2164
+ ["name", "SOAP::SOAPString"],
2165
+ ["comment", "SOAP::SOAPBase64", [0, 1]],
2166
+ ["vt_version", "Virtuozzo::SOAP::Types::Up2date::Sample_confType::Vt_version", [0, 1]]
2167
+ ]
2168
+ )
2169
+
2170
+ LiteralRegistry.register(
2171
+ :class => Virtuozzo::SOAP::Types::Up2date::Sample_confType::Vt_version,
2172
+ :schema_name => XSD::QName.new(NsTypes, "vt_version"),
2173
+ :is_anonymous => true,
2174
+ :schema_qualified => true,
2175
+ :schema_element => [
2176
+ ["platform", "SOAP::SOAPString"],
2177
+ ["architecture", "SOAP::SOAPString"],
2178
+ ["vt_technology", "SOAP::SOAPString"]
2179
+ ]
2180
+ )
2181
+
2182
+ LiteralRegistry.register(
2183
+ :class => Virtuozzo::SOAP::Types::Up2date::InterfaceType,
2184
+ :schema_type => XSD::QName.new(NsTypes, "interfaceType"),
2185
+ :schema_element => [
2186
+ ["name", "SOAP::SOAPString"],
2187
+ ["bandwidth", "SOAP::SOAPInt", [0, 1]],
2188
+ ["transfer", "Virtuozzo::SOAP::Types::Up2date::TransferType", [0, 1]],
2189
+ ["ipaddress", nil, [0, 1]],
2190
+ ["flags", "SOAP::SOAPInt", [0, 1]]
2191
+ ]
2192
+ )
2193
+
2194
+ LiteralRegistry.register(
2195
+ :class => Virtuozzo::SOAP::Types::Up2date::Sys_infoType,
2196
+ :schema_type => XSD::QName.new(NsTypes, "sys_infoType"),
2197
+ :schema_element => [
2198
+ ["load_avg", "Virtuozzo::SOAP::Types::Up2date::Load_avgType"],
2199
+ ["processes", "Virtuozzo::SOAP::Types::Up2date::ProcessesType"],
2200
+ ["cpu_load", "Virtuozzo::SOAP::Types::Up2date::Cpu_loadType"],
2201
+ ["cpu_states", "Virtuozzo::SOAP::Types::Up2date::Cpu_loadType"],
2202
+ ["users", "SOAP::SOAPInt"],
2203
+ ["uptime", "SOAP::SOAPLong"],
2204
+ ["memory", "Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Memory", [0, 1]],
2205
+ ["swap", "Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Swap", [0, 1]]
2206
+ ]
2207
+ )
2208
+
2209
+ LiteralRegistry.register(
2210
+ :class => Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Memory,
2211
+ :schema_name => XSD::QName.new(NsTypes, "memory"),
2212
+ :is_anonymous => true,
2213
+ :schema_qualified => true,
2214
+ :schema_element => [
2215
+ ["total", "SOAP::SOAPLong", [0, 1]],
2216
+ ["used", "SOAP::SOAPLong"]
2217
+ ]
2218
+ )
2219
+
2220
+ LiteralRegistry.register(
2221
+ :class => Virtuozzo::SOAP::Types::Up2date::Sys_infoType::Swap,
2222
+ :schema_name => XSD::QName.new(NsTypes, "swap"),
2223
+ :is_anonymous => true,
2224
+ :schema_qualified => true,
2225
+ :schema_element => [
2226
+ ["total", "SOAP::SOAPLong", [0, 1]],
2227
+ ["used", "SOAP::SOAPLong"]
2228
+ ]
2229
+ )
2230
+
2231
+ LiteralRegistry.register(
2232
+ :class => Virtuozzo::SOAP::Types::Up2date::Ps_infoType,
2233
+ :schema_type => XSD::QName.new(NsTypes, "ps_infoType"),
2234
+ :schema_element => [
2235
+ ["process", "Virtuozzo::SOAP::Types::Up2date::Ps_infoType::C_Process[]", [1, nil]],
2236
+ ["param_id", "SOAP::SOAPString[]", [1, nil]],
2237
+ ["run", "SOAP::SOAPInt"],
2238
+ ["idle", "SOAP::SOAPInt"],
2239
+ ["zombie", "SOAP::SOAPInt"],
2240
+ ["sleep", "SOAP::SOAPInt"],
2241
+ ["uninterrupt", "SOAP::SOAPInt"],
2242
+ ["stopped", "SOAP::SOAPInt"],
2243
+ ["total", "SOAP::SOAPInt"]
2244
+ ]
2245
+ )
2246
+
2247
+ LiteralRegistry.register(
2248
+ :class => Virtuozzo::SOAP::Types::Up2date::Ps_infoType::C_Process,
2249
+ :schema_name => XSD::QName.new(NsTypes, "process"),
2250
+ :is_anonymous => true,
2251
+ :schema_qualified => true,
2252
+ :schema_element => [
2253
+ ["pid", "SOAP::SOAPInt"],
2254
+ ["param", "SOAP::SOAPBase64[]", [0, nil]]
2255
+ ]
2256
+ )
2257
+
2258
+ LiteralRegistry.register(
2259
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType,
2260
+ :schema_type => XSD::QName.new(NsTypes, "load_avg_statsType"),
2261
+ :schema_element => [
2262
+ ["l1", "Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L1"],
2263
+ ["l2", "Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L2", [0, 1]],
2264
+ ["l3", "Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L3", [0, 1]]
2265
+ ]
2266
+ )
2267
+
2268
+ LiteralRegistry.register(
2269
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L1,
2270
+ :schema_name => XSD::QName.new(NsTypes, "l1"),
2271
+ :is_anonymous => true,
2272
+ :schema_qualified => true,
2273
+ :schema_element => [
2274
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2275
+ ["min", "SOAP::SOAPLong", [0, 1]],
2276
+ ["max", "SOAP::SOAPLong", [0, 1]],
2277
+ ["cur", "SOAP::SOAPLong", [0, 1]]
2278
+ ]
2279
+ )
2280
+
2281
+ LiteralRegistry.register(
2282
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L2,
2283
+ :schema_name => XSD::QName.new(NsTypes, "l2"),
2284
+ :is_anonymous => true,
2285
+ :schema_qualified => true,
2286
+ :schema_element => [
2287
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2288
+ ["min", "SOAP::SOAPLong", [0, 1]],
2289
+ ["max", "SOAP::SOAPLong", [0, 1]],
2290
+ ["cur", "SOAP::SOAPLong", [0, 1]]
2291
+ ]
2292
+ )
2293
+
2294
+ LiteralRegistry.register(
2295
+ :class => Virtuozzo::SOAP::Types::Up2date::Load_avg_statsType::L3,
2296
+ :schema_name => XSD::QName.new(NsTypes, "l3"),
2297
+ :is_anonymous => true,
2298
+ :schema_qualified => true,
2299
+ :schema_element => [
2300
+ ["avg", "SOAP::SOAPLong", [0, 1]],
2301
+ ["min", "SOAP::SOAPLong", [0, 1]],
2302
+ ["max", "SOAP::SOAPLong", [0, 1]],
2303
+ ["cur", "SOAP::SOAPLong", [0, 1]]
2304
+ ]
2305
+ )
2306
+
2307
+ LiteralRegistry.register(
2308
+ :class => Virtuozzo::SOAP::Types::Up2date::Alert_dataType,
2309
+ :schema_type => XSD::QName.new(NsTypes, "alert_dataType"),
2310
+ :schema_basetype => XSD::QName.new(NsTypes, "event_dataType"),
2311
+ :schema_element => [
2312
+ ["type", "SOAP::SOAPInt"]
2313
+ ]
2314
+ )
2315
+
2316
+ LiteralRegistry.register(
2317
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_addressType,
2318
+ :schema_type => XSD::QName.new(NsTypes, "ip_addressType"),
2319
+ :schema_element => [
2320
+ ["ip", nil],
2321
+ ["netmask", nil, [0, 1]]
2322
+ ]
2323
+ )
2324
+
2325
+ LiteralRegistry.register(
2326
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_resourceType,
2327
+ :schema_type => XSD::QName.new(NsTypes, "env_resourceType"),
2328
+ :schema_element => [
2329
+ ["eid", nil],
2330
+ ["ip_pool", "Virtuozzo::SOAP::Types::Up2date::Ip_poolType", [0, 1]]
2331
+ ]
2332
+ )
2333
+
2334
+ LiteralRegistry.register(
2335
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_poolType,
2336
+ :schema_type => XSD::QName.new(NsTypes, "ip_poolType"),
2337
+ :schema_element => [ :choice,
2338
+ ["ip_range", "Virtuozzo::SOAP::Types::Up2date::Ip_poolType::Ip_range[]"],
2339
+ ["ip", "[]"]
2340
+ ]
2341
+ )
2342
+
2343
+ LiteralRegistry.register(
2344
+ :class => Virtuozzo::SOAP::Types::Up2date::Ip_poolType::Ip_range,
2345
+ :schema_name => XSD::QName.new(NsTypes, "ip_range"),
2346
+ :is_anonymous => true,
2347
+ :schema_qualified => true,
2348
+ :schema_element => [
2349
+ ["start_ip", nil],
2350
+ ["end_ip", nil]
2351
+ ]
2352
+ )
2353
+
2354
+ LiteralRegistry.register(
2355
+ :class => Virtuozzo::SOAP::Types::Up2date::UsageType,
2356
+ :schema_type => XSD::QName.new(NsTypes, "usageType"),
2357
+ :schema_element => [
2358
+ ["total", "SOAP::SOAPLong", [0, 1]],
2359
+ ["used", "SOAP::SOAPLong", [0, 1]],
2360
+ ["free", "SOAP::SOAPLong", [0, 1]]
2361
+ ]
2362
+ )
2363
+
2364
+ LiteralRegistry.register(
2365
+ :class => Virtuozzo::SOAP::Types::Up2date::Root_credentialType,
2366
+ :schema_type => XSD::QName.new(NsTypes, "root_credentialType"),
2367
+ :schema_basetype => XSD::QName.new(NsTypes, "credentialType"),
2368
+ :schema_element => [
2369
+ ["id", "SOAP::SOAPString"],
2370
+ ["policy", "SOAP::SOAPInt", [0, 1]],
2371
+ ["description", "SOAP::SOAPBase64", [0, 1]],
2372
+ ["cred", "Virtuozzo::SOAP::Types::Up2date::CredentialType[]", [0, nil]],
2373
+ ["objects", "Virtuozzo::SOAP::Types::Up2date::Root_credentialType::Objects", [0, 1]]
2374
+ ]
2375
+ )
2376
+
2377
+ LiteralRegistry.register(
2378
+ :class => Virtuozzo::SOAP::Types::Up2date::Root_credentialType::Objects,
2379
+ :schema_name => XSD::QName.new(NsTypes, "objects"),
2380
+ :is_anonymous => true,
2381
+ :schema_qualified => true,
2382
+ :schema_element => [
2383
+ ["eid", "SOAP::SOAPString[]", [0, nil]]
2384
+ ]
2385
+ )
2386
+
2387
+ LiteralRegistry.register(
2388
+ :class => Virtuozzo::SOAP::Types::Up2date::CredentialType,
2389
+ :schema_type => XSD::QName.new(NsTypes, "credentialType"),
2390
+ :schema_element => [
2391
+ ["id", "SOAP::SOAPString"],
2392
+ ["policy", "SOAP::SOAPInt", [0, 1]],
2393
+ ["description", "SOAP::SOAPBase64", [0, 1]],
2394
+ ["cred", "Virtuozzo::SOAP::Types::Up2date::CredentialType[]", [0, nil]]
2395
+ ]
2396
+ )
2397
+
2398
+ LiteralRegistry.register(
2399
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType,
2400
+ :schema_type => XSD::QName.new(NsTypes, "tokenType"),
2401
+ :schema_element => [
2402
+ ["user", nil],
2403
+ ["groups", "Virtuozzo::SOAP::Types::Up2date::TokenType::Groups", [0, 1]],
2404
+ ["deny_only_sids", "Virtuozzo::SOAP::Types::Up2date::TokenType::Deny_only_sids", [0, 1]],
2405
+ ["privileges", "Virtuozzo::SOAP::Types::Up2date::TokenType::Privileges", [0, 1]],
2406
+ ["source", "Virtuozzo::SOAP::Types::Up2date::TokenType::Source", [0, 1]]
2407
+ ]
2408
+ )
2409
+
2410
+ LiteralRegistry.register(
2411
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Groups,
2412
+ :schema_name => XSD::QName.new(NsTypes, "groups"),
2413
+ :is_anonymous => true,
2414
+ :schema_qualified => true,
2415
+ :schema_element => [
2416
+ ["sid", "[]", [1, nil]]
2417
+ ]
2418
+ )
2419
+
2420
+ LiteralRegistry.register(
2421
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Deny_only_sids,
2422
+ :schema_name => XSD::QName.new(NsTypes, "deny_only_sids"),
2423
+ :is_anonymous => true,
2424
+ :schema_qualified => true,
2425
+ :schema_element => [
2426
+ ["sid", "[]", [0, nil]]
2427
+ ]
2428
+ )
2429
+
2430
+ LiteralRegistry.register(
2431
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Privileges,
2432
+ :schema_name => XSD::QName.new(NsTypes, "privileges"),
2433
+ :is_anonymous => true,
2434
+ :schema_qualified => true,
2435
+ :schema_element => [
2436
+ ["privilege", "[]", [0, nil]]
2437
+ ]
2438
+ )
2439
+
2440
+ LiteralRegistry.register(
2441
+ :class => Virtuozzo::SOAP::Types::Up2date::TokenType::Source,
2442
+ :schema_name => XSD::QName.new(NsTypes, "source"),
2443
+ :is_anonymous => true,
2444
+ :schema_qualified => true,
2445
+ :schema_element => [
2446
+ ["name", "SOAP::SOAPString"],
2447
+ ["id", nil]
2448
+ ]
2449
+ )
2450
+
2451
+ LiteralRegistry.register(
2452
+ :class => Virtuozzo::SOAP::Types::Up2date::Connectivity_infoType,
2453
+ :schema_type => XSD::QName.new(NsTypes, "connectivity_infoType"),
2454
+ :schema_element => [
2455
+ ["protocol", "SOAP::SOAPString", [0, 1]],
2456
+ ["address", "SOAP::SOAPString"],
2457
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]]
2458
+ ]
2459
+ )
2460
+
2461
+ LiteralRegistry.register(
2462
+ :class => Virtuozzo::SOAP::Types::Up2date::Auth_nameType,
2463
+ :schema_type => XSD::QName.new(NsTypes, "auth_nameType"),
2464
+ :schema_element => [
2465
+ ["name", "SOAP::SOAPBase64", [0, 1]],
2466
+ ["domain", "SOAP::SOAPBase64", [0, 1]],
2467
+ ["realm", nil]
2468
+ ]
2469
+ )
2470
+
2471
+ LiteralRegistry.register(
2472
+ :class => Virtuozzo::SOAP::Types::Up2date::Connection_infoType,
2473
+ :schema_type => XSD::QName.new(NsTypes, "connection_infoType"),
2474
+ :schema_basetype => XSD::QName.new(NsTypes, "connectivity_infoType"),
2475
+ :schema_element => [
2476
+ ["protocol", "SOAP::SOAPString", [0, 1]],
2477
+ ["address", "SOAP::SOAPString"],
2478
+ ["port", "SOAP::SOAPUnsignedInt", [0, 1]],
2479
+ ["login", "Virtuozzo::SOAP::Types::Up2date::Auth_nameType", [0, 1]],
2480
+ ["password", "SOAP::SOAPBase64", [0, 1]]
2481
+ ]
2482
+ )
2483
+
2484
+ LiteralRegistry.register(
2485
+ :class => Virtuozzo::SOAP::Types::Up2date::Eid_listType,
2486
+ :schema_type => XSD::QName.new(NsTypes, "eid_listType"),
2487
+ :schema_element => [
2488
+ ["eid", "[]", [0, nil]]
2489
+ ]
2490
+ )
2491
+
2492
+ LiteralRegistry.register(
2493
+ :class => Virtuozzo::SOAP::Types::Up2date::Vt_infoType,
2494
+ :schema_type => XSD::QName.new(NsTypes, "vt_infoType"),
2495
+ :schema_element => [
2496
+ ["any", [nil, XSD::QName.new(NsXMLSchema, "anyType")]]
2497
+ ]
2498
+ )
2499
+
2500
+ LiteralRegistry.register(
2501
+ :class => Virtuozzo::SOAP::Types::Up2date::Vt_settingsType,
2502
+ :schema_type => XSD::QName.new(NsTypes, "vt_settingsType"),
2503
+ :schema_element => [
2504
+ ["default_sample_id", nil, [0, 1]]
2505
+ ]
2506
+ )
2507
+
2508
+ LiteralRegistry.register(
2509
+ :class => Virtuozzo::SOAP::Types::Up2date::UserType,
2510
+ :schema_type => XSD::QName.new(NsTypes, "userType"),
2511
+ :schema_element => [
2512
+ ["initial_group", "Virtuozzo::SOAP::Types::Up2date::UserType::Initial_group", [0, 1]],
2513
+ ["group", "Virtuozzo::SOAP::Types::Up2date::UserType::Group[]", [0, nil]],
2514
+ ["uid", "SOAP::SOAPInt", [0, 1]],
2515
+ ["shell", "SOAP::SOAPString", [0, 1]],
2516
+ ["password", "SOAP::SOAPBase64", [0, 1]],
2517
+ ["home_dir", "SOAP::SOAPString", [0, 1]],
2518
+ ["name", "SOAP::SOAPString", [0, 1]],
2519
+ ["comment", "SOAP::SOAPString", [0, 1]]
2520
+ ]
2521
+ )
2522
+
2523
+ LiteralRegistry.register(
2524
+ :class => Virtuozzo::SOAP::Types::Up2date::UserType::Initial_group,
2525
+ :schema_name => XSD::QName.new(NsTypes, "initial_group"),
2526
+ :is_anonymous => true,
2527
+ :schema_qualified => true,
2528
+ :schema_element => [
2529
+ ["name", "SOAP::SOAPString", [0, 1]],
2530
+ ["gid", "SOAP::SOAPInt", [0, 1]]
2531
+ ]
2532
+ )
2533
+
2534
+ LiteralRegistry.register(
2535
+ :class => Virtuozzo::SOAP::Types::Up2date::UserType::Group,
2536
+ :schema_name => XSD::QName.new(NsTypes, "group"),
2537
+ :is_anonymous => true,
2538
+ :schema_qualified => true,
2539
+ :schema_element => [
2540
+ ["name", "SOAP::SOAPString", [0, 1]],
2541
+ ["gid", "SOAP::SOAPInt", [0, 1]]
2542
+ ]
2543
+ )
2544
+
2545
+ LiteralRegistry.register(
2546
+ :class => Virtuozzo::SOAP::Types::Up2date::GroupType,
2547
+ :schema_type => XSD::QName.new(NsTypes, "groupType"),
2548
+ :schema_element => [
2549
+ ["user", "Virtuozzo::SOAP::Types::Up2date::GroupType::User[]", [0, nil]],
2550
+ ["member_group", "Virtuozzo::SOAP::Types::Up2date::GroupType::Member_group[]", [0, nil]],
2551
+ ["name", "SOAP::SOAPString", [0, 1]],
2552
+ ["gid", "SOAP::SOAPInt", [0, 1]]
2553
+ ]
2554
+ )
2555
+
2556
+ LiteralRegistry.register(
2557
+ :class => Virtuozzo::SOAP::Types::Up2date::GroupType::User,
2558
+ :schema_name => XSD::QName.new(NsTypes, "user"),
2559
+ :is_anonymous => true,
2560
+ :schema_qualified => true,
2561
+ :schema_element => [
2562
+ ["name", "SOAP::SOAPString"]
2563
+ ]
2564
+ )
2565
+
2566
+ LiteralRegistry.register(
2567
+ :class => Virtuozzo::SOAP::Types::Up2date::GroupType::Member_group,
2568
+ :schema_name => XSD::QName.new(NsTypes, "member_group"),
2569
+ :is_anonymous => true,
2570
+ :schema_qualified => true,
2571
+ :schema_element => [
2572
+ ["name", "SOAP::SOAPString", [0, 1]]
2573
+ ]
2574
+ )
2575
+
2576
+ LiteralRegistry.register(
2577
+ :class => Virtuozzo::SOAP::Types::Up2date::PackageType,
2578
+ :schema_type => XSD::QName.new(NsTypes, "packageType"),
2579
+ :schema_element => [
2580
+ ["name", "SOAP::SOAPString"],
2581
+ ["summary", "SOAP::SOAPString", [0, 1]],
2582
+ ["os", "Virtuozzo::SOAP::Types::Up2date::OsType", [0, 1]],
2583
+ ["description", "SOAP::SOAPString", [0, 1]],
2584
+ ["arch", "SOAP::SOAPString", [0, 1]],
2585
+ ["version", "SOAP::SOAPString", [0, 1]]
2586
+ ]
2587
+ )
2588
+
2589
+ LiteralRegistry.register(
2590
+ :class => Virtuozzo::SOAP::Types::Up2date::Event_dataType,
2591
+ :schema_type => XSD::QName.new(NsTypes, "event_dataType"),
2592
+ :schema_element => []
2593
+ )
2594
+
2595
+ LiteralRegistry.register(
2596
+ :class => Virtuozzo::SOAP::Types::Up2date::Named_listType,
2597
+ :schema_type => XSD::QName.new(NsTypes, "named_listType"),
2598
+ :schema_element => [
2599
+ ["name", "SOAP::SOAPString"],
2600
+ ["value", "SOAP::SOAPBase64[]", [0, nil]]
2601
+ ]
2602
+ )
2603
+
2604
+ LiteralRegistry.register(
2605
+ :class => Virtuozzo::SOAP::Types::Up2date::ModType,
2606
+ :schema_type => XSD::QName.new(NsTypes, "modType"),
2607
+ :schema_basetype => XSD::QName.new(NsTypes, "named_listType"),
2608
+ :schema_element => [
2609
+ ["name", "SOAP::SOAPString"],
2610
+ ["value", "SOAP::SOAPBase64[]", [0, nil]],
2611
+ ["op", "SOAP::SOAPInt", [0, 1]]
2612
+ ]
2613
+ )
2614
+
2615
+ LiteralRegistry.register(
2616
+ :class => Virtuozzo::SOAP::Types::Up2date::RealmType,
2617
+ :schema_type => XSD::QName.new(NsTypes, "realmType"),
2618
+ :schema_element => [
2619
+ ["id", nil, [0, 1]],
2620
+ ["type", "SOAP::SOAPInt"],
2621
+ ["name", "SOAP::SOAPString"],
2622
+ ["builtin", nil, [0, 1]]
2623
+ ]
2624
+ )
2625
+
2626
+ LiteralRegistry.register(
2627
+ :class => Virtuozzo::SOAP::Types::Up2date::EventType,
2628
+ :schema_type => XSD::QName.new(NsTypes, "eventType"),
2629
+ :schema_element => [
2630
+ ["eid", nil],
2631
+ ["time", nil],
2632
+ ["source", "SOAP::SOAPString"],
2633
+ ["category", "SOAP::SOAPString"],
2634
+ ["sid", nil, [0, 1]],
2635
+ ["count", "SOAP::SOAPInt"],
2636
+ ["id", nil],
2637
+ ["info", "Virtuozzo::SOAP::Types::Up2date::InfoType"],
2638
+ ["data", "Virtuozzo::SOAP::Types::Up2date::EventType::C_Data", [0, 1]]
2639
+ ]
2640
+ )
2641
+
2642
+ LiteralRegistry.register(
2643
+ :class => Virtuozzo::SOAP::Types::Up2date::EventType::C_Data,
2644
+ :schema_name => XSD::QName.new(NsTypes, "data"),
2645
+ :is_anonymous => true,
2646
+ :schema_qualified => true,
2647
+ :schema_element => [
2648
+ ["event_data", "Virtuozzo::SOAP::Types::Up2date::Event_dataType"]
2649
+ ]
2650
+ )
2651
+
2652
+ LiteralRegistry.register(
2653
+ :class => Virtuozzo::SOAP::Types::Up2date::InfoType,
2654
+ :schema_type => XSD::QName.new(NsTypes, "infoType"),
2655
+ :schema_element => [
2656
+ ["message", "SOAP::SOAPBase64"],
2657
+ ["translate", nil, [0, 1]],
2658
+ ["parameter", "Virtuozzo::SOAP::Types::Up2date::InfoType[]", [0, nil]],
2659
+ ["name", "SOAP::SOAPString"]
2660
+ ]
2661
+ )
2662
+
2663
+ LiteralRegistry.register(
2664
+ :class => Virtuozzo::SOAP::Types::Up2date::AceType,
2665
+ :schema_type => XSD::QName.new(NsTypes, "aceType"),
2666
+ :schema_element => [
2667
+ ["type", "SOAP::SOAPInt"],
2668
+ ["sid", nil],
2669
+ ["rights", "SOAP::SOAPBase64"]
2670
+ ]
2671
+ )
2672
+
2673
+ LiteralRegistry.register(
2674
+ :class => Virtuozzo::SOAP::Types::Up2date::Security_descriptorType,
2675
+ :schema_type => XSD::QName.new(NsTypes, "security_descriptorType"),
2676
+ :schema_element => [
2677
+ ["owner", nil],
2678
+ ["group", nil],
2679
+ ["dacl", "Virtuozzo::SOAP::Types::Up2date::Security_descriptorType::Dacl", [0, 1]]
2680
+ ]
2681
+ )
2682
+
2683
+ LiteralRegistry.register(
2684
+ :class => Virtuozzo::SOAP::Types::Up2date::Security_descriptorType::Dacl,
2685
+ :schema_name => XSD::QName.new(NsTypes, "dacl"),
2686
+ :is_anonymous => true,
2687
+ :schema_qualified => true,
2688
+ :schema_element => [
2689
+ ["ace", "Virtuozzo::SOAP::Types::Up2date::AceType[]", [0, nil]]
2690
+ ]
2691
+ )
2692
+
2693
+ LiteralRegistry.register(
2694
+ :class => Virtuozzo::SOAP::Types::Up2date::Env_security_objectType,
2695
+ :schema_type => XSD::QName.new(NsTypes, "env_security_objectType"),
2696
+ :schema_basetype => XSD::QName.new(NsTypes, "security_objectType"),
2697
+ :schema_element => [
2698
+ ["eid", nil]
2699
+ ]
2700
+ )
2701
+
2702
+ LiteralRegistry.register(
2703
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_deviceType,
2704
+ :schema_type => XSD::QName.new(NsTypes, "net_deviceType"),
2705
+ :schema_element => [
2706
+ ["id", "SOAP::SOAPString", [0, 1]],
2707
+ ["ip_address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
2708
+ ["dhcp", nil, [0, 1]],
2709
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
2710
+ ["status", "Virtuozzo::SOAP::Types::Up2date::Net_deviceType::Status", [0, 1]]
2711
+ ]
2712
+ )
2713
+
2714
+ LiteralRegistry.register(
2715
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_deviceType::Status,
2716
+ :schema_name => XSD::QName.new(NsTypes, "status"),
2717
+ :is_anonymous => true,
2718
+ :schema_qualified => true,
2719
+ :schema_element => [ :choice,
2720
+ ["up", nil],
2721
+ ["down", nil]
2722
+ ]
2723
+ )
2724
+
2725
+ LiteralRegistry.register(
2726
+ :class => Virtuozzo::SOAP::Types::Up2date::Voc_parameterType,
2727
+ :schema_type => XSD::QName.new(NsTypes, "voc_parameterType"),
2728
+ :schema_element => [
2729
+ ["id", "SOAP::SOAPString"],
2730
+ ["type", "SOAP::SOAPString", [0, 1]],
2731
+ ["min", "SOAP::SOAPString", [0, 1]],
2732
+ ["max", "SOAP::SOAPString", [0, 1]],
2733
+ ["long", "SOAP::SOAPString", [0, 1]],
2734
+ ["short", "SOAP::SOAPString", [0, 1]],
2735
+ ["category", "SOAP::SOAPString[]", [0, nil]],
2736
+ ["complex", "SOAP::SOAPString", [0, 1]],
2737
+ ["default", "SOAP::SOAPString", [0, 1]],
2738
+ ["measure", "SOAP::SOAPString", [0, 1]],
2739
+ ["data", nil, [0, 1]],
2740
+ ["name", nil, [0, 1]]
2741
+ ]
2742
+ )
2743
+
2744
+ LiteralRegistry.register(
2745
+ :class => Virtuozzo::SOAP::Types::Up2date::VocabularyType,
2746
+ :schema_type => XSD::QName.new(NsTypes, "vocabularyType"),
2747
+ :schema_element => [
2748
+ ["name", "SOAP::SOAPString"],
2749
+ ["parameter", "Virtuozzo::SOAP::Types::Up2date::Voc_parameterType[]", [0, nil]],
2750
+ ["category", "Virtuozzo::SOAP::Types::Up2date::Voc_parameterType[]", [0, nil]]
2751
+ ]
2752
+ )
2753
+
2754
+ LiteralRegistry.register(
2755
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_nicType,
2756
+ :schema_type => XSD::QName.new(NsTypes, "net_nicType"),
2757
+ :schema_basetype => XSD::QName.new(NsTypes, "net_deviceType"),
2758
+ :schema_element => [
2759
+ ["id", "SOAP::SOAPString", [0, 1]],
2760
+ ["ip_address", "Virtuozzo::SOAP::Types::Up2date::Ip_addressType[]", [0, nil]],
2761
+ ["dhcp", nil, [0, 1]],
2762
+ ["network_id", "SOAP::SOAPBase64", [0, 1]],
2763
+ ["status", "Virtuozzo::SOAP::Types::Up2date::Net_nicType::Status", [0, 1]],
2764
+ ["mac_address", "SOAP::SOAPString", [0, 1]]
2765
+ ]
2766
+ )
2767
+
2768
+ LiteralRegistry.register(
2769
+ :class => Virtuozzo::SOAP::Types::Up2date::Net_nicType::Status,
2770
+ :schema_name => XSD::QName.new(NsTypes, "status"),
2771
+ :is_anonymous => true,
2772
+ :schema_qualified => true,
2773
+ :schema_element => [ :choice,
2774
+ ["up", nil],
2775
+ ["down", nil]
2776
+ ]
2777
+ )
2778
+
2779
+ LiteralRegistry.register(
2780
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_statType,
2781
+ :schema_type => XSD::QName.new(NsTypes, "perf_statType"),
2782
+ :schema_element => [
2783
+ ["cur", "SOAP::SOAPAnySimpleType"],
2784
+ ["avg", "SOAP::SOAPAnySimpleType"],
2785
+ ["max", "SOAP::SOAPAnySimpleType"],
2786
+ ["min", "SOAP::SOAPAnySimpleType"]
2787
+ ]
2788
+ )
2789
+
2790
+ LiteralRegistry.register(
2791
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType,
2792
+ :schema_type => XSD::QName.new(NsTypes, "perf_dataType"),
2793
+ :schema_element => [
2794
+ ["eid", nil],
2795
+ ["v_class", ["Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class[]", XSD::QName.new(NsTypes, "class")], [0, nil]],
2796
+ ["interval", "Virtuozzo::SOAP::Types::Up2date::IntervalType"]
2797
+ ]
2798
+ )
2799
+
2800
+ LiteralRegistry.register(
2801
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance::Counter,
2802
+ :schema_name => XSD::QName.new(NsTypes, "counter"),
2803
+ :is_anonymous => true,
2804
+ :schema_qualified => true,
2805
+ :schema_element => [
2806
+ ["name", "SOAP::SOAPString"],
2807
+ ["value", "Virtuozzo::SOAP::Types::Up2date::Perf_statType"]
2808
+ ]
2809
+ )
2810
+
2811
+ LiteralRegistry.register(
2812
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance,
2813
+ :schema_name => XSD::QName.new(NsTypes, "instance"),
2814
+ :is_anonymous => true,
2815
+ :schema_qualified => true,
2816
+ :schema_element => [
2817
+ ["name", "SOAP::SOAPString", [0, 1]],
2818
+ ["counter", "Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance::Counter[]", [1, nil]]
2819
+ ]
2820
+ )
2821
+
2822
+ LiteralRegistry.register(
2823
+ :class => Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class,
2824
+ :schema_name => XSD::QName.new(NsTypes, "class"),
2825
+ :is_anonymous => true,
2826
+ :schema_qualified => true,
2827
+ :schema_element => [
2828
+ ["name", "SOAP::SOAPString"],
2829
+ ["instance", "Virtuozzo::SOAP::Types::Up2date::Perf_dataType::C_Class::Instance[]", [1, nil]]
2830
+ ]
2831
+ )
2832
+
2833
+ LiteralRegistry.register(
2834
+ :class => Virtuozzo::SOAP::Types::Up2date::Log_options_baseType,
2835
+ :schema_type => XSD::QName.new(NsTypes, "log_options_baseType"),
2836
+ :schema_element => []
2837
+ )
2838
+
2839
+ LiteralRegistry.register(
2840
+ :class => Virtuozzo::SOAP::Types::Up2date::Log_optionsType,
2841
+ :schema_type => XSD::QName.new(NsTypes, "log_optionsType"),
2842
+ :schema_basetype => XSD::QName.new(NsTypes, "log_options_baseType"),
2843
+ :schema_element => []
2844
+ )
2845
+
2846
+ LiteralRegistry.register(
2847
+ :class => Virtuozzo::SOAP::Types::Up2date::Transport_type,
2848
+ :schema_type => XSD::QName.new(NsTypes, "transport_type")
2849
+ )
2850
+
2851
+ LiteralRegistry.register(
2852
+ :class => Virtuozzo::SOAP::Types::Up2date::Yes_no_type,
2853
+ :schema_type => XSD::QName.new(NsTypes, "yes_no_type")
2854
+ )
2855
+
2856
+ LiteralRegistry.register(
2857
+ :class => Virtuozzo::SOAP::Types::Up2date::Packet_headerType,
2858
+ :schema_name => XSD::QName.new(NsVzaup2date_0, "packet_header"),
2859
+ :schema_element => [
2860
+ ["auth", "Virtuozzo::SOAP::Types::Up2date::AuthType", [0, 1]],
2861
+ ["cookie", "SOAP::SOAPString", [0, 1]],
2862
+ ["target", "SOAP::SOAPString[]", [0, nil]],
2863
+ ["origin", "SOAP::SOAPString", [0, 1]],
2864
+ ["src", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
2865
+ ["dst", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
2866
+ ["session", "SOAP::SOAPString", [0, 1]]
2867
+ ],
2868
+ :schema_attribute => {
2869
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
2870
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
2871
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
2872
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
2873
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
2874
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
2875
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
2876
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
2877
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
2878
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
2879
+ }
2880
+ )
2881
+
2882
+ LiteralRegistry.register(
2883
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType,
2884
+ :schema_name => XSD::QName.new(NsVzaup2date, "vzaup2date"),
2885
+ :schema_element => [ :choice,
2886
+ ["configuration", ["Virtuozzo::SOAP::Types::Up2date::ConfigurationType_", XSD::QName.new(NsProtocol, "configuration")]],
2887
+ ["ok", ["Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Ok[]", XSD::QName.new(NsProtocol, "ok")]],
2888
+ ["error", ["Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Error[]", XSD::QName.new(NsProtocol, "error")]],
2889
+ [
2890
+ ["get_config", "Virtuozzo::SOAP::Types::Up2date::Get_config[]"],
2891
+ ["set_config", "Virtuozzo::SOAP::Types::Up2date::Set_config[]"],
2892
+ ["list", "Virtuozzo::SOAP::Types::Up2date::List[]"],
2893
+ ["install", "Virtuozzo::SOAP::Types::Up2date::Install[]"],
2894
+ ["uninstall", "Virtuozzo::SOAP::Types::Up2date::Uninstall[]"]
2895
+ ],
2896
+ [
2897
+ ["config", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType[]"],
2898
+ ["update", "Virtuozzo::SOAP::Types::Up2date::UpdateType[]"]
2899
+ ]
2900
+ ]
2901
+ )
2902
+
2903
+ LiteralRegistry.register(
2904
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Ok,
2905
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
2906
+ :is_anonymous => true,
2907
+ :schema_qualified => true,
2908
+ :schema_element => []
2909
+ )
2910
+
2911
+ LiteralRegistry.register(
2912
+ :class => Virtuozzo::SOAP::Types::Up2date::Vzaup2dateType::Error,
2913
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
2914
+ :is_anonymous => true,
2915
+ :schema_qualified => true,
2916
+ :schema_element => [
2917
+ ["code", "SOAP::SOAPInt"],
2918
+ ["message", "SOAP::SOAPString", [0, 1]]
2919
+ ]
2920
+ )
2921
+
2922
+ LiteralRegistry.register(
2923
+ :class => Virtuozzo::SOAP::Types::Up2date::Get_configResponse,
2924
+ :schema_name => XSD::QName.new(NsVzaup2date, "get_configResponse"),
2925
+ :schema_element => [
2926
+ ["config", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType"]
2927
+ ]
2928
+ )
2929
+
2930
+ LiteralRegistry.register(
2931
+ :class => Virtuozzo::SOAP::Types::Up2date::Set_config,
2932
+ :schema_name => XSD::QName.new(NsVzaup2date, "set_config"),
2933
+ :schema_element => [
2934
+ ["config", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType"]
2935
+ ]
2936
+ )
2937
+
2938
+ LiteralRegistry.register(
2939
+ :class => Virtuozzo::SOAP::Types::Up2date::List,
2940
+ :schema_name => XSD::QName.new(NsVzaup2date, "list"),
2941
+ :schema_element => [
2942
+ ["update", "Virtuozzo::SOAP::Types::Up2date::UpdateType[]", [0, nil]]
2943
+ ]
2944
+ )
2945
+
2946
+ LiteralRegistry.register(
2947
+ :class => Virtuozzo::SOAP::Types::Up2date::ListResponse,
2948
+ :schema_name => XSD::QName.new(NsVzaup2date, "listResponse"),
2949
+ :schema_element => [
2950
+ ["update", "Virtuozzo::SOAP::Types::Up2date::UpdateType[]", [0, nil]]
2951
+ ]
2952
+ )
2953
+
2954
+ LiteralRegistry.register(
2955
+ :class => Virtuozzo::SOAP::Types::Up2date::Install,
2956
+ :schema_name => XSD::QName.new(NsVzaup2date, "install"),
2957
+ :schema_element => [
2958
+ ["update", "Virtuozzo::SOAP::Types::Up2date::Install::Update[]", [0, nil]],
2959
+ ["no_reboot", nil, [0, 1]],
2960
+ ["no_boot_loader", "SOAP::SOAPString", [0, 1]]
2961
+ ]
2962
+ )
2963
+
2964
+ LiteralRegistry.register(
2965
+ :class => Virtuozzo::SOAP::Types::Up2date::Install::Update,
2966
+ :schema_name => XSD::QName.new(NsVzaup2date, "update"),
2967
+ :is_anonymous => true,
2968
+ :schema_qualified => true,
2969
+ :schema_element => [
2970
+ ["id", "SOAP::SOAPString", [0, 1]],
2971
+ ["name", "SOAP::SOAPBase64", [0, 1]]
2972
+ ]
2973
+ )
2974
+
2975
+ LiteralRegistry.register(
2976
+ :class => Virtuozzo::SOAP::Types::Up2date::InstallResponse,
2977
+ :schema_name => XSD::QName.new(NsVzaup2date, "installResponse"),
2978
+ :schema_element => [
2979
+ ["update", "Virtuozzo::SOAP::Types::Up2date::UpdateType[]", [0, nil]]
2980
+ ]
2981
+ )
2982
+
2983
+ LiteralRegistry.register(
2984
+ :class => Virtuozzo::SOAP::Types::Up2date::Uninstall,
2985
+ :schema_name => XSD::QName.new(NsVzaup2date, "uninstall"),
2986
+ :schema_element => [
2987
+ ["update", "Virtuozzo::SOAP::Types::Up2date::Uninstall::Update[]", [1, nil]],
2988
+ ["no_reboot", nil, [0, 1]]
2989
+ ]
2990
+ )
2991
+
2992
+ LiteralRegistry.register(
2993
+ :class => Virtuozzo::SOAP::Types::Up2date::Uninstall::Update,
2994
+ :schema_name => XSD::QName.new(NsVzaup2date, "update"),
2995
+ :is_anonymous => true,
2996
+ :schema_qualified => true,
2997
+ :schema_element => [
2998
+ ["id", "SOAP::SOAPString", [0, 1]],
2999
+ ["name", "SOAP::SOAPBase64", [0, 1]]
3000
+ ]
3001
+ )
3002
+
3003
+ LiteralRegistry.register(
3004
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType,
3005
+ :schema_name => XSD::QName.new(NsVzaup2date, "config"),
3006
+ :schema_element => [
3007
+ ["connection", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection", [0, 1]],
3008
+ ["product", "Virtuozzo::SOAP::Types::Up2date::Product[]", [0, nil]],
3009
+ ["service", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service", [0, 1]]
3010
+ ]
3011
+ )
3012
+
3013
+ LiteralRegistry.register(
3014
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy::Type,
3015
+ :schema_name => XSD::QName.new(NsVzaup2date, "type"),
3016
+ :is_anonymous => true,
3017
+ :schema_qualified => true,
3018
+ :schema_element => [ :choice,
3019
+ ["explorer", nil],
3020
+ ["custom", nil],
3021
+ ["no_proxy", nil]
3022
+ ]
3023
+ )
3024
+
3025
+ LiteralRegistry.register(
3026
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy,
3027
+ :schema_name => XSD::QName.new(NsVzaup2date, "proxy"),
3028
+ :is_anonymous => true,
3029
+ :schema_qualified => true,
3030
+ :schema_element => [
3031
+ ["type", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy::Type", [0, 1]],
3032
+ ["server", "SOAP::SOAPString", [0, 1]],
3033
+ ["user", "SOAP::SOAPBase64", [0, 1]],
3034
+ ["password", "SOAP::SOAPBase64", [0, 1]]
3035
+ ]
3036
+ )
3037
+
3038
+ LiteralRegistry.register(
3039
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection,
3040
+ :schema_name => XSD::QName.new(NsVzaup2date, "connection"),
3041
+ :is_anonymous => true,
3042
+ :schema_qualified => true,
3043
+ :schema_element => [
3044
+ ["server", "SOAP::SOAPString"],
3045
+ ["user", "SOAP::SOAPBase64", [0, 1]],
3046
+ ["password", "SOAP::SOAPBase64", [0, 1]],
3047
+ ["proxy", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Connection::Proxy", [0, 1]],
3048
+ ["local_path", "SOAP::SOAPBase64", [0, 1]],
3049
+ ["log_path", "SOAP::SOAPBase64", [0, 1]]
3050
+ ]
3051
+ )
3052
+
3053
+ LiteralRegistry.register(
3054
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service::Check_period,
3055
+ :schema_name => XSD::QName.new(NsVzaup2date, "check_period"),
3056
+ :is_anonymous => true,
3057
+ :schema_qualified => true,
3058
+ :schema_element => [ :choice,
3059
+ ["sunday", nil],
3060
+ ["monday", nil],
3061
+ ["tuesday", nil],
3062
+ ["wednesday", nil],
3063
+ ["thursday", nil],
3064
+ ["friday", nil],
3065
+ ["saturday", nil]
3066
+ ]
3067
+ )
3068
+
3069
+ LiteralRegistry.register(
3070
+ :class => Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service,
3071
+ :schema_name => XSD::QName.new(NsVzaup2date, "service"),
3072
+ :is_anonymous => true,
3073
+ :schema_qualified => true,
3074
+ :schema_element => [
3075
+ ["autoreboot", nil, [0, 1]],
3076
+ ["check_period", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType::Service::Check_period", [0, 1]],
3077
+ ["hour", "SOAP::SOAPInt"],
3078
+ ["disabled", nil, [0, 1]]
3079
+ ]
3080
+ )
3081
+
3082
+ LiteralRegistry.register(
3083
+ :class => Virtuozzo::SOAP::Types::Up2date::UpdateType,
3084
+ :schema_name => XSD::QName.new(NsVzaup2date, "update"),
3085
+ :schema_element => [
3086
+ ["id", "SOAP::SOAPString", [0, 1]],
3087
+ ["name", "SOAP::SOAPBase64", [0, 1]],
3088
+ ["description", "SOAP::SOAPBase64", [0, 1]],
3089
+ ["size", "SOAP::SOAPLong", [0, 1]],
3090
+ ["reboot", nil, [0, 1]],
3091
+ ["version", "SOAP::SOAPString", [0, 1]],
3092
+ ["installed_version", "SOAP::SOAPString", [0, 1]],
3093
+ ["date", nil, [0, 1]]
3094
+ ]
3095
+ )
3096
+
3097
+ LiteralRegistry.register(
3098
+ :class => Virtuozzo::SOAP::Types::Up2date::Product,
3099
+ :schema_name => XSD::QName.new(NsVzaup2date, "product"),
3100
+ :schema_element => [
3101
+ [
3102
+ ["id", "SOAP::SOAPString"],
3103
+ ["name", "SOAP::SOAPBase64"],
3104
+ ["install", "Virtuozzo::SOAP::Types::Up2date::Product::Install"],
3105
+ ["source", "Virtuozzo::SOAP::Types::Up2date::Product::Source", [0, 1]],
3106
+ ["destination", "SOAP::SOAPBase64", [0, 1]]
3107
+ ]
3108
+ ]
3109
+ )
3110
+
3111
+ LiteralRegistry.register(
3112
+ :class => Virtuozzo::SOAP::Types::Up2date::Product::Install,
3113
+ :schema_name => XSD::QName.new(NsVzaup2date, "install"),
3114
+ :is_anonymous => true,
3115
+ :schema_qualified => true,
3116
+ :schema_element => [ :choice,
3117
+ ["manual", nil],
3118
+ ["automatic", nil],
3119
+ ["disabled", nil],
3120
+ ["auto_download", nil]
3121
+ ]
3122
+ )
3123
+
3124
+ LiteralRegistry.register(
3125
+ :class => Virtuozzo::SOAP::Types::Up2date::Product::Source,
3126
+ :schema_name => XSD::QName.new(NsVzaup2date, "source"),
3127
+ :is_anonymous => true,
3128
+ :schema_qualified => true,
3129
+ :schema_element => [
3130
+ ["value", "SOAP::SOAPBase64"],
3131
+ ["standard", "SOAP::SOAPBase64", [0, 1]]
3132
+ ]
3133
+ )
3134
+
3135
+ LiteralRegistry.register(
3136
+ :class => Virtuozzo::SOAP::Types::Up2date::Packet,
3137
+ :schema_name => XSD::QName.new(NsProtocol, "packet"),
3138
+ :schema_element => [
3139
+ ["auth", "Virtuozzo::SOAP::Types::Up2date::AuthType", [0, 1]],
3140
+ ["cookie", "SOAP::SOAPString", [0, 1]],
3141
+ ["target", "SOAP::SOAPString[]", [0, nil]],
3142
+ ["origin", "SOAP::SOAPString", [0, 1]],
3143
+ ["src", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
3144
+ ["dst", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
3145
+ ["session", "SOAP::SOAPString", [0, 1]],
3146
+ ["data", "Virtuozzo::SOAP::Types::Up2date::Packet::C_Data"]
3147
+ ],
3148
+ :schema_attribute => {
3149
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
3150
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
3151
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
3152
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
3153
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
3154
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
3155
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
3156
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
3157
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
3158
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
3159
+ }
3160
+ )
3161
+
3162
+ LiteralRegistry.register(
3163
+ :class => Virtuozzo::SOAP::Types::Up2date::Packet::C_Data,
3164
+ :schema_name => XSD::QName.new(NsProtocol, "data"),
3165
+ :is_anonymous => true,
3166
+ :schema_qualified => true,
3167
+ :schema_element => [
3168
+ ["operator", "Virtuozzo::SOAP::Types::Up2date::OperatorType[]"]
3169
+ ]
3170
+ )
3171
+
3172
+ LiteralRegistry.register(
3173
+ :class => Virtuozzo::SOAP::Types::Up2date::Packet_headerType,
3174
+ :schema_name => XSD::QName.new(NsProtocol, "packet_header"),
3175
+ :schema_element => [
3176
+ ["auth", "Virtuozzo::SOAP::Types::Up2date::AuthType", [0, 1]],
3177
+ ["cookie", "SOAP::SOAPString", [0, 1]],
3178
+ ["target", "SOAP::SOAPString[]", [0, nil]],
3179
+ ["origin", "SOAP::SOAPString", [0, 1]],
3180
+ ["src", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
3181
+ ["dst", "Virtuozzo::SOAP::Types::Up2date::RouteType", [0, 1]],
3182
+ ["session", "SOAP::SOAPString", [0, 1]]
3183
+ ],
3184
+ :schema_attribute => {
3185
+ XSD::QName.new(nil, "version") => "SOAP::SOAPString",
3186
+ XSD::QName.new(nil, "id") => "SOAP::SOAPString",
3187
+ XSD::QName.new(nil, "priority") => "SOAP::SOAPString",
3188
+ XSD::QName.new(nil, "time") => "SOAP::SOAPString",
3189
+ XSD::QName.new(nil, "progress") => "SOAP::SOAPString",
3190
+ XSD::QName.new(nil, "log") => "SOAP::SOAPString",
3191
+ XSD::QName.new(nil, "type") => "SOAP::SOAPInt",
3192
+ XSD::QName.new(nil, "timeout") => "SOAP::SOAPInt",
3193
+ XSD::QName.new(nil, "timeout_limit") => "SOAP::SOAPInt",
3194
+ XSD::QName.new(nil, "uid") => "SOAP::SOAPInt"
3195
+ }
3196
+ )
3197
+
3198
+ LiteralRegistry.register(
3199
+ :class => Virtuozzo::SOAP::Types::Up2date::OperatorType,
3200
+ :schema_name => XSD::QName.new(NsProtocol, "operator"),
3201
+ :schema_element => [ :choice,
3202
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"]
3203
+ ]
3204
+ )
3205
+
3206
+ LiteralRegistry.register(
3207
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType,
3208
+ :schema_name => XSD::QName.new(NsProtocol, "operator_periodic"),
3209
+ :schema_element => [ :choice,
3210
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"],
3211
+ ["ok", "Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Ok[]"],
3212
+ ["error", "Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Error[]"],
3213
+ [ :choice,
3214
+ ["start_monitor", "Virtuozzo::SOAP::Types::Up2date::Start_monitorType"],
3215
+ ["stop_monitor", "Virtuozzo::SOAP::Types::Up2date::Stop_monitorType"],
3216
+ ["set_period", "Virtuozzo::SOAP::Types::Up2date::Set_periodType", [0, 1]],
3217
+ ["report", nil, [0, 1]]
3218
+ ]
3219
+ ]
3220
+ )
3221
+
3222
+ LiteralRegistry.register(
3223
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Ok,
3224
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
3225
+ :is_anonymous => true,
3226
+ :schema_qualified => true,
3227
+ :schema_element => []
3228
+ )
3229
+
3230
+ LiteralRegistry.register(
3231
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_periodicType::Error,
3232
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
3233
+ :is_anonymous => true,
3234
+ :schema_qualified => true,
3235
+ :schema_element => [
3236
+ ["code", "SOAP::SOAPInt"],
3237
+ ["message", "SOAP::SOAPString", [0, 1]]
3238
+ ]
3239
+ )
3240
+
3241
+ LiteralRegistry.register(
3242
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType,
3243
+ :schema_name => XSD::QName.new(NsProtocol, "operator_functional"),
3244
+ :schema_element => [ :choice,
3245
+ ["configuration", "Virtuozzo::SOAP::Types::Up2date::ConfigurationType_"],
3246
+ ["ok", "Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Ok[]"],
3247
+ ["error", "Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Error[]"]
3248
+ ]
3249
+ )
3250
+
3251
+ LiteralRegistry.register(
3252
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Ok,
3253
+ :schema_name => XSD::QName.new(NsProtocol, "ok"),
3254
+ :is_anonymous => true,
3255
+ :schema_qualified => true,
3256
+ :schema_element => []
3257
+ )
3258
+
3259
+ LiteralRegistry.register(
3260
+ :class => Virtuozzo::SOAP::Types::Up2date::Operator_functionalType::Error,
3261
+ :schema_name => XSD::QName.new(NsProtocol, "error"),
3262
+ :is_anonymous => true,
3263
+ :schema_qualified => true,
3264
+ :schema_element => [
3265
+ ["code", "SOAP::SOAPInt"],
3266
+ ["message", "SOAP::SOAPString", [0, 1]]
3267
+ ]
3268
+ )
3269
+
3270
+ LiteralRegistry.register(
3271
+ :class => Virtuozzo::SOAP::Types::Up2date::Event_dataType,
3272
+ :schema_name => XSD::QName.new(NsTypes, "event_data"),
3273
+ :schema_element => []
3274
+ )
3275
+
3276
+ LiteralRegistry.register(
3277
+ :class => Virtuozzo::SOAP::Types::Up2date::Voc_parameterType,
3278
+ :schema_name => XSD::QName.new(NsTypes, "parameter"),
3279
+ :schema_element => [
3280
+ ["id", "SOAP::SOAPString"],
3281
+ ["type", "SOAP::SOAPString", [0, 1]],
3282
+ ["min", "SOAP::SOAPString", [0, 1]],
3283
+ ["max", "SOAP::SOAPString", [0, 1]],
3284
+ ["long", "SOAP::SOAPString", [0, 1]],
3285
+ ["short", "SOAP::SOAPString", [0, 1]],
3286
+ ["category", "SOAP::SOAPString[]", [0, nil]],
3287
+ ["complex", "SOAP::SOAPString", [0, 1]],
3288
+ ["default", "SOAP::SOAPString", [0, 1]],
3289
+ ["measure", "SOAP::SOAPString", [0, 1]],
3290
+ ["data", nil, [0, 1]],
3291
+ ["name", nil, [0, 1]]
3292
+ ]
3293
+ )
3294
+
3295
+ LiteralRegistry.register(
3296
+ :class => Virtuozzo::SOAP::Types::Up2date::Voc_parameterType,
3297
+ :schema_name => XSD::QName.new(NsTypes, "category"),
3298
+ :schema_element => [
3299
+ ["id", "SOAP::SOAPString"],
3300
+ ["type", "SOAP::SOAPString", [0, 1]],
3301
+ ["min", "SOAP::SOAPString", [0, 1]],
3302
+ ["max", "SOAP::SOAPString", [0, 1]],
3303
+ ["long", "SOAP::SOAPString", [0, 1]],
3304
+ ["short", "SOAP::SOAPString", [0, 1]],
3305
+ ["category", "SOAP::SOAPString[]", [0, nil]],
3306
+ ["complex", "SOAP::SOAPString", [0, 1]],
3307
+ ["default", "SOAP::SOAPString", [0, 1]],
3308
+ ["measure", "SOAP::SOAPString", [0, 1]],
3309
+ ["data", nil, [0, 1]],
3310
+ ["name", nil, [0, 1]]
3311
+ ]
3312
+ )
3313
+ end
3314
+
3315
+ end
3316
+ end
3317
+ end