![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.cdn.kotlin.outputs.GetFrontdoorOriginGroupHealthProbe.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.cdn.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property intervalInSeconds Specifies the number of seconds between health probes.
* @property path Specifies the path relative to the origin that is used to determine the health of the origin.
* @property protocol Specifies the protocol to use for health probe.
* @property requestType Specifies the type of health probe request that is made.
*/
public data class GetFrontdoorOriginGroupHealthProbe(
public val intervalInSeconds: Int,
public val path: String,
public val protocol: String,
public val requestType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.GetFrontdoorOriginGroupHealthProbe): GetFrontdoorOriginGroupHealthProbe = GetFrontdoorOriginGroupHealthProbe(
intervalInSeconds = javaType.intervalInSeconds(),
path = javaType.path(),
protocol = javaType.protocol(),
requestType = javaType.requestType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy