com.pulumi.cloudflare.kotlin.inputs.WorkerScriptPlacementArgs.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.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"),
)
}