Show / Hide Table of Contents

Class ValueMatcher

Specifies the way to match a ProtobufWkt::Value. Primitive values and ListValue are supported. StructValue is not supported and is always not matched. [#next-free-field: 7]

Inheritance
System.Object
ValueMatcher
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TrafficDirectorService.v2.Data
Assembly: Google.Apis.TrafficDirectorService.v2.dll
Syntax
public class ValueMatcher : IDirectResponseSchema

Properties

BoolMatch

If specified, a match occurs if and only if the target value is a bool value and is equal to this field.

Declaration
[JsonProperty("boolMatch")]
public virtual bool? BoolMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DoubleMatch

If specified, a match occurs if and only if the target value is a double value and is matched to this field.

Declaration
[JsonProperty("doubleMatch")]
public virtual DoubleMatcher DoubleMatch { get; set; }
Property Value
Type Description
DoubleMatcher

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ListMatch

If specified, a match occurs if and only if the target value is a list value and is matched to this field.

Declaration
[JsonProperty("listMatch")]
public virtual ListMatcher ListMatch { get; set; }
Property Value
Type Description
ListMatcher

NullMatch

If specified, a match occurs if and only if the target value is a NullValue.

Declaration
[JsonProperty("nullMatch")]
public virtual NullMatch NullMatch { get; set; }
Property Value
Type Description
NullMatch

PresentMatch

If specified, value match will be performed based on whether the path is referring to a valid primitive value in the metadata. If the path is referring to a non-primitive value, the result is always not matched.

Declaration
[JsonProperty("presentMatch")]
public virtual bool? PresentMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

StringMatch

If specified, a match occurs if and only if the target value is a string value and is matched to this field.

Declaration
[JsonProperty("stringMatch")]
public virtual StringMatcher StringMatch { get; set; }
Property Value
Type Description
StringMatcher

Implements

IDirectResponseSchema
In This Article
Back to top