mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
662 B
Ruby
29 lines
662 B
Ruby
module Fog
|
|
module DNS
|
|
class Rackspace
|
|
class Real
|
|
def remove_domain(domain_id, options={})
|
|
|
|
validate_path_fragment :domain_id, domain_id
|
|
|
|
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
|
|
|
|
request(
|
|
:expects => [202, 204],
|
|
:method => 'DELETE',
|
|
:path => path
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|