Remove-AzApplicationGatewayUrlPathMapConfig
拿掉後端伺服器集區的 URL 路徑對應。
語法
Remove-AzApplicationGatewayUrlPathMapConfig
-Name <String>
-ApplicationGateway <PSApplicationGateway>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Remove-AzApplicationGatewayUrlPathMapConfig Cmdlet 會移除後端伺服器集區的 URL 路徑對應。
範例
範例 1:從應用程式閘道移除 URL 路徑對應
$appgw = Get-AzApplicationGateway -ResourceGroupName "rg" -Name "appGwName"
$appgw = Remove-AzApplicationGatewayUrlPathMapConfig -ApplicationGateway $appgw -Name "map01"
$appgw = Set-AzApplicationGateway -ApplicationGateway $appgw
第一個命令會取得名為 appGwName 的應用程式閘道,並將結果儲存在 $appgw 變數中。 第二個命令會從應用程式閘道移除名為 map01 的 URL 路徑對應。 第三個命令會更新應用程式閘道。
參數
-ApplicationGateway
指定此 Cmdlet 移除 URL 路徑對應組態的應用程式閘道。
類型: | PSApplicationGateway |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-DefaultProfile
用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。
類型: | IAzureContextContainer |
別名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定此 Cmdlet 從後端伺服器移除的 URL 路徑對應名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |