共用方式為


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()

Gets all available SKU.

abstract PagedFlux<ResourceSku> listSkusAsync()

Gets all available SKU.

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()

Gets all available SKU.

Returns:

all available SKU.

listSkusAsync

public abstract PagedFlux listSkusAsync()

Gets all available SKU.

Returns:

all available SKU.

Applies to