com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingAction.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.appservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property actionType The predefined action to be taken to an Auto Heal trigger.
* @property customActions A `custom_action` block as defined below.
* @property minimumProcessExecutionTime The minimum amount of time in `hh:mm:ss` the Windows Web App must have been running before the defined action will be run in the event of a trigger.
*/
public data class GetWindowsWebAppSiteConfigAutoHealSettingAction(
public val actionType: String,
public val customActions: List,
public val minimumProcessExecutionTime: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetWindowsWebAppSiteConfigAutoHealSettingAction):
GetWindowsWebAppSiteConfigAutoHealSettingAction =
GetWindowsWebAppSiteConfigAutoHealSettingAction(
actionType = javaType.actionType(),
customActions = javaType.customActions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingActionCustomAction.Companion.toKotlin(args0)
})
}),
minimumProcessExecutionTime = javaType.minimumProcessExecutionTime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy