com.pulumi.cloudflare.kotlin.inputs.ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs.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.ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property commandLogging Log all SSH commands.
*/
public data class ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs(
public val commandLogging: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs = com.pulumi.cloudflare.inputs.ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs.builder()
.commandLogging(commandLogging.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs].
*/
@PulumiTagMarker
public class ZeroTrustGatewayPolicyRuleSettingsAuditSshArgsBuilder internal constructor() {
private var commandLogging: Output? = null
/**
* @param value Log all SSH commands.
*/
@JvmName("vuyuehaywyalwihj")
public suspend fun commandLogging(`value`: Output) {
this.commandLogging = value
}
/**
* @param value Log all SSH commands.
*/
@JvmName("mgmwkvnvfdotxkqg")
public suspend fun commandLogging(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.commandLogging = mapped
}
internal fun build(): ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs =
ZeroTrustGatewayPolicyRuleSettingsAuditSshArgs(
commandLogging = commandLogging ?: throw PulumiNullFieldException("commandLogging"),
)
}