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

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

package com.pulumi.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.WorkerScriptPlacementArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property mode The placement mode for the Worker. Available values: `smart`.
 */
public data class WorkerScriptPlacementArgs(
    public val mode: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.WorkerScriptPlacementArgs =
        com.pulumi.cloudflare.inputs.WorkerScriptPlacementArgs.builder()
            .mode(mode.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [WorkerScriptPlacementArgs].
 */
@PulumiTagMarker
public class WorkerScriptPlacementArgsBuilder internal constructor() {
    private var mode: Output? = null

    /**
     * @param value The placement mode for the Worker. Available values: `smart`.
     */
    @JvmName("upxtpjxoxsoaecaq")
    public suspend fun mode(`value`: Output) {
        this.mode = value
    }

    /**
     * @param value The placement mode for the Worker. Available values: `smart`.
     */
    @JvmName("yunqcdxuoqxdxxsm")
    public suspend fun mode(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.mode = mapped
    }

    internal fun build(): WorkerScriptPlacementArgs = WorkerScriptPlacementArgs(
        mode = mode ?: throw PulumiNullFieldException("mode"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy