Show / Hide Table of Contents

Class ExternalMaster

An external master name server used as the source of zone data.

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

Properties

Address

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

The server's IP address (IPv4 or IPv6).

Remarks

Required

Port

Declaration
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

The server's port. Port value must be a value of 53, otherwise omit the port value.

TsigKeyId

Declaration
[JsonProperty(PropertyName = "tsigKeyId")]
public string TsigKeyId { get; set; }
Property Value
Type Description
string

The OCID of the TSIG key.

In this article
Back to top