AppServiceDomain.DefinitionStages.WithDnsZone Interface

public static interface AppServiceDomain.DefinitionStages.WithDnsZone

A domain definition allowing DNS zone to be set.

Method Summary

Modifier and Type Method and Description
abstract WithCreate withExistingDnsZone(DnsZone dnsZone)

Specifies an existing DNS zone.

abstract WithCreate withExistingDnsZone(String dnsZoneId)

Specifies an existing DNS zone.

abstract WithCreate withNewDnsZone(Creatable<DnsZone> dnsZone)

Creates a new DNS zone.

abstract WithCreate withNewDnsZone(String dnsZoneName)

Creates a new DNS zone.

Method Details

withExistingDnsZone

public abstract AppServiceDomain.DefinitionStages.WithCreate withExistingDnsZone(DnsZone dnsZone)

Specifies an existing DNS zone.

Parameters:

dnsZone - the DNS zone

Returns:

the next stage of domain definition

withExistingDnsZone

public abstract AppServiceDomain.DefinitionStages.WithCreate withExistingDnsZone(String dnsZoneId)

Specifies an existing DNS zone.

Parameters:

dnsZoneId - the id of DNS zone

Returns:

the next stage of domain definition

withNewDnsZone

public abstract AppServiceDomain.DefinitionStages.WithCreate withNewDnsZone(Creatable dnsZone)

Creates a new DNS zone.

Parameters:

dnsZone - the creatable definition of DNS zone

Returns:

the next stage of domain definition

withNewDnsZone

public abstract AppServiceDomain.DefinitionStages.WithCreate withNewDnsZone(String dnsZoneName)

Creates a new DNS zone.

Parameters:

dnsZoneName - the name of DNS zone

Returns:

the next stage of domain definition

Applies to