Add-AzTrafficManagerCustomHeaderToEndpoint
將自訂標頭資訊新增至本機流量管理員端點物件。
語法
Add-AzTrafficManagerCustomHeaderToEndpoint
-Name <String>
-Value <String>
-TrafficManagerEndpoint <TrafficManagerEndpoint>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Add-AzTrafficManagerCustomHeaderToEndpoint Cmdlet 會將自定義標頭資訊新增至本機 Azure 流量管理員端點物件。 您可以使用 New-AzTrafficManagerEndpoint 或 Get-AzTrafficManagerEndpoint Cmdlet 來取得端點。
此 Cmdlet 會在本機端點對象上運作。 使用 Set-AzTrafficManagerEndpoint Cmdlet 將變更認可至流量管理員的端點。
範例
範例 1:將自定義標頭資訊新增至端點
$TrafficManagerEndpoint = New-AzTrafficManagerEndpoint -EndpointStatus Enabled -Name "contoso" -ProfileName "ContosoProfile" -ResourceGroupName "ResourceGroup11" -Type AzureEndpoints -Priority 1 -TargetResourceId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-CentralUS/providers/Microsoft.Web/sites/contoso-web-app" -Weight 10
Add-AzTrafficManagerCustomHeaderToEndpoint -TrafficManagerEndpoint $TrafficManagerEndpoint -Name "host" -Value "www.contoso.com"
Set-AzTrafficManagerEndpoint -TrafficManagerEndpoint $TrafficManagerEndpoint
第一個命令會使用 New-AzTrafficManagerEndpoint Cmdlet 來建立 Azure 流量管理員端點。 命令會將本機端點儲存在 $TrafficManagerEndpoint 變數中。 第二個命令會將自定義標頭資訊新增至儲存在 $TrafficManagerEndpoint 的端點。 最後一個命令會更新流量管理員中的端點,以符合 $TrafficManagerEndpoint 中的本機值。
參數
-Confirm
在執行 Cmdlet 之前,提示您進行確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-DefaultProfile
用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。
類型: | IAzureContextContainer |
別名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定要加入的自訂標頭資訊名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-TrafficManagerEndpoint
指定 local TrafficManagerEndpoint 物件。 此 Cmdlet 會修改此本機物件。 若要取得 TrafficManagerEndpoint 物件,請使用 Get-AzTrafficManagerEndpoint 或 New-AzTrafficManagerEndpoint Cmdlet。
類型: | TrafficManagerEndpoint |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Value
指定要加入之自定義標頭資訊的值。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |