Show / Hide Table of Contents

Class ZoneTransferServer

An OCI nameserver that transfers zone data with external nameservers.

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

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

IsTransferDestination

Declaration
[JsonProperty(PropertyName = "isTransferDestination")]
public bool? IsTransferDestination { get; set; }
Property Value
Type Description
bool?

A Boolean flag indicating whether or not the server is a zone data transfer destination.

IsTransferSource

Declaration
[JsonProperty(PropertyName = "isTransferSource")]
public bool? IsTransferSource { get; set; }
Property Value
Type Description
bool?

A Boolean flag indicating whether or not the server is a zone data transfer source.

Port

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

The server's port.

In this article
Back to top