All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.cdn.kotlin.outputs.GetFrontdoorOriginGroupHealthProbe.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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