Sha256: 80e21c68c4971bdd2239ec959cd6ece7226193339da9103d7d5f084aca757d10

Contents?: true

Size: 1.23 KB

Versions: 11

Compression:

Stored size: 1.23 KB

Contents

require 'fog/core/collection'
require 'fog/aws/models/rds/snapshot'

module Fog
  module AWS
    class RDS

      class Snapshots < Fog::Collection
        attribute :server
        attribute :filters
        model Fog::AWS::RDS::Snapshot

        def initialize(attributes)
          self.filters ||= {}
          if attributes[:server]
            filters[:identifier] = attributes[:server].id
          end
          if attributes[:type]
            filters[:type] = attributes[:type]
          end
          super
        end

        def all(filters = filters)
          self.filters = filters
          data = connection.describe_db_snapshots(filters).body['DescribeDBSnapshotsResult']['DBSnapshots']
          load(data) # data is an array of attribute hashes
        end

        def get(identity)
          data = connection.describe_db_snapshots(:snapshot_id => identity).body['DescribeDBSnapshotsResult']['DBSnapshots'].first
          new(data) # data is an attribute hash
        rescue Fog::AWS::RDS::NotFound
          nil
        end

        def new(attributes = {})
          if server
            super({ :instance_id => server.id }.merge!(attributes))
          else
            super
          end
        end

      end
    end
  end
end

Version data entries

11 entries across 11 versions & 7 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/aws/models/rds/snapshots.rb
fog-nirvanix-1.8.1 lib/fog/aws/models/rds/snapshots.rb
fog-parser-fix-1.6.1 lib/fog/aws/models/rds/snapshots.rb
fog-test-again-1.6.0 lib/fog/aws/models/rds/snapshots.rb
fog-parser-fix-1.6.0 lib/fog/aws/models/rds/snapshots.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/aws/models/rds/snapshots.rb
fog-sgonyea-1.8.1 lib/fog/aws/models/rds/snapshots.rb
fog-1.8.0 lib/fog/aws/models/rds/snapshots.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/aws/models/rds/snapshots.rb
fog-1.7.0 lib/fog/aws/models/rds/snapshots.rb
fog-1.6.0 lib/fog/aws/models/rds/snapshots.rb