1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/simpledb/list_domains.rb

64 lines
1.7 KiB
Ruby
Raw Normal View History

2009-09-08 00:25:50 -04:00
unless Fog.mocking?
module Fog
module AWS
class SimpleDB
# List SimpleDB domains
#
# ==== Parameters
# * options<~Hash> - options, defaults to {}
# * 'MaxNumberOfDomains'<~Integer> - number of domains to return
# between 1 and 100, defaults to 100
# * 'NextToken'<~String> - Offset token to start listing, defaults to nil
#
# ==== Returns
# * response<~Excon::Response>:
2009-09-08 00:25:50 -04:00
# * body<~Hash>:
# * 'BoxUsage'
# * 'Domains' - array of domain names.
# * 'NextToken' - offset to start with if there are are more domains to list
# * 'RequestId'
def list_domains(options = {})
request({
'Action' => 'ListDomains'
}.merge!(options), Fog::Parsers::AWS::SimpleDB::ListDomains.new(@nil_string))
end
end
2009-09-08 00:25:50 -04:00
end
end
2009-09-08 00:25:50 -04:00
else
module Fog
module AWS
class SimpleDB
def list_domains(options = {})
response = Fog::Response.new
keys = Fog::AWS::SimpleDB.data[:domains].keys
max = options['MaxNumberOfDomains'] || keys.size
offset = options['NextToken'] || 0
domains = []
for key, value in Fog::AWS::SimpleDB.data[:domains].keys[offset...max]
domains << key
end
response.status = 200
response.body = {
'BoxUsage' => Fog::AWS::Mock.box_usage,
'Domains' => domains,
'RequestId' => Fog::AWS::Mock.request_id
}
if max < keys.size
response.body['NextToken'] = max + 1
end
response
end
end
end
end
2009-09-08 00:25:50 -04:00
end