Interface SpringService.DefinitionStages.WithSku
-
- All Known Subinterfaces:
SpringService.Definition,SpringService.DefinitionStages.WithCreate
- Enclosing interface:
- SpringService.DefinitionStages
public static interface SpringService.DefinitionStages.WithSkuThe stage of a spring service definition allowing to specify sku. All sku supported could be gotten fromSpringServices.listSkus().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpringService.DefinitionStages.WithCreatewithSku(Sku sku)Specifies the sku of the spring service.SpringService.DefinitionStages.WithCreatewithSku(SkuName skuName)Specifies the sku of the spring service.SpringService.DefinitionStages.WithCreatewithSku(String skuName)Specifies the sku of the spring service.SpringService.DefinitionStages.WithCreatewithSku(String skuName, int capacity)Specifies the sku of the spring service.
-
-
-
Method Detail
-
withSku
SpringService.DefinitionStages.WithCreate withSku(String skuName)
Specifies the sku of the spring service.- Parameters:
skuName- the sku name- Returns:
- the next stage of spring service definition
-
withSku
SpringService.DefinitionStages.WithCreate withSku(SkuName skuName)
Specifies the sku of the spring service.- Parameters:
skuName- the sku name- Returns:
- the next stage of spring service definition
-
withSku
SpringService.DefinitionStages.WithCreate withSku(String skuName, int capacity)
Specifies the sku of the spring service.- Parameters:
skuName- the sku namecapacity- the capacity for the spring service- Returns:
- the next stage of spring service definition
-
withSku
SpringService.DefinitionStages.WithCreate withSku(Sku sku)
Specifies the sku of the spring service.- Parameters:
sku- the entire sku object- Returns:
- the next stage of spring service definition
-
-