com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest.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.Deprecated
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property count The number of Slow Requests in the time `interval` to trigger this rule.
* @property interval The time interval in the form `hh:mm:ss`.
* @property path The path for which this slow request rule applies.
* @property timeTaken The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
*/
public data class WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest(
public val count: Int,
public val interval: String,
@Deprecated(
message = """
`path` will be removed in `slow_request` and please use `slow_request_with_path` to set the path
in version 4.0 of the AzureRM Provider.
""",
)
public val path: String? = null,
public val timeTaken: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest):
WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest =
WindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest(
count = javaType.count(),
interval = javaType.interval(),
path = javaType.path().map({ args0 -> args0 }).orElse(null),
timeTaken = javaType.timeTaken(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy