Sha256: 2e50e41a7f8fc3cfad1693ba97e1c8899c2819476b2c3225267d00899f8dd031
Contents?: true
Size: 799 Bytes
Versions: 79
Compression:
Stored size: 799 Bytes
Contents
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
Version data entries
79 entries across 79 versions & 12 rubygems