Interface AppServiceDomain.DefinitionStages.WithDnsZone
-
- All Known Subinterfaces:
AppServiceDomain.Definition,AppServiceDomain.DefinitionStages.WithCreate
- Enclosing interface:
- AppServiceDomain.DefinitionStages
public static interface AppServiceDomain.DefinitionStages.WithDnsZoneA domain definition allowing DNS zone to be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppServiceDomain.DefinitionStages.WithCreatewithExistingDnsZone(DnsZone dnsZone)Specifies an existing DNS zone.AppServiceDomain.DefinitionStages.WithCreatewithExistingDnsZone(String dnsZoneId)Specifies an existing DNS zone.AppServiceDomain.DefinitionStages.WithCreatewithNewDnsZone(Creatable<DnsZone> dnsZone)Creates a new DNS zone.AppServiceDomain.DefinitionStages.WithCreatewithNewDnsZone(String dnsZoneName)Creates a new DNS zone.
-
-
-
Method Detail
-
withNewDnsZone
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
-
withNewDnsZone
AppServiceDomain.DefinitionStages.WithCreate withNewDnsZone(Creatable<DnsZone> dnsZone)
Creates a new DNS zone.- Parameters:
dnsZone- the creatable definition of DNS zone- Returns:
- the next stage of domain definition
-
withExistingDnsZone
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
-
withExistingDnsZone
AppServiceDomain.DefinitionStages.WithCreate withExistingDnsZone(DnsZone dnsZone)
Specifies an existing DNS zone.- Parameters:
dnsZone- the DNS zone- Returns:
- the next stage of domain definition
-
-