Skip to content

Commit 94d3556

Browse files
Merge pull request #299426 from rohinchandra-li/patch-2
Update elastic-san-create.md
2 parents 8f7d579 + 68c3e56 commit 94d3556

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

articles/storage/elastic-san/elastic-san-create.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Use one of these sets of sample code to create an Elastic SAN that uses locally
5353
| `<VolumeName>` | The name of the Elastic SAN Volume to be created. |
5454
| `<Location>` | The region where the new resources will be created. |
5555
| `<Zone>` | The availability zone where the Elastic SAN will be created.<br> *Specify the same availability zone as the zone that will host your workload.*<br>*Use only if the Elastic SAN will use locally redundant storage.*<br> *Must be a zone supported in the target location such as `1`, `2`, or `3`.* |
56+
| `<BaseSizeTib>` | The amount of base units to provision. This is an optional parameter with default value 20. |
57+
| `<ExtendedCapacitySizeTiB>` | The amount of capacity-only units to provision. This is an optional parameter with default value 0. |
5658
| `<AutoScalePolicyEnforcement>` | The setting that determines whether or not autoscaling is enabled for the Elastic SAN. <br>*This value is optional but if passed in, must be 'Enabled' or 'Disabled'* |
5759
| `<UnusedSizeTiB>` | The capacity (in TiB) on your Elastic SAN that you want to keep free and unused. If you use more space than this amount, the scale-up operation is automatically triggered, increasing the size of your SAN. This parameter is optional but is required to enable autoscaling. |
5860
|`<IncreaseCapacityUnitByTiB>` | This parameter sets the TiB of additional capacity units that your SAN scales up by when autoscale gets triggered. This parameter is optional but is required to enable autoscaling. |
@@ -109,7 +111,7 @@ $VolumeName = "<VolumeName>"
109111
$Location = "<Location>"
110112
111113
# Create the SAN
112-
New-AzElasticSAN -ResourceGroupName $RgName -Name $EsanName -Location $Location -BaseSizeTib 100 -ExtendedCapacitySizeTiB 20 -SkuName Premium_ZRS
114+
New-AzElasticSAN -ResourceGroupName $RgName -Name $EsanName -Location $Location -SkuName Premium_ZRS
113115
```
114116

115117
# [Azure CLI](#tab/azure-cli)
@@ -124,6 +126,8 @@ Use one of these sets of sample code to create an Elastic SAN that uses locally
124126
| `<VolumeName>` | The name of the Elastic SAN Volume to be created. |
125127
| `<Location>` | The region where the new resources will be created. |
126128
| `<Zone>` | The availability zone where the Elastic SAN will be created.<br> *Specify the same availability zone as the zone that will host your workload.*<br>*Use only if the Elastic SAN uses locally redundant storage.*<br> *Must be a zone supported in the target location such as `1`, `2`, or `3`.* |
129+
| `<BaseSizeTib>` | The amount of base units to provision. This is an optional parameter with default value 20. |
130+
| `<ExtendedCapacitySizeTiB>` | The amount of capacity-only units to provision. This is an optional parameter with default value 0. |
127131
| `<AutoScalePolicyEnforcement>` | The setting that determines whether or not autoscaling is enabled for the Elastic SAN. <br>*This value is optional but if passed in, must be 'Enabled' or 'Disabled'* |
128132
| `<UnusedSizeTiB>` | The capacity (in TiB) on your Elastic SAN that you want to keep free and unused. If you use more space than this amount, the scale-up operation is automatically triggered, increasing the size of your SAN. This parameter is optional but is required to enable autoscaling. |
129133
|`<IncreaseCapacityUnitByTiB>` | This parameter sets the TiB of additional capacity units that your SAN scales up by when autoscale gets triggered. This parameter is optional but is required to enable autoscaling. |
@@ -145,7 +149,7 @@ Zone=<Zone>
145149
az login
146150
147151
# Create an Elastic SAN
148-
az elastic-san create -n $EsanName -g $RgName -l $Location --base-size-tib 100 --extended-capacity-size-tib 20 --sku "{name:Premium_LRS,tier:Premium}" --availability-zones $Zone
152+
az elastic-san create -n $EsanName -g $RgName -l $Location --sku "{name:Premium_LRS,tier:Premium}" --availability-zones $Zone
149153
```
150154

151155
The following command creates an Elastic SAN that uses locally redundant storage with autoscaling enabled.

0 commit comments

Comments
 (0)