File tree Expand file tree Collapse file tree 8 files changed +10
-9
lines changed Expand file tree Collapse file tree 8 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 20
20
21
21
-->
22
22
## Upcoming Release
23
- * Added ` ConsistencyMode ` parameter to ` New-AzRestorePoint `
23
+ * Added ` ConsistencyMode ` parameter to ` New-AzRestorePoint ` .
24
+ * Updated the storage account type value in several locations from the outdated ` StandardLRS ` to the current ` Standard_LRS ` .
24
25
* Filled in missing parameter descriptions across multiple parameters and improved some existing parameter descriptions.
25
26
26
27
## Version 5.3.0
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ The **Add-AzVmssDataDisk** cmdlet adds a data disk to the Virtual Machine Scale
28
28
### Example 1: Add a data disk
29
29
``` powershell
30
30
$vmss = New-AzVmssConfig -Location $Loc -SkuCapacity 2 -SkuName "Standard_A0" -UpgradePolicyMode "Automatic"
31
- $vmss = Add-AzVmssDataDisk -VirtualMachineScaleSet $vmss -Name 'DataDisk1' -Lun 0 -Caching 'ReadOnly' -CreateOption Empty -DiskSizeGB 10 -StorageAccountType StandardLRS
31
+ $vmss = Add-AzVmssDataDisk -VirtualMachineScaleSet $vmss -Name 'DataDisk1' -Lun 0 -Caching 'ReadOnly' -CreateOption Empty -DiskSizeGB 10 -StorageAccountType Standard_LRS
32
32
```
33
33
34
34
This command adds an empty data disk to the VMSS object.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The **New-AzSnapshot** cmdlet creates a snapshot.
24
24
25
25
### Example 1
26
26
``` powershell
27
- $snapshotconfig = New-AzSnapshotConfig -Location 'Central US' -DiskSizeGB 5 -AccountType StandardLRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
27
+ $snapshotconfig = New-AzSnapshotConfig -Location 'Central US' -DiskSizeGB 5 -AccountType Standard_LRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
28
28
$secretUrl = 'https://myvault.vault-int.azure-int.net/secrets/123/';
29
29
$secretId = '/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/ResourceGroup01/providers/Microsoft.KeyVault/vaults/TestVault123';
30
30
$keyUrl = 'https://myvault.vault-int.azure-int.net/keys/456';
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The **Set-AzDiskDiskEncryptionKey** cmdlet sets the disk encryption key properti
24
24
25
25
### Example 1
26
26
``` powershell
27
- $diskconfig = New-AzDiskConfig -Location 'Central US' -DiskSizeGB 5 -SkuName StandardLRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
27
+ $diskconfig = New-AzDiskConfig -Location 'Central US' -DiskSizeGB 5 -SkuName Standard_LRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
28
28
$secretUrl = 'https://myvault.vault-int.azure-int.net/secrets/123/';
29
29
$secretId = '/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/ResourceGroup01/providers/Microsoft.KeyVault/vaults/TestVault123';
30
30
$keyUrl = 'https://myvault.vault-int.azure-int.net/keys/456';
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The **Set-AzDiskKeyEncryptionKey** cmdlet sets the key encryption key properties
24
24
25
25
### Example 1
26
26
``` powershell
27
- $diskconfig = New-AzDiskConfig -Location 'Central US' -DiskSizeGB 5 -SkuName StandardLRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
27
+ $diskconfig = New-AzDiskConfig -Location 'Central US' -DiskSizeGB 5 -SkuName Standard_LRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
28
28
$secretUrl = 'https://myvault.vault-int.azure-int.net/secrets/123/';
29
29
$secretId = '/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/ResourceGroup01/providers/Microsoft.KeyVault/vaults/TestVault123';
30
30
$keyUrl = 'https://myvault.vault-int.azure-int.net/keys/456';
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The **Set-AzSnapshotDiskEncryptionKey** cmdlet sets the disk encryption key prop
24
24
25
25
### Example 1
26
26
``` powershell
27
- $snapshotconfig = New-AzSnapshotConfig -Location 'Central US' -DiskSizeGB 5 -AccountType StandardLRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
27
+ $snapshotconfig = New-AzSnapshotConfig -Location 'Central US' -DiskSizeGB 5 -AccountType Standard_LRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
28
28
$secretUrl = 'https://myvault.vault-int.azure-int.net/secrets/123/';
29
29
$secretId = '/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/ResourceGroup01/providers/Microsoft.KeyVault/vaults/TestVault123';
30
30
$keyUrl = 'https://myvault.vault-int.azure-int.net/keys/456';
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The **Set-AzSnapshotKeyEncryptionKey** cmdlet sets the key encryption key proper
24
24
25
25
### Example 1
26
26
``` powershell
27
- $snapshotconfig = New-AzSnapshotConfig -Location 'Central US' -DiskSizeGB 5 -AccountType StandardLRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
27
+ $snapshotconfig = New-AzSnapshotConfig -Location 'Central US' -DiskSizeGB 5 -AccountType Standard_LRS -OsType Windows -CreateOption Empty -EncryptionSettingsEnabled $true;
28
28
$secretUrl = 'https://myvault.vault-int.azure-int.net/secrets/123/';
29
29
$secretId = '/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/ResourceGroup01/providers/Microsoft.KeyVault/vaults/TestVault123';
30
30
$keyUrl = 'https://myvault.vault-int.azure-int.net/keys/456';
Original file line number Diff line number Diff line change @@ -468,8 +468,8 @@ Accept wildcard characters: False
468
468
### -ManagedDiskStorageAccountType
469
469
Specifies the storage account type for managed disk.
470
470
The acceptable values for this parameter are:
471
- - StandardLRS
472
- - PremiumLRS
471
+ - Standard_LRS
472
+ - Premium_LRS
473
473
474
474
` ` ` yaml
475
475
Type : System.String
You can’t perform that action at this time.
0 commit comments