mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
72e52e70be
This reverts commit d6ecb19d24
.
Conflicts:
fog.gemspec
26 lines
647 B
Ruby
26 lines
647 B
Ruby
module Fog
|
|
module DNS
|
|
class Rackspace
|
|
class Real
|
|
def remove_domains(domain_ids, options={})
|
|
path = "domains?" + domain_ids.map { |domain_id| "id=#{domain_id}" }.join('&')
|
|
query_data = {}
|
|
|
|
if options.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
|