fog--fog/lib/fog/rackspace/requests/files/get_containers.rb

54 lines
1.2 KiB
Ruby
Raw Normal View History

2009-10-11 20:37:25 +00:00
unless Fog.mocking?
module Fog
module Rackspace
class Files
# List existing storage containers
#
# ==== Parameters
# * options<~Hash>:
# * 'limit'<~Integer> - Upper limit to number of results returned
# * 'marker'<~String> - Only return objects with name greater than this value
# ==== Returns
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * 'publicIp'<~String> - The acquired address
# * 'requestId'<~String> - Id of the request
def get_containers(options = {})
options = { 'format' => 'json' }.merge!(options)
query = []
for key, value in options
query << "#{key}=#{CGI.escape(value)}"
end
response = storage_request(
:expects => [200, 204],
:method => 'GET',
:path => '',
:query => query.join('&')
)
if response.status == 204
response.body = []
end
response
end
end
end
end
else
module Fog
module Rackspace
class Servers
def get_flavors
end
end
end
end
end