You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/cache-deploy-parameters.md
+32-10Lines changed: 32 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -2,46 +2,56 @@
2
2
author: wesmc7777
3
3
ms.service: redis-cache
4
4
ms.topic: include
5
-
ms.date: 11/21/2018
5
+
ms.date: 04/02/2019
6
6
ms.author: wesmc
7
7
---
8
8
9
9
### cacheSKUName
10
+
10
11
The pricing tier of the new Azure Cache for Redis.
11
12
13
+
```json
12
14
"cacheSKUName": {
13
15
"type": "string",
14
16
"allowedValues": [
15
17
"Basic",
16
-
"Standard"
18
+
"Standard",
19
+
"Premium"
17
20
],
18
21
"defaultValue": "Basic",
19
22
"metadata": {
20
23
"description": "The pricing tier of the new Azure Cache for Redis."
21
24
}
22
25
},
26
+
```
23
27
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.
26
29
27
30
### cacheSKUFamily
31
+
28
32
The family for the sku.
29
33
34
+
```json
30
35
"cacheSKUFamily": {
31
36
"type": "string",
32
-
"allowedValues": [
33
-
"C"
37
+
"allowedValue/s": [
38
+
"C",
39
+
"P"
34
40
],
35
41
"defaultValue": "C",
36
42
"metadata": {
37
43
"description": "The family for the sku."
38
44
}
39
45
},
40
-
46
+
```
41
47
42
48
### cacheSKUCapacity
43
-
The size of the new Azure Cache for Redis instance.
44
49
50
+
The size of the new Azure Cache for Redis instance.
51
+
52
+
For the Basic and Standard families:
53
+
54
+
```json
45
55
"cacheSKUCapacity": {
46
56
"type": "int",
47
57
"allowedValues": [
@@ -58,8 +68,20 @@ The size of the new Azure Cache for Redis instance.
58
68
"description": "The size of the new Azure Cache for Redis instance. "
59
69
}
60
70
}
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.
61
74
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.
62
76
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:
0 commit comments