2011-08-27 18:46:15 -04:00
|
|
|
module Fog
|
|
|
|
module DNS
|
|
|
|
class Rackspace
|
|
|
|
class Real
|
2011-08-28 10:53:43 -04:00
|
|
|
def remove_domain(domain_id, options={})
|
|
|
|
|
|
|
|
validate_path_fragment :domain_id, domain_id
|
2011-08-27 18:46:15 -04:00
|
|
|
|
|
|
|
path = "domains/#{domain_id}"
|
|
|
|
query_data = {}
|
|
|
|
|
|
|
|
if options.has_key? :delete_subdomains
|
|
|
|
query_data['deleteSubdomains'] = options[:delete_subdomains].to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
if !query_data.empty?
|
|
|
|
path = path + '?' + array_to_query_string(query_data)
|
|
|
|
end
|
|
|
|
|
2011-08-27 22:06:46 -04:00
|
|
|
request(
|
2011-08-27 18:46:15 -04:00
|
|
|
:expects => [202, 204],
|
|
|
|
:method => 'DELETE',
|
|
|
|
:path => path
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|