Sha256: c35168ba34a37f9edd1940b4b695f2bdd1a66ff4bd549359ea731c3e6b3a3ccb
Contents?: true
Size: 765 Bytes
Versions: 13
Compression:
Stored size: 765 Bytes
Contents
unless Fog.mocking? module Fog module Rackspace class Files # 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 end end else module Fog module Rackspace class Servers def get_flavors end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems