![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.security.kotlin.inputs.RemediationEtaArgs.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.security.kotlin.inputs
import com.pulumi.azurenative.security.inputs.RemediationEtaArgs.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
/**
* The ETA (estimated time of arrival) for remediation
* @property eta ETA for remediation.
* @property justification Justification for change of Eta.
*/
public data class RemediationEtaArgs(
public val eta: Output,
public val justification: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.security.inputs.RemediationEtaArgs =
com.pulumi.azurenative.security.inputs.RemediationEtaArgs.builder()
.eta(eta.applyValue({ args0 -> args0 }))
.justification(justification.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RemediationEtaArgs].
*/
@PulumiTagMarker
public class RemediationEtaArgsBuilder internal constructor() {
private var eta: Output? = null
private var justification: Output? = null
/**
* @param value ETA for remediation.
*/
@JvmName("wbgdhqfebydnjjmh")
public suspend fun eta(`value`: Output) {
this.eta = value
}
/**
* @param value Justification for change of Eta.
*/
@JvmName("apasoqquygkbnjek")
public suspend fun justification(`value`: Output) {
this.justification = value
}
/**
* @param value ETA for remediation.
*/
@JvmName("eurjjrfsyxjtrhis")
public suspend fun eta(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.eta = mapped
}
/**
* @param value Justification for change of Eta.
*/
@JvmName("nbvmugjrbpbevvxk")
public suspend fun justification(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.justification = mapped
}
internal fun build(): RemediationEtaArgs = RemediationEtaArgs(
eta = eta ?: throw PulumiNullFieldException("eta"),
justification = justification ?: throw PulumiNullFieldException("justification"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy