DnsConfig Constructors

Definition

Overloads

DnsConfig()

Initializes a new instance of the DnsConfig class.

DnsConfig(String, String, Nullable<Int64>)

Initializes a new instance of the DnsConfig class.

DnsConfig()

Initializes a new instance of the DnsConfig class.

public DnsConfig ();
Public Sub New ()

Applies to

DnsConfig(String, String, Nullable<Int64>)

Initializes a new instance of the DnsConfig class.

public DnsConfig (string relativeName = default, string fqdn = default, long? ttl = default);
new Microsoft.Azure.Management.TrafficManager.Fluent.Models.DnsConfig : string * string * Nullable<int64> -> Microsoft.Azure.Management.TrafficManager.Fluent.Models.DnsConfig
Public Sub New (Optional relativeName As String = Nothing, Optional fqdn As String = Nothing, Optional ttl As Nullable(Of Long) = Nothing)

Parameters

relativeName
String

The relative DNS name provided by this Traffic Manager profile. This value is combined with the DNS domain name used by Azure Traffic Manager to form the fully-qualified domain name (FQDN) of the profile.

fqdn
String

The fully-qualified domain name (FQDN) of the Traffic Manager profile. This is formed from the concatenation of the RelativeName with the DNS domain used by Azure Traffic Manager.

ttl
Nullable<Int64>

The DNS Time-To-Live (TTL), in seconds. This informs the local DNS resolvers and DNS clients how long to cache DNS responses provided by this Traffic Manager profile.

Applies to