com.pulumi.azure.monitoring.kotlin.inputs.AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs.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.monitoring.kotlin.inputs
import com.pulumi.azure.monitoring.inputs.AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs.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 endTime Specifies the recurrence end time (H:M:S).
* @property startTime Specifies the recurrence start time (H:M:S).
*/
public data class AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs(
public val endTime: Output,
public val startTime: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs =
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs.builder()
.endTime(endTime.applyValue({ args0 -> args0 }))
.startTime(startTime.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs].
*/
@PulumiTagMarker
public class AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgsBuilder internal constructor() {
private var endTime: Output? = null
private var startTime: Output? = null
/**
* @param value Specifies the recurrence end time (H:M:S).
*/
@JvmName("mgiieksocemgortg")
public suspend fun endTime(`value`: Output) {
this.endTime = value
}
/**
* @param value Specifies the recurrence start time (H:M:S).
*/
@JvmName("slfjjrdlaucisulr")
public suspend fun startTime(`value`: Output) {
this.startTime = value
}
/**
* @param value Specifies the recurrence end time (H:M:S).
*/
@JvmName("vhtdiwhhsdypjbvm")
public suspend fun endTime(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.endTime = mapped
}
/**
* @param value Specifies the recurrence start time (H:M:S).
*/
@JvmName("qrpoiuljwdwlpfms")
public suspend fun startTime(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.startTime = mapped
}
internal fun build(): AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs =
AlertProcessingRuleActionGroupScheduleRecurrenceDailyArgs(
endTime = endTime ?: throw PulumiNullFieldException("endTime"),
startTime = startTime ?: throw PulumiNullFieldException("startTime"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy