com.pulumi.gcp.cloudquota.kotlin.outputs.GetSQuotaInfoQuotaIncreaseEligibility.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.cloudquota.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property ineligibilityReason The enumeration of reasons when it is ineligible to request increase adjustment.
* @property isEligible Whether a higher quota value can be requested for the quota.
*/
public data class GetSQuotaInfoQuotaIncreaseEligibility(
public val ineligibilityReason: String,
public val isEligible: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudquota.outputs.GetSQuotaInfoQuotaIncreaseEligibility): GetSQuotaInfoQuotaIncreaseEligibility = GetSQuotaInfoQuotaIncreaseEligibility(
ineligibilityReason = javaType.ineligibilityReason(),
isEligible = javaType.isEligible(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy