
com.pulumi.azurenative.datafactory.kotlin.outputs.GlobalParameterSpecificationResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datafactory.kotlin.outputs
import kotlin.Any
import kotlin.String
import kotlin.Suppress
/**
* Definition of a single parameter for an entity.
* @property type Global Parameter type.
* @property value Value of parameter.
*/
public data class GlobalParameterSpecificationResponse(
public val type: String,
public val `value`: Any,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.datafactory.outputs.GlobalParameterSpecificationResponse): GlobalParameterSpecificationResponse = GlobalParameterSpecificationResponse(
type = javaType.type(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy