Interface RedisCache.UpdateStages.WithSku
-
- All Known Subinterfaces:
RedisCache.Update
- Enclosing interface:
- RedisCache.UpdateStages
public static interface RedisCache.UpdateStages.WithSkuA Redis Cache update stage allowing to change the parameters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RedisCache.UpdatewithBasicSku(int capacity)Updates Redis Cache to Basic sku with new capacity.RedisCache.UpdatewithPremiumSku()Updates Redis Cache to Premium sku.RedisCache.UpdatewithPremiumSku(int capacity)Updates Redis Cache to Premium sku with new capacity.RedisCache.UpdatewithStandardSku()Updates Redis Cache to Standard sku.RedisCache.UpdatewithStandardSku(int capacity)Updates Redis Cache to Standard sku with new capacity.
-
-
-
Method Detail
-
withBasicSku
RedisCache.Update withBasicSku(int capacity)
Updates Redis Cache to Basic sku with new capacity.- Parameters:
capacity- specifies what size of Redis Cache to update to for Basic sku with C family (0, 1, 2, 3, 4, 5, 6).- Returns:
- the next stage of Redis Cache update.
-
withStandardSku
RedisCache.Update withStandardSku()
Updates Redis Cache to Standard sku.- Returns:
- the next stage of Redis Cache update.
-
withStandardSku
RedisCache.Update withStandardSku(int capacity)
Updates Redis Cache to Standard sku with new capacity.- Parameters:
capacity- specifies what size of Redis Cache to update to for Standard sku with C family (0, 1, 2, 3, 4, 5, 6).- Returns:
- the next stage of Redis Cache update.
-
withPremiumSku
RedisCache.Update withPremiumSku()
Updates Redis Cache to Premium sku.- Returns:
- the next stage of Redis Cache update.
-
withPremiumSku
RedisCache.Update withPremiumSku(int capacity)
Updates Redis Cache to Premium sku with new capacity.- Parameters:
capacity- specifies what size of Redis Cache to update to for Premium sku with P family (1, 2, 3, 4).- Returns:
- the next stage of Redis Cache update.
-
-