com.pulumi.azure.monitoring.kotlin.inputs.ActionGroupAzureAppPushReceiverArgs.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.monitoring.kotlin.inputs
import com.pulumi.azure.monitoring.inputs.ActionGroupAzureAppPushReceiverArgs.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
/**
*
* @property emailAddress The email address of the user signed into the mobile app who will receive push notifications from this receiver.
* @property name The name of the Azure app push receiver.
*/
public data class ActionGroupAzureAppPushReceiverArgs(
public val emailAddress: Output,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.monitoring.inputs.ActionGroupAzureAppPushReceiverArgs =
com.pulumi.azure.monitoring.inputs.ActionGroupAzureAppPushReceiverArgs.builder()
.emailAddress(emailAddress.applyValue({ args0 -> args0 }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ActionGroupAzureAppPushReceiverArgs].
*/
@PulumiTagMarker
public class ActionGroupAzureAppPushReceiverArgsBuilder internal constructor() {
private var emailAddress: Output? = null
private var name: Output? = null
/**
* @param value The email address of the user signed into the mobile app who will receive push notifications from this receiver.
*/
@JvmName("rqfnsnkhxwliitem")
public suspend fun emailAddress(`value`: Output) {
this.emailAddress = value
}
/**
* @param value The name of the Azure app push receiver.
*/
@JvmName("uwodgrtvsufnyppr")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The email address of the user signed into the mobile app who will receive push notifications from this receiver.
*/
@JvmName("ffpqcjgcqitqstvr")
public suspend fun emailAddress(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.emailAddress = mapped
}
/**
* @param value The name of the Azure app push receiver.
*/
@JvmName("lpxvjwskehrofuyb")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): ActionGroupAzureAppPushReceiverArgs = ActionGroupAzureAppPushReceiverArgs(
emailAddress = emailAddress ?: throw PulumiNullFieldException("emailAddress"),
name = name ?: throw PulumiNullFieldException("name"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy