com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTrigger.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.Suppress
import kotlin.collections.List
/**
*
* @property privateMemoryKb The amount of Private Memory used.
* @property requests A `requests` block as defined above.
* @property slowRequestWithPaths (Optional) One or more `slow_request_with_path` blocks as defined above.
* @property slowRequests A `slow_request` block as defined above.
* @property statusCodes A `status_code` block as defined above.
*/
public data class GetWindowsWebAppSiteConfigAutoHealSettingTrigger(
public val privateMemoryKb: Int,
public val requests: List,
public val slowRequestWithPaths:
List,
public val slowRequests: List,
public val statusCodes: List,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTrigger):
GetWindowsWebAppSiteConfigAutoHealSettingTrigger =
GetWindowsWebAppSiteConfigAutoHealSettingTrigger(
privateMemoryKb = javaType.privateMemoryKb(),
requests = javaType.requests().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTriggerRequest.Companion.toKotlin(args0)
})
}),
slowRequestWithPaths = javaType.slowRequestWithPaths().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequestWithPath.Companion.toKotlin(args0)
})
}),
slowRequests = javaType.slowRequests().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTriggerSlowRequest.Companion.toKotlin(args0)
})
}),
statusCodes = javaType.statusCodes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.GetWindowsWebAppSiteConfigAutoHealSettingTriggerStatusCode.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy