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

com.pulumi.azure.kotlin.inputs.ProviderFeaturesCognitiveAccountArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.kotlin.inputs

import com.pulumi.azure.inputs.ProviderFeaturesCognitiveAccountArgs.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 purgeSoftDeleteOnDestroy
 */
public data class ProviderFeaturesCognitiveAccountArgs(
    public val purgeSoftDeleteOnDestroy: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.inputs.ProviderFeaturesCognitiveAccountArgs =
        com.pulumi.azure.inputs.ProviderFeaturesCognitiveAccountArgs.builder()
            .purgeSoftDeleteOnDestroy(purgeSoftDeleteOnDestroy?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ProviderFeaturesCognitiveAccountArgs].
 */
@PulumiTagMarker
public class ProviderFeaturesCognitiveAccountArgsBuilder internal constructor() {
    private var purgeSoftDeleteOnDestroy: Output? = null

    /**
     * @param value
     */
    @JvmName("qwuhtapvihfarqga")
    public suspend fun purgeSoftDeleteOnDestroy(`value`: Output) {
        this.purgeSoftDeleteOnDestroy = value
    }

    /**
     * @param value
     */
    @JvmName("oxogkhcgbjgonepw")
    public suspend fun purgeSoftDeleteOnDestroy(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.purgeSoftDeleteOnDestroy = mapped
    }

    internal fun build(): ProviderFeaturesCognitiveAccountArgs = ProviderFeaturesCognitiveAccountArgs(
        purgeSoftDeleteOnDestroy = purgeSoftDeleteOnDestroy,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy