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/compute/requests/slicehost/get_backups.rb
2011-02-09 16:31:57 -08:00

29 lines
770 B
Ruby

module Fog
module Slicehost
class Compute
class Real
require 'fog/compute/parsers/slicehost/get_backups'
# Get list of backups
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Array>:
# * 'date'<~Time> - Timestamp of backup creation
# * 'id'<~Integer> - Id of the backup
# * 'name'<~String> - Name of the backup
# * 'slice-id'<~Integer> - Id of slice the backup was made from
def get_backups
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Slicehost::Compute::GetBackups.new,
:path => 'backups.xml'
)
end
end
end
end
end