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

com.pulumi.cloudflare.kotlin.outputs.AccessApplicationSaasAppCustomAttribute.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.String
import kotlin.Suppress

/**
 *
 * @property friendlyName A friendly name for the attribute as provided to the SaaS app.
 * @property name The name of the attribute as provided to the SaaS app.
 * @property nameFormat A globally unique name for an identity or service provider.
 * @property required True if the attribute must be always present.
 * @property source
 */
public data class AccessApplicationSaasAppCustomAttribute(
    public val friendlyName: String? = null,
    public val name: String? = null,
    public val nameFormat: String? = null,
    public val required: Boolean? = null,
    public val source: AccessApplicationSaasAppCustomAttributeSource,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.AccessApplicationSaasAppCustomAttribute): AccessApplicationSaasAppCustomAttribute = AccessApplicationSaasAppCustomAttribute(
            friendlyName = javaType.friendlyName().map({ args0 -> args0 }).orElse(null),
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
            nameFormat = javaType.nameFormat().map({ args0 -> args0 }).orElse(null),
            required = javaType.required().map({ args0 -> args0 }).orElse(null),
            source = javaType.source().let({ args0 ->
                com.pulumi.cloudflare.kotlin.outputs.AccessApplicationSaasAppCustomAttributeSource.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy