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_domains(domain_ids, options={})
|
2011-08-27 18:46:15 -04:00
|
|
|
|
|
|
|
path = "domains?" + domain_ids.collect { |domain_id| "id=#{domain_id}" }.join('&')
|
|
|
|
query_data = {}
|
|
|
|
|
|
|
|
if options.has_key? :delete_subdomains
|
|
|
|
query_data['deleteSubdomains'] = options[:delete_subdomains]
|
|
|
|
end
|
|
|
|
|
|
|
|
if !query_data.empty?
|
|
|
|
path = path + '&' + array_to_query_string(query_data)
|
|
|
|
end
|
|
|
|
|
|
|
|
request(
|
|
|
|
:expects => [202, 204],
|
|
|
|
:method => 'DELETE',
|
|
|
|
:path => path
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|