Sha256: 9b3744de8bbfd4a6101e5933fbdc278e1b32c8ab70d157c6e2cf97d39aa08e96
Contents?: true
Size: 734 Bytes
Versions: 11
Compression:
Stored size: 734 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 end end end end
Version data entries
11 entries across 11 versions & 1 rubygems