All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.networksecurity.kotlin.outputs.AuthzPolicyHttpRuleToOperationHeaderSet.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.13.1.0
Show newest version
@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