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

com.pulumi.gcp.compute.kotlin.inputs.RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs.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.10.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.RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property nanos Span of time that's a fraction of a second at nanosecond resolution. Durations
 * less than one second are represented with a 0 `seconds` field and a positive
 * `nanos` field. Must be from 0 to 999,999,999 inclusive.
 * @property seconds Span of time at a resolution of a second. Must be from 0 to 315,576,000,000
 * inclusive.
 */
public data class RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs(
    public val nanos: Output? = null,
    public val seconds: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs =
        com.pulumi.gcp.compute.inputs.RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs.builder()
            .nanos(nanos?.applyValue({ args0 -> args0 }))
            .seconds(seconds.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs].
 */
@PulumiTagMarker
public class RegionBackendServiceOutlierDetectionBaseEjectionTimeArgsBuilder internal constructor() {
    private var nanos: Output? = null

    private var seconds: Output? = null

    /**
     * @param value Span of time that's a fraction of a second at nanosecond resolution. Durations
     * less than one second are represented with a 0 `seconds` field and a positive
     * `nanos` field. Must be from 0 to 999,999,999 inclusive.
     */
    @JvmName("ckogcqxqilaknsan")
    public suspend fun nanos(`value`: Output) {
        this.nanos = value
    }

    /**
     * @param value Span of time at a resolution of a second. Must be from 0 to 315,576,000,000
     * inclusive.
     */
    @JvmName("yfrocfrunapohjjp")
    public suspend fun seconds(`value`: Output) {
        this.seconds = value
    }

    /**
     * @param value Span of time that's a fraction of a second at nanosecond resolution. Durations
     * less than one second are represented with a 0 `seconds` field and a positive
     * `nanos` field. Must be from 0 to 999,999,999 inclusive.
     */
    @JvmName("ivhqmpdtxblaixly")
    public suspend fun nanos(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.nanos = mapped
    }

    /**
     * @param value Span of time at a resolution of a second. Must be from 0 to 315,576,000,000
     * inclusive.
     */
    @JvmName("qydyfnfpfajkfcnd")
    public suspend fun seconds(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.seconds = mapped
    }

    internal fun build(): RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs =
        RegionBackendServiceOutlierDetectionBaseEjectionTimeArgs(
            nanos = nanos,
            seconds = seconds ?: throw PulumiNullFieldException("seconds"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy