Sha256: 6ce163e4a96dcdcc2635f338bac921ed320b314b3adebf12479e57c261326a2f

Contents?: true

Size: 1.68 KB

Versions: 67

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

67 entries across 67 versions & 7 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/requests/storage/get_container.rb
fog-1.21.0 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/requests/storage/get_container.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/requests/storage/get_container.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/requests/storage/get_container.rb
fog-1.20.0 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/requests/storage/get_container.rb
fog-1.19.0 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/requests/storage/get_container.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/requests/storage/get_container.rb