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

com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationSaasAppCustomClaim.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property name The name of the attribute as provided to the SaaS app.
 * @property required True if the attribute must be always present.
 * @property scope The scope of the claim.
 * @property source
 */
public data class ZeroTrustAccessApplicationSaasAppCustomClaim(
    public val name: String? = null,
    public val required: Boolean? = null,
    public val scope: String? = null,
    public val source: ZeroTrustAccessApplicationSaasAppCustomClaimSource,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.ZeroTrustAccessApplicationSaasAppCustomClaim): ZeroTrustAccessApplicationSaasAppCustomClaim = ZeroTrustAccessApplicationSaasAppCustomClaim(
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
            required = javaType.required().map({ args0 -> args0 }).orElse(null),
            scope = javaType.scope().map({ args0 -> args0 }).orElse(null),
            source = javaType.source().let({ args0 ->
                com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationSaasAppCustomClaimSource.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy