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