< Back

Get-AzureRmApplicationGatewayBackendHttpSettings

Tue Jan 29, 2019 9:53 pm

NAME Get-AzureRmApplicationGatewayBackendHttpSettings



SYNOPSIS

Gets the back-end HTTP settings of an application gateway.





SYNTAX

Get-AzureRmApplicationGatewayBackendHttpSettings -ApplicationGateway <PSApplicationGateway> [-DefaultProfile <IAzureContextContainer>] [-Name

<String>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmApplicationGatewayBackendHttpSettings cmdlet gets the back-end HTTP settings of an application gateway.





PARAMETERS

-ApplicationGateway <PSApplicationGateway>

Specifies an application gateway object that contains back-end HTTP settings.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

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 backend HTTP settings that this cmdlet gets.



Required? false

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.AzureApplicationGatewayBackendHttpSettings







NOTES









Example 1: Get back-end HTTP settings by name



PS C:\\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"

PS C:\\> $Settings = Get-AzureRmApplicationGatewayBackendHttpSettings -Name "Settings01" -ApplicationGateway $AppGw



The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw

variable.The second command gets the HTTP settings named Settings01 for $AppGw and stores the settings in the $Settings variable.





Example 2: Get a collection of back-end HTTP settings



PS C:\\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"

PS C:\\> $SettingsList = Get-AzureRmApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw



The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw

variable.The second command gets the collection of HTTP settings for $AppGw and stores the settings in the $SettingsList variable.







RELATED LINKS

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

Add-AzureRmApplicationGatewayBackendHttpSettings

New-AzureRmApplicationGatewayBackendHttpSettings

Remove-AzureRmApplicationGatewayBackendHttpSettings

Set-AzureRmApplicationGatewayBackendHttpSettings