Interface SpringService.UpdateStages.WithSku
-
- All Known Subinterfaces:
SpringService.Update
- Enclosing interface:
- SpringService.UpdateStages
public static interface SpringService.UpdateStages.WithSkuThe stage of a spring service update 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.UpdatewithSku(Sku sku)Specifies the sku of the spring service.SpringService.UpdatewithSku(String skuName)Specifies the sku of the spring service.SpringService.UpdatewithSku(String skuName, int capacity)Specifies the sku of the spring service.
-
-
-
Method Detail
-
withSku
SpringService.Update withSku(String skuName)
Specifies the sku of the spring service.- Parameters:
skuName- the sku name- Returns:
- the next stage of spring service update
-
withSku
SpringService.Update 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 update
-
withSku
SpringService.Update withSku(Sku sku)
Specifies the sku of the spring service.- Parameters:
sku- the entire sku object- Returns:
- the next stage of spring service update
-
-