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
43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def list_volumes(detailed=true)
|
|
|
|
path = detailed ? 'os-volumes/detail' : 'os-volumes'
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => path
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def list_volumes(detailed=true)
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = {
|
|
'volumes' => [
|
|
{ 'id' => '1',
|
|
'displayName' => Fog::Mock.random_letters(rand(8) + 5),
|
|
'displayDescription' => Fog::Mock.random_letters(rand(12) + 10),
|
|
'size' => 3,
|
|
'status' => 'online',
|
|
'snapshotId' => '4',
|
|
'volumeType' => nil,
|
|
'availabilityZone' => 'nova',
|
|
'createdAt' => Time.now,
|
|
'attchments' => []}
|
|
]
|
|
}
|
|
response
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|