![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKey.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.Suppress
/**
*
* @property cookie Cookie parameters for the custom key.
* @property header Header parameters for the custom key.
* @property host Host parameters for the custom key.
* @property queryString Query string parameters for the custom key.
* @property user User parameters for the custom key.
*/
public data class GetRulesetsRulesetRuleActionParametersCacheKeyCustomKey(
public val cookie: GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyCookie? = null,
public val `header`: GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyHeader? = null,
public val host: GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyHost? = null,
public val queryString: GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyQueryString? =
null,
public val user: GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyUser? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKey): GetRulesetsRulesetRuleActionParametersCacheKeyCustomKey =
GetRulesetsRulesetRuleActionParametersCacheKeyCustomKey(
cookie = javaType.cookie().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyCookie.Companion.toKotlin(args0)
})
}).orElse(null),
`header` = javaType.`header`().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyHeader.Companion.toKotlin(args0)
})
}).orElse(null),
host = javaType.host().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyHost.Companion.toKotlin(args0)
})
}).orElse(null),
queryString = javaType.queryString().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyQueryString.Companion.toKotlin(args0)
})
}).orElse(null),
user = javaType.user().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetRulesetsRulesetRuleActionParametersCacheKeyCustomKeyUser.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy