Skip to content

Commit 100824b

Browse files
authored
Update how-to-filter-events.md
Change "operator" parameter to "operatorType"
1 parent ea545e2 commit 100824b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/event-grid/how-to-filter-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ New-AzEventGridTopic -ResourceGroupName gridResourceGroup -Location eastus2 -Nam
240240
$topicid = (Get-AzEventGridTopic -ResourceGroupName gridResourceGroup -Name $topicName).Id
241241
242242
$expDate = '<mm/dd/yyyy hh:mm:ss>' | Get-Date
243-
$AdvFilter1=@{operator="StringIn"; key="Data.color"; Values=@('blue', 'red', 'green')}
243+
$AdvFilter1=@{operatorType="StringIn"; key="Data.color"; values=@('blue', 'red', 'green')}
244244
245245
New-AzEventGridSubscription `
246246
-ResourceId $topicid `

0 commit comments

Comments
 (0)