All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.cloudflare.kotlin.outputs.ZeroTrustGatewayPolicyRuleSettingsBisoAdminControls.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 5.47.0.0
Show 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 ZeroTrustGatewayPolicyRuleSettingsBisoAdminControls(
    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.ZeroTrustGatewayPolicyRuleSettingsBisoAdminControls): ZeroTrustGatewayPolicyRuleSettingsBisoAdminControls =
            ZeroTrustGatewayPolicyRuleSettingsBisoAdminControls(
                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),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy