Skip to content

Commit f021593

Browse files
authored
Merge branch 'release-2025-03-04' into internal/release
2 parents 833fe4b + 5b33270 commit f021593

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Migrate/Migrate/ChangeLog.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
## Upcoming Release
2121

2222
## Version 2.7.0
23-
* Updated Data.Replication to newer API version
24-
- Updated Data.Replication to point to stable API version 2024-09-01
25-
* Rebranded Data.Replication cmdlets
26-
- Rebranded Data.Replication cmdlets from Azure Stack HCI to Azure Local
23+
* Updated Data.Replication to newer API version
24+
- Updated Data.Replication to point to stable API version 2024-09-01
25+
* Rebranded Data.Replication cmdlets
26+
- Rebranded Data.Replication cmdlets from Azure Stack HCI to Azure Local
2727

2828
## Version 2.6.0
2929
* Upgraded nuget package to signed package.

src/Resources/Policy.Autorest/docs/New-AzPolicyExemption.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The final command exempts the policy assignment in $Assignment at the level of t
6262
```powershell
6363
$VM = Get-AzVM -Name 'SpecialVM'
6464
$Assignment = Get-AzPolicyAssignment -Name 'VirtualMachinePolicyAssignment'
65-
New-AzPolicyExemption -Name 'VirtualMachinePolicyAssignment' -PolicyAssignment $Assignment -Scope $SpecialVM.Id -ExemptionCategory Waiver
65+
New-AzPolicyExemption -Name 'VirtualMachinePolicyAssignment' -PolicyAssignment $Assignment -Scope $VM.Id -ExemptionCategory Waiver
6666
```
6767

6868
The first command gets a VM named SpecialVM by using the Get-AzVM cmdlet and stores it in the $VM variable.

src/Resources/Policy.Autorest/examples/New-AzPolicyExemption.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The final command exempts the policy assignment in $Assignment at the level of t
3535
```powershell
3636
$VM = Get-AzVM -Name 'SpecialVM'
3737
$Assignment = Get-AzPolicyAssignment -Name 'VirtualMachinePolicyAssignment'
38-
New-AzPolicyExemption -Name 'VirtualMachinePolicyAssignment' -PolicyAssignment $Assignment -Scope $SpecialVM.Id -ExemptionCategory Waiver
38+
New-AzPolicyExemption -Name 'VirtualMachinePolicyAssignment' -PolicyAssignment $Assignment -Scope $VM.Id -ExemptionCategory Waiver
3939
```
4040

4141
The first command gets a VM named SpecialVM by using the Get-AzVM cmdlet and stores it in the $VM variable.

0 commit comments

Comments
 (0)