com.pulumi.gcp.networksecurity.kotlin.outputs.AuthzPolicyHttpRuleToOperationHeaderSet.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.networksecurity.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property headers A list of headers to match against in http header. The match can be one of exact, prefix, suffix, or contains (substring match). The match follows AND semantics which means all the headers must match. Matches are always case sensitive unless the ignoreCase is set. Limited to 5 matches.
* Structure is documented below.
*/
public data class AuthzPolicyHttpRuleToOperationHeaderSet(
public val headers: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.networksecurity.outputs.AuthzPolicyHttpRuleToOperationHeaderSet): AuthzPolicyHttpRuleToOperationHeaderSet = AuthzPolicyHttpRuleToOperationHeaderSet(
headers = javaType.headers().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.networksecurity.kotlin.outputs.AuthzPolicyHttpRuleToOperationHeaderSetHeader.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy