Show / Hide Table of Contents

Class VanityDnsRecord

DNS record for vanity domain

Inheritance
object
VanityDnsRecord
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FusionappsService.Models
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
public class VanityDnsRecord

Properties

Domain

Declaration
[Required(ErrorMessage = "Domain is required.")]
[JsonProperty(PropertyName = "domain")]
public string Domain { get; set; }
Property Value
Type Description
string

domain name for dns record

Remarks

Required

Rdata

Declaration
[Required(ErrorMessage = "Rdata is required.")]
[JsonProperty(PropertyName = "rdata")]
public string Rdata { get; set; }
Property Value
Type Description
string

dns server hostname is pointed to

Remarks

Required

TtlInSeconds

Declaration
[Required(ErrorMessage = "TtlInSeconds is required.")]
[JsonProperty(PropertyName = "ttlInSeconds")]
public int? TtlInSeconds { get; set; }
Property Value
Type Description
int?

time to live for dns record

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
Property Value
Type Description
string

record data for record type

Remarks

Required

In this article
Back to top