File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -36,13 +36,15 @@ Default: AzureCloud
3636
3737Description: 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
4345Parameter: 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
You can’t perform that action at this time.
0 commit comments