Show / Hide Table of Contents

Class DnsRecord

DNS record for email subdomain

Inheritance
object
DnsRecord
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 DnsRecord

Properties

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { 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