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