Sha256: f2a14a01e3484e6570ec6d2faf4b4afc49d54c9b2b9285302f9d63a2c9ab803c

Contents?: true

Size: 1.61 KB

Versions: 36

Compression:

Stored size: 1.61 KB

Contents

module Fog
  module Parsers
    module AWS
      module AutoScaling

        class DescribeMetricCollectionTypes < Fog::Parsers::Base

          def reset
            reset_granularity
            reset_metric
            @results = { 'Granularities' => [], 'Metrics' => [] }
            @response = { 'DescribeMetricCollectionTypesResult' => {}, 'ResponseMetadata' => {} }
          end

          def reset_granularity
              @granularity = {}
          end

          def reset_metric
              @metric = {}
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'Granularities'
              @in_granularities = true
            when 'Metrics'
              @in_metrics = true
            end
          end

          def end_element(name)
            case name
            when 'member'
              if @in_granularities
                @results['Granularities'] << @granularity
                reset_granularity
              elsif @in_metrics
                @results['Metrics'] << @metric
                reset_metric
              end

            when 'Granularity'
               @granularity[name] = value
            when 'Granularities'
               @in_granularities = false

            when 'Metric'
               @metric[name] = value
            when 'Metrics'
               @in_metrics = false

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

            when 'DescribeMetricCollectionTypesResult'
              @response[name] = @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_metric_collection_types.rb
fog-test-again-1.6.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-parser-fix-1.6.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-1.6.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-1.5.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
rackspace-fog-1.4.2 lib/rackspace-fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-1.4.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
michiels-fog-1.3.1 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-1.3.1 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-1.3.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
fog-1.2.0 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb