com.pulumi.azurenative.machinelearningservices.kotlin.outputs.EnvironmentVariableResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.machinelearningservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Environment Variables for the container
* @property type Type of the Environment Variable. Possible values are: local - For local variable
* @property value Value of the Environment variable
*/
public data class EnvironmentVariableResponse(
public val type: String? = null,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.machinelearningservices.outputs.EnvironmentVariableResponse): EnvironmentVariableResponse = EnvironmentVariableResponse(
type = javaType.type().map({ args0 -> args0 }).orElse(null),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}