Class: RightAws::Ec2::QEc2DescribeBundleTasksParser
- Inherits:
-
RightAWSParser
- Object
- RightAWSParser
- RightAws::Ec2::QEc2DescribeBundleTasksParser
- Defined in:
- lib/ec2/right_ec2_instances.rb
Overview
Instances: Windows related part
Constant Summary
Constants inherited from RightAWSParser
RightAWSParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from RightAWSParser
#full_tag_name, #result, #tag, #xml_lib, #xmlpath
Instance Method Summary collapse
Methods inherited from RightAWSParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from RightAws::RightAWSParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser
Instance Method Details
#reset ⇒ Object
714 715 716 |
# File 'lib/ec2/right_ec2_instances.rb', line 714 def reset @result = [] end |
#tagend(name) ⇒ Object
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 |
# File 'lib/ec2/right_ec2_instances.rb', line 698 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:
695 696 697 |
# File 'lib/ec2/right_ec2_instances.rb', line 695 def (name, attributes) @bundle = {} if name == 'item' end |