class Fog::Parsers::AWS::CloudWatch::PutMetricData

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/cloud_watch/put_metric_data.rb, line 14
def end_element(name)
  case name
  when 'RequestId'
    @response['ResponseMetadata'][name] = @value
  end
end
reset() click to toggle source
# File lib/fog/aws/parsers/cloud_watch/put_metric_data.rb, line 6
def reset
  @response = { 'ResponseMetadata' => {} }
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/cloud_watch/put_metric_data.rb, line 10
def start_element(name, attrs = [])
  super
end