共用方式為


New-AzFrontDoorCdnProfileLogScrubbingObject

建立 ProfileLogScrubbing 的記憶體內部物件。

語法

New-AzFrontDoorCdnProfileLogScrubbingObject
   [-ScrubbingRule <IProfileScrubbingRules[]>]
   [-State <ProfileScrubbingState>]
   [<CommonParameters>]

Description

建立 ProfileLogScrubbing 的記憶體內部物件。

範例

範例 1:針對兩個 LogScrubbingRules 建立 ProfileUpgradeParameters 的記憶體內部物件

$scrubbingRule1 = New-AzFrontDoorCdnProfileScrubbingRulesObject -MatchVariable RequestIPAddress -State Enabled
$scrubbingRule2 = New-AzFrontDoorCdnProfileScrubbingRulesObject -MatchVariable RequestUri -State Enabled
New-AzFrontDoorCdnProfileLogScrubbingObject -ScrubbingRule @($scrubbingRule1, $scrubbingRule2) -State Enabled

State
-----
Enabled

針對兩個 LogScrubbingRules 建立 ProfileUpgradeParameters 的記憶體內部物件

參數

-ScrubbingRule

套用至 Azure Front Door 設定檔記錄的記錄清除規則清單。 若要建構,請參閱 SCRUBBINGRULE 屬性的 NOTES 區段並建立哈希表。

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

-State

記錄清除設定的狀態。預設值為 Enabled。

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

輸出

ProfileLogScrubbing