2010-03-14 23:11:43 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
module SimpleDB
|
|
|
|
class Real
|
2009-09-08 00:25:50 -04:00
|
|
|
|
|
|
|
# Delete a SimpleDB domain
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * domain_name<~String>:: Name of domain. Must be between 3 and 255 of the
|
|
|
|
# following characters: a-z, A-Z, 0-9, '_', '-' and '.'.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-09-08 00:25:50 -04:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'BoxUsage'
|
|
|
|
# * 'RequestId'
|
|
|
|
def delete_domain(domain_name)
|
2010-03-16 00:58:57 -04:00
|
|
|
request(
|
|
|
|
'Action' => 'DeleteDomain',
|
|
|
|
'DomainName' => domain_name,
|
|
|
|
:parser => Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string)
|
|
|
|
)
|
2009-09-08 00:25:50 -04:00
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
|
2010-03-14 23:11:43 -04:00
|
|
|
class Mock
|
2009-09-08 00:25:50 -04:00
|
|
|
|
|
|
|
def delete_domain(domain_name)
|
2009-11-20 14:08:08 -05:00
|
|
|
response = Excon::Response.new
|
2010-03-14 23:11:43 -04:00
|
|
|
if @data[:domains].delete(domain_name)
|
2009-09-08 00:25:50 -04:00
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'BoxUsage' => Fog::AWS::Mock.box_usage,
|
|
|
|
'RequestId' => Fog::AWS::Mock.request_id
|
|
|
|
}
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|