com.pulumi.gcp.certificatemanager.kotlin.inputs.CertificateManagedProvisioningIssueArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.certificatemanager.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.certificatemanager.inputs.CertificateManagedProvisioningIssueArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property details Human readable explanation about the issue. Provided to help address
* the configuration issues.
* Not guaranteed to be stable. For programmatic access use 'reason' field.
* @property reason Reason for provisioning failures.
*/
public data class CertificateManagedProvisioningIssueArgs(
public val details: Output? = null,
public val reason: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.certificatemanager.inputs.CertificateManagedProvisioningIssueArgs =
com.pulumi.gcp.certificatemanager.inputs.CertificateManagedProvisioningIssueArgs.builder()
.details(details?.applyValue({ args0 -> args0 }))
.reason(reason?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CertificateManagedProvisioningIssueArgs].
*/
@PulumiTagMarker
public class CertificateManagedProvisioningIssueArgsBuilder internal constructor() {
private var details: Output? = null
private var reason: Output? = null
/**
* @param value Human readable explanation about the issue. Provided to help address
* the configuration issues.
* Not guaranteed to be stable. For programmatic access use 'reason' field.
*/
@JvmName("ehcwephhayxchpiy")
public suspend fun details(`value`: Output) {
this.details = value
}
/**
* @param value Reason for provisioning failures.
*/
@JvmName("wdkcpxslyjnwlyuv")
public suspend fun reason(`value`: Output) {
this.reason = value
}
/**
* @param value Human readable explanation about the issue. Provided to help address
* the configuration issues.
* Not guaranteed to be stable. For programmatic access use 'reason' field.
*/
@JvmName("qjguamuxomvrenui")
public suspend fun details(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.details = mapped
}
/**
* @param value Reason for provisioning failures.
*/
@JvmName("lsibrrkrwnnjenjc")
public suspend fun reason(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.reason = mapped
}
internal fun build(): CertificateManagedProvisioningIssueArgs =
CertificateManagedProvisioningIssueArgs(
details = details,
reason = reason,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy