We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8650bfc commit 3ef6458Copy full SHA for 3ef6458
src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementProduct.cs
@@ -89,7 +89,6 @@ public override void ExecuteApiManagementCmdlet()
89
string productId = ProductId ?? Guid.NewGuid().ToString("N");
90
91
bool? approvalRequired = null;
92
- Int32? subscriptionsLimit = null;
93
if (SubscriptionRequired.HasValue && SubscriptionRequired.Value)
94
{
95
approvalRequired = ApprovalRequired ?? false;
@@ -103,7 +102,7 @@ public override void ExecuteApiManagementCmdlet()
103
102
LegalTerms,
104
SubscriptionRequired ?? true,
105
approvalRequired,
106
- subscriptionsLimit,
+ SubscriptionsLimit,
107
State);
108
109
WriteObject(product);
0 commit comments