Sha256: 69a1c9065855352574724cb047a88e3c4f3e71c6e9b697aa88dfcb3dc0285664

Contents?: true

Size: 1.43 KB

Versions: 55

Compression:

Stored size: 1.43 KB

Contents

module Fog
  module Rackspace
    class BlockStorage
      class Real

        # Retrieves list of snapshots
        # @return [Excon::Response] response:
        #   * body [Hash]:
        #     * 'snapshots' [Array]: -
        #       * 'volume_id' [String]: - volume_id of the snapshot
        #       * 'display_description' [String]: - display description of snapshot
        #       * 'status' [String]: - status of snapshot
        #       * 'id' [String]: - id of snapshot
        #       * 'size' [Fixnum]: - size of the snapshot in GB
        #       * 'display_name' [String]: - display name of snapshot
        #       * 'created_at' [String]: - creation time of snapshot
        # @raise [Fog::Rackspace::BlockStorage::NotFound] - HTTP 404
        # @raise [Fog::Rackspace::BlockStorage::BadRequest] - HTTP 400
        # @raise [Fog::Rackspace::BlockStorage::InternalServerError] - HTTP 500
        # @raise [Fog::Rackspace::BlockStorage::ServiceError]
        # @see http://docs.rackspace.com/cbs/api/v1.0/cbs-devguide/content/GET_getSnapshotsSimple__v1__tenant_id__snapshots.html
        def list_snapshots
          request(
            :expects => [200],
            :method => 'GET',
            :path => 'snapshots'
          )
        end
      end

      class Mock
        def list_snapshots
          snapshots = self.data[:snapshots].values

          response(:body => {"snapshots" => snapshots})
        end
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 3 rubygems

Version Path
fog-1.22.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.21.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.20.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.19.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/rackspace/requests/block_storage/list_snapshots.rb