Sha256: 18290b5310dad0a5985b0772c34f9151dacf4efd7866c6b1093f5c2e2aed9ea1

Contents?: true

Size: 1.37 KB

Versions: 111

Compression:

Stored size: 1.37 KB

Contents

module Fog
  module Parsers
    module Compute
      module AWS

        class DescribeSnapshots < Fog::Parsers::Base

          def reset
            @response = { 'snapshotSet' => [] }
            @snapshot = { 'tagSet' => {} }
            @tag = {}
          end

          def start_element(name, attrs = [])
            super
            if name == 'tagSet'
              @in_tag_set = true
            end
          end

          def end_element(name)
            if @in_tag_set
              case name
              when 'item'
                @snapshot['tagSet'][@tag['key']] = @tag['value']
                @tag = {}
              when 'key', 'value'
                @tag[name] = value
              when 'tagSet'
                @in_tag_set = false
              end
            else
              case name
              when 'item'
                @response['snapshotSet'] << @snapshot
                @snapshot = { 'tagSet' => {} }
              when 'description', 'ownerId', 'progress', 'snapshotId', 'status', 'volumeId'
                @snapshot[name] ||= value
              when 'requestId'
                @response[name] = value
              when 'startTime'
                @snapshot[name] = Time.parse(value)
              when 'volumeSize'
                @snapshot[name] = value.to_i
              end
            end
          end

        end

      end
    end
  end
end

Version data entries

111 entries across 111 versions & 19 rubygems

Version Path
michiels-fog-1.3.1 lib/fog/aws/parsers/compute/describe_snapshots.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-1.3.1 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-1.3.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-1.2.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-1.1.2 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog_tractical-1.1.4 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog_tractical-1.1.3 lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-1.1.1 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-1.1.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_snapshots.rb