2012-08-28 17:10:47 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class RackspaceV2
|
|
|
|
class Real
|
2013-01-30 10:05:10 -05:00
|
|
|
|
|
|
|
# Retrieves attachment
|
|
|
|
# @param [String] server_id
|
|
|
|
# @param [String] volume_id
|
|
|
|
# @return [Excon::Response] response:
|
|
|
|
# * body [Hash]:
|
|
|
|
# * volumeAttachment [Hash]:
|
|
|
|
# * device [String] - The name of the device, such as /dev/xvdb. Specify auto for auto-assignment.
|
|
|
|
# * serverId [String] - The id of the server that attached the volume
|
|
|
|
# * id [String] - The id of the attachment
|
|
|
|
# * volumeId [String] - The id of the volume that was attached
|
2013-04-15 14:12:14 -04:00
|
|
|
# @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404
|
|
|
|
# @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400
|
|
|
|
# @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500
|
|
|
|
# @raise [Fog::Compute::RackspaceV2::ServiceError]
|
2013-01-30 10:05:10 -05:00
|
|
|
# @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/Get_Volume_Attachment_Details.html
|
2012-08-28 17:10:47 -04:00
|
|
|
def get_attachment(server_id, volume_id)
|
|
|
|
request(
|
|
|
|
:expects => [200, 203, 300],
|
|
|
|
:method => 'GET',
|
|
|
|
:path => "servers/#{server_id}/os-volume_attachments/#{volume_id}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2013-01-11 16:06:58 -05:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
def get_attachment(server_id, volume_id)
|
|
|
|
attachment = self.data[:volume_attachments].detect { |v| v["serverId"] == server_id && v["volumeId"] == volume_id }
|
|
|
|
|
|
|
|
response(:body => {"volumeAttachment" => attachment})
|
|
|
|
end
|
|
|
|
end
|
2012-08-28 17:10:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|