![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.devtestlab.kotlin.inputs.WeekDetailsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.devtestlab.kotlin.inputs
import com.pulumi.azurenative.devtestlab.inputs.WeekDetailsArgs.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.collections.List
import kotlin.jvm.JvmName
/**
* Properties of a weekly schedule.
* @property time The time of the day the schedule will occur.
* @property weekdays The days of the week for which the schedule is set (e.g. Sunday, Monday, Tuesday, etc.).
*/
public data class WeekDetailsArgs(
public val time: Output? = null,
public val weekdays: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.devtestlab.inputs.WeekDetailsArgs =
com.pulumi.azurenative.devtestlab.inputs.WeekDetailsArgs.builder()
.time(time?.applyValue({ args0 -> args0 }))
.weekdays(weekdays?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [WeekDetailsArgs].
*/
@PulumiTagMarker
public class WeekDetailsArgsBuilder internal constructor() {
private var time: Output? = null
private var weekdays: Output>? = null
/**
* @param value The time of the day the schedule will occur.
*/
@JvmName("eixffwupnnqurtjo")
public suspend fun time(`value`: Output) {
this.time = value
}
/**
* @param value The days of the week for which the schedule is set (e.g. Sunday, Monday, Tuesday, etc.).
*/
@JvmName("avacpotbyntlpiod")
public suspend fun weekdays(`value`: Output>) {
this.weekdays = value
}
@JvmName("astdadtwmekmgaca")
public suspend fun weekdays(vararg values: Output) {
this.weekdays = Output.all(values.asList())
}
/**
* @param values The days of the week for which the schedule is set (e.g. Sunday, Monday, Tuesday, etc.).
*/
@JvmName("tgskwnmfxphohbsk")
public suspend fun weekdays(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy