ZoneTransferServer

class oci.dns.models.ZoneTransferServer(**kwargs)

Bases: object

An OCI nameserver that transfers zone data with external nameservers.

Methods

__init__(**kwargs) Initializes a new ZoneTransferServer object with values from keyword arguments.

Attributes

address [Required] Gets the address of this ZoneTransferServer.
is_transfer_destination Gets the is_transfer_destination of this ZoneTransferServer.
is_transfer_source Gets the is_transfer_source of this ZoneTransferServer.
port Gets the port of this ZoneTransferServer.
__init__(**kwargs)

Initializes a new ZoneTransferServer object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • address (str) – The value to assign to the address property of this ZoneTransferServer.
  • port (int) – The value to assign to the port property of this ZoneTransferServer.
  • is_transfer_source (bool) – The value to assign to the is_transfer_source property of this ZoneTransferServer.
  • is_transfer_destination (bool) – The value to assign to the is_transfer_destination property of this ZoneTransferServer.
address

[Required] Gets the address of this ZoneTransferServer. The server’s IP address (IPv4 or IPv6).

Returns:The address of this ZoneTransferServer.
Return type:str
is_transfer_destination

Gets the is_transfer_destination of this ZoneTransferServer. A Boolean flag indicating whether or not the server is a zone data transfer destination.

Returns:The is_transfer_destination of this ZoneTransferServer.
Return type:bool
is_transfer_source

Gets the is_transfer_source of this ZoneTransferServer. A Boolean flag indicating whether or not the server is a zone data transfer source.

Returns:The is_transfer_source of this ZoneTransferServer.
Return type:bool
port

Gets the port of this ZoneTransferServer. The server’s port.

Returns:The port of this ZoneTransferServer.
Return type:int