Sha256: cda63241d6fd904d6dccb635c71f3e6fd46bf32edc47b0adad08ea8d58c70e80

Contents?: true

Size: 946 Bytes

Versions: 36

Compression:

Stored size: 946 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module AutoScaling

        class DescribeScalingProcessTypes < Fog::Parsers::Base

          def reset
            reset_process_type
            @results = { 'Processes' => [] }
            @response = { 'DescribeScalingProcessTypesResult' => {}, 'ResponseMetadata' => {} }
          end

          def reset_process_type
            @process_type = {}
          end

          def end_element(name)
            case name
            when 'member'
              @results['Processes'] << @process_type
              reset_process_type

            when 'ProcessName'
              @process_type[name] = value

            when 'RequestId'
              @response['ResponseMetadata'][name] = value

            when 'DescribeScalingProcessTypesResponse'
              @response['DescribeScalingProcessTypesResult'] = @results
            end
          end

        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 10 rubygems

Version Path
fog-parser-fix-1.6.1 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-test-again-1.6.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-parser-fix-1.6.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-1.6.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-1.5.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
rackspace-fog-1.4.2 lib/rackspace-fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-1.4.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
michiels-fog-1.3.1 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-1.3.1 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-1.3.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
fog-1.2.0 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb