![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.inputs.AccessApplicationScimConfigMappingOperationsArgs.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.inputs
import com.pulumi.cloudflare.inputs.AccessApplicationScimConfigMappingOperationsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property create Whether or not this mapping applies to create (POST) operations.
* @property delete Whether or not this mapping applies to DELETE operations.
* @property update Whether or not this mapping applies to update (PATCH/PUT) operations.
*/
public data class AccessApplicationScimConfigMappingOperationsArgs(
public val create: Output? = null,
public val delete: Output? = null,
public val update: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.AccessApplicationScimConfigMappingOperationsArgs =
com.pulumi.cloudflare.inputs.AccessApplicationScimConfigMappingOperationsArgs.builder()
.create(create?.applyValue({ args0 -> args0 }))
.delete(delete?.applyValue({ args0 -> args0 }))
.update(update?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AccessApplicationScimConfigMappingOperationsArgs].
*/
@PulumiTagMarker
public class AccessApplicationScimConfigMappingOperationsArgsBuilder internal constructor() {
private var create: Output? = null
private var delete: Output? = null
private var update: Output? = null
/**
* @param value Whether or not this mapping applies to create (POST) operations.
*/
@JvmName("cccgtpwshdmoysev")
public suspend fun create(`value`: Output) {
this.create = value
}
/**
* @param value Whether or not this mapping applies to DELETE operations.
*/
@JvmName("gljwmpuenuwagdhc")
public suspend fun delete(`value`: Output) {
this.delete = value
}
/**
* @param value Whether or not this mapping applies to update (PATCH/PUT) operations.
*/
@JvmName("oslsutdxroygbdou")
public suspend fun update(`value`: Output) {
this.update = value
}
/**
* @param value Whether or not this mapping applies to create (POST) operations.
*/
@JvmName("ihtebpubrtdnuesu")
public suspend fun create(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.create = mapped
}
/**
* @param value Whether or not this mapping applies to DELETE operations.
*/
@JvmName("bupqqexqfpjakyej")
public suspend fun delete(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.delete = mapped
}
/**
* @param value Whether or not this mapping applies to update (PATCH/PUT) operations.
*/
@JvmName("mhopsbgfnnmihsyr")
public suspend fun update(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.update = mapped
}
internal fun build(): AccessApplicationScimConfigMappingOperationsArgs =
AccessApplicationScimConfigMappingOperationsArgs(
create = create,
delete = delete,
update = update,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy