fog--fog/lib/fog/aws/requests/simpledb/list_domains.rb

57 lines
1.6 KiB
Ruby

module Fog
module AWS
module SimpleDB
class Real
# 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>:
# * 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',
:parser => Fog::Parsers::AWS::SimpleDB::ListDomains.new(@nil_string)
}.merge!(options))
end
end
class Mock
def list_domains(options = {})
response = Excon::Response.new
keys = @data[:domains].keys
max = options['MaxNumberOfDomains'] || keys.size
offset = options['NextToken'] || 0
domains = []
for key, value in @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
end