
com.pulumi.googlenative.deploymentmanager.v2beta.kotlin.enums.TemplateContentsInterpreter.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.deploymentmanager.v2beta.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Which interpreter (python or jinja) should be used during expansion.
*/
public enum class TemplateContentsInterpreter(
public val javaValue: com.pulumi.googlenative.deploymentmanager.v2beta.enums.TemplateContentsInterpreter,
) :
ConvertibleToJava {
UnknownInterpreter(com.pulumi.googlenative.deploymentmanager.v2beta.enums.TemplateContentsInterpreter.UnknownInterpreter),
Python(com.pulumi.googlenative.deploymentmanager.v2beta.enums.TemplateContentsInterpreter.Python),
Jinja(com.pulumi.googlenative.deploymentmanager.v2beta.enums.TemplateContentsInterpreter.Jinja),
;
override fun toJava(): com.pulumi.googlenative.deploymentmanager.v2beta.enums.TemplateContentsInterpreter = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.deploymentmanager.v2beta.enums.TemplateContentsInterpreter): TemplateContentsInterpreter =
TemplateContentsInterpreter.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy