mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
45 lines
969 B
Ruby
45 lines
969 B
Ruby
unless Fog.mocking?
|
|
|
|
module Fog
|
|
module Rackspace
|
|
class Files
|
|
|
|
# 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
|
|
def head_container(container)
|
|
response = storage_request(
|
|
:expects => 204,
|
|
:method => 'HEAD',
|
|
:path => container,
|
|
:query => 'format=json'
|
|
)
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
module Rackspace
|
|
class Servers
|
|
|
|
def head_container(container)
|
|
raise MockNotImplemented.new("Contributions welcome!")
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|