Sha256: 1a4bbc7ad15d056cd4028e4781f0fad672080458840043c37c319e382df72ca0
Contents?: true
Size: 746 Bytes
Versions: 14
Compression:
Stored size: 746 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 = storage_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
14 entries across 14 versions & 1 rubygems