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