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