Sha256: d9e28aec4c11c8551c23c5a6605fb2dcdd60cfb98115aaedbe91a80203ee5d38

Contents?: true

Size: 1.75 KB

Versions: 28

Compression:

Stored size: 1.75 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 = {})
          response = request(
            :expects  => 200,
            :method   => 'GET',
            :path     => container,
            :query    => {'format' => 'json'}.merge!(options)
          )
          response
        end

      end

      class Mock

        def get_container(container, options = {})
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

28 entries across 28 versions & 3 rubygems

Version Path
phpfog-fog-0.4.1.3 lib/fog/storage/requests/rackspace/get_container.rb
phpfog-fog-0.4.1.2 lib/fog/storage/requests/rackspace/get_container.rb
phpfog-fog-0.4.1.1 lib/fog/storage/requests/rackspace/get_container.rb
phpfog-fog-0.4.1 lib/fog/storage/requests/rackspace/get_container.rb
fog-0.4.1 lib/fog/storage/requests/rackspace/get_container.rb
fog-0.4.0 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.34 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.33 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.32 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.31 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.30 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.29 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.28 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.27 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.26 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.25 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.24 lib/fog/rackspace/requests/storage/get_container.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.23 lib/fog/rackspace/requests/storage/get_container.rb
fog-0.3.22 lib/fog/rackspace/requests/storage/get_container.rb