Sha256: a6426cd16203695df6ceb20a2905665ba0f4f6028a553d6c06e225a7f9543b79

Contents?: true

Size: 1.61 KB

Versions: 55

Compression:

Stored size: 1.61 KB

Contents

require 'fog/core/collection'
require 'fog/rackspace/models/block_storage/snapshot'

module Fog
  module Rackspace
    class BlockStorage
      class Snapshots < Fog::Collection

        model Fog::Rackspace::BlockStorage::Snapshot

        # Returns list of snapshots
        # @return [Fog::Rackspace::BlockStorage::Snapshots] Retrieves a snapshots
        # @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 all
          data = service.list_snapshots.body['snapshots']
          load(data)
        end

        # Retrieves snapshot
        # @param [String] snapshot_id for snapshot to be returned
        # @return [Fog::Rackspace::BlockStorage::Volume]
        # @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_getSnapshot__v1__tenant_id__snapshots.html
        def get(snapshot_id)
          data = service.get_snapshot(snapshot_id).body['snapshot']
          new(data)
        rescue Fog::Rackspace::BlockStorage::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 3 rubygems

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