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

45 lines
1.1 KiB
Ruby
Raw Normal View History

module Fog
module AWS
class SimpleDB
class Real
2009-09-08 04:25:50 +00: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
# * response<~Excon::Response>:
2009-09-08 04:25:50 +00:00
# * body<~Hash>:
# * 'BoxUsage'
# * 'RequestId'
def delete_domain(domain_name)
request(
'Action' => 'DeleteDomain',
'DomainName' => domain_name,
:parser => Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string)
)
2009-09-08 04:25:50 +00:00
end
end
class Mock
2009-09-08 04:25:50 +00:00
def delete_domain(domain_name)
2009-11-20 19:08:08 +00:00
response = Excon::Response.new
if @data[:domains].delete(domain_name)
2009-09-08 04:25:50 +00:00
response.status = 200
response.body = {
'BoxUsage' => Fog::AWS::Mock.box_usage,
'RequestId' => Fog::AWS::Mock.request_id
}
end
response
end
end
end
end
end