com.pulumi.azure.lab.kotlin.inputs.ServicePlanSupportArgs.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.lab.kotlin.inputs
import com.pulumi.azure.lab.inputs.ServicePlanSupportArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property email The email address for the support contact.
* @property instructions The instructions for users of the Lab Service Plan.
* @property phone The phone number for the support contact.
* @property url The web address for users of the Lab Service Plan.
*/
public data class ServicePlanSupportArgs(
public val email: Output? = null,
public val instructions: Output? = null,
public val phone: Output? = null,
public val url: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.lab.inputs.ServicePlanSupportArgs =
com.pulumi.azure.lab.inputs.ServicePlanSupportArgs.builder()
.email(email?.applyValue({ args0 -> args0 }))
.instructions(instructions?.applyValue({ args0 -> args0 }))
.phone(phone?.applyValue({ args0 -> args0 }))
.url(url?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ServicePlanSupportArgs].
*/
@PulumiTagMarker
public class ServicePlanSupportArgsBuilder internal constructor() {
private var email: Output? = null
private var instructions: Output? = null
private var phone: Output? = null
private var url: Output? = null
/**
* @param value The email address for the support contact.
*/
@JvmName("mgeanxcnyendlduc")
public suspend fun email(`value`: Output) {
this.email = value
}
/**
* @param value The instructions for users of the Lab Service Plan.
*/
@JvmName("dnwyyjqgeemffrqv")
public suspend fun instructions(`value`: Output) {
this.instructions = value
}
/**
* @param value The phone number for the support contact.
*/
@JvmName("ugwbhhnqwhrcemuc")
public suspend fun phone(`value`: Output) {
this.phone = value
}
/**
* @param value The web address for users of the Lab Service Plan.
*/
@JvmName("lfnkpjbdidihdpdx")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The email address for the support contact.
*/
@JvmName("fptlpvxgcywwnutk")
public suspend fun email(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.email = mapped
}
/**
* @param value The instructions for users of the Lab Service Plan.
*/
@JvmName("jlmndpaocybvkjca")
public suspend fun instructions(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.instructions = mapped
}
/**
* @param value The phone number for the support contact.
*/
@JvmName("vooafefcavnqwwjl")
public suspend fun phone(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.phone = mapped
}
/**
* @param value The web address for users of the Lab Service Plan.
*/
@JvmName("xvngqilbekblonwe")
public suspend fun url(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.url = mapped
}
internal fun build(): ServicePlanSupportArgs = ServicePlanSupportArgs(
email = email,
instructions = instructions,
phone = phone,
url = url,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy