![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.appplatform.kotlin.inputs.JobResourcePropertiesArgs.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.appplatform.kotlin.inputs
import com.pulumi.azurenative.appplatform.inputs.JobResourcePropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Job resource properties payload
* @property managedComponentReferences Referenced managed components collection
* @property source Uploaded source information of the Job.
* @property template The template which is applied for all executions of the Job.
* @property triggerConfig The Job trigger related configuration.
*/
public data class JobResourcePropertiesArgs(
public val managedComponentReferences: Output>? = null,
public val source: Output? = null,
public val template: Output? = null,
public val triggerConfig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.appplatform.inputs.JobResourcePropertiesArgs =
com.pulumi.azurenative.appplatform.inputs.JobResourcePropertiesArgs.builder()
.managedComponentReferences(
managedComponentReferences?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.source(source?.applyValue({ args0 -> args0 }))
.template(template?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.triggerConfig(triggerConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [JobResourcePropertiesArgs].
*/
@PulumiTagMarker
public class JobResourcePropertiesArgsBuilder internal constructor() {
private var managedComponentReferences: Output>? = null
private var source: Output? = null
private var template: Output? = null
private var triggerConfig: Output? = null
/**
* @param value Referenced managed components collection
*/
@JvmName("lkdoisgpphonyyxk")
public suspend fun managedComponentReferences(`value`: Output>) {
this.managedComponentReferences = value
}
@JvmName("poegftskxiskasyv")
public suspend fun managedComponentReferences(vararg values: Output) {
this.managedComponentReferences = Output.all(values.asList())
}
/**
* @param values Referenced managed components collection
*/
@JvmName("kcaqrqtowdleoboy")
public suspend fun managedComponentReferences(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy