![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.cdn.kotlin.outputs.FrontdoorOriginGroupLoadBalancing.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.Suppress
/**
*
* @property additionalLatencyInMilliseconds Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between `0` and `1000` milliseconds (inclusive). Defaults to `50`.
* @property sampleSize Specifies the number of samples to consider for load balancing decisions. Possible values are between `0` and `255` (inclusive). Defaults to `4`.
* @property successfulSamplesRequired Specifies the number of samples within the sample period that must succeed. Possible values are between `0` and `255` (inclusive). Defaults to `3`.
*/
public data class FrontdoorOriginGroupLoadBalancing(
public val additionalLatencyInMilliseconds: Int? = null,
public val sampleSize: Int? = null,
public val successfulSamplesRequired: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.FrontdoorOriginGroupLoadBalancing): FrontdoorOriginGroupLoadBalancing = FrontdoorOriginGroupLoadBalancing(
additionalLatencyInMilliseconds = javaType.additionalLatencyInMilliseconds().map({ args0 ->
args0
}).orElse(null),
sampleSize = javaType.sampleSize().map({ args0 -> args0 }).orElse(null),
successfulSamplesRequired = javaType.successfulSamplesRequired().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy