你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Add-AzTrafficManagerExpectedStatusCodeRange
将预期的状态代码范围添加到本地流量管理器配置文件对象。
语法
Add-AzTrafficManagerExpectedStatusCodeRange
-Min <Int32>
-Max <Int32>
-TrafficManagerProfile <TrafficManagerProfile>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Add-AzTrafficManagerExpectedStatusCodeRange cmdlet 将一系列预期的状态代码添加到本地 Azure 流量管理器配置文件对象。 可以使用 New-AzTrafficManagerProfile 或 Get-AzTrafficManagerProfile cmdlet 获取配置文件。
此 cmdlet 对本地配置文件对象进行操作。 使用 Set-AzTrafficManagerProfile cmdlet 将更改提交到流量管理器的配置文件。
示例
示例 1:将预期的状态代码范围添加到配置文件
$TrafficManagerProfile = Get-AzTrafficManagerProfile -Name "ContosoProfile" -ResourceGroupName "ResourceGroup11"
Add-AzTrafficManagerExpectedStatusCodeRange -TrafficManagerProfile $TrafficManagerProfile -Min 200 -Max 499
Set-AzTrafficManagerProfile -TrafficManagerProfile $TrafficManagerProfile
第一个命令使用 Get-AzTrafficManagerProfile cmdlet 获取 Azure 流量管理器配置文件。 该命令将本地配置文件存储在$TrafficManagerProfile变量中。 第二个命令将预期的状态代码范围添加到存储在$TrafficManagerProfile中的配置文件。 最后一个命令更新流量管理器中的配置文件,以匹配$TrafficManagerProfile中的本地值。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Max
指定要添加的状态代码区域中的最高值。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Min
指定要添加的状态代码范围中的最低值。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-TrafficManagerProfile
指定本地 TrafficManagerProfile 对象。 此 cmdlet 修改此本地对象。 若要获取 TrafficManagerProfile 对象,请使用 Get-AzTrafficManagerProfile cmdlet。
类型: | TrafficManagerProfile |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |