NetworkInterfaceDnsSettings Class

  • java.lang.Object
    • com.azure.resourcemanager.network.models.NetworkInterfaceDnsSettings

public final class NetworkInterfaceDnsSettings

DNS settings of a network interface.

Constructor Summary

Constructor Description
NetworkInterfaceDnsSettings()

Creates an instance of NetworkInterfaceDnsSettings class.

Method Summary

Modifier and Type Method and Description
List<String> appliedDnsServers()

Get the appliedDnsServers property: If the VM that uses this NIC is part of an Availability Set, then this list will have the union of all DNS servers from all NICs that are part of the Availability Set.

List<String> dnsServers()

Get the dnsServers property: List of DNS servers IP addresses.

String internalDnsNameLabel()

Get the internalDnsNameLabel property: Relative DNS name for this NIC used for internal communications between VMs in the same virtual network.

String internalDomainNameSuffix()

Get the internalDomainNameSuffix property: Even if internalDnsNameLabel is not specified, a DNS entry is created for the primary NIC of the VM.

String internalFqdn()

Get the internalFqdn property: Fully qualified DNS name supporting internal communications between VMs in the same virtual network.

void validate()

Validates the instance.

NetworkInterfaceDnsSettings withDnsServers(List<String> dnsServers)

Set the dnsServers property: List of DNS servers IP addresses.

NetworkInterfaceDnsSettings withInternalDnsNameLabel(String internalDnsNameLabel)

Set the internalDnsNameLabel property: Relative DNS name for this NIC used for internal communications between VMs in the same virtual network.

Methods inherited from java.lang.Object

Constructor Details

NetworkInterfaceDnsSettings

public NetworkInterfaceDnsSettings()

Creates an instance of NetworkInterfaceDnsSettings class.

Method Details

appliedDnsServers

public List appliedDnsServers()

Get the appliedDnsServers property: If the VM that uses this NIC is part of an Availability Set, then this list will have the union of all DNS servers from all NICs that are part of the Availability Set. This property is what is configured on each of those VMs.

Returns:

the appliedDnsServers value.

dnsServers

public List dnsServers()

Get the dnsServers property: List of DNS servers IP addresses. Use 'AzureProvidedDNS' to switch to azure provided DNS resolution. 'AzureProvidedDNS' value cannot be combined with other IPs, it must be the only value in dnsServers collection.

Returns:

the dnsServers value.

internalDnsNameLabel

public String internalDnsNameLabel()

Get the internalDnsNameLabel property: Relative DNS name for this NIC used for internal communications between VMs in the same virtual network.

Returns:

the internalDnsNameLabel value.

internalDomainNameSuffix

public String internalDomainNameSuffix()

Get the internalDomainNameSuffix property: Even if internalDnsNameLabel is not specified, a DNS entry is created for the primary NIC of the VM. This DNS name can be constructed by concatenating the VM name with the value of internalDomainNameSuffix.

Returns:

the internalDomainNameSuffix value.

internalFqdn

public String internalFqdn()

Get the internalFqdn property: Fully qualified DNS name supporting internal communications between VMs in the same virtual network.

Returns:

the internalFqdn value.

validate

public void validate()

Validates the instance.

withDnsServers

public NetworkInterfaceDnsSettings withDnsServers(List dnsServers)

Set the dnsServers property: List of DNS servers IP addresses. Use 'AzureProvidedDNS' to switch to azure provided DNS resolution. 'AzureProvidedDNS' value cannot be combined with other IPs, it must be the only value in dnsServers collection.

Parameters:

dnsServers - the dnsServers value to set.

Returns:

the NetworkInterfaceDnsSettings object itself.

withInternalDnsNameLabel

public NetworkInterfaceDnsSettings withInternalDnsNameLabel(String internalDnsNameLabel)

Set the internalDnsNameLabel property: Relative DNS name for this NIC used for internal communications between VMs in the same virtual network.

Parameters:

internalDnsNameLabel - the internalDnsNameLabel value to set.

Returns:

the NetworkInterfaceDnsSettings object itself.

Applies to