Method: Cloudflare::DNS::Record#update_content

Defined in:
lib/cloudflare/dns.rb

#update_content(content, **options) ⇒ Object



37
38
39
40
41
42
43
44
45
46
# File 'lib/cloudflare/dns.rb', line 37

def update_content(content, **options)
	response = put(
		type: @record[:type],
		name: @record[:name],
		content: content,
		**options
	)

	@value = response.result
end