Sha256: 1ef7ebaa06510ba0c5288feaabb417bb17adc871ee2eb5ca9bca15c9aa733d30

Contents?: true

Size: 1.99 KB

Versions: 37

Compression:

Stored size: 1.99 KB

Contents

module Fog
  module AWS
    class Compute
      class Real

        require 'fog/aws/parsers/compute/detach_volume'

        # Detach an Amazon EBS volume from a running instance
        #
        # ==== Parameters
        # * volume_id<~String> - Id of amazon EBS volume to associate with instance
        # * options<~Hash>:
        #   * 'Device'<~String> - Specifies how the device is exposed to the instance (e.g. "/dev/sdh")
        #   * 'Force'<~Boolean> - If true forces detach, can cause data loss/corruption
        #   * 'InstanceId'<~String> - Id of instance to associate volume with
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'attachTime'<~Time> - Time of attachment was initiated at
        #     * 'device'<~String> - Device as it is exposed to the instance
        #     * 'instanceId'<~String> - Id of instance for volume
        #     * 'requestId'<~String> - Id of request
        #     * 'status'<~String> - Status of volume
        #     * 'volumeId'<~String> - Reference to volume
        def detach_volume(volume_id, options = {})
          request({
            'Action'    => 'DetachVolume',
            'VolumeId'  => volume_id,
            :idempotent => true,
            :parser     => Fog::Parsers::AWS::Compute::DetachVolume.new
          }.merge!(options))
        end

      end

      class Mock

        def detach_volume(volume_id, options = {})
          response = Excon::Response.new
          response.status = 200
          if (volume = @data[:volumes][volume_id]) && !volume['attachmentSet'].empty?
            data = volume['attachmentSet'].pop
            volume['status'] = 'available'
            response.status = 200
            response.body = {
              'requestId' => Fog::AWS::Mock.request_id
            }.merge!(data)
            response
          else
            raise Fog::AWS::Compute::NotFound.new("The volume '#{volume_id}' does not exist.")
          end
        end

      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-0.4.0 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.34 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.33 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.32 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.31 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.30 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.29 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.28 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.27 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.26 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.25 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.24 lib/fog/aws/requests/compute/detach_volume.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.23 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.22 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.21 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.20 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.19 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.18 lib/fog/aws/requests/compute/detach_volume.rb
fog-0.3.17 lib/fog/aws/requests/compute/detach_volume.rb