Sha256: d358fbe104b651571bb464304b98b2af52dc3f11f0a06337f5610efa3ccd31ff

Contents?: true

Size: 980 Bytes

Versions: 1

Compression:

Stored size: 980 Bytes

Contents

module Fog
  module AWS
    class RDS
      class Real

        require 'rackspace-fog/aws/parsers/rds/restore_db_instance_from_db_snapshot'

        # Restores a DB Instance from a DB Snapshot
        # http://docs.amazonwebservices.com/AmazonRDS/latest/APIReference/index.html?API_RestoreDBInstanceFromDBSnapshot.html
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        def restore_db_instance_from_db_snapshot(snapshot_id, db_name, opts={})
          request({
            'Action'  => 'RestoreDBInstanceFromDBSnapshot',
            'DBSnapshotIdentifier' => snapshot_id,
            'DBInstanceIdentifier' => db_name,
            :parser   => Fog::Parsers::AWS::RDS::RestoreDBInstanceFromDBSnapshot.new,
          }.merge(opts))
        end

      end

      class Mock

        def restore_db_instance_from_db_snapshot(snapshot_id, db_id, options={})
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb