![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.machinelearningservices.kotlin.inputs.NlpVerticalLimitSettingsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.machinelearningservices.kotlin.inputs
import com.pulumi.azurenative.machinelearningservices.inputs.NlpVerticalLimitSettingsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Job execution constraints.
* @property maxConcurrentTrials Maximum Concurrent AutoML iterations.
* @property maxTrials Number of AutoML iterations.
* @property timeout AutoML job timeout.
*/
public data class NlpVerticalLimitSettingsArgs(
public val maxConcurrentTrials: Output? = null,
public val maxTrials: Output? = null,
public val timeout: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.machinelearningservices.inputs.NlpVerticalLimitSettingsArgs =
com.pulumi.azurenative.machinelearningservices.inputs.NlpVerticalLimitSettingsArgs.builder()
.maxConcurrentTrials(maxConcurrentTrials?.applyValue({ args0 -> args0 }))
.maxTrials(maxTrials?.applyValue({ args0 -> args0 }))
.timeout(timeout?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [NlpVerticalLimitSettingsArgs].
*/
@PulumiTagMarker
public class NlpVerticalLimitSettingsArgsBuilder internal constructor() {
private var maxConcurrentTrials: Output? = null
private var maxTrials: Output? = null
private var timeout: Output? = null
/**
* @param value Maximum Concurrent AutoML iterations.
*/
@JvmName("xdbrjtjisswckiey")
public suspend fun maxConcurrentTrials(`value`: Output) {
this.maxConcurrentTrials = value
}
/**
* @param value Number of AutoML iterations.
*/
@JvmName("genjqamoydklhgxw")
public suspend fun maxTrials(`value`: Output) {
this.maxTrials = value
}
/**
* @param value AutoML job timeout.
*/
@JvmName("ydjpxlqylvibfncw")
public suspend fun timeout(`value`: Output) {
this.timeout = value
}
/**
* @param value Maximum Concurrent AutoML iterations.
*/
@JvmName("mdjgafxfmmauvjjo")
public suspend fun maxConcurrentTrials(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.maxConcurrentTrials = mapped
}
/**
* @param value Number of AutoML iterations.
*/
@JvmName("mnsprclhprasukho")
public suspend fun maxTrials(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.maxTrials = mapped
}
/**
* @param value AutoML job timeout.
*/
@JvmName("kvboirlpgeqsejmo")
public suspend fun timeout(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.timeout = mapped
}
internal fun build(): NlpVerticalLimitSettingsArgs = NlpVerticalLimitSettingsArgs(
maxConcurrentTrials = maxConcurrentTrials,
maxTrials = maxTrials,
timeout = timeout,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy