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