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, **) response = put( type: @record[:type], name: @record[:name], content: content, ** ) @value = response.result end |