Sha256: dc7fc8b099fbd70939897c061c1370bb9f9518125a12e64aaafa9e5e6e8f4883
Contents?: true
Size: 759 Bytes
Versions: 20
Compression:
Stored size: 759 Bytes
Contents
module Fog module Storage class Brightbox 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) request( :expects => 204, :method => "HEAD", :path => Fog::Storage::Brightbox.escape(container), :query => { "format" => "json" } ) end end end end end
Version data entries
20 entries across 18 versions & 3 rubygems