Sha256: 99744161bd7bbe5bbfafed314098bfe655b5ae29862baba80ef1569c87f10c45

Contents?: true

Size: 605 Bytes

Versions: 25

Compression:

Stored size: 605 Bytes

Contents

module Fog
  module Storage
    class OpenStack
      class Real
        # List number of containers and total bytes stored
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * headers<~Hash>:
        #     * 'X-Account-Container-Count'<~String> - Count of containers
        #     * 'X-Account-Bytes-Used'<~String> - Bytes used
        def head_containers
          request(
            :expects  => 200..299,
            :method   => 'HEAD',
            :path     => '',
            :query    => {'format' => 'json'}
          )
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
fog-1.30.0 lib/fog/openstack/requests/storage/head_containers.rb
fog-1.29.0 lib/fog/openstack/requests/storage/head_containers.rb
fog-1.28.0 lib/fog/openstack/requests/storage/head_containers.rb
fog-1.27.0 lib/fog/openstack/requests/storage/head_containers.rb
fog-1.26.0 lib/fog/openstack/requests/storage/head_containers.rb