DnsRecord¶
-
class
oci.fusion_apps.models.DnsRecord(**kwargs)¶ Bases:
objectDNS record for email subdomain
Methods
__init__(**kwargs)Initializes a new DnsRecord object with values from keyword arguments. Attributes
name[Required] Gets the name of this DnsRecord. rdata[Required] Gets the rdata of this DnsRecord. ttl_in_seconds[Required] Gets the ttl_in_seconds of this DnsRecord. type[Required] Gets the type of this DnsRecord. -
__init__(**kwargs)¶ Initializes a new DnsRecord object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this DnsRecord.
- rdata (str) – The value to assign to the rdata property of this DnsRecord.
- type (str) – The value to assign to the type property of this DnsRecord.
- ttl_in_seconds (int) – The value to assign to the ttl_in_seconds property of this DnsRecord.
-
name¶ [Required] Gets the name of this DnsRecord. domain name for dns record
Returns: The name of this DnsRecord. Return type: str
-
rdata¶ [Required] Gets the rdata of this DnsRecord. dns server hostname is pointed to
Returns: The rdata of this DnsRecord. Return type: str
-
ttl_in_seconds¶ [Required] Gets the ttl_in_seconds of this DnsRecord. time to live for dns record
Returns: The ttl_in_seconds of this DnsRecord. Return type: int
-
type¶ [Required] Gets the type of this DnsRecord. record data for record type
Returns: The type of this DnsRecord. Return type: str
-