Interface RedisCache.DefinitionStages.WithSku
-
- All Known Subinterfaces:
RedisCache.Definition
- Enclosing interface:
- RedisCache.DefinitionStages
public static interface RedisCache.DefinitionStages.WithSkuA Redis Cache definition allowing the sku to be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RedisCache.DefinitionStages.WithCreatewithBasicSku()Specifies the Basic sku of the Redis Cache.RedisCache.DefinitionStages.WithCreatewithBasicSku(int capacity)Specifies the Basic sku of the Redis Cache.RedisCache.DefinitionStages.WithPremiumSkuCreatewithPremiumSku()Specifies the Premium sku of the Redis Cache.RedisCache.DefinitionStages.WithPremiumSkuCreatewithPremiumSku(int capacity)Specifies the Premium sku of the Redis Cache.RedisCache.DefinitionStages.WithCreatewithStandardSku()Specifies the Standard Sku of the Redis Cache.RedisCache.DefinitionStages.WithCreatewithStandardSku(int capacity)Specifies the Standard sku of the Redis Cache.
-
-
-
Method Detail
-
withBasicSku
RedisCache.DefinitionStages.WithCreate withBasicSku()
Specifies the Basic sku of the Redis Cache.- Returns:
- the next stage of Redis Cache definition.
-
withBasicSku
RedisCache.DefinitionStages.WithCreate withBasicSku(int capacity)
Specifies the Basic sku of the Redis Cache.- Parameters:
capacity- specifies what size of Redis Cache to deploy for Basic sku with C family (0, 1, 2, 3, 4, 5, 6).- Returns:
- the next stage of Redis Cache definition.
-
withStandardSku
RedisCache.DefinitionStages.WithCreate withStandardSku()
Specifies the Standard Sku of the Redis Cache.- Returns:
- the next stage of Redis Cache definition.
-
withStandardSku
RedisCache.DefinitionStages.WithCreate withStandardSku(int capacity)
Specifies the Standard sku of the Redis Cache.- Parameters:
capacity- specifies what size of Redis Cache to deploy for Standard sku with C family (0, 1, 2, 3, 4, 5, 6).- Returns:
- the next stage of Redis Cache definition.
-
withPremiumSku
RedisCache.DefinitionStages.WithPremiumSkuCreate withPremiumSku()
Specifies the Premium sku of the Redis Cache.- Returns:
- the next stage of Redis Cache definition.
-
withPremiumSku
RedisCache.DefinitionStages.WithPremiumSkuCreate withPremiumSku(int capacity)
Specifies the Premium sku of the Redis Cache.- Parameters:
capacity- specifies what size of Redis Cache to deploy for Standard sku with P family (1, 2, 3, 4).- Returns:
- the next stage of Redis Cache definition.
-
-