![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.outputs.PageRuleActionsCacheKeyFieldsQueryString.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.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