
com.pulumi.googlenative.run.v1.kotlin.outputs.JobSpecResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.run.v1.kotlin.outputs
import kotlin.Suppress
/**
* JobSpec describes how the job will look.
* @property template Optional. Describes the execution that will be created when running a job.
*/
public data class JobSpecResponse(
public val template: ExecutionTemplateSpecResponse,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.run.v1.outputs.JobSpecResponse): JobSpecResponse = JobSpecResponse(
template = javaType.template().let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.ExecutionTemplateSpecResponse.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy