Page Summary
-
DfaReporting event filters represent a way to filter data in DfaReporting.
-
An EventFilter includes a dimension filter and a resource kind.
-
The dimension filter (
PathReportDimensionValue) specifies the dimension name, potential values, IDs, and how to match the values. -
PathReportDimensionValuealso indicates the type of resource it is.
Represents a DfaReporting event filter.
| JSON representation |
|---|
{
"dimensionFilter": {
object ( |
| Fields | |
|---|---|
dimensionFilter |
The dimension filter contained within this EventFilter. |
kind |
The kind of resource this is, in this case
. |
PathReportDimensionValue
Represents a PathReportDimensionValue resource.
| JSON representation |
|---|
{
"dimensionName": string,
"values": [
string
],
"ids": [
string
],
"matchType": enum ( |
| Fields | |
|---|---|
dimensionName |
The name of the dimension. |
values[] |
The possible values of the dimension. |
ids[] |
The possible ID's associated with the value if available. |
matchType |
Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow a matchType other than EXACT. |
kind |
The kind of resource this is, in this case
. |