Class Transip_DnsEntry
Models A DnsEntry
public
|
#
__construct( string $name, integer $expire, string $type, string $content )
Constructs a new DnsEntry of the form www IN 86400 A 127.0.0.1 mail IN 86400 CNAME @ |
string |
TYPE_A
|
'A' |
|
string |
TYPE_AAAA
|
'AAAA' |
|
string |
TYPE_CNAME
|
'CNAME' |
|
string |
TYPE_MX
|
'MX' |
|
string |
TYPE_NS
|
'NS' |
|
string |
TYPE_TXT
|
'TXT' |
|
string |
TYPE_SRV
|
'SRV' |
|
string |
TYPE_SSHFP
|
'SSHFP' |
|
string |
TYPE_TLSA
|
'TLSA' |
|
string |
TYPE_CAA
|
'CAA' |
|
string |
TYPE_NAPTR
|
'NAPTR' |
public
string
|
$name |
|
#
The name of the dns entry, for example '@' or 'www' |
public
integer
|
$expire |
|
#
The expiration period of the dns entry, in seconds. For example 86400 for a day of expiration |
public
string
|
$type |
|
#
The type of dns entry, for example A, MX or CNAME |
public
string
|
$content |
|
#
The content of of the dns entry, for example '10 mail', '127.0.0.1' or 'www' |