< Back

New-AzureRmApplicationGatewaySku

Tue Jan 29, 2019 9:55 pm

NAME New-AzureRmApplicationGatewaySku



SYNOPSIS

Creates a SKU for an application gateway.





SYNTAX

New-AzureRmApplicationGatewaySku -Capacity <Int32> [-DefaultProfile <IAzureContextContainer>] -Name {Standard_Small | Standard_Medium |

Standard_Large | WAF_Medium | WAF_Large} -Tier {Standard | WAF} [<CommonParameters>]





DESCRIPTION

The New-AzureRmApplicationGatewaySku cmdlet creates a stock keeping unit (SKU) for an Azure application gateway.





PARAMETERS

-Capacity <Int32>

Specifies the number of instances of an application gateway.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

Specifies the name of the SKU.



The acceptable values for this parameter are:



- Standard_Small



- Standard_Medium



- Standard_Large



- WAF_Medium



- WAF_Large



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Tier <String>

Specifies the tier of the SKU. The acceptable values for this parameter are:



- Standard



- WAF



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

System.String







OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku







NOTES









Example 1: Create a SKU for an Azure application gateway



PS C:\\>$SKU = New-AzureRmApplicationGatewaySku -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.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... gatewaysku

Get-AzureRmApplicationGatewaySku

Set-AzureRmApplicationGatewaySku