Skip to content

Commit c944d5e

Browse files
committed
Adjust Parameter Names to match other Tools
1 parent 4c75b2d commit c944d5e

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

Syndication/AzureStack.MarketplaceSyndication.psm1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ function Sync-AzSOfflineMarketplaceItem{
2121

2222
[Parameter(Mandatory=$false, ParameterSetName='SyncOfflineAzsMarketplaceItem')]
2323
[ValidateNotNullorEmpty()]
24-
[String] $tenantid,
24+
[String] $AzureTenantID,
2525

2626
[Parameter(Mandatory=$false, ParameterSetName='SyncOfflineAzsMarketplaceItem')]
2727
[ValidateNotNullorEmpty()]
28-
[String] $subscriptionid
28+
[String] $AzureSubscriptionID
2929

3030
)
3131

3232

3333
If ($tenantid.isPresent)
3434
{
35-
$azureAccount = Add-AzureRmAccount -TenantId $tenantid
35+
$azureAccount = Add-AzureRmAccount -TenantId $AzureTenantID
3636
}
3737

38-
elseif($subscriptionid.isPresent)
38+
elseif($AzureSubscriptionID.isPresent)
3939
{
40-
Add-AzureRmAccount -subscriptionid $subsccription
40+
Add-AzureRmAccount -subscriptionid $AzureSubscriptionID
4141
}
4242

4343
else

Syndication/readme.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ Default: AzureCloud
3636

3737
Description: Once Azure Stack RP is available in other Clouds like Azure China you can specify which one to use
3838

39-
Parameter: TenantID
4039

41-
Description: Specify the Tenant ID for the Authentication
40+
Parameter: AzureTenantID
41+
42+
Description: Specify the Azure Tenant ID for Authentication
43+
4244

4345
Parameter: SubscriptionID
4446

45-
Description: Specify the Subscription ID for the Authentication when having multiple subscriptions
47+
Description: Specify the Azure Subscription ID for Authentication when having multiple subscriptions
4648

4749
## Importing into Azure Stack
4850

0 commit comments

Comments
 (0)