Sha256: 76d0e916fadc37d2613b6f5dd7cb1e54b8bcfded8aebe28a3b845891ed1a3d4c

Contents?: true

Size: 1.68 KB

Versions: 40

Compression:

Stored size: 1.68 KB

Contents

module Fog
  module Storage
    class OpenStack
      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?}
          request(
            :expects  => 200,
            :method   => 'GET',
            :path     => Fog::OpenStack.escape(container),
            :query    => {'format' => 'json'}.merge!(options)
          )
        end
      end
    end
  end
end

Version data entries

40 entries across 40 versions & 5 rubygems

Version Path
fog-openstack-0.1.10 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.9 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.8 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.7 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.6 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.5 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.4 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.3 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.2 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.1 lib/fog/openstack/requests/storage/get_container.rb
fog-openstack-0.1.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.37.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.36.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.35.0 lib/fog/openstack/requests/storage/get_container.rb
fog-2.0.0.pre.0 lib/fog/openstack/requests/storage/get_container.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/openstack/requests/storage/get_container.rb
fog-1.34.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.33.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.32.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.31.0 lib/fog/openstack/requests/storage/get_container.rb