共用方式為


Add-AzureRmApplicationGatewayRequestRoutingRule

將要求路由規則新增至應用程式閘道。

警告

自 2024 年 2 月 29 日起,AzureRM PowerShell 模組已正式淘汰。 建議使用者從 AzureRM 遷移至 Az PowerShell 模組,以確保持續支援和更新。

雖然 AzureRM 模組可能仍可運作,但不再維護或支援它,但會根據用戶的判斷權和風險放置任何繼續使用。 如需轉換至 Az 模組的指引,請參閱我們的 移轉資源

語法

Add-AzureRmApplicationGatewayRequestRoutingRule
   -ApplicationGateway <PSApplicationGateway>
   -Name <String>
   -RuleType <String>
   [-BackendHttpSettingsId <String>]
   [-HttpListenerId <String>]
   [-BackendAddressPoolId <String>]
   [-UrlPathMapId <String>]
   [-RedirectConfigurationId <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Add-AzureRmApplicationGatewayRequestRoutingRule
   -ApplicationGateway <PSApplicationGateway>
   -Name <String>
   -RuleType <String>
   [-BackendHttpSettings <PSApplicationGatewayBackendHttpSettings>]
   [-HttpListener <PSApplicationGatewayHttpListener>]
   [-BackendAddressPool <PSApplicationGatewayBackendAddressPool>]
   [-UrlPathMap <PSApplicationGatewayUrlPathMap>]
   [-RedirectConfiguration <PSApplicationGatewayRedirectConfiguration>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Add-AzureRmApplicationGatewayRequestRoutingRule Cmdlet 會將要求路由規則新增至應用程式閘道。

範例

範例 1:將要求路由規則新增至應用程式閘道

PS C:\>$AppGw = Get-AzureRmApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
PS C:\> $Appgw = Add-AzureRmApplicationGatewayRequestRoutingRule -ApplicationGateway $AppGw -Name "Rule01" -RuleType Basic -BackendHttpSettings $Setting -HttpListener $Listener -BackendAddressPool $Pool

第一個命令會取得應用程式閘道,並將其儲存在$AppGw變數中。 第二個命令會將要求路由規則新增至應用程式閘道。

參數

-ApplicationGateway

指定此 Cmdlet 新增要求路由規則的應用程式閘道。

類型:PSApplicationGateway
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-BackendAddressPool

指定應用程式閘道後端位址池物件。

類型:PSApplicationGatewayBackendAddressPool
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-BackendAddressPoolId

指定應用程式閘道後端位址池識別碼。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-BackendHttpSettings

指定應用程式閘道的後端 HTTP 設定物件。

類型:PSApplicationGatewayBackendHttpSettings
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-BackendHttpSettingsId

指定應用程式閘道的後端 HTTP 設定識別碼。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HttpListener

指定應用程式閘道 HTTP 接聽程式物件。

類型:PSApplicationGatewayHttpListener
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HttpListenerId

指定應用程式閘道 HTTP 接聽程式識別碼。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Name

指定此 Cmdlet 新增的要求路由規則名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-RedirectConfiguration

應用程式閘道 RedirectConfiguration

類型:PSApplicationGatewayRedirectConfiguration
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RedirectConfigurationId

應用程式閘道 RedirectConfiguration 的標識碼

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RuleType

指定要求路由規則的類型。

類型:String
接受的值:Basic, PathBasedRouting
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-UrlPathMap

類型:PSApplicationGatewayUrlPathMap
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-UrlPathMapId

指定路由規則的 URL 路徑對應識別碼。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

PSApplicationGateway

參數:ApplicationGateway (ByValue)

輸出

PSApplicationGateway