![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.providerhub.kotlin.outputs.SkuSettingResponseCapacity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.providerhub.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property default
* @property maximum
* @property minimum
* @property scaleType
*/
public data class SkuSettingResponseCapacity(
public val default: Int? = null,
public val maximum: Int? = null,
public val minimum: Int,
public val scaleType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.providerhub.outputs.SkuSettingResponseCapacity): SkuSettingResponseCapacity = SkuSettingResponseCapacity(
default = javaType.default_().map({ args0 -> args0 }).orElse(null),
maximum = javaType.maximum().map({ args0 -> args0 }).orElse(null),
minimum = javaType.minimum(),
scaleType = javaType.scaleType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy