New-AzApplicationGatewaySku
Creates a SKU for an application gateway.
Note
This is the previous version of our documentation. Please consult the most recent version for up-to-date information.
Syntax
New-AzApplicationGatewaySku
-Name <String>
-Tier <String>
[-Capacity <Int32>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The New-AzApplicationGatewaySku cmdlet creates a stock keeping unit (SKU) for an Azure application gateway.
Examples
Example 1: Create a SKU for an Azure application gateway
PS C:\>$SKU = New-AzApplicationGatewaySku -Name "Standard_Small" -Tier "Standard" -Capacity 2
This command creates a SKU named Standard_Small for an Azure application gateway and stores the result in the variable named $SKU.
Parameters
Specifies the number of instances of an application gateway.
| Type: | Nullable<T>[Int32] |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with azure.
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Specifies the name of the SKU. The acceptable values for this parameter are:
- Standard_Small
- Standard_Medium
- Standard_Large
- WAF_Medium
- WAF_Large
- Standard_v2
- WAF_v2
| Type: | String |
| Accepted values: | Standard_Small, Standard_Medium, Standard_Large, WAF_Medium, WAF_Large, Standard_v2, WAF_v2 |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Specifies the tier of the SKU. The acceptable values for this parameter are:
- Standard
- WAF
- Standard_v2
- WAF_v2
| Type: | String |
| Accepted values: | Standard, WAF, Standard_v2, WAF_v2 |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Inputs
None