Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 744 Bytes

CreateDnsDomainRecordRequest.md

File metadata and controls

26 lines (20 loc) · 744 Bytes

VultrRuby::CreateDnsDomainRecordRequest

Properties

Name Type Description Notes
name String The hostname for this DNS record.
type String The DNS record type. * A * AAAA * CNAME * NS * MX * SRV * TXT * CAA * SSHFP
data String The DNS data for this record type.
ttl Integer Time to Live in seconds. [optional]
priority Integer DNS priority. Does not apply to all record types. (Only required for MX and SRV) [optional]

Example

require 'vultr_ruby'

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