class Fog::Parsers::AWS::AutoScaling::DescribeAutoScalingNotificationTypes
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb, line 19 def end_element(name) case name when 'member' if @in_auto_scaling_notification_types @results['AutoScalingNotificationTypes'] << value end when 'AutoScalingNotificationTypes' @in_auto_scaling_notification_types = false when 'RequestId' @response['ResponseMetadata'][name] = value when 'DescribeAutoScalingNotificationTypesResponse' @response['DescribeAutoScalingNotificationTypesResult'] = @results end end
reset()
click to toggle source
# File lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb, line 6 def reset @results = { 'AutoScalingNotificationTypes' => [] } @response = { 'DescribeAutoScalingNotificationTypesResult' => {}, 'ResponseMetadata' => {} } end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb, line 11 def start_element(name, attrs = []) super case name when 'AutoScalingNotificationTypes' @in_auto_scaling_notification_types = true end end