com.pulumi.gcp.networkservices.kotlin.outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleQueryParameterMatch.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.networkservices.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property exactMatch The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch.
* @property 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.
* @property presentMatch Specifies that the queryParameterMatch matches if the request contains the query parameter, irrespective of whether the parameter has a value or not.
*/
public data class EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleQueryParameterMatch(
public val exactMatch: String? = null,
public val name: String,
public val presentMatch: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.networkservices.outputs.EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleQueryParameterMatch): EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleQueryParameterMatch =
EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleQueryParameterMatch(
exactMatch = javaType.exactMatch().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
presentMatch = javaType.presentMatch().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy