lib/fog/brightbox/requests/storage/head_containers.rb in fog-brightbox-0.6.1 vs lib/fog/brightbox/requests/storage/head_containers.rb in fog-brightbox-0.7.0
- old
+ new
@@ -1,25 +1,23 @@
module Fog
module Storage
class Brightbox
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
request(
:expects => 204,
- :method => 'HEAD',
- :path => '',
- :query => {'format' => 'json'}
+ :method => "HEAD",
+ :path => "",
+ :query => { "format" => "json" }
)
end
-
end
end
end
end