Sha256: 3d49fc398cf61f6e2b6ae76e5d3b7d0678a9b82e8a9518416fae95d006797731

Contents?: true

Size: 1.68 KB

Versions: 5

Compression:

Stored size: 1.68 KB

Contents

module Fog
  module Rackspace
    class Storage
      class Real

        # Get details for container and total bytes stored
        #
        # ==== Parameters
        # * container<~String> - Name of container to retrieve info for
        # * options<~String>:
        #   * 'limit'<~String> - Maximum number of objects to return
        #   * 'marker'<~String> - Only return objects whose name is greater than marker
        #   * 'prefix'<~String> - Limits results to those starting with prefix
        #   * 'path'<~String> - Return objects nested in the pseudo path
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * headers<~Hash>:
        #     * 'X-Account-Container-Count'<~String> - Count of containers
        #     * 'X-Account-Bytes-Used'<~String> - Bytes used
        #   * body<~Array>:
        #     * 'bytes'<~Integer> - Number of bytes used by container
        #     * 'count'<~Integer> - Number of items in container
        #     * 'name'<~String> - Name of container
        #     * item<~Hash>:
        #       * 'bytes'<~String> - Size of object
        #       * 'content_type'<~String> Content-Type of object
        #       * 'hash'<~String> - Hash of object (etag?)
        #       * 'last_modified'<~String> - Last modified timestamp
        #       * 'name'<~String> - Name of object
        def get_container(container, options = {})
          options = options.reject {|key, value| value.nil?}
          response = request(
            :expects  => 200,
            :method   => 'GET',
            :path     => container,
            :query    => {'format' => 'json'}.merge!(options)
          )
          response
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fog-0.7.1 lib/fog/storage/requests/rackspace/get_container.rb
fog-0.7.0 lib/fog/storage/requests/rackspace/get_container.rb
fog-0.6.0 lib/fog/storage/requests/rackspace/get_container.rb
fog-0.5.3 lib/fog/storage/requests/rackspace/get_container.rb
fog-0.5.2 lib/fog/storage/requests/rackspace/get_container.rb