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