Sha256: 84c8bd81c99f8795d26fdc5dffe93984f08a0710ed67aa6250b65b4bf59e875c

Contents?: true

Size: 1.01 KB

Versions: 32

Compression:

Stored size: 1.01 KB

Contents

module Fog
  module Compute
    class OpenStack
      class Real

        def attach_volume(volume_id, server_id, device)
          data = {
            'volumeAttachment' => {
              'volumeId' => volume_id.to_s,
              'device'   => device
            }
          }
          request(
            :body     => Fog::JSON.encode(data),
            :expects  => [200, 202],
            :method   => 'POST',
            :path     => "servers/%s/os-volume_attachments" % [server_id]
          )
        end

      end

      class Mock

        def attach_volume(volume_id, server_id, device)
          response = Excon::Response.new
          response.status = 200
          data = {
             'id'       => volume_id,
             'volumeId' => volume_id,
             'serverId' => server_id,
             'device'   => device
          }
          self.data[:volumes][volume_id]['attachments'] << data
          response.body = { 'volumeAttachment' => data }
          response
        end

      end

    end
  end
end

Version data entries

32 entries across 32 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/requests/compute/attach_volume.rb
fog-1.21.0 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/requests/compute/attach_volume.rb
fog-1.20.0 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/requests/compute/attach_volume.rb
fog-1.19.0 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/openstack/requests/compute/attach_volume.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/openstack/requests/compute/attach_volume.rb