class Fog::Parsers::AWS::AutoScaling::PutScalingPolicy
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb, line 11 def end_element(name) case name when 'PolicyARN' @results[name] = value when 'RequestId' @response['ResponseMetadata'][name] = value when 'PutScalingPolicyResponse' @response['PutScalingPolicyResult'] = @results end end
reset()
click to toggle source
# File lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb, line 6 def reset @results = {} @response = { 'PutScalingPolicyResult' => {}, 'ResponseMetadata' => {} } end