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