Show / Hide Table of Contents

Class ExternalDownstream

External downstream nameserver for the zone. This field is currently not supported when zoneType is SECONDARY or scope is PRIVATE.

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

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. A TSIG key is used to secure DNS messages (in this case, zone transfers) between two systems that both have the (shared) secret.

In this article
Back to top