
com.pulumi.azurenative.hybridcompute.kotlin.outputs.RunCommandInputParameterResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.hybridcompute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Describes the properties of a run command parameter.
* @property name The run command parameter name.
* @property value The run command parameter value.
*/
public data class RunCommandInputParameterResponse(
public val name: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.hybridcompute.outputs.RunCommandInputParameterResponse): RunCommandInputParameterResponse = RunCommandInputParameterResponse(
name = javaType.name(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy