Interface SpringServices
-
- All Superinterfaces:
HasManager<AppPlatformManager>,SupportsCreating<SpringService.DefinitionStages.Blank>,SupportsDeletingById,SupportsDeletingByResourceGroup,SupportsGettingById<SpringService>,SupportsGettingByResourceGroup<SpringService>,SupportsListing<SpringService>,SupportsListingByResourceGroup<SpringService>
public interface SpringServices extends HasManager<AppPlatformManager>, SupportsCreating<SpringService.DefinitionStages.Blank>, SupportsGettingById<SpringService>, SupportsGettingByResourceGroup<SpringService>, SupportsListing<SpringService>, SupportsListingByResourceGroup<SpringService>, SupportsDeletingById, SupportsDeletingByResourceGroup
Entry point for Spring Service management API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NameAvailabilitycheckNameAvailability(String name, com.azure.core.management.Region region)Checks the name of the service is available in specific region or not.Mono<NameAvailability>checkNameAvailabilityAsync(String name, com.azure.core.management.Region region)Checks the name of the service is available in specific region or not.com.azure.core.http.rest.PagedIterable<ResourceSku>listSkus()com.azure.core.http.rest.PagedFlux<ResourceSku>listSkusAsync()-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager
manager
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsCreating
define
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsDeletingById
deleteById, deleteByIdAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsDeletingByResourceGroup
deleteByResourceGroup, deleteByResourceGroupAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById
getById, getByIdAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingByResourceGroup
getByResourceGroup, getByResourceGroupAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsListing
list, listAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsListingByResourceGroup
listByResourceGroup, listByResourceGroupAsync
-
-
-
-
Method Detail
-
checkNameAvailability
NameAvailability checkNameAvailability(String name, com.azure.core.management.Region region)
Checks the name of the service is available in specific region or not.- Parameters:
name- the service nameregion- the region of the service- Returns:
- the service name is available or not.
-
checkNameAvailabilityAsync
Mono<NameAvailability> checkNameAvailabilityAsync(String name, com.azure.core.management.Region region)
Checks the name of the service is available in specific region or not.- Parameters:
name- the service nameregion- the region of the service- Returns:
- the service name is available or not.
-
listSkus
com.azure.core.http.rest.PagedIterable<ResourceSku> listSkus()
- Returns:
- all available sku.
-
listSkusAsync
com.azure.core.http.rest.PagedFlux<ResourceSku> listSkusAsync()
- Returns:
- all available sku.
-
-