com.pulumi.azure.desktopvirtualization.kotlin.outputs.ScalingPlanHostPool.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.desktopvirtualization.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property hostpoolId The ID of the HostPool to assign the Scaling Plan to.
* @property scalingPlanEnabled Specifies if the scaling plan is enabled or disabled for the HostPool.
*/
public data class ScalingPlanHostPool(
public val hostpoolId: String,
public val scalingPlanEnabled: Boolean,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.desktopvirtualization.outputs.ScalingPlanHostPool):
ScalingPlanHostPool = ScalingPlanHostPool(
hostpoolId = javaType.hostpoolId(),
scalingPlanEnabled = javaType.scalingPlanEnabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy