com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessApplicationScimConfigArgs.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.inputs
import com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationScimConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 ZeroTrustAccessApplicationScimConfigArgs(
public val authentication: Output? = null,
public val deactivateOnDelete: Output? = null,
public val enabled: Output? = null,
public val idpUid: Output,
public val mappings: Output>? = null,
public val remoteUri: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationScimConfigArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessApplicationScimConfigArgs.builder()
.authentication(authentication?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.deactivateOnDelete(deactivateOnDelete?.applyValue({ args0 -> args0 }))
.enabled(enabled?.applyValue({ args0 -> args0 }))
.idpUid(idpUid.applyValue({ args0 -> args0 }))
.mappings(
mappings?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.remoteUri(remoteUri.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustAccessApplicationScimConfigArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessApplicationScimConfigArgsBuilder internal constructor() {
private var authentication: Output? = null
private var deactivateOnDelete: Output? = null
private var enabled: Output? = null
private var idpUid: Output? = null
private var mappings: Output>? = null
private var remoteUri: Output? = null
/**
* @param value Attributes for configuring HTTP Basic, OAuth Bearer token, or OAuth 2 authentication schemes for SCIM provisioning to an application.
*/
@JvmName("ywweptawkqynbcqp")
public suspend fun authentication(`value`: Output) {
this.authentication = value
}
/**
* @param value 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.
*/
@JvmName("gynbawfilfethbsr")
public suspend fun deactivateOnDelete(`value`: Output) {
this.deactivateOnDelete = value
}
/**
* @param value Whether SCIM provisioning is turned on for this application.
*/
@JvmName("emmbcthngfknmglu")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value The UID of the IdP to use as the source for SCIM resources to provision to this application.
*/
@JvmName("morlxxivermbtnis")
public suspend fun idpUid(`value`: Output) {
this.idpUid = value
}
/**
* @param value 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.
*/
@JvmName("lubawmaofmnsqbtq")
public suspend fun mappings(`value`: Output>) {
this.mappings = value
}
@JvmName("eswnojaykyxocica")
public suspend fun mappings(vararg values: Output) {
this.mappings = Output.all(values.asList())
}
/**
* @param values 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.
*/
@JvmName("sltwtmyggytqohtk")
public suspend fun mappings(values: List