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

com.pulumi.gcp.kotlin.inputs.ProviderBatchingArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.inputs.ProviderBatchingArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property enableBatching
 * @property sendAfter
 */
public data class ProviderBatchingArgs(
    public val enableBatching: Output? = null,
    public val sendAfter: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.inputs.ProviderBatchingArgs =
        com.pulumi.gcp.inputs.ProviderBatchingArgs.builder()
            .enableBatching(enableBatching?.applyValue({ args0 -> args0 }))
            .sendAfter(sendAfter?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ProviderBatchingArgs].
 */
@PulumiTagMarker
public class ProviderBatchingArgsBuilder internal constructor() {
    private var enableBatching: Output? = null

    private var sendAfter: Output? = null

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

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

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

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

    internal fun build(): ProviderBatchingArgs = ProviderBatchingArgs(
        enableBatching = enableBatching,
        sendAfter = sendAfter,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy