![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationScimConfig.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property authentication Attributes for configuring HTTP Basic, OAuth Bearer token, or OAuth 2 authentication schemes for SCIM provisioning to an application.
* @property deactivateOnDelete If false, propagates DELETE requests to the target application for SCIM resources. If true, sets 'active' to false on the SCIM resource. Note: Some targets do not support DELETE operations.
* @property enabled Whether SCIM provisioning is turned on for this application.
* @property idpUid The UID of the IdP to use as the source for SCIM resources to provision to this application.
* @property mappings A list of mappings to apply to SCIM resources before provisioning them in this application. These can transform or filter the resources to be provisioned.
* @property remoteUri The base URI for the application's SCIM-compatible API.
*/
public data class ZeroTrustAccessApplicationScimConfig(
public val authentication: ZeroTrustAccessApplicationScimConfigAuthentication? = null,
public val deactivateOnDelete: Boolean? = null,
public val enabled: Boolean? = null,
public val idpUid: String,
public val mappings: List? = null,
public val remoteUri: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.ZeroTrustAccessApplicationScimConfig): ZeroTrustAccessApplicationScimConfig = ZeroTrustAccessApplicationScimConfig(
authentication = javaType.authentication().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationScimConfigAuthentication.Companion.toKotlin(args0)
})
}).orElse(null),
deactivateOnDelete = javaType.deactivateOnDelete().map({ args0 -> args0 }).orElse(null),
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
idpUid = javaType.idpUid(),
mappings = javaType.mappings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationScimConfigMapping.Companion.toKotlin(args0)
})
}),
remoteUri = javaType.remoteUri(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy