次の方法で共有


Get-AzApplicationGatewayBackendHttpSetting

アプリケーション ゲートウェイのバックエンド HTTP 設定を取得します。

構文

Get-AzApplicationGatewayBackendHttpSetting
   [-Name <String>]
   -ApplicationGateway <PSApplicationGateway>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

説明

Get-AzApplicationGatewayBackendHttpSetting コマンドレットは、アプリケーション ゲートウェイのバックエンド HTTP 設定を取得します。

例 1: 名前でバックエンド HTTP 設定を取得する

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$Settings  = Get-AzApplicationGatewayBackendHttpSetting -Name "Settings01" -ApplicationGateway $AppGw

最初のコマンドは、ResourceGroup01 という名前のリソース グループ内の ApplicationGateway01 という名前のアプリケーション ゲートウェイを取得し、$AppGw変数に格納します。2 番目のコマンドは、$AppGwの Settings01 という名前の HTTP 設定を取得し、$Settings変数に設定を格納します。

例 2: バックエンド HTTP 設定のコレクションを取得する

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$SettingsList  = Get-AzApplicationGatewayBackendHttpSetting -ApplicationGateway $AppGw

最初のコマンドは、ResourceGroup01 という名前のリソース グループ内の ApplicationGateway01 という名前のアプリケーション ゲートウェイを取得し、$AppGw変数に格納します。2 番目のコマンドは、$AppGwの HTTP 設定のコレクションを取得し、$SettingsList変数に設定を格納します。

パラメーター

-ApplicationGateway

バックエンド HTTP 設定を含むアプリケーション ゲートウェイ オブジェクトを指定します。

型:PSApplicationGateway
配置:Named
規定値:None
必須:True
パイプライン入力を受け取る:True
ワイルドカード文字を受け取る:False

-DefaultProfile

Azure との通信に使用される資格情報、アカウント、テナント、サブスクリプション。

型:IAzureContextContainer
Aliases:AzContext, AzureRmContext, AzureCredential
配置:Named
規定値:None
必須:False
パイプライン入力を受け取る:False
ワイルドカード文字を受け取る:False

-Name

このコマンドレットが取得するバックエンド HTTP 設定の名前を指定します。

型:String
配置:Named
規定値:None
必須:False
パイプライン入力を受け取る:False
ワイルドカード文字を受け取る:False

入力

PSApplicationGateway

出力

PSApplicationGatewayBackendHttpSettings