# File lib/fog/profitbricks/requests/compute/attach_volume.rb, line 46
        def attach_volume(datacenter_id, server_id, storage_id)
          volume = {
            :id => storage_id
          }

          request(
            :expects  => [202],
            :method   => 'POST',
            :path     => "/datacenters/#{datacenter_id}/servers/#{server_id}/volumes",
            :body     => Fog::JSON.encode(volume)
          )
        end