Sha256: 8c4872948a15c9cdb016c97cbed8669e70a41951a37126a11ce61ad9cbfef548
Contents?: true
Size: 632 Bytes
Versions: 9
Compression:
Stored size: 632 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 end end end
Version data entries
9 entries across 9 versions & 1 rubygems