mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
ed44c02742
Create List Delete and Show of Volume
42 lines
1 KiB
Ruby
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
|