
com.pulumi.azurenative.azurelargeinstance.kotlin.outputs.HardwareProfileResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.azurelargeinstance.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Specifies the hardware settings for the Azure Large Instance.
* @property azureLargeInstanceSize Specifies the Azure Large Instance SKU.
* @property hardwareType Name of the hardware type (vendor and/or their product name)
*/
public data class HardwareProfileResponse(
public val azureLargeInstanceSize: String? = null,
public val hardwareType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azurelargeinstance.outputs.HardwareProfileResponse): HardwareProfileResponse = HardwareProfileResponse(
azureLargeInstanceSize = javaType.azureLargeInstanceSize().map({ args0 -> args0 }).orElse(null),
hardwareType = javaType.hardwareType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy