com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationScimConfigMapping.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 enabled Whether or not this mapping is enabled.
* @property filter A [SCIM filter expression](https://datatracker.ietf.org/doc/html/rfc7644#section-3.4.2.2) that matches resources that should be provisioned to this application.
* @property operations Whether or not this mapping applies to creates, updates, or deletes.
* @property schema Which SCIM resource type this mapping applies to.
* @property transformJsonata A [JSONata](https://jsonata.org/) expression that transforms the resource before provisioning it in the application.
*/
public data class ZeroTrustAccessApplicationScimConfigMapping(
public val enabled: Boolean? = null,
public val filter: String? = null,
public val operations: ZeroTrustAccessApplicationScimConfigMappingOperations? = null,
public val schema: String,
public val transformJsonata: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.ZeroTrustAccessApplicationScimConfigMapping): ZeroTrustAccessApplicationScimConfigMapping = ZeroTrustAccessApplicationScimConfigMapping(
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
filter = javaType.filter().map({ args0 -> args0 }).orElse(null),
operations = javaType.operations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationScimConfigMappingOperations.Companion.toKotlin(args0)
})
}).orElse(null),
schema = javaType.schema(),
transformJsonata = javaType.transformJsonata().map({ args0 -> args0 }).orElse(null),
)
}
}