com.pulumi.cloudflare.kotlin.outputs.TeamsRuleRuleSettingsBisoAdminControls.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.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property disableClipboardRedirection Disable clipboard redirection.
* @property disableCopyPaste Disable copy-paste.
* @property disableDownload Disable download.
* @property disableKeyboard Disable keyboard usage.
* @property disablePrinting Disable printing.
* @property disableUpload Disable upload.
*/
public data class TeamsRuleRuleSettingsBisoAdminControls(
public val disableClipboardRedirection: Boolean? = null,
public val disableCopyPaste: Boolean? = null,
public val disableDownload: Boolean? = null,
public val disableKeyboard: Boolean? = null,
public val disablePrinting: Boolean? = null,
public val disableUpload: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.TeamsRuleRuleSettingsBisoAdminControls): TeamsRuleRuleSettingsBisoAdminControls = TeamsRuleRuleSettingsBisoAdminControls(
disableClipboardRedirection = javaType.disableClipboardRedirection().map({ args0 ->
args0
}).orElse(null),
disableCopyPaste = javaType.disableCopyPaste().map({ args0 -> args0 }).orElse(null),
disableDownload = javaType.disableDownload().map({ args0 -> args0 }).orElse(null),
disableKeyboard = javaType.disableKeyboard().map({ args0 -> args0 }).orElse(null),
disablePrinting = javaType.disablePrinting().map({ args0 -> args0 }).orElse(null),
disableUpload = javaType.disableUpload().map({ args0 -> args0 }).orElse(null),
)
}
}