Sha256: de457034ed6c95b083918b418c0e64c660a8edd635d6c84bba30b3dbe34debfb

Contents?: true

Size: 1.14 KB

Versions: 37

Compression:

Stored size: 1.14 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
          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

37 entries across 37 versions & 8 rubygems

Version Path
fog-1.1.1 lib/fog/aws/models/rds/snapshots.rb
fog-1.1.0 lib/fog/aws/models/rds/snapshots.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/models/rds/snapshots.rb
tag-fog-1.0.1 lib/fog/aws/models/rds/snapshots.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/models/rds/snapshots.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/models/rds/snapshots.rb
fog-1.0.0 lib/fog/aws/models/rds/snapshots.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/models/rds/snapshots.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/models/rds/snapshots.rb
fog-0.11.0 lib/fog/aws/models/rds/snapshots.rb
fog-0.10.0 lib/fog/aws/models/rds/snapshots.rb
fog4encbs-0.9.0.1 lib/fog/aws/models/rds/snapshots.rb
fog4encbs-0.9.0 lib/fog/aws/models/rds/snapshots.rb
fog-0.9.0 lib/fog/aws/models/rds/snapshots.rb
fog-0.8.2 lib/fog/aws/models/rds/snapshots.rb
fog-0.8.1 lib/fog/aws/models/rds/snapshots.rb
fog-0.8.0 lib/fog/aws/models/rds/snapshots.rb