Sha256: eb68b5ffca8acb9e0fcdb3faa432e017c2ca519b464e905ea39f83ab942d12a7
Contents?: true
Size: 770 Bytes
Versions: 25
Compression:
Stored size: 770 Bytes
Contents
module Fog module Compute class Slicehost 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::Compute::Slicehost::GetBackups.new, :path => 'backups.xml' ) end end end end end
Version data entries
25 entries across 25 versions & 7 rubygems