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

com.pulumi.gcp.compute.kotlin.inputs.URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs.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: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property numRetries Specifies the allowed number retries. This number must be > 0. If not specified, defaults to 1.
 * @property perTryTimeout Specifies a non-zero timeout per retry attempt.
 * If not specified, will use the timeout set in HttpRouteAction. If timeout in HttpRouteAction is not set,
 * will use the largest timeout among all backend services associated with the route.
 * Structure is documented below.
 * @property retryConditions Specfies one or more conditions when this retry rule applies. Valid values are:
 * * 5xx: Loadbalancer will attempt a retry if the backend service responds with any 5xx response code,
 * or if the backend service does not respond at all, example: disconnects, reset, read timeout,
 * * connection failure, and refused streams.
 * * gateway-error: Similar to 5xx, but only applies to response codes 502, 503 or 504.
 * * connect-failure: Loadbalancer will retry on failures connecting to backend services,
 * for example due to connection timeouts.
 * * retriable-4xx: Loadbalancer will retry for retriable 4xx response codes.
 * Currently the only retriable error supported is 409.
 * * refused-stream:Loadbalancer will retry if the backend service resets the stream with a REFUSED_STREAM error code.
 * This reset type indicates that it is safe to retry.
 * * cancelled: Loadbalancer will retry if the gRPC status code in the response header is set to cancelled
 * * deadline-exceeded: Loadbalancer will retry if the gRPC status code in the response header is set to deadline-exceeded
 * * resource-exhausted: Loadbalancer will retry if the gRPC status code in the response header is set to resource-exhausted
 * * unavailable: Loadbalancer will retry if the gRPC status code in the response header is set to unavailable
 */
public data class URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs(
    public val numRetries: Output,
    public val perTryTimeout: Output? = null,
    public val retryConditions: Output>? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs =
        com.pulumi.gcp.compute.inputs.URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs.builder()
            .numRetries(numRetries.applyValue({ args0 -> args0 }))
            .perTryTimeout(perTryTimeout?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .retryConditions(retryConditions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs].
 */
@PulumiTagMarker
public class URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgsBuilder internal constructor() {
    private var numRetries: Output? = null

    private var perTryTimeout:
        Output? = null

    private var retryConditions: Output>? = null

    /**
     * @param value Specifies the allowed number retries. This number must be > 0. If not specified, defaults to 1.
     */
    @JvmName("jqbixwctpysfwsbc")
    public suspend fun numRetries(`value`: Output) {
        this.numRetries = value
    }

    /**
     * @param value Specifies a non-zero timeout per retry attempt.
     * If not specified, will use the timeout set in HttpRouteAction. If timeout in HttpRouteAction is not set,
     * will use the largest timeout among all backend services associated with the route.
     * Structure is documented below.
     */
    @JvmName("aecsmebgeuqwxlhi")
    public suspend fun perTryTimeout(`value`: Output) {
        this.perTryTimeout = value
    }

    /**
     * @param value Specfies one or more conditions when this retry rule applies. Valid values are:
     * * 5xx: Loadbalancer will attempt a retry if the backend service responds with any 5xx response code,
     * or if the backend service does not respond at all, example: disconnects, reset, read timeout,
     * * connection failure, and refused streams.
     * * gateway-error: Similar to 5xx, but only applies to response codes 502, 503 or 504.
     * * connect-failure: Loadbalancer will retry on failures connecting to backend services,
     * for example due to connection timeouts.
     * * retriable-4xx: Loadbalancer will retry for retriable 4xx response codes.
     * Currently the only retriable error supported is 409.
     * * refused-stream:Loadbalancer will retry if the backend service resets the stream with a REFUSED_STREAM error code.
     * This reset type indicates that it is safe to retry.
     * * cancelled: Loadbalancer will retry if the gRPC status code in the response header is set to cancelled
     * * deadline-exceeded: Loadbalancer will retry if the gRPC status code in the response header is set to deadline-exceeded
     * * resource-exhausted: Loadbalancer will retry if the gRPC status code in the response header is set to resource-exhausted
     * * unavailable: Loadbalancer will retry if the gRPC status code in the response header is set to unavailable
     */
    @JvmName("fqdfqyqcgjlgyufc")
    public suspend fun retryConditions(`value`: Output>) {
        this.retryConditions = value
    }

    @JvmName("wbuuomlahrvilfhp")
    public suspend fun retryConditions(vararg values: Output) {
        this.retryConditions = Output.all(values.asList())
    }

    /**
     * @param values Specfies one or more conditions when this retry rule applies. Valid values are:
     * * 5xx: Loadbalancer will attempt a retry if the backend service responds with any 5xx response code,
     * or if the backend service does not respond at all, example: disconnects, reset, read timeout,
     * * connection failure, and refused streams.
     * * gateway-error: Similar to 5xx, but only applies to response codes 502, 503 or 504.
     * * connect-failure: Loadbalancer will retry on failures connecting to backend services,
     * for example due to connection timeouts.
     * * retriable-4xx: Loadbalancer will retry for retriable 4xx response codes.
     * Currently the only retriable error supported is 409.
     * * refused-stream:Loadbalancer will retry if the backend service resets the stream with a REFUSED_STREAM error code.
     * This reset type indicates that it is safe to retry.
     * * cancelled: Loadbalancer will retry if the gRPC status code in the response header is set to cancelled
     * * deadline-exceeded: Loadbalancer will retry if the gRPC status code in the response header is set to deadline-exceeded
     * * resource-exhausted: Loadbalancer will retry if the gRPC status code in the response header is set to resource-exhausted
     * * unavailable: Loadbalancer will retry if the gRPC status code in the response header is set to unavailable
     */
    @JvmName("bownmmeeftgqixmf")
    public suspend fun retryConditions(values: List>) {
        this.retryConditions = Output.all(values)
    }

    /**
     * @param value Specifies the allowed number retries. This number must be > 0. If not specified, defaults to 1.
     */
    @JvmName("snqibsewyskxqemi")
    public suspend fun numRetries(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.numRetries = mapped
    }

    /**
     * @param value Specifies a non-zero timeout per retry attempt.
     * If not specified, will use the timeout set in HttpRouteAction. If timeout in HttpRouteAction is not set,
     * will use the largest timeout among all backend services associated with the route.
     * Structure is documented below.
     */
    @JvmName("xxvntmgemoxqlovs")
    public suspend fun perTryTimeout(`value`: URLMapPathMatcherRouteRuleRouteActionRetryPolicyPerTryTimeoutArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.perTryTimeout = mapped
    }

    /**
     * @param argument Specifies a non-zero timeout per retry attempt.
     * If not specified, will use the timeout set in HttpRouteAction. If timeout in HttpRouteAction is not set,
     * will use the largest timeout among all backend services associated with the route.
     * Structure is documented below.
     */
    @JvmName("yrscipcjmwqcllpt")
    public suspend fun perTryTimeout(argument: suspend URLMapPathMatcherRouteRuleRouteActionRetryPolicyPerTryTimeoutArgsBuilder.() -> Unit) {
        val toBeMapped =
            URLMapPathMatcherRouteRuleRouteActionRetryPolicyPerTryTimeoutArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.perTryTimeout = mapped
    }

    /**
     * @param value Specfies one or more conditions when this retry rule applies. Valid values are:
     * * 5xx: Loadbalancer will attempt a retry if the backend service responds with any 5xx response code,
     * or if the backend service does not respond at all, example: disconnects, reset, read timeout,
     * * connection failure, and refused streams.
     * * gateway-error: Similar to 5xx, but only applies to response codes 502, 503 or 504.
     * * connect-failure: Loadbalancer will retry on failures connecting to backend services,
     * for example due to connection timeouts.
     * * retriable-4xx: Loadbalancer will retry for retriable 4xx response codes.
     * Currently the only retriable error supported is 409.
     * * refused-stream:Loadbalancer will retry if the backend service resets the stream with a REFUSED_STREAM error code.
     * This reset type indicates that it is safe to retry.
     * * cancelled: Loadbalancer will retry if the gRPC status code in the response header is set to cancelled
     * * deadline-exceeded: Loadbalancer will retry if the gRPC status code in the response header is set to deadline-exceeded
     * * resource-exhausted: Loadbalancer will retry if the gRPC status code in the response header is set to resource-exhausted
     * * unavailable: Loadbalancer will retry if the gRPC status code in the response header is set to unavailable
     */
    @JvmName("xcptapvungxywogi")
    public suspend fun retryConditions(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.retryConditions = mapped
    }

    /**
     * @param values Specfies one or more conditions when this retry rule applies. Valid values are:
     * * 5xx: Loadbalancer will attempt a retry if the backend service responds with any 5xx response code,
     * or if the backend service does not respond at all, example: disconnects, reset, read timeout,
     * * connection failure, and refused streams.
     * * gateway-error: Similar to 5xx, but only applies to response codes 502, 503 or 504.
     * * connect-failure: Loadbalancer will retry on failures connecting to backend services,
     * for example due to connection timeouts.
     * * retriable-4xx: Loadbalancer will retry for retriable 4xx response codes.
     * Currently the only retriable error supported is 409.
     * * refused-stream:Loadbalancer will retry if the backend service resets the stream with a REFUSED_STREAM error code.
     * This reset type indicates that it is safe to retry.
     * * cancelled: Loadbalancer will retry if the gRPC status code in the response header is set to cancelled
     * * deadline-exceeded: Loadbalancer will retry if the gRPC status code in the response header is set to deadline-exceeded
     * * resource-exhausted: Loadbalancer will retry if the gRPC status code in the response header is set to resource-exhausted
     * * unavailable: Loadbalancer will retry if the gRPC status code in the response header is set to unavailable
     */
    @JvmName("afnlhurjdyomeiti")
    public suspend fun retryConditions(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.retryConditions = mapped
    }

    internal fun build(): URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs =
        URLMapPathMatcherRouteRuleRouteActionRetryPolicyArgs(
            numRetries = numRetries ?: throw PulumiNullFieldException("numRetries"),
            perTryTimeout = perTryTimeout,
            retryConditions = retryConditions,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy