Class: Aws::Ec2::QEc2DescribeBundleTasksParser
- Defined in:
- lib/ec2/ec2.rb
Overview
Instances: Wondows related part
Constant Summary
Constants inherited from AwsParser
AwsParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from AwsParser
Instance Method Summary collapse
Methods inherited from AwsParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from Aws::AwsParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Aws::AwsParser
Instance Method Details
#reset ⇒ Object
2211 2212 2213 |
# File 'lib/ec2/ec2.rb', line 2211 def reset @result = [] end |
#tagend(name) ⇒ Object
2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 |
# File 'lib/ec2/ec2.rb', line 2183 def tagend(name) case name # when 'requestId' then @bundle[:request_id] = @text when 'instanceId' then @bundle[:aws_instance_id] = @text when 'bundleId' then @bundle[:aws_id] = @text when 'bucket' then @bundle[:s3_bucket] = @text when 'prefix' then @bundle[:s3_prefix] = @text when 'startTime' then @bundle[:aws_start_time] = @text when 'updateTime' then @bundle[:aws_update_time] = @text when 'state' then @bundle[:aws_state] = @text when 'progress' then @bundle[:aws_progress] = @text when 'code' then @bundle[:aws_error_code] = @text when 'message' then @bundle[:aws_error_message] = @text when 'item' then @result << @bundle end end |
#tagstart(name, attributes) ⇒ Object
:nodoc:
2179 2180 2181 |
# File 'lib/ec2/ec2.rb', line 2179 def (name, attributes) @bundle = {} if name == 'item' end |