# File lib/fog/brightbox/requests/storage/get_containers.rb, line 19
        def get_containers(options = {})
          options = options.reject { |_key, value| value.nil? }
          request(
            :expects  => [200, 204],
            :method   => "GET",
            :path     => "",
            :query    => { "format" => "json" }.merge!(options)
          )
        end