1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/compute/get_volume_details.rb
Marjun Pagalan ed44c02742 [openstack|volume] Volume Endpoints Support
Create List Delete and Show of Volume
2012-04-30 10:34:58 +08:00

42 lines
1 KiB
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(detailed=true)
response = Excon::Response.new
response.status = 200
response.body = {
'volume' => {
'id' => '1',
'displayName' => Fog::Mock.random_letters(rand(8) + 5),
'displayDescription' => Fog::Mock.random_letters(rand(12) + 10),
'size' => 3,
'volumeType' => nil,
'snapshotId' => '4',
'status' => 'online',
'availabilityZone' => 'nova',
'createdAt' => Time.now,
'attchments' => []
}
}
response
end
end
end
end
end