mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
33 lines
655 B
Ruby
33 lines
655 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def get_volume_details(volume_id)
|
|
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => "os-volumes/#{volume_id}"
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_volume_details(volume_id)
|
|
response = Excon::Response.new
|
|
if data = self.data[:volumes][volume_id]
|
|
response.status = 200
|
|
response.body = { 'volume' => data }
|
|
response
|
|
else
|
|
raise Fog::Compute::OpenStack::NotFound
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|