Sha256: 5270ccbc6aeaac1cb8af8090699054240e58fc0e904db2f41472c1014525b7d0
Contents?: true
Size: 1012 Bytes
Versions: 50
Compression:
Stored size: 1012 Bytes
Contents
module Fog module Storage class Rackspace 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 # @raise [Fog::Storage::Rackspace::NotFound] - HTTP 404 # @raise [Fog::Storage::Rackspace::BadRequest] - HTTP 400 # @raise [Fog::Storage::Rackspace::InternalServerError] - HTTP 500 # @raise [Fog::Storage::Rackspace::ServiceError] def head_container(container) request( :expects => 204, :method => 'HEAD', :path => Fog::Rackspace.escape(container), :query => {'format' => 'json'} ) end end end end end
Version data entries
50 entries across 50 versions & 3 rubygems