Skip to content
This repository was archived by the owner on Nov 10, 2017. It is now read-only.

Commit 327fa5d

Browse files
committed
Renamed the parameter PricingTier to AzureSqlDatabasePricingTier.
The parameter PricingTier has been renamed to AzureSqlDatabasePricingTier to better reflects its meaning in the Publish-SitecoreSqlDatabase cmdlet.
1 parent 31df496 commit 327fa5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Sitecore.Azure/Sitecore.Azure.psm1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ function Get-SitecoreAzureSqlDatabaseConnectionString
488488
.PARAMETER AzureSqlServerCredential
489489
Specifies the SQL Database server administrator credentials for the new server.
490490
491-
.PARAMETER PricingTier
491+
.PARAMETER AzureSqlDatabasePricingTier
492492
Specifies the SQL Database pricing tier to assign to the database. Valid values are:
493493
-- Basis
494494
-- S0
@@ -547,7 +547,7 @@ function Get-SitecoreAzureSqlDatabaseConnectionString
547547
ID=sitecore@sitecore-azure-50876f04;Password=Experienc3!;Trusted_Connection=False;Encrypt=True;Connection Timeout=30
548548
549549
.EXAMPLE
550-
PS C:\> Publish-SitecoreSqlDatabase -SqlServerName "Oleg-PC\SQLEXPRESS" -SqlServerCredentials $localSqlServerCredentials -SqlServerDatabaseList @("sc81initial_core", "sc81initial_master", "sc81initial_web") -AzureSqlServerName "sitecore-azure" -AzureSqlServerCredentials $azureSqlServerCredentials -PricingTier "P1"
550+
PS C:\> Publish-SitecoreSqlDatabase -SqlServerName "Oleg-PC\SQLEXPRESS" -SqlServerCredentials $localSqlServerCredentials -SqlServerDatabaseList @("sc81initial_core", "sc81initial_master", "sc81initial_web") -AzureSqlServerName "sitecore-azure" -AzureSqlServerCredentials $azureSqlServerCredentials -AzureSqlDatabasePricingTier "P1"
551551
552552
This command publishes the SQL Server databases "sc81initial_core", "sc81initial_master" and "sc81initial_web" from the local SQL Server "Oleg-PC\SQLEXPRESS" to an Azure SQL Database Server with specified credentials and "P1 Premium" price tier.
553553
@@ -635,7 +635,7 @@ function Publish-SitecoreSqlDatabase
635635
[Parameter(Position=8, Mandatory = $false)]
636636
[ValidateNotNullOrEmpty()]
637637
[System.String]
638-
$PricingTier = "S2"
638+
$AzureSqlDatabasePricingTier = "S2"
639639
)
640640

641641
$outputDirectory = Export-SitecoreAzureSqlDatabase -SqlServerName $SqlServerName `
@@ -659,7 +659,7 @@ function Publish-SitecoreSqlDatabase
659659
-SqlServerName $AzureSqlServerName `
660660
-SqlServerCredentials $AzureSqlServerCredentials `
661661
-StorageAccountContext $storageAccountContext `
662-
-PricingTier $PricingTier
662+
-PricingTier $AzureSqlDatabasePricingTier
663663

664664
Get-SitecoreAzureSqlServerStatus -ImportRequestList $importRequestList
665665

0 commit comments

Comments
 (0)