class Fog::Parsers::AWS::ECS::Base

Base parser for ResponseMetadata, RequestId

Public Instance Methods

end_element(name) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/ecs/base.rb, line 16
def end_element(name)
  case name
  when 'RequestId'
    @response['ResponseMetadata'][name] = value
  else
    super
  end
end
reset() click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/ecs/base.rb, line 7
def reset
  super
  @response = {'ResponseMetadata' => {}}
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/ecs/base.rb, line 12
def start_element(name, attrs = [])
  super
end