New-AzFunctionAppPlan
Creates a function app service plan.
Syntax
New-AzFunctionAppPlan
-Name <String>
-ResourceGroupName <String>
-Location <String>
[-SubscriptionId <String>]
-Sku <String>
[-MaximumWorkerCount <Int32>]
[-MinimumWorkerCount <Int32>]
[-Tag <Hashtable>]
[-DefaultProfile <PSObject>]
-WorkerType <String>
[-NoWait]
[-AsJob]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Creates a function app service plan.
Examples
Example 1: Create a Windows premium app plan in West Europe with burst out capability up to 10 instances.
New-AzFunctionAppPlan -ResourceGroupName MyResourceGroupName `
-Name MyPremiumPlan `
-Location WestEurope `
-MinimumWorkerCount 1 `
-MaximumWorkerCount 10 `
-Sku EP1 `
-WorkerType Windows
This command creates a Windows premium app plan in West Europe with burst out capability up to 10 instances.
Parameters
-AsJob
Run the command as a job.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DefaultProfile
Type: | PSObject |
Aliases: | AzureRMContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Location
The location for the consumption plan.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MaximumWorkerCount
The maximum number of workers for the app service plan.
Type: | Int32 |
Aliases: | MaxBurst |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MinimumWorkerCount
The minimum number of workers for the app service plan.
Type: | Int32 |
Aliases: | MinInstances |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Name of the App Service plan.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-NoWait
Run the command asynchronously.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ResourceGroupName
Name of the resource group to which the resource belongs.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Sku
The plan sku. Valid inputs are: EP1, EP2, EP3
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SubscriptionId
The Azure subscription ID.
Type: | String |
Position: | Named |
Default value: | (Get-AzContext).Subscription.Id |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Tag
Resource tags.
Type: | Hashtable |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WorkerType
The worker type for the plan. Valid inputs are: Windows or Linux.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |