1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/cloud_watch/put_metric_data.rb

27 lines
497 B
Ruby
Raw Normal View History

2011-05-16 10:48:09 +01:00
module Fog
module Parsers
module AWS
module CloudWatch
class PutMetricData < Fog::Parsers::Base
def reset
@response = { 'ResponseMetadata' => {} }
end
def start_element(name, attrs = [])
super
end
2011-09-10 12:32:12 +02:00
2011-05-16 10:48:09 +01:00
def end_element(name)
2011-09-10 12:32:12 +02:00
case name
2011-05-16 10:48:09 +01:00
when 'RequestId'
@response['ResponseMetadata'][name] = @value
end
end
end
end
end
end
end