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: src/ResourceManager/Compute/ChangeLog.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,11 @@
18
18
- Additional information about change #1
19
19
-->
20
20
## Current Release
21
+
* Azure Disk Encryption Extension Commands
22
+
- New Parameter for 'Set-AzureRmVmDiskEncryptionExtension': '-EncryptFormatAll' encrypt formats data disks
23
+
- New Parameters for 'Set-AzureRmVmDiskEncryptionExtension': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
24
+
- New Parameters for 'Disable-AzureRmVmDiskEncryption': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
25
+
- New Parameters for 'Get-AzureRmVmDiskEncryptionStatus': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
21
26
22
27
## Version 3.4.1
23
28
@@ -173,4 +178,4 @@
173
178
- VMScaleSet and ContainerService now have "ResourceGroupName" property, so when piping Get command to Delete/Update command, -ResourceGroupName is not required.
174
179
* Separate paremater sets for Set-AzureRmVM with Generalized and Redeploy parameter
175
180
* Reduce time taken by Get-AzureRmVMDiskEncryptionStatus cmdlet from two minutes to under five seconds
176
-
* Allow Set-AzureRmVMDiskEncryptionStatus to be used with VHDs residing in multiple resource groups
181
+
* Allow Set-AzureRmVMDiskEncryptionStatus to be used with VHDs residing in multiple resource groups
Copy file name to clipboardExpand all lines: src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/AzureDiskEncryptionExtensionConstants.cs
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ public static class AzureDiskEncryptionExtensionConstants
Copy file name to clipboardExpand all lines: src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/AzureDiskEncryptionExtensionContext.cs
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,10 +25,12 @@ public class AzureDiskEncryptionExtensionContext : PSVirtualMachineExtension
HelpMessage="The extension type. Specify this parameter to override its default value of \"AzureDiskEncryption\" for Windows VMs and \"AzureDiskEncryptionForLinux\" for Linux VMs.")]
95
+
[ValidateNotNullOrEmpty]
96
+
publicstringExtensionType{get;set;}
97
+
98
+
[Parameter(
99
+
Mandatory=false,
100
+
ValueFromPipelineByPropertyName=true,
101
+
HelpMessage="The extension publisher name. Specify this parameter only to override the default value of \"Microsoft.Azure.Security\".")]
Copy file name to clipboardExpand all lines: src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs
+36-16Lines changed: 36 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,20 @@ public class GetAzureDiskEncryptionStatusCommand : VirtualMachineExtensionBaseCm
58
58
[ValidateNotNullOrEmpty]
59
59
publicstringName{get;set;}
60
60
61
+
[Parameter(
62
+
Mandatory=false,
63
+
ValueFromPipelineByPropertyName=true,
64
+
HelpMessage="The extension type. Specify this parameter to override its default value of \"AzureDiskEncryption\" for Windows VMs and \"AzureDiskEncryptionForLinux\" for Linux VMs.")]
65
+
[ValidateNotNullOrEmpty]
66
+
publicstringExtensionType{get;set;}
67
+
68
+
[Parameter(
69
+
Mandatory=false,
70
+
ValueFromPipelineByPropertyName=true,
71
+
HelpMessage="The extension publisher name. Specify this parameter only to override the default value of \"Microsoft.Azure.Security\".")]
0 commit comments