Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 611 Bytes

UpdateDnsDomainRecordRequest.md

File metadata and controls

24 lines (18 loc) · 611 Bytes

VultrRuby::UpdateDnsDomainRecordRequest

Properties

Name Type Description Notes
name String The hostname for this DNS record. [optional]
data String The DNS data for this record type. [optional]
ttl Integer Time to Live in seconds. [optional]
priority Integer DNS priority. Does not apply to all record types. [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::UpdateDnsDomainRecordRequest.new(
  name: null,
  data: null,
  ttl: null,
  priority: null
)