你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

WebApps Interface

Implements

public interface WebApps
extends SupportsCreating<Blank>, SupportsDeletingById, SupportsListing<WebAppBasic>, SupportsListingByResourceGroup<WebAppBasic>, SupportsGettingByResourceGroup<WebApp>, SupportsGettingById<WebApp>, SupportsDeletingByResourceGroup, HasManager<AppServiceManager>

Entry point for web app management API.

Method Summary

Modifier and Type Method and Description
abstract CheckNameAvailabilityResult checkNameAvailability(String name, CheckNameResourceTypes type)

Checks whether name is available for the resource type.

abstract CheckNameAvailabilityResult checkNameAvailability(String name, CheckNameResourceTypes type, boolean isFqdn)

Checks whether name is available for the resource type.

abstract Mono<CheckNameAvailabilityResult> checkNameAvailabilityAsync(String name, CheckNameResourceTypes type)

Checks whether name is available for the resource type.

abstract Mono<CheckNameAvailabilityResult> checkNameAvailabilityAsync(String name, CheckNameResourceTypes type, boolean isFqdn)

Checks whether name is available for the resource type.

Method Details

checkNameAvailability

public abstract CheckNameAvailabilityResult checkNameAvailability(String name, CheckNameResourceTypes type)

Checks whether name is available for the resource type.

Parameters:

name - the name.
type - the resource type.

Returns:

checkNameAvailability

public abstract CheckNameAvailabilityResult checkNameAvailability(String name, CheckNameResourceTypes type, boolean isFqdn)

Checks whether name is available for the resource type.

Parameters:

name - the name.
type - the resource type.
isFqdn - whether the name is a fully qualified domain name.

Returns:

checkNameAvailabilityAsync

public abstract Mono checkNameAvailabilityAsync(String name, CheckNameResourceTypes type)

Checks whether name is available for the resource type.

Parameters:

name - the name.
type - the resource type.

Returns:

the CheckNameAvailabilityResult on successful completion of Mono.

checkNameAvailabilityAsync

public abstract Mono checkNameAvailabilityAsync(String name, CheckNameResourceTypes type, boolean isFqdn)

Checks whether name is available for the resource type.

Parameters:

name - the name.
type - the resource type.
isFqdn - whether the name is a fully qualified domain name.

Returns:

the CheckNameAvailabilityResult on successful completion of Mono.

Applies to