File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
articles/azure-resource-manager/templates Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1061,16 +1061,16 @@ New-AzResourceGroupDeployment -ResourceGroupName functionexamplegroup -TemplateU
1061
1061
1062
1062
## range
1063
1063
1064
- ` range(startingInteger, numberOfElements ) `
1064
+ ` range(startIndex, count ) `
1065
1065
1066
1066
Creates an array of integers from a starting integer and containing a number of items.
1067
1067
1068
1068
### Parameters
1069
1069
1070
1070
| Parameter | Required | Type | Description |
1071
1071
| :--- | :--- | :--- | :--- |
1072
- | startingInteger | Yes | int | The first integer in the array. |
1073
- | numberofElements | Yes | int | The number of integers in the array. |
1072
+ | startIndex | Yes | int | The first integer in the array. The sum of startIndex and count must be no greater than 2147483647 . |
1073
+ | count | Yes | int | The number of integers in the array. Must be non-negative integer up to 10000 . |
1074
1074
1075
1075
### Return value
1076
1076
You can’t perform that action at this time.
0 commit comments