共用方式為


Remove-AzTrafficManagerIpAddressRange

從本機流量管理員端點物件中移除位址範圍或子網。

語法

Remove-AzTrafficManagerIpAddressRange
      -First <String>
      -TrafficManagerEndpoint <TrafficManagerEndpoint>
      [-DefaultProfile <IAzureContextContainer>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

Remove-AzTrafficManagerIpAddressRange Cmdlet 會從本機 Azure 流量管理員端點物件中移除 IP 位址範圍。 您可以使用 New-AzTrafficManagerEndpoint 或 Get-AzTrafficManagerEndpoint Cmdlet 來取得端點。

此 Cmdlet 會在本機端點對象上運作。 使用 Set-AzTrafficManagerEndpoint Cmdlet 將變更認可至流量管理員的端點。

範例

範例 1:從端點移除 IP 位址範圍

$TrafficManagerEndpoint = Get-AzTrafficManagerEndpoint -Name "contoso" -ProfileName "ContosoProfile" -ResourceGroupName "ResourceGroup11" -Type AzureEndpoints
Remove-AzTrafficManagerIpAddressRange -TrafficManagerEndpoint $TrafficManagerEndpoint -First "1.2.3.4"
Set-AzTrafficManagerEndpoint -TrafficManagerEndpoint $TrafficManagerEndpoint

第一個命令會從名為 ResourceGroup11 的資源群組中名為 ContosoProfile 的設定檔取得名為 contoso 的 Azure 端點,然後將該物件儲存在$TrafficManagerEndpoint變數中。 第二個命令會從儲存在 $TrafficManagerEndpoint 的端點中移除IP位址範圍。 最後一個命令會更新流量管理員中的端點,以符合 $TrafficManagerEndpoint 中的本機值。

參數

-Confirm

在執行 Cmdlet 之前,提示您進行確認。

類型:SwitchParameter
別名:cf
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-First

指定要移除之範圍中的第一個IP位址。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-TrafficManagerEndpoint

指定 local TrafficManagerEndpoint 物件。 此 Cmdlet 會修改此本機物件。 若要取得 TrafficManagerEndpoint 物件,請使用 Get-AzTrafficManagerEndpoint 或 New-AzTrafficManagerEndpoint Cmdlet。

類型:TrafficManagerEndpoint
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-WhatIf

顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。

類型:SwitchParameter
別名:wi
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

TrafficManagerEndpoint

輸出

TrafficManagerEndpoint