Sku Class
SKU parameters supplied to the create Redis operation.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.redis._serialization.ModelSku
Constructor
Sku(*, name: str | _models.SkuName, family: str | _models.SkuFamily, capacity: int, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
name
|
The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium). Required. Known values are: "Basic", "Standard", and "Premium". |
family
|
The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium). Required. Known values are: "C" and "P". |
capacity
|
The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4). Required. |
Variables
Name | Description |
---|---|
name
|
The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium). Required. Known values are: "Basic", "Standard", and "Premium". |
family
|
The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium). Required. Known values are: "C" and "P". |
capacity
|
The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4). Required. |
Azure SDK for Python