Class FilterPredicate
A filter for a query. This equates to the WHERE clause in SQL.
Implements
Inherited Members
Namespace: Google.Apis.Logging.v2.Data
Assembly: Google.Apis.Logging.v2.dll
Syntax
public class FilterPredicate : IDirectResponseSchema
Properties
ChildPredicates
The children of the filter predicate. This equates to the branches of the filter predicate that could contain further nested leaves.
Declaration
[JsonProperty("childPredicates")]
public virtual IList<FilterPredicate> ChildPredicates { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<FilterPredicate> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
LeafPredicate
The leaves of the filter predicate. This equates to the last leaves of the filter predicate associated with an operator.
Declaration
[JsonProperty("leafPredicate")]
public virtual FilterExpression LeafPredicate { get; set; }
Property Value
| Type | Description |
|---|---|
| FilterExpression |
OperatorType
The operator type for the filter. Currently there is no support for multiple levels of nesting, so this will be a single value with no joining of different operator types
Declaration
[JsonProperty("operatorType")]
public virtual string OperatorType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |