Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Subscription/Subscription/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
-->
## Upcoming Release

## Version 0.8.2
* Fix for the `New-AzSubscriptionAlias` cmdlet to make the Workload parameter mandatory.

## Version 0.8.1
* Updated Microsoft.Azure.Management.Subscription .Net SDK version to 2.0.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public ISubscriptionClient SubscriptionClient
[Parameter(Mandatory = false, HelpMessage = "Billing Scope")]
public string BillingScope { get; set; }

[Parameter(Mandatory = false, HelpMessage = "Type of Workload")]
[Parameter(Mandatory = true, HelpMessage = "Type of Workload")]
[PSArgumentCompleter("Production", "DevTest")]
public string Workload { get; set; }

Expand Down