Interface AppServiceDomain
-
- All Superinterfaces:
GroupableResource<AppServiceManager,DomainInner>,HasId,HasInnerModel<DomainInner>,HasManager<AppServiceManager>,HasName,HasResourceGroup,Indexable,Refreshable<AppServiceDomain>,Resource,Updatable<AppServiceDomain.Update>
public interface AppServiceDomain extends GroupableResource<AppServiceManager,DomainInner>, HasName, Refreshable<AppServiceDomain>, Updatable<AppServiceDomain.Update>
An immutable client-side representation of a domain.Domains in Azure are purchased from 3rd party domain providers. By calling
Creatable.create()orCreatable.createAsync()you agree to the agreements listed inAppServiceDomains.listAgreements(String).
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceAppServiceDomain.DefinitionContainer interface for all the definitions that need to be implemented.static interfaceAppServiceDomain.DefinitionStagesGrouping of all the domain definition stages.static interfaceAppServiceDomain.UpdateThe template for a domain update operation, containing all the settings that can be modified.static interfaceAppServiceDomain.UpdateStagesGrouping of all the domain update stages.-
Nested classes/interfaces inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.Resource
Resource.DefinitionWithRegion<T extends Object>, Resource.DefinitionWithTags<T extends Object>, Resource.UpdateWithTags<T extends Object>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContactadminContact()booleanautoRenew()ContactbillingContact()DomainPurchaseConsentconsent()OffsetDateTimecreatedTime()DnsTypednsType()StringdnsZoneId()OffsetDateTimeexpirationTime()OffsetDateTimelastRenewedTime()Map<String,Hostname>managedHostNames()List<String>nameServers()booleanprivacy()booleanreadyForDnsRecordManagement()ContactregistrantContact()DomainStatusregistrationStatus()ContacttechContact()voidverifyDomainOwnership(String certificateOrderName, String domainVerificationToken)Verifies the ownership of the domain for a certificate order bound to this domain.Mono<Void>verifyDomainOwnershipAsync(String certificateOrderName, String domainVerificationToken)Verifies the ownership of the domain for a certificate order bound to this domain.-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager
manager
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasName
name
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasResourceGroup
resourceGroupName
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.Refreshable
refresh, refreshAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.Resource
region, regionName, tags, type
-
-
-
-
Method Detail
-
adminContact
Contact adminContact()
- Returns:
- admin contact information
-
billingContact
Contact billingContact()
- Returns:
- billing contact information
-
registrantContact
Contact registrantContact()
- Returns:
- registrant contact information
-
techContact
Contact techContact()
- Returns:
- technical contact information
-
registrationStatus
DomainStatus registrationStatus()
- Returns:
- domain registration status
-
privacy
boolean privacy()
- Returns:
- true if domain privacy is enabled for this domain
-
createdTime
OffsetDateTime createdTime()
- Returns:
- domain creation timestamp.
-
expirationTime
OffsetDateTime expirationTime()
- Returns:
- domain expiration timestamp.
-
lastRenewedTime
OffsetDateTime lastRenewedTime()
- Returns:
- timestamp when the domain was renewed last time
-
autoRenew
boolean autoRenew()
- Returns:
- true if domain will renewed automatically
-
readyForDnsRecordManagement
boolean readyForDnsRecordManagement()
- Returns:
- true if Azure can assign this domain to Web Apps. This value will be true if domain registration status is active and it is hosted on name servers Azure has programmatic access to.
-
managedHostNames
Map<String,Hostname> managedHostNames()
- Returns:
- all hostnames derived from the domain and assigned to Azure resources
-
consent
DomainPurchaseConsent consent()
- Returns:
- legal agreement consent.
-
dnsType
DnsType dnsType()
- Returns:
- the type of DNS
-
dnsZoneId
String dnsZoneId()
- Returns:
- Azure DNS zone id
-
verifyDomainOwnership
void verifyDomainOwnership(String certificateOrderName, String domainVerificationToken)
Verifies the ownership of the domain for a certificate order bound to this domain.- Parameters:
certificateOrderName- the name of the certificate orderdomainVerificationToken- the domain verification token for the certificate order
-
verifyDomainOwnershipAsync
Mono<Void> verifyDomainOwnershipAsync(String certificateOrderName, String domainVerificationToken)
Verifies the ownership of the domain for a certificate order bound to this domain.- Parameters:
certificateOrderName- the name of the certificate orderdomainVerificationToken- the domain verification token for the certificate order- Returns:
- a representation of the deferred computation of this call
-
-