mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
39 lines
797 B
Ruby
39 lines
797 B
Ruby
unless Fog.mocking?
|
|
|
|
module Fog
|
|
class Slicehost
|
|
|
|
# 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::GetBackups.new,
|
|
:path => 'backups.xml'
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
class Slicehost
|
|
|
|
def get_backups
|
|
raise MockNotImplemented.new("Contributions welcome!")
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
end
|