com.pulumi.azure.databoxedge.kotlin.inputs.OrderContactArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.databoxedge.kotlin.inputs
import com.pulumi.azure.databoxedge.inputs.OrderContactArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property companyName The name of the company. Changing this forces a new Databox Edge Order to be created.
* @property emails A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
* @property name The contact person name. Changing this forces a new Databox Edge Order to be created.
* @property phoneNumber The phone number. Changing this forces a new Databox Edge Order to be created.
*/
public data class OrderContactArgs(
public val companyName: Output,
public val emails: Output>,
public val name: Output,
public val phoneNumber: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.databoxedge.inputs.OrderContactArgs =
com.pulumi.azure.databoxedge.inputs.OrderContactArgs.builder()
.companyName(companyName.applyValue({ args0 -> args0 }))
.emails(emails.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name.applyValue({ args0 -> args0 }))
.phoneNumber(phoneNumber.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [OrderContactArgs].
*/
@PulumiTagMarker
public class OrderContactArgsBuilder internal constructor() {
private var companyName: Output? = null
private var emails: Output>? = null
private var name: Output? = null
private var phoneNumber: Output? = null
/**
* @param value The name of the company. Changing this forces a new Databox Edge Order to be created.
*/
@JvmName("gsohhvhkwslvqmeu")
public suspend fun companyName(`value`: Output) {
this.companyName = value
}
/**
* @param value A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
*/
@JvmName("ymuunotxdpmpeqbf")
public suspend fun emails(`value`: Output>) {
this.emails = value
}
@JvmName("tmfrroomelpfmsul")
public suspend fun emails(vararg values: Output) {
this.emails = Output.all(values.asList())
}
/**
* @param values A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
*/
@JvmName("tvpcftcjgcdkmmhl")
public suspend fun emails(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy