Sha256: 7e9815d7121ac15fc1d035d54b68bae16e4a747c0b87b7f5d9b2167047b2134b

Contents?: true

Size: 804 Bytes

Versions: 55

Compression:

Stored size: 804 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module RDS
        require 'fog/aws/parsers/rds/snapshot_parser'

        class CopyDBSnapshot < Fog::Parsers::AWS::RDS::SnapshotParser
          def reset
            @response = { 'CopyDBSnapshotResult' => {}, 'ResponseMetadata' => {} }
            super
          end

          def start_element(name, attrs = [])
            super
          end

          def end_element(name)
            case name
            when 'DBSnapshot' then
              @response['CopyDBSnapshotResult']['DBSnapshot'] = @db_snapshot
              @db_snapshot = fresh_snapshot
            when 'RequestId'
              @response['ResponseMetadata'][name] = value
            else
              super
            end
          end
        end
      end
    end
  end
end

Version data entries

55 entries across 53 versions & 2 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-3.0.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-2.0.1 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-2.0.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.4.1 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.4.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.3.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.2.1 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.2.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.1.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-1.0.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-0.13.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-0.12.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-0.11.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb
fog-aws-0.10.0 lib/fog/aws/parsers/rds/copy_db_snapshot.rb