Method: Fog::Compute::Slicehost::Real#get_backups

Defined in:
lib/fog/slicehost/requests/compute/get_backups.rb

#get_backupsObject

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


17
18
19
20
21
22
23
24
# File 'lib/fog/slicehost/requests/compute/get_backups.rb', line 17

def get_backups
  request(
    :expects  => 200,
    :method   => 'GET',
    :parser   => Fog::Parsers::Compute::Slicehost::GetBackups.new,
    :path     => 'backups.xml'
  )
end