1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/dns/modify_domain.rb
2012-04-25 10:31:28 -04:00

36 lines
799 B
Ruby

module Fog
module DNS
class Rackspace
class Real
def modify_domain(domain_id, options={})
validate_path_fragment :domain_id, domain_id
path = "domains/#{domain_id}"
data = {}
if options.has_key? :ttl
data['ttl'] = options[:ttl]
end
if options.has_key? :comment
data['comment'] = options[:comment]
end
if options.has_key? :email
data['emailAddress'] = options[:email]
end
if data.empty?
return
end
request(
:expects => [202, 204],
:method => 'PUT',
:path => path,
:body => Fog::JSON.encode(data)
)
end
end
end
end
end