Class: Aws::Ec2::QEc2DescribeBundleTasksParser

Inherits:
AwsParser
  • Object
show all
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

#result, #xml_lib, #xmlpath

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

#resetObject



2098
2099
2100
# File 'lib/ec2/ec2.rb', line 2098

def reset
  @result = []
end

#tagend(name) ⇒ Object



2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
# File 'lib/ec2/ec2.rb', line 2070

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:



2066
2067
2068
# File 'lib/ec2/ec2.rb', line 2066

def tagstart(name, attributes)
  @bundle = {} if name == 'item'
end