Sha256: a64bb5e2eaea6381ec127e7b3ea7ebc06da2e2203c25de9aa255380a991b3de6

Contents?: true

Size: 1.37 KB

Versions: 29

Compression:

Stored size: 1.37 KB

Contents

module Fog
  module Compute
    class HPV2
      class Real
        # Detach a block storage volume from an existing server
        #
        # ==== Parameters
        # * 'server_id'<~String> - UUId of server to attach the volume to
        # * 'volume_id'<~String> - UUId of the volume to be attached to the server
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body: Empty
        def detach_volume(server_id, volume_id)
          response = request(
            :expects  => 202,
            :method   => 'DELETE',
            :path     => "servers/#{server_id}/os-volume_attachments/#{volume_id}"
          )
          response
        end
      end

      class Mock  # :nodoc:all
        def detach_volume(server_id, volume_id)
          response = Excon::Response.new
          if server = self.data[:servers][server_id]
            if server['volumeAttachments'] && server['volumeAttachments'].select {|v| v['volumeId'] == volume_id}
              data = server['volumeAttachments'].reject {|v| v['volumeId'] == volume_id}
              self.data[:servers][server_id]['volumeAttachments'] = data
              response.status = 202
            else
              raise Fog::Compute::HPV2::NotFound
            end
          else
            raise Fog::Compute::HPV2::NotFound
          end
          response
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.36.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.35.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.34.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.33.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.32.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.31.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.30.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.29.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.28.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.27.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.26.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.25.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/compute_v2/detach_volume.rb
fog-1.24.0 lib/fog/hp/requests/compute_v2/detach_volume.rb
ns-fog-1.22.11 lib/fog/hp/requests/compute_v2/detach_volume.rb
ns-fog-1.22.10 lib/fog/hp/requests/compute_v2/detach_volume.rb