mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
module Fog
|
|
module AWS
|
|
class SimpleDB
|
|
class Real
|
|
# 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>:
|
|
# * body<~Hash>:
|
|
# * 'BoxUsage'
|
|
# * 'RequestId'
|
|
def delete_domain(domain_name)
|
|
request(
|
|
'Action' => 'DeleteDomain',
|
|
'DomainName' => domain_name,
|
|
:idempotent => true,
|
|
:parser => Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string)
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def delete_domain(domain_name)
|
|
response = Excon::Response.new
|
|
if self.data[:domains].delete(domain_name)
|
|
response.status = 200
|
|
response.body = {
|
|
'BoxUsage' => Fog::AWS::Mock.box_usage,
|
|
'RequestId' => Fog::AWS::Mock.request_id
|
|
}
|
|
end
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|