
com.pulumi.azurenative.recoveryservices.kotlin.inputs.DailyRetentionFormatArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.inputs
import com.pulumi.azurenative.recoveryservices.inputs.DailyRetentionFormatArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Daily retention format.
* @property daysOfTheMonth List of days of the month.
*/
public data class DailyRetentionFormatArgs(
public val daysOfTheMonth: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.recoveryservices.inputs.DailyRetentionFormatArgs =
com.pulumi.azurenative.recoveryservices.inputs.DailyRetentionFormatArgs.builder()
.daysOfTheMonth(
daysOfTheMonth?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [DailyRetentionFormatArgs].
*/
@PulumiTagMarker
public class DailyRetentionFormatArgsBuilder internal constructor() {
private var daysOfTheMonth: Output>? = null
/**
* @param value List of days of the month.
*/
@JvmName("wwdhuftiliyyumuk")
public suspend fun daysOfTheMonth(`value`: Output>) {
this.daysOfTheMonth = value
}
@JvmName("excwmqyyitrpsaoq")
public suspend fun daysOfTheMonth(vararg values: Output) {
this.daysOfTheMonth = Output.all(values.asList())
}
/**
* @param values List of days of the month.
*/
@JvmName("csjwqapyseejmwth")
public suspend fun daysOfTheMonth(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy