Skip to content

Latest commit

 

History

History
87 lines (61 loc) · 2.53 KB

Get-AzureRmApplicationGatewaySku.md

File metadata and controls

87 lines (61 loc) · 2.53 KB
external help file Module Name ms.assetid online version schema
Microsoft.Azure.Commands.Network.dll-Help.xml
AzureRM.Network
F01CB88A-49E7-41D8-B4E7-F1A4DCDC6B84
2.0.0

Get-AzureRmApplicationGatewaySku

SYNOPSIS

Gets the SKU of an application gateway.

SYNTAX

Get-AzureRmApplicationGatewaySku -ApplicationGateway <PSApplicationGateway>
 [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]

DESCRIPTION

The Get-AzureRmApplicationGatewaySku cmdlet gets the stock keeping unit (SKU) of an application gateway.

EXAMPLES

Example 1: Get an application gateway SKU

PS C:\>$AppGW = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
PS C:\> $SKU = Get-AzureRmApplicationGatewaySku -ApplicationGateway $AppGW

The first command gets the Application Gateway named ApplicationGateway01 and stores the result in the variable named $AppGW. The second command gets the SKU of an application gateway named ApplicationGateway01 and stores the result in the variable named $SKU.

PARAMETERS

-ApplicationGateway

Specifies the application gateway object.

Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-DefaultProfile

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

Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGateway

Parameters: ApplicationGateway (ByValue)

OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku

NOTES

RELATED LINKS

New-AzureRmApplicationGatewaySku

Set-AzureRmApplicationGatewaySku