com.pulumi.kubernetes.resource.v1alpha3.kotlin.outputs.DeviceClassConfigurationPatch.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-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.kubernetes.resource.v1alpha3.kotlin.outputs
import kotlin.Suppress
/**
* DeviceClassConfiguration is used in DeviceClass.
* @property opaque Opaque provides driver-specific configuration parameters.
*/
public data class DeviceClassConfigurationPatch(
public val opaque: OpaqueDeviceConfigurationPatch? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.resource.v1alpha3.outputs.DeviceClassConfigurationPatch): DeviceClassConfigurationPatch = DeviceClassConfigurationPatch(
opaque = javaType.opaque().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.resource.v1alpha3.kotlin.outputs.OpaqueDeviceConfigurationPatch.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy