共用方式為


Set-AzApplicationGatewayUrlPathMapConfig

設定 URL 路徑陣列的組態,以對應至後端伺服器集區。

語法

Set-AzApplicationGatewayUrlPathMapConfig
   -ApplicationGateway <PSApplicationGateway>
   -Name <String>
   -PathRules <PSApplicationGatewayPathRule[]>
   -DefaultBackendAddressPool <PSApplicationGatewayBackendAddressPool>
   -DefaultBackendHttpSettings <PSApplicationGatewayBackendHttpSettings>
   [-DefaultRewriteRuleSet <PSApplicationGatewayRewriteRuleSet>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Set-AzApplicationGatewayUrlPathMapConfig
   -ApplicationGateway <PSApplicationGateway>
   -Name <String>
   -PathRules <PSApplicationGatewayPathRule[]>
   -DefaultBackendAddressPoolId <String>
   -DefaultBackendHttpSettingsId <String>
   [-DefaultRewriteRuleSetId <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Set-AzApplicationGatewayUrlPathMapConfig
   -ApplicationGateway <PSApplicationGateway>
   -Name <String>
   -PathRules <PSApplicationGatewayPathRule[]>
   [-DefaultRewriteRuleSet <PSApplicationGatewayRewriteRuleSet>]
   -DefaultRedirectConfiguration <PSApplicationGatewayRedirectConfiguration>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Set-AzApplicationGatewayUrlPathMapConfig
   -ApplicationGateway <PSApplicationGateway>
   -Name <String>
   -PathRules <PSApplicationGatewayPathRule[]>
   [-DefaultRewriteRuleSetId <String>]
   -DefaultRedirectConfigurationId <String>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Set-AzApplicationGatewayUrlPathMapConfig Cmdlet 會設定 URL 路徑陣列與後端伺服器集區對應的組態。

範例

範例 1:更新 URL 路徑對應

$appgw = Get-AzApplicationGateway -ResourceGroupName "rg" -Name "appGwName"
$appgw = Set-AzApplicationGatewayUrlPathMapConfig -ApplicationGateway $appgw -Name "map01"
$appgw = Set-AzApplicationGateway -ApplicationGateway $appgw

第一個命令會取得名為 appGwName 的應用程式閘道,並將結果儲存在 $appgw 變數中。 第二個命令會更新應用程式閘道中名為 map01 的 URL 路徑對應。 第三個命令會更新應用程式閘道。

參數

-ApplicationGateway

指定此 Cmdlet 設定 URL 路徑對應組態的應用程式閘道。

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

-DefaultBackendAddressPool

指定要路由傳送的預設後端位址池,以防 pathRules 參數中未指定任何規則相符。

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

-DefaultBackendAddressPoolId

指定預設後端位址池識別碼。

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

-DefaultBackendHttpSettings

指定預設後端 HTTP 設定,以防 pathRules 參數中未指定任何規則相符時使用。

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

-DefaultBackendHttpSettingsId

指定預設後端 HTTP 設定識別碼。

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

-DefaultProfile

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

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

-DefaultRedirectConfiguration

應用程式閘道預設 RedirectConfiguration

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

-DefaultRedirectConfigurationId

應用程式閘道預設 RedirectConfiguration 的識別碼

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

-DefaultRewriteRuleSet

應用程式閘道預設重寫規則集

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

-DefaultRewriteRuleSetId

應用程式閘道預設重寫規則集的標識碼

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

-Name

指定此 Cmdlet 設定組態的 URL 路徑對應名稱。

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

-PathRules

指定路徑規則的清單。 請注意,路徑規則會區分順序,它們會依指定的順序套用。

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

輸入

PSApplicationGateway

輸出

PSApplicationGateway