Skip to content

Commit e02e3af

Browse files
committed
last second updates
1 parent 7e5284f commit e02e3af

5 files changed

+18
-18
lines changed

articles/cosmos-db/manage-cassandra-with-resource-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ This template creates an Azure Cosmos account in two regions with options for co
122122
"description": "Throughput value when using Provisioned Throughput Policy for the Cassandra table"
123123
}
124124
},
125-
"maxAutoscaleThroughput": {
125+
"autoscaleMaxThroughput": {
126126
"type": "int",
127127
"defaultValue": 4000,
128128
"minValue": 4000,
@@ -168,10 +168,10 @@ This template creates an Azure Cosmos account in two regions with options for co
168168
],
169169
"throughputPolicy": {
170170
"Manual": {
171-
"Throughput": "[parameters('manualProvisionedThroughput')]"
171+
"throughput": "[parameters('manualProvisionedThroughput')]"
172172
},
173173
"Autoscale": {
174-
"autoscaleSettings": { "maxThroughput": "[parameters('maxAutoscaleThroughput')]" }
174+
"autoscaleSettings": { "maxThroughput": "[parameters('autoscaleMaxThroughput')]" }
175175
}
176176
},
177177
"throughputPolicyToUse": "[if(equals(parameters('throughputPolicy'), 'Manual'), variables('throughputPolicy').Manual, variables('throughputPolicy').Autoscale)]"

articles/cosmos-db/manage-gremlin-with-resource-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ This template will create an Azure Cosmos account for Gremlin API with a databas
132132
"description": "Throughput value when using Provisioned Throughput Policy for the container"
133133
}
134134
},
135-
"maxAutoscaleThroughput": {
135+
"autoscaleMaxThroughput": {
136136
"type": "int",
137137
"defaultValue": 4000,
138138
"minValue": 4000,
@@ -177,10 +177,10 @@ This template will create an Azure Cosmos account for Gremlin API with a databas
177177
],
178178
"throughputPolicy": {
179179
"Manual": {
180-
"Throughput": "[parameters('manualProvisionedThroughput')]"
180+
"throughput": "[parameters('manualProvisionedThroughput')]"
181181
},
182182
"Autoscale": {
183-
"autoscaleSettings": { "maxThroughput": "[parameters('maxAutoscaleThroughput')]" }
183+
"autoscaleSettings": { "maxThroughput": "[parameters('autoscaleMaxThroughput')]" }
184184
}
185185
},
186186
"throughputPolicyToUse": "[if(equals(parameters('throughputPolicy'), 'Manual'), variables('throughputPolicy').Manual, variables('throughputPolicy').Autoscale)]"

articles/cosmos-db/manage-mongodb-with-resource-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ This template will create an Azure Cosmos account for MongoDB API (3.2 or 3.6) w
130130
"description": "Throughput value when using Provisioned Throughput Policy for the Database"
131131
}
132132
},
133-
"maxAutoscaleThroughput": {
133+
"autoscaleMaxThroughput": {
134134
"type": "int",
135135
"defaultValue": 4000,
136136
"minValue": 4000,
@@ -176,10 +176,10 @@ This template will create an Azure Cosmos account for MongoDB API (3.2 or 3.6) w
176176
],
177177
"throughputPolicy": {
178178
"Manual": {
179-
"Throughput": "[parameters('manualProvisionedThroughput')]"
179+
"throughput": "[parameters('manualProvisionedThroughput')]"
180180
},
181181
"Autoscale": {
182-
"autoscaleSettings": { "maxThroughput": "[parameters('maxAutoscaleThroughput')]" }
182+
"autoscaleSettings": { "maxThroughput": "[parameters('autoscaleMaxThroughput')]" }
183183
}
184184
},
185185
"throughputPolicyToUse": "[if(equals(parameters('throughputPolicy'), 'Manual'), variables('throughputPolicy').Manual, variables('throughputPolicy').Autoscale)]"

articles/cosmos-db/manage-sql-with-resource-manager.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ This template creates an Azure Cosmos account in two regions with options for co
124124
"description": "Throughput value when using Provisioned Throughput Policy for the container"
125125
}
126126
},
127-
"maxAutoscaleThroughput": {
127+
"autoscaleMaxThroughput": {
128128
"type": "int",
129129
"defaultValue": 4000,
130130
"minValue": 4000,
@@ -170,10 +170,10 @@ This template creates an Azure Cosmos account in two regions with options for co
170170
],
171171
"throughputPolicy": {
172172
"Manual": {
173-
"Throughput": "[parameters('manualProvisionedThroughput')]"
173+
"throughput": "[parameters('manualProvisionedThroughput')]"
174174
},
175175
"Autoscale": {
176-
"autoscaleSettings": { "maxThroughput": "[parameters('maxAutoscaleThroughput')]" }
176+
"autoscaleSettings": { "maxThroughput": "[parameters('autoscaleMaxThroughput')]" }
177177
}
178178
},
179179
"throughputPolicyToUse": "[if(equals(parameters('throughputPolicy'), 'Manual'), variables('throughputPolicy').Manual, variables('throughputPolicy').Autoscale)]"
@@ -334,7 +334,7 @@ This template creates an Azure Cosmos account in one region with a container wit
334334
"description": "Throughput value when using Manual Throughput Policy for the container"
335335
}
336336
},
337-
"maxAutoscaleThroughput": {
337+
"autoscaleMaxThroughput": {
338338
"type": "int",
339339
"defaultValue": 4000,
340340
"minValue": 4000,
@@ -356,10 +356,10 @@ This template creates an Azure Cosmos account in one region with a container wit
356356
],
357357
"throughputPolicy": {
358358
"Manual": {
359-
"Throughput": "[parameters('manualProvisionedThroughput')]"
359+
"throughput": "[parameters('manualProvisionedThroughput')]"
360360
},
361361
"Autoscale": {
362-
"autoscaleSettings": { "maxThroughput": "[parameters('maxAutoscaleThroughput')]" }
362+
"autoscaleSettings": { "maxThroughput": "[parameters('autoscaleMaxThroughput')]" }
363363
}
364364
},
365365
"throughputPolicyToUse": "[if(equals(parameters('throughputPolicy'), 'Manual'), variables('throughputPolicy').Manual, variables('throughputPolicy').Autoscale)]"

articles/cosmos-db/manage-table-with-resource-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ This template will create an Azure Cosmos account for Table API with one table w
119119
"description": "Throughput value when using Provisioned Throughput Policy for the table"
120120
}
121121
},
122-
"maxAutoscaleThroughput": {
122+
"autoscaleMaxThroughput": {
123123
"type": "int",
124124
"defaultValue": 4000,
125125
"minValue": 4000,
@@ -165,10 +165,10 @@ This template will create an Azure Cosmos account for Table API with one table w
165165
],
166166
"throughputPolicy": {
167167
"Manual": {
168-
"Throughput": "[parameters('manualProvisionedThroughput')]"
168+
"throughput": "[parameters('manualProvisionedThroughput')]"
169169
},
170170
"Autoscale": {
171-
"autoscaleSettings": { "maxThroughput": "[parameters('maxAutoscaleThroughput')]" }
171+
"autoscaleSettings": { "maxThroughput": "[parameters('autoscaleMaxThroughput')]" }
172172
}
173173
},
174174
"throughputPolicyToUse": "[if(equals(parameters('throughputPolicy'), 'Manual'), variables('throughputPolicy').Manual, variables('throughputPolicy').Autoscale)]"

0 commit comments

Comments
 (0)