plainprograms-virtuozzo 0.5.3 → 0.6.0

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