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