Skip to content

Commit d1e4ba7

Browse files
authored
Merge pull request #3591 from jonathanmedd/New-AzureRmAppServicePlan
New-AzureRmAppServicePlan Help Example 1
2 parents e94fd3a + 8aa33fc commit d1e4ba7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ResourceManager/Websites/Commands.Websites/Microsoft.Azure.Commands.Websites.dll-Help.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2513,8 +2513,8 @@
25132513
</maml:alert>
25142514
</maml:alertSet>
25152515
<command:examples><command:example><maml:title>-------------------------- Example 1: Create an App Service plan --------------------------</maml:title>
2516-
<dev:code>PS C:\&gt;New-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "MyServicePlan" -Location "West US" -Sku "Basic" -NumberofWorkers 2 -WorkerSize "Small"</dev:code>
2517-
<dev:remarks><maml:para>This command creates an App Service plan named MyServicePlan in the geo location West US. The command specifies a Basic SKU and allocates two workers.
2516+
<dev:code>PS C:\&gt;New-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "ContosoASP" -Location "West US" -Tier "Basic" -NumberofWorkers 2 -WorkerSize "Small"</dev:code>
2517+
<dev:remarks><maml:para>This command creates an App Service plan named ContosoASP in the resource group named Default-Web-WestUS in Geo location West US. The command specifies a Basic Tier and allocates two small workers.
25182518
</maml:para>
25192519
<maml:para></maml:para>
25202520
<maml:para></maml:para>

src/ResourceManager/Websites/Commands.Websites/help/New-AzureRmAppServicePlan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ The **New-AzureRmAppServicePlan** cmdlet creates an Azure App Service plan in a
3333

3434
### Example 1: Create an App Service plan
3535
```
36-
PS C:\>New-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "ContosoASP" -location "West US" -Tier Basic -NumberofWorkers 2 -WorkerSize Small
36+
PS C:\>New-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "ContosoASP" -Location "West US" -Tier "Basic" -NumberofWorkers 2 -WorkerSize "Small"
3737
```
3838

3939
This command creates an App Service plan named ContosoASP in the resource group named Default-Web-WestUS in Geo location West US.
40-
The command uses a Basic SKU and allocates two small workers.
40+
The command specifies a Basic Tier and allocates two small workers.
4141

4242
## PARAMETERS
4343

0 commit comments

Comments
 (0)