com.pulumi.gcp.compute.kotlin.outputs.RegionInstanceGroupManagerAutoHealingPolicies.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.compute.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property healthCheck The health check resource that signals autohealing.
* @property initialDelaySec The number of seconds that the managed instance group waits before
* it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.
*/
public data class RegionInstanceGroupManagerAutoHealingPolicies(
public val healthCheck: String,
public val initialDelaySec: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.RegionInstanceGroupManagerAutoHealingPolicies): RegionInstanceGroupManagerAutoHealingPolicies =
RegionInstanceGroupManagerAutoHealingPolicies(
healthCheck = javaType.healthCheck(),
initialDelaySec = javaType.initialDelaySec(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy