class Fog::Parsers::AWS::DNS::GetChange

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/dns/get_change.rb, line 10
def end_element(name)
  case name
  when 'Id'
    @response[name] = value.sub('/change/', '')
  when 'Status', 'SubmittedAt'
    @response[name] = value
  end
end
reset() click to toggle source
# File lib/fog/aws/parsers/dns/get_change.rb, line 6
def reset
  @response = {}
end