com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property count The number of occurrences of the defined `status_code` in the specified `interval` on which to trigger this rule.
* @property interval The time interval in the form `hh:mm:ss`.
* @property path The path to which this rule status code applies.
* @property statusCodeRange The status code or range for this rule.
* @property subStatus The Request Sub Status of the Status Code.
* @property win32StatusCode The Win32 Status Code of the Request.
*/
public data class GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode(
public val count: Int,
public val interval: String,
public val path: String,
public val statusCodeRange: String,
public val subStatus: Int,
public val win32StatusCode: Int,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode):
GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode =
GetLinuxWebAppSiteConfigAutoHealSettingTriggerStatusCode(
count = javaType.count(),
interval = javaType.interval(),
path = javaType.path(),
statusCodeRange = javaType.statusCodeRange(),
subStatus = javaType.subStatus(),
win32StatusCode = javaType.win32StatusCode(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy