Show / Hide Table of Contents

Class FilterPredicate

A filter for a query. This equates to the WHERE clause in SQL.

Inheritance
object
FilterPredicate
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX