File tree Expand file tree Collapse file tree 1 file changed +57
-2
lines changed Expand file tree Collapse file tree 1 file changed +57
-2
lines changed Original file line number Diff line number Diff line change @@ -164,9 +164,64 @@ The same key can be used in more than one filter.
164
164
``` json
165
165
"advancedFilters" : [{
166
166
"operatorType" : " StringContains" ,
167
- "key" : " Subject " ,
167
+ "key" : " data.key1 " ,
168
168
"values" : [
169
- " /providers/microsoft.devtestlab/"
169
+ " microsoft" ,
170
+ " azure"
171
+ ]
172
+ }]
173
+ ```
174
+
175
+ ### StringBeginsWith
176
+
177
+ ``` json
178
+ "advancedFilters" : [{
179
+ "operatorType" : " StringBeginsWith" ,
180
+ "key" : " data.key1" ,
181
+ "values" : [
182
+ " event" ,
183
+ " grid"
184
+ ]
185
+ }]
186
+ ```
187
+
188
+ ### StringEndsWith
189
+
190
+ ``` json
191
+ "advancedFilters" : [{
192
+ "operatorType" : " StringEndsWith" ,
193
+ "key" : " data.key1" ,
194
+ "values" : [
195
+ " jpg" ,
196
+ " jpeg" ,
197
+ " png"
198
+ ]
199
+ }]
200
+ ```
201
+
202
+ ### StringIn
203
+
204
+ ``` json
205
+ "advancedFilters" : [{
206
+ "operatorType" : " StringIn" ,
207
+ "key" : " data.key1" ,
208
+ "values" : [
209
+ " exact" ,
210
+ " string" ,
211
+ " matches"
212
+ ]
213
+ }]
214
+ ```
215
+
216
+ ### StringNotIn
217
+
218
+ ``` json
219
+ "advancedFilters" : [{
220
+ "operatorType" : " StringNotIn" ,
221
+ "key" : " data.key1" ,
222
+ "values" : [
223
+ " aws" ,
224
+ " bridge"
170
225
]
171
226
}]
172
227
```
You can’t perform that action at this time.
0 commit comments