Skip to content

Commit 0b82eab

Browse files
committed
Add RecoveryServices.Backup change log and release notes
1 parent f808664 commit 0b82eab

File tree

4 files changed

+25
-27
lines changed

4 files changed

+25
-27
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,13 @@
106106
- ```Clear-AzureRmDefault -ResourceGroup```
107107
- Add-AzureRmEnvironment and Set-AzureRmEnvironment
108108
- 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.Backup
110+
* Added cmdlets to perform instant file recovery.
111+
- Get-AzureRmRecoveryServicesBackupRPMountScript
112+
- Disable-AzureRmRecoveryServicesBackupRPMountScript
113+
* Updated RecoveryServices.Backup SDK version to the latest
114+
* Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves.
115+
* Fixes https://github.com/Azure/azure-powershell/issues/3164
109116
* RecoveryServices.SiteRecovery
110117
* Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure)
111118
- New-AzureRmRecoveryServicesAsrPolicy

src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,12 @@ PrivateData = @{
130130
# IconUri = ''
131131

132132
# ReleaseNotes of this module
133-
ReleaseNotes = 'Updated for common code changes'
133+
ReleaseNotes = '* Added cmdlets to perform instant file recovery.
134+
- Get-AzureRmRecoveryServicesBackupRPMountScript
135+
- Disable-AzureRmRecoveryServicesBackupRPMountScript
136+
* Updated RecoveryServices.Backup SDK version to the latest
137+
* Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves.
138+
* Fixes https://github.com/Azure/azure-powershell/issues/3164'
134139

135140
# External dependent modules of this module
136141
# ExternalModuleDependencies = ''

src/ResourceManager/RecoveryServices.Backup/ChangeLog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
22+
## Version 4.0.0
2123
* Added cmdlets to perform instant file recovery.
24+
- Get-AzureRmRecoveryServicesBackupRPMountScript
25+
- Disable-AzureRmRecoveryServicesBackupRPMountScript
2226
* Updated RecoveryServices.Backup SDK version to the latest
2327
* Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves.
2428
* Fixes https://github.com/Azure/azure-powershell/issues/3164
2529

26-
## Version 4.0.0
27-
2830
## Version 3.4.1
2931

3032
## Version 3.4.0

tools/AzureRM/AzureRM.psd1

Lines changed: 8 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -182,30 +182,7 @@ PrivateData = @{
182182
- Get/New/Remove-AzureRmApplicationInsightsApiKey
183183
* AzureBatch
184184
* Please see the migration guide for breaking changes made to Batch this release
185-
* Added new parameters to `New-AzureRmBatchAccount`.
186-
- `PoolAllocationMode`: The allocation mode to use for creating pools in the Batch account. To create a Batch account which allocates pool nodes in the user''s subscription, set this to `UserSubscription`.
187-
- `KeyVaultId`: The resource ID of the Azure key vault associated with the Batch account.
188-
- `KeyVaultUrl`: The URL of the Azure key vault associated with the Batch account.
189-
* Updated parameters to `New-AzureBatchTask`.
190-
- Removed the `RunElevated` switch. The `UserIdentity` parameter has been added to replace `RunElevated`, and the equivalent behavior can be achieved by constructing a `PSUserIdentity` as shown below:
191-
- $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin")
192-
- $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser
193-
- Added the `AuthenticationTokenSettings` parameter. This parameter allows you to request the Batch service provide an authentication token to the task when it runs, avoiding the need to pass Batch account keys to the task in order to issue requests to the Batch service.
194-
- Added the `ContainerSettings` parameter.
195-
- This parameter allows you to request the Batch service run the task inside a container.
196-
- Added the `OutputFiles` parameter.
197-
- This parameter allows you to configure the task to upload files to Azure Storage after it has finished.
198-
* Updated parameters to `New-AzureBatchPool`.
199-
- Added the `UserAccounts` parameter.
200-
- This parameter defines user accounts created on each node in the pool.
201-
- Added `TargetLowPriorityComputeNodes` and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`.
202-
- A `TargetDedicated` alias was created for the `TargetDedicatedComputeNodes` parameter.
203-
- Added the `NetworkConfiguration` parameter.
204-
- This parameter allows you to configure the pools network settings.
205-
* Renamed the `Name` parameter to `Path` on `Get-AzureBatchNodeFile`, `Get-AzureBatchNodeFileContent`, and `Remove-AzureBatchNodeFile`.
206-
- A `Name` alias was created for the `Path` parameter.
207-
* Changes to objects
208-
- Please see the Batch change log for the full list
185+
* Please see the Batch change log for a full list of changes made this release
209186
* Added support for Azure Active Directory based authentication.
210187
- 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`.
211188
- 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.
@@ -251,6 +228,13 @@ PrivateData = @{
251228
- ```Clear-AzureRmDefault -ResourceGroup```
252229
- Add-AzureRmEnvironment and Set-AzureRmEnvironment
253230
- 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.
231+
* RecoveryServices.Backup
232+
* Added cmdlets to perform instant file recovery.
233+
- Get-AzureRmRecoveryServicesBackupRPMountScript
234+
- Disable-AzureRmRecoveryServicesBackupRPMountScript
235+
* Updated RecoveryServices.Backup SDK version to the latest
236+
* Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves.
237+
* Fixes https://github.com/Azure/azure-powershell/issues/3164
254238
* RecoveryServices.SiteRecovery
255239
* Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure)
256240
- New-AzureRmRecoveryServicesAsrPolicy

0 commit comments

Comments
 (0)