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

com.pulumi.azurenative.devtestlab.kotlin.inputs.DayDetailsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.devtestlab.kotlin.inputs

import com.pulumi.azurenative.devtestlab.inputs.DayDetailsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Properties of a daily schedule.
 * @property time The time of day the schedule will occur.
 */
public data class DayDetailsArgs(
    public val time: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.devtestlab.inputs.DayDetailsArgs =
        com.pulumi.azurenative.devtestlab.inputs.DayDetailsArgs.builder()
            .time(time?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DayDetailsArgs].
 */
@PulumiTagMarker
public class DayDetailsArgsBuilder internal constructor() {
    private var time: Output? = null

    /**
     * @param value The time of day the schedule will occur.
     */
    @JvmName("pvgnliqupfxxjxlr")
    public suspend fun time(`value`: Output) {
        this.time = value
    }

    /**
     * @param value The time of day the schedule will occur.
     */
    @JvmName("qyegsiwyqdqftiob")
    public suspend fun time(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.time = mapped
    }

    internal fun build(): DayDetailsArgs = DayDetailsArgs(
        time = time,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy