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

com.pulumi.azurenative.databox.kotlin.inputs.JobDeliveryInfoArgs.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.databox.kotlin.inputs

import com.pulumi.azurenative.databox.inputs.JobDeliveryInfoArgs.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

/**
 * Additional delivery info.
 * @property scheduledDateTime Scheduled date time.
 */
public data class JobDeliveryInfoArgs(
    public val scheduledDateTime: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.databox.inputs.JobDeliveryInfoArgs =
        com.pulumi.azurenative.databox.inputs.JobDeliveryInfoArgs.builder()
            .scheduledDateTime(scheduledDateTime?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [JobDeliveryInfoArgs].
 */
@PulumiTagMarker
public class JobDeliveryInfoArgsBuilder internal constructor() {
    private var scheduledDateTime: Output? = null

    /**
     * @param value Scheduled date time.
     */
    @JvmName("lsskbbenrbflmeec")
    public suspend fun scheduledDateTime(`value`: Output) {
        this.scheduledDateTime = value
    }

    /**
     * @param value Scheduled date time.
     */
    @JvmName("fgldxcjsilqfbrtq")
    public suspend fun scheduledDateTime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scheduledDateTime = mapped
    }

    internal fun build(): JobDeliveryInfoArgs = JobDeliveryInfoArgs(
        scheduledDateTime = scheduledDateTime,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy