All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.testing.v1.kotlin.outputs.EnvironmentVariableResponse.kt Maven / Gradle / Ivy

Go to download

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.testing.v1.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A key-value pair passed as an environment variable to the test.
 * @property key Key for the environment variable.
 * @property value Value for the environment variable.
 */
public data class EnvironmentVariableResponse(
    public val key: String,
    public val `value`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.testing.v1.outputs.EnvironmentVariableResponse): EnvironmentVariableResponse = EnvironmentVariableResponse(
            key = javaType.key(),
            `value` = javaType.`value`(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy