Skip to content

Commit a69fda6

Browse files
committed
Add breaking change doc
1 parent 969bb18 commit a69fda6

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

src/ResourceManager/Subscription/documentation/current-breaking-changes.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,27 @@
3838
https://github.com/Azure/azure-powershell/blob/dev/documentation/breaking-changes/breaking-change-template.md
3939
-->
4040

41-
## Current Breaking Changes
41+
## Current Breaking Changes
42+
The following cmdlets were affected this release:
43+
44+
**Get-AzureRmSubscriptionDefinition**
45+
- Removed. Use Get-AzureRmSubscription instead.
46+
47+
```powershell
48+
# Old
49+
# Get-AzureRmSubscriptionDefinition
50+
51+
# New
52+
# Get-AzureRmSubscription
53+
```
54+
55+
**New-AzureRmSubscriptionDefinition**
56+
- Replaced by New-AzureRmSubscription.
57+
58+
```powershell
59+
# Old
60+
# New-AzureRmSubscriptionDefinition -Name mysubdef -OfferType ...
61+
62+
# New
63+
# New-AzureRmSubscription -EnrollmentAccountObjectId ... -OfferType ...
64+
```

0 commit comments

Comments
 (0)