你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Enable-AzTrafficManagerEndpoint
启用流量管理器配置文件中的终结点。
语法
Enable-AzTrafficManagerEndpoint
-Name <String>
-Type <String>
-ProfileName <String>
-ResourceGroupName <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Enable-AzTrafficManagerEndpoint
-TrafficManagerEndpoint <TrafficManagerEndpoint>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Enable-AzTrafficManagerEndpoint cmdlet 在 Azure 流量管理器配置文件中启用终结点。
可以使用管道运算符将 TrafficManagerEndpoint 对象传递给此 cmdlet,也可以使用 TrafficManagerEndpoint 参数指定 TrafficManagerEndpoint 对象。
或者,可以使用 名称 和 类型 参数以及 ProfileName 和 ResourceGroupName 参数来指定终结点名称和类型。
示例
示例 1:从配置文件启用终结点
Enable-AzTrafficManagerEndpoint -Name "contoso" -ProfileName "ContosoProfile" -ResourceGroupName ResourceGroup11 -Type ExternalEndpoints
此命令在资源组 ResourceGroup11 中名为 ContosoProfile 的配置文件中启用名为 contoso 的外部终结点。
示例 2:使用管道启用终结点
Get-AzTrafficManagerEndpoint -Name "contoso" -Type ExternalEndpoints -ProfileName "ContosoProfile" -ResourceGroupName "ResourceGroup11" | Enable-AzTrafficManagerEndpoint
此命令从 ResourceGroup11 中名为 ContosoProfile 的配置文件中获取名为 Contoso 的外部终结点。 然后,该命令使用管道运算符将该终结点传递给 Enable-AzTrafficManagerEndpoint cmdlet。 该 cmdlet 启用该终结点。
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定此 cmdlet 启用的流量管理器终结点的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ProfileName
指定此 cmdlet 启用终结点的流量管理器配置文件的名称。 若要获取配置文件,请使用 Get-AzTrafficManagerProfile cmdlet。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
指定资源组的名称。 此 cmdlet 在此参数指定的组中启用流量管理器终结点。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-TrafficManagerEndpoint
指定此 cmdlet 启用的流量管理器终结点。 若要获取 TrafficManagerEndpoint 对象,请使用 Get-AzTrafficManagerEndpoint cmdlet。
类型: | TrafficManagerEndpoint |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Type
指定此 cmdlet 在流量管理器配置文件中禁用的终结点的类型。 有效值为:
- AzureEndpoints
- ExternalEndpoints
- NestedEndpoints
类型: | String |
接受的值: | AzureEndpoints, ExternalEndpoints, NestedEndpoints |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |