Skip to content

Commit adc8879

Browse files
authored
Merge pull request MicrosoftDocs#73783 from v-stepbe/master
Added some parameters
2 parents effa630 + fa03d40 commit adc8879

File tree

1 file changed

+32
-10
lines changed

1 file changed

+32
-10
lines changed

includes/cache-deploy-parameters.md

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,56 @@
22
author: wesmc7777
33
ms.service: redis-cache
44
ms.topic: include
5-
ms.date: 11/21/2018
5+
ms.date: 04/02/2019
66
ms.author: wesmc
77
---
88

99
### cacheSKUName
10+
1011
The pricing tier of the new Azure Cache for Redis.
1112

13+
```json
1214
"cacheSKUName": {
1315
"type": "string",
1416
"allowedValues": [
1517
"Basic",
16-
"Standard"
18+
"Standard",
19+
"Premium"
1720
],
1821
"defaultValue": "Basic",
1922
"metadata": {
2023
"description": "The pricing tier of the new Azure Cache for Redis."
2124
}
2225
},
26+
```
2327

24-
The template defines the values that are permitted for this parameter (Basic or Standard), and assigns a default value (Basic) if no value is specified. Basic provides a single node with multiple sizes available up to 53 GB.
25-
Standard provides two-node Primary/Replica with multiple sizes available up to 53 GB and 99.9% SLA.
28+
The template defines the values that are permitted for this parameter (Basic, Standard, or Premium), and assigns a default value (Basic) if no value is specified. Basic provides a single node with multiple sizes available up to 53 GB. Standard provides two-node Primary/Replica with multiple sizes available up to 53 GB and 99.9% SLA.
2629

2730
### cacheSKUFamily
31+
2832
The family for the sku.
2933

34+
```json
3035
"cacheSKUFamily": {
3136
"type": "string",
32-
"allowedValues": [
33-
"C"
37+
"allowedValue/s": [
38+
"C",
39+
"P"
3440
],
3541
"defaultValue": "C",
3642
"metadata": {
3743
"description": "The family for the sku."
3844
}
3945
},
40-
46+
```
4147

4248
### cacheSKUCapacity
43-
The size of the new Azure Cache for Redis instance.
4449

50+
The size of the new Azure Cache for Redis instance.
51+
52+
For the Basic and Standard families:
53+
54+
```json
4555
"cacheSKUCapacity": {
4656
"type": "int",
4757
"allowedValues": [
@@ -58,8 +68,20 @@ The size of the new Azure Cache for Redis instance.
5868
"description": "The size of the new Azure Cache for Redis instance. "
5969
}
6070
}
71+
```
72+
73+
The Premium value cache capacity is defined the same, except the allowed values run from 1 to 5 instead of from 0 to 6.
6174

75+
The template defines the integer values that are permitted for this parameter (0 through 6 for the Basic and Standard families; 1 through 5 for the Premium family). If no value is specified, the template assigns a default value of 0 for Basic and Standard, 1 for Premium.
6276

63-
The template defines the values that are permitted for this parameter (0, 1, 2, 3, 4, 5 or 6), and assigns a default value (0) if no value is specified. Those numbers correspond to following cache sizes:
64-
0 = 250 MB, 1 = 1 GB, 2 = 2.5 GB, 3 = 6 GB, 4 = 13 GB, 5 = 26 GB, 6 = 53 GB
77+
The values correspond to following cache sizes:
6578

79+
| Value | Basic and Standard<br>cache size | Premium<br>cache size |
80+
| :---: | :------------------------------: | :-------------------: |
81+
| 0 | 250 MB (default) | n/a |
82+
| 1 | 1 GB | 6 GB (default) |
83+
| 2 | 2.5 GB | 13 GB |
84+
| 3 | 6 GB | 26 GB |
85+
| 4 | 13 GB | 53 GB |
86+
| 5 | 26 GB | 120 GB |
87+
| 6 | 53 GB | n/a |

0 commit comments

Comments
 (0)