Show / Hide Table of Contents

Class ExtensionBindingMatchConditionStringMatch

Specifies matching logic for string values.

Inheritance
object
ExtensionBindingMatchConditionStringMatch
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.NetworkServices.v1beta1.Data
Assembly: Google.Apis.NetworkServices.v1beta1.dll
Syntax
public class ExtensionBindingMatchConditionStringMatch : IDirectResponseSchema

Properties

Contains

Optional. The input string must have the substring specified here. Note: empty contains match is not allowed, please use regex instead. Examples: * abc matches the value xyz.abc.def

Declaration
[JsonProperty("contains")]
public virtual string Contains { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

Exact

Optional. The input string must match exactly the string specified here. Examples: * abc only matches the value abc.

Declaration
[JsonProperty("exact")]
public virtual string Exact { get; set; }
Property Value
Type Description
string

IgnoreCase

Optional. If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. For example, the matcher data will match both input string Data and data if set to true.

Declaration
[JsonProperty("ignoreCase")]
public virtual bool? IgnoreCase { get; set; }
Property Value
Type Description
bool?

Prefix

Optional. The input string must have the prefix specified here. Note: empty prefix is not allowed. Examples:

  • abc matches the value abc.xyz
Declaration
[JsonProperty("prefix")]
public virtual string Prefix { get; set; }
Property Value
Type Description
string

Suffix

Optional. The input string must have the suffix specified here. Note: empty prefix is not allowed, please use regex instead. Examples: * abc matches the value xyz.abc

Declaration
[JsonProperty("suffix")]
public virtual string Suffix { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX