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

Version Path
fog-0.0.42 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.41 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.40 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.39 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.38 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.37 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.36 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.35 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.34 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.33 lib/fog/slicehost/requests/get_backups.rb
fog-0.0.32 lib/fog/slicehost/requests/get_backups.rb