Sha256: 29435f1ecddf959e15845d9616aa73ad5b02b2512250e4a64eb88d3fb2b0dbaa
Contents?: true
Size: 872 Bytes
Versions: 37
Compression:
Stored size: 872 Bytes
Contents
module Fog module Slicehost class Compute class Real require 'fog/slicehost/parsers/compute/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 class Mock def get_backups Fog::Mock.not_implemented end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems