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: ChangeLog.md
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,12 @@
58
58
* Added support for Azure Active Directory based authentication.
59
59
- To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`.
60
60
- For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet.
61
+
* Compute
62
+
* Azure Disk Encryption Extension Commands
63
+
- New Parameter for 'Set-AzureRmVmDiskEncryptionExtension': '-EncryptFormatAll' encrypt formats data disks
64
+
- New Parameters for 'Set-AzureRmVmDiskEncryptionExtension': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
65
+
- New Parameters for 'Disable-AzureRmVmDiskEncryption': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
66
+
- New Parameters for 'Get-AzureRmVmDiskEncryptionStatus': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
61
67
* DataLakeAnalytics
62
68
* Please see the migration guide for breaking changes made to DataLakeAnalytics this release
63
69
* Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsAccount
@@ -100,6 +106,27 @@
100
106
-```Clear-AzureRmDefault -ResourceGroup```
101
107
- Add-AzureRmEnvironment and Set-AzureRmEnvironment
102
108
- Add the BatchAudience parameter, which allows you to specify the Azure Batch Active Directory audience to use when acquiring authentication tokens for the Batch service.
109
+
* RecoveryServices.SiteRecovery
110
+
* Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure)
Copy file name to clipboardExpand all lines: src/ResourceManager/Compute/AzureRM.Compute.psd1
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,11 @@ PrivateData = @{
202
202
# IconUri = ''
203
203
204
204
# ReleaseNotes of this module
205
-
ReleaseNotes='Updated for common code changes'
205
+
ReleaseNotes='* Azure Disk Encryption Extension Commands
206
+
- New Parameter for ''Set-AzureRmVmDiskEncryptionExtension'': ''-EncryptFormatAll'' encrypt formats data disks
207
+
- New Parameters for ''Set-AzureRmVmDiskEncryptionExtension'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension
208
+
- New Parameters for ''Disable-AzureRmVmDiskEncryption'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension
209
+
- New Parameters for ''Get-AzureRmVmDiskEncryptionStatus'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension'
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
@@ -20,6 +20,11 @@
20
20
## Current Release
21
21
22
22
## Version 4.0.0
23
+
* Azure Disk Encryption Extension Commands
24
+
- New Parameter for 'Set-AzureRmVmDiskEncryptionExtension': '-EncryptFormatAll' encrypt formats data disks
25
+
- New Parameters for 'Set-AzureRmVmDiskEncryptionExtension': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
26
+
- New Parameters for 'Disable-AzureRmVmDiskEncryption': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
27
+
- New Parameters for 'Get-AzureRmVmDiskEncryptionStatus': '-ExtensionPublisherName' and '-ExtensionType' allow switching to other versions of the extension
23
28
24
29
## Version 3.4.1
25
30
@@ -175,4 +180,4 @@
175
180
- VMScaleSet and ContainerService now have "ResourceGroupName" property, so when piping Get command to Delete/Update command, -ResourceGroupName is not required.
176
181
* Separate paremater sets for Set-AzureRmVM with Generalized and Redeploy parameter
177
182
* Reduce time taken by Get-AzureRmVMDiskEncryptionStatus cmdlet from two minutes to under five seconds
178
-
* Allow Set-AzureRmVMDiskEncryptionStatus to be used with VHDs residing in multiple resource groups
183
+
* 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