Enable-AzTrafficManagerEndpoint
啟用流量管理員配置檔中的端點。
語法
Enable-AzTrafficManagerEndpoint
-Name <String>
-Type <String>
-ProfileName <String>
-ResourceGroupName <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Enable-AzTrafficManagerEndpoint
-TrafficManagerEndpoint <TrafficManagerEndpoint>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Enable-AzTrafficManagerEndpoint Cmdlet 會在 Azure 流量管理員配置檔中啟用端點。
您可以使用管線運算符將 TrafficManagerEndpoint 對象傳遞至此 Cmdlet,或者您可以使用 TrafficManagerEndpoint 參數來指定 TrafficManagerEndpoint 物件。
或者,您可以使用 Name 和 Type 參數,以及 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 |