com.pulumi.cloudflare.kotlin.inputs.DevicePostureRuleInputLocationArgs.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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.DevicePostureRuleInputLocationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property paths List of paths to check for client certificate rule.
* @property trustStores List of trust stores to check for client certificate rule. Available values: `system`, `user`.
*/
public data class DevicePostureRuleInputLocationArgs(
public val paths: Output>? = null,
public val trustStores: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.DevicePostureRuleInputLocationArgs =
com.pulumi.cloudflare.inputs.DevicePostureRuleInputLocationArgs.builder()
.paths(paths?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.trustStores(trustStores?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [DevicePostureRuleInputLocationArgs].
*/
@PulumiTagMarker
public class DevicePostureRuleInputLocationArgsBuilder internal constructor() {
private var paths: Output>? = null
private var trustStores: Output>? = null
/**
* @param value List of paths to check for client certificate rule.
*/
@JvmName("gtqxopiktamnqxta")
public suspend fun paths(`value`: Output>) {
this.paths = value
}
@JvmName("qwqsexbmhdhtsove")
public suspend fun paths(vararg values: Output) {
this.paths = Output.all(values.asList())
}
/**
* @param values List of paths to check for client certificate rule.
*/
@JvmName("wrhvmuqmqptjkgha")
public suspend fun paths(values: List