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/volume/get_snapshot_details.rb

40 lines
901 B
Ruby
Raw Normal View History

module Fog
2012-04-09 23:45:14 -04:00
module Volume
class OpenStack
class Real
def get_snapshot_details(snapshot_id)
request(
:expects => 200,
:method => 'GET',
:path => "snapshots/#{snapshot_id}"
)
end
end
class Mock
def get_snapshot_details(detailed=true)
response = Excon::Response.new
response.status = 200
response.body = {
'snapshot' => {
'id' => '1',
'display_name' => 'Snapshot1',
'display_description' => 'Volume1 snapshot',
'size' => 1,
'volume_id' => '1',
'status' => 'available',
'created_at' => Time.now
}
}
response
end
end
end
end
end