Class RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatch
Inheritance
Inherited Members
Namespace: Pulumi.Gcp.Compute.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatch
Fields
View SourceExactMatch
The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch. Only one of presentMatch, exactMatch and regexMatch must be set.
Declaration
public readonly string ExactMatch
Field Value
| Type | Description |
|---|---|
| System.String |
Name
The name of the query parameter to match. The query parameter must exist in the request, in the absence of which the request match fails.
Declaration
public readonly string Name
Field Value
| Type | Description |
|---|---|
| System.String |
PresentMatch
Specifies that the queryParameterMatch matches if the request contains the query parameter, irrespective of whether the parameter has a value or not. Only one of presentMatch, exactMatch and regexMatch must be set.
Declaration
public readonly bool? PresentMatch
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
RegexMatch
The queryParameterMatch matches if the value of the parameter matches the regular expression specified by regexMatch. For the regular expression grammar, please see en.cppreference.com/w/cpp/regex/ecmascript Only one of presentMatch, exactMatch and regexMatch must be set.
Declaration
public readonly string RegexMatch
Field Value
| Type | Description |
|---|---|
| System.String |