![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.devtest.kotlin.inputs.ScheduleDailyRecurrenceArgs.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.devtest.kotlin.inputs
import com.pulumi.azure.devtest.inputs.ScheduleDailyRecurrenceArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property time The time each day when the schedule takes effect.
*/
public data class ScheduleDailyRecurrenceArgs(
public val time: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.devtest.inputs.ScheduleDailyRecurrenceArgs =
com.pulumi.azure.devtest.inputs.ScheduleDailyRecurrenceArgs.builder()
.time(time.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ScheduleDailyRecurrenceArgs].
*/
@PulumiTagMarker
public class ScheduleDailyRecurrenceArgsBuilder internal constructor() {
private var time: Output? = null
/**
* @param value The time each day when the schedule takes effect.
*/
@JvmName("yxpxdlwwnxwagtmw")
public suspend fun time(`value`: Output) {
this.time = value
}
/**
* @param value The time each day when the schedule takes effect.
*/
@JvmName("kcdkwgtouawtaaff")
public suspend fun time(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.time = mapped
}
internal fun build(): ScheduleDailyRecurrenceArgs = ScheduleDailyRecurrenceArgs(
time = time ?: throw PulumiNullFieldException("time"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy