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

SpringServices Interface

Implements

public interface SpringServices
extends HasManager<AppPlatformManager>, SupportsCreating<Blank>, SupportsGettingById<SpringService>, SupportsGettingByResourceGroup<SpringService>, SupportsListing<SpringService>, SupportsListingByResourceGroup<SpringService>, SupportsDeletingById, SupportsDeletingByResourceGroup

Entry point for Spring Service management API.

Method Summary

Modifier and Type Method and Description
abstract NameAvailability checkNameAvailability(String name, Region region)

Checks the name of the service is available in specific region or not.

abstract Mono<NameAvailability> checkNameAvailabilityAsync(String name, Region region)

Checks the name of the service is available in specific region or not.

abstract PagedIterable<ResourceSku> listSkus()
abstract PagedFlux<ResourceSku> listSkusAsync()

Method Details

checkNameAvailability

public abstract NameAvailability checkNameAvailability(String name, Region region)

Checks the name of the service is available in specific region or not.

Parameters:

name - the service name
region - the region of the service

Returns:

the service name is available or not.

checkNameAvailabilityAsync

public abstract Mono checkNameAvailabilityAsync(String name, Region region)

Checks the name of the service is available in specific region or not.

Parameters:

name - the service name
region - the region of the service

Returns:

the service name is available or not.

listSkus

public abstract PagedIterable listSkus()

Returns:

all available sku.

listSkusAsync

public abstract PagedFlux listSkusAsync()

Returns:

all available sku.

Applies to