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

com.pulumi.cloudflare.kotlin.outputs.PageRuleActionsCacheKeyFieldsQueryString.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: 5.47.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property excludes Exclude these query string parameters from Cache Key.
 * @property ignore `false` (default) - all query string parameters are used for Cache Key, unless explicitly excluded; `true` - all query string parameters are ignored; value should be `false` if any of `exclude` or `include` is non-empty.
 * @property includes Only use values of specified query string parameters in Cache Key.
 */
public data class PageRuleActionsCacheKeyFieldsQueryString(
    public val excludes: List? = null,
    public val ignore: Boolean? = null,
    public val includes: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.PageRuleActionsCacheKeyFieldsQueryString): PageRuleActionsCacheKeyFieldsQueryString = PageRuleActionsCacheKeyFieldsQueryString(
            excludes = javaType.excludes().map({ args0 -> args0 }),
            ignore = javaType.ignore().map({ args0 -> args0 }).orElse(null),
            includes = javaType.includes().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy