Sha256: dbd2596406679350d9ab3ddbe3012ee4b520214e58f0387471a905484f1b611e

Contents?: true

Size: 1.43 KB

Versions: 39

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

39 entries across 37 versions & 6 rubygems

Version Path
fog-rackspace-0.1.6 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/requests/block_storage/list_snapshots.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/requests/block_storage/list_snapshots.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-rackspace-0.1.5 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-rackspace-0.1.4 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-rackspace-0.1.3 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-rackspace-0.1.2 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-rackspace-0.1.1 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-rackspace-0.1.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.37.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.36.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.35.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-2.0.0.pre.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.34.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.33.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.32.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
fog-1.31.0 lib/fog/rackspace/requests/block_storage/list_snapshots.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/rackspace/requests/block_storage/list_snapshots.rb