Sha256: 7c7b49b3ca1a8a2567a7fb30ea4e9ef94b8efe7084fc6f0cc814ca49e7d56030
Contents?: true
Size: 873 Bytes
Versions: 30
Compression:
Stored size: 873 Bytes
Contents
module Fog module Rackspace class Storage class Real # List number of objects and total bytes stored # # ==== Parameters # * container<~String> - Name of container to retrieve info for # # ==== Returns # * response<~Excon::Response>: # * headers<~Hash>: # * 'X-Container-Object-Count'<~String> - Count of containers # * 'X-Container-Bytes-Used'<~String> - Bytes used def head_container(container) response = request( :expects => 204, :method => 'HEAD', :path => container, :query => {'format' => 'json'} ) response end end class Mock def head_container(container) Fog::Mock.not_implemented end end end end end
Version data entries
30 entries across 30 versions & 3 rubygems