
com.pulumi.azure.monitoring.kotlin.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.monitoring.kotlin.inputs
import com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs.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 AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs(
public val endTime: Output,
public val startTime: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs =
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs.builder()
.endTime(endTime.applyValue({ args0 -> args0 }))
.startTime(startTime.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs].
*/
@PulumiTagMarker
public class AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgsBuilder internal constructor() {
private var endTime: Output? = null
private var startTime: Output? = null
/**
* @param value Specifies the recurrence end time (H:M:S).
*/
@JvmName("cxiidqvyrtqelwhd")
public suspend fun endTime(`value`: Output) {
this.endTime = value
}
/**
* @param value Specifies the recurrence start time (H:M:S).
*/
@JvmName("cxwbsdurinbrkjxq")
public suspend fun startTime(`value`: Output) {
this.startTime = value
}
/**
* @param value Specifies the recurrence end time (H:M:S).
*/
@JvmName("fddeqcvhwdntjftj")
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("xsebuqxvqlocisox")
public suspend fun startTime(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.startTime = mapped
}
internal fun build(): AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs =
AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs(
endTime = endTime ?: throw PulumiNullFieldException("endTime"),
startTime = startTime ?: throw PulumiNullFieldException("startTime"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy