Sha256: a92cb4bd142251fbca19ec477cabb5217b8bc73b7bd1f3c071f2d346c2bdbe15
Contents?: true
Size: 738 Bytes
Versions: 30
Compression:
Stored size: 738 Bytes
Contents
module Fog module Rackspace class Storage 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 response = request( :expects => 204, :method => 'HEAD', :path => '', :query => {'format' => 'json'} ) response end end class Mock def head_containers Fog::Mock.not_implemented end end end end end
Version data entries
30 entries across 30 versions & 3 rubygems