Sha256: 6e8d171ec1af899623e83cc186aea36373248b6661ecb4334d1144b8d3bd6107

Contents?: true

Size: 1.46 KB

Versions: 61

Compression:

Stored size: 1.46 KB

Contents

module Fog
  module Parsers
    module AWS
      module CloudWatch

        class ListMetrics < Fog::Parsers::Base

          def reset
            @response = { 'ListMetricsResult' => {'Metrics' => []}, 'ResponseMetadata' => {} }
            reset_metric
          end

          def reset_metric
            @metric = {'Dimensions' => []}
          end

          def reset_dimension
            @dimension = {}
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'Dimensions'
              @in_dimensions = true
            when 'member'
              if @in_dimensions
                reset_dimension
              end
            end
          end

          def end_element(name)
            case name
            when 'Name', 'Value'
              @dimension[name] = value
            when 'Namespace', 'MetricName'
              @metric[name] = value
            when 'Dimensions'
              @in_dimensions = false
            when 'NextMarker', 'NextToken'
              @response['ListMetricsResult'][name] = value
            when 'RequestId'
              @response['ResponseMetadata'][name] = value
            when 'member'
              if !@in_dimensions
                @response['ListMetricsResult']['Metrics'] << @metric
                reset_metric
              else
                @metric['Dimensions'] << @dimension
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.15.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
gapinc-fog-1.14.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.14.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.13.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
gapinc-fog-1.12.1.2 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
gapinc-fog-1.12.1.1 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
gapinc-fog-1.12.1a lib/fog/aws/parsers/cloud_watch/list_metrics.rb
gapinc-fog-1.12.1 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.12.1 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.12.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
hpfog-0.0.20 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/aws/parsers/cloud_watch/list_metrics.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.11.1 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.11.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-1.10.1 lib/fog/aws/parsers/cloud_watch/list_metrics.rb
fog-test-me-1.10.0 lib/fog/aws/parsers/cloud_watch/list_metrics.rb