Sha256: 996fac9f2ccbefe7d20d3d43915503fa2162cf4ed0c403338586f28ed147dcd9
Contents?: true
Size: 797 Bytes
Versions: 16
Compression:
Stored size: 797 Bytes
Contents
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
Version data entries
16 entries across 16 versions & 1 rubygems