你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzApplicationGatewayRewriteRuleCondition
将条件添加到应用程序网关的 RewriteRule。
语法
New-AzApplicationGatewayRewriteRuleCondition
-Variable <String>
[-Pattern <String>]
[-IgnoreCase]
[-Negate]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
AzApplicationGatewayRewriteRuleCondition cmdlet 为 Azure 应用程序网关创建重写规则条件。
示例
示例 1
$condition = New-AzApplicationGatewayRewriteRuleCondition -Variable "var_request_uri" -Pattern "http" -IgnoreCase
$condition
Variable : var_request_uri
Pattern : http
IgnoreCase : True
Negate : False
$condition | Format-Table
Variable Pattern IgnoreCase Negate
-------- ------- ---------- ------
var_request_uri http True False
此命令在重写规则中创建条件,并将结果存储在名为 $condition 的变量中。
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-IgnoreCase
将此标志设置为忽略模式上的大小写
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Negate
设置此标志以否定条件验证
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Pattern
在变量标头中查找的模式
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Variable
要为其设置条件的标头的名称
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
输入
None
输出
PSApplicationGatewayRewriteRuleCondition