
com.pulumi.gcp.oracledatabase.kotlin.inputs.CloudExadataInfrastructurePropertiesCustomerContactArgs.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.oracledatabase.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.oracledatabase.inputs.CloudExadataInfrastructurePropertiesCustomerContactArgs.builder
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 email The email address used by Oracle to send notifications regarding databases
* and infrastructure.
*/
public data class CloudExadataInfrastructurePropertiesCustomerContactArgs(
public val email: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.oracledatabase.inputs.CloudExadataInfrastructurePropertiesCustomerContactArgs =
com.pulumi.gcp.oracledatabase.inputs.CloudExadataInfrastructurePropertiesCustomerContactArgs.builder()
.email(email.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CloudExadataInfrastructurePropertiesCustomerContactArgs].
*/
@PulumiTagMarker
public class CloudExadataInfrastructurePropertiesCustomerContactArgsBuilder internal constructor() {
private var email: Output? = null
/**
* @param value The email address used by Oracle to send notifications regarding databases
* and infrastructure.
*/
@JvmName("qyyqxhoclxlyepjd")
public suspend fun email(`value`: Output) {
this.email = value
}
/**
* @param value The email address used by Oracle to send notifications regarding databases
* and infrastructure.
*/
@JvmName("obgnncoweatwbsgr")
public suspend fun email(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.email = mapped
}
internal fun build(): CloudExadataInfrastructurePropertiesCustomerContactArgs =
CloudExadataInfrastructurePropertiesCustomerContactArgs(
email = email ?: throw PulumiNullFieldException("email"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy