
com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest.kt Maven / Gradle / Ivy
@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 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 timeTaken (Required) The threshold of time passed to qualify as a Slow Request in `hh:mm:ss`.
*/
public data class GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest(
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,
public val timeTaken: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest): GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest =
GetLinuxWebAppSiteConfigAutoHealSettingTriggerSlowRequest(
count = javaType.count(),
interval = javaType.interval(),
path = javaType.path(),
timeTaken = javaType.timeTaken(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy