你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Add-AzTrafficManagerEndpointConfig
将终结点添加到本地流量管理员配置文件对象。
语法
Add-AzTrafficManagerEndpointConfig
-EndpointName <String>
-TrafficManagerProfile <TrafficManagerProfile>
-Type <String>
[-TargetResourceId <String>]
[-Target <String>]
-EndpointStatus <String>
[-Weight <UInt32>]
[-Priority <UInt32>]
[-EndpointLocation <String>]
[-AlwaysServe <String>]
[-MinChildEndpoints <UInt32>]
[-MinChildEndpointsIPv4 <UInt32>]
[-MinChildEndpointsIPv6 <UInt32>]
[-GeoMapping <System.Collections.Generic.List`1[System.String]>]
[-SubnetMapping <System.Collections.Generic.List`1[Microsoft.Azure.Commands.TrafficManager.Models.TrafficManagerIpAddressRange]>]
[-CustomHeader <System.Collections.Generic.List`1[Microsoft.Azure.Commands.TrafficManager.Models.TrafficManagerCustomHeader]>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Add-AzTrafficManagerEndpointConfig cmdlet 将终结点添加到本地Azure 流量管理器配置文件对象。 可以使用 New-AzTrafficManagerProfile 或 Get-AzTrafficManagerProfile cmdlet 获取配置文件。
此 cmdlet 对本地配置文件对象进行操作。 使用 Set-AzTrafficManagerProfile cmdlet 将更改提交到流量管理员的配置文件。 若要在单个操作中创建终结点并提交更改,请使用 New-AzTrafficManagerEndpoint cmdlet。
示例
示例 1:向配置文件添加终结点
$TrafficManagerProfile = Get-AzTrafficManagerProfile -Name "ContosoProfile" -ResourceGroupName "ResourceGroup11"
Add-AzTrafficManagerEndpointConfig -EndpointName "contoso" -EndpointStatus Enabled -Target "www.contoso.com" -TrafficManagerProfile $TrafficManagerProfile -Type ExternalEndpoints -EndpointLocation "North Europe" -Priority 1 -Weight 10
Set-AzTrafficManagerProfile -TrafficManagerProfile $TrafficManagerProfile
第一个命令使用 Get-AzTrafficManagerProfile cmdlet 获取Azure 流量管理器配置文件。 该命令将本地配置文件存储在$TrafficManagerProfile变量中。
第二个命令将名为 contoso 的终结点添加到存储在$TrafficManagerProfile中的配置文件。 该命令包括终结点的配置数据。 此命令仅更改本地对象。
最后一个命令更新 Azure 中的流量管理员配置文件,以匹配$TrafficManagerProfile中的本地值。
参数
-AlwaysServe
如果启用了 Always Serve,将禁用终结点运行状况探测,并且终结点将包含在流量路由方法中。
类型: | String |
接受的值: | Enabled, Disabled |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-CustomHeader
探测请求的自定义标头名称和值对列表。
类型: | List<T>[TrafficManagerCustomHeader] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-EndpointLocation
指定要在性能流量路由方法中使用的终结点的位置。 此参数仅适用于 ExternalEndpoints 或 NestedEndpoints 类型的终结点。 使用性能流量路由方法时,必须指定此参数。
指定 Azure 区域名称。 有关 Azure 区域的完整列表,请参阅 Azure 区域http://azure.microsoft.com/regions/ (http://azure.microsoft.com/regions/)。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-EndpointName
指定此 cmdlet 添加的流量管理员终结点的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-EndpointStatus
指定终结点的状态。 有效值为:
- 已启用
- 已禁用
如果状态为“已启用”,则会探测终结点运行状况,并将其包含在流量路由方法中。
类型: | String |
接受的值: | Enabled, Disabled |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-GeoMapping
使用“地理”流量路由方法时映射到此终结点的区域列表。 有关接受值的完整列表,请参阅流量管理员文档。
类型: | List<T>[String] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-MinChildEndpoints
子配置文件中必须可用的最小终结点数,以便将父配置文件中的嵌套终结点视为可用。 仅适用于“NestedEndpoints”类型的终结点。
类型: | Nullable<T>[UInt32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-MinChildEndpointsIPv4
子配置文件中必须可用的最小 IPv4(DNS 记录类型 A)终结点,以便将父配置文件中的嵌套终结点视为可用。 仅适用于“NestedEndpoints”类型的终结点。
类型: | Nullable<T>[UInt32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-MinChildEndpointsIPv6
子配置文件中必须可用的最小 IPv6(DNS 记录类型 AAAA)终结点数,以便父配置文件中的嵌套终结点被视为可用。 仅适用于“NestedEndpoints”类型的终结点。
类型: | Nullable<T>[UInt32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Priority
指定流量管理员分配给终结点的优先级。 仅当为优先级流量路由方法配置流量管理员配置文件时,才使用此参数。 有效值为 1 到 1000 的整数。 较低的值表示更高的优先级。
如果指定优先级,则必须在配置文件中的所有终结点上指定优先级,并且两个终结点不能共享相同的优先级值。 如果未指定优先级,流量管理员按配置文件列出终结点的顺序将默认优先级值分配给终结点,从 1(1 开始)。
类型: | Nullable<T>[UInt32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-SubnetMapping
使用“子网”流量路由方法时映射到此终结点的地址范围或子网的列表。
类型: | List<T>[TrafficManagerIpAddressRange] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Target
指定终结点的完全限定 DNS 名称。 流量管理员将流量定向到此终结点时,在 DNS 响应中返回此值。 仅为 ExternalEndpoints 终结点类型指定此参数。 对于其他终结点类型,请改为指定 TargetResourceId 参数。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-TargetResourceId
指定目标的资源 ID。 仅为 AzureEndpoints 和 NestedEndpoints 终结点类型指定此参数。 对于 ExternalEndpoints 终结点类型,请改为指定 Target 参数。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-TrafficManagerProfile
指定本地 TrafficManagerProfile 对象。 此 cmdlet 修改此本地对象。 若要获取 TrafficManagerProfile 对象,请使用 Get-AzTrafficManagerProfile cmdlet。
类型: | TrafficManagerProfile |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Type
指定此 cmdlet 添加到Azure 流量管理器配置文件的终结点类型。 有效值为:
- AzureEndpoints
- ExternalEndpoints
- NestedEndpoints
类型: | String |
接受的值: | AzureEndpoints, ExternalEndpoints, NestedEndpoints |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Weight
指定流量管理员分配给终结点的权重。 有效值为 1 到 1000 的整数。 默认值为 1(1)。 仅当流量管理员配置文件配置了加权流量路由方法时,才使用此参数。
类型: | Nullable<T>[UInt32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |