Show / Hide Table of Contents

Class RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs
Inherited Members
ResourceArgs.Empty
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: Pulumi.Gcp.Compute.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs : ResourceArgs

Constructors

View Source

RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs()

Declaration
public RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs()

Properties

View Source

ExactMatch

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 Input<string> ExactMatch { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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 Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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 Input<bool> PresentMatch { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

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 Input<string> RegexMatch { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.