com.pulumi.azure.eventhub.kotlin.inputs.DomainInputMappingFieldsArgs.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.eventhub.kotlin.inputs
import com.pulumi.azure.eventhub.inputs.DomainInputMappingFieldsArgs.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 dataVersion Specifies the data version of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
* @property eventTime Specifies the event time of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
* @property eventType Specifies the event type of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
* @property id Specifies the id of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
* @property subject Specifies the subject of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
* @property topic Specifies the topic of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
public data class DomainInputMappingFieldsArgs(
public val dataVersion: Output? = null,
public val eventTime: Output? = null,
public val eventType: Output? = null,
public val id: Output? = null,
public val subject: Output? = null,
public val topic: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.eventhub.inputs.DomainInputMappingFieldsArgs =
com.pulumi.azure.eventhub.inputs.DomainInputMappingFieldsArgs.builder()
.dataVersion(dataVersion?.applyValue({ args0 -> args0 }))
.eventTime(eventTime?.applyValue({ args0 -> args0 }))
.eventType(eventType?.applyValue({ args0 -> args0 }))
.id(id?.applyValue({ args0 -> args0 }))
.subject(subject?.applyValue({ args0 -> args0 }))
.topic(topic?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DomainInputMappingFieldsArgs].
*/
@PulumiTagMarker
public class DomainInputMappingFieldsArgsBuilder internal constructor() {
private var dataVersion: Output? = null
private var eventTime: Output? = null
private var eventType: Output? = null
private var id: Output? = null
private var subject: Output? = null
private var topic: Output? = null
/**
* @param value Specifies the data version of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("pttibhkabwnuwkre")
public suspend fun dataVersion(`value`: Output) {
this.dataVersion = value
}
/**
* @param value Specifies the event time of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("dsfhcwknrhneyplv")
public suspend fun eventTime(`value`: Output) {
this.eventTime = value
}
/**
* @param value Specifies the event type of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("ldempwgfarixrfmk")
public suspend fun eventType(`value`: Output) {
this.eventType = value
}
/**
* @param value Specifies the id of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("gdmpmmjtfokqtpmo")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value Specifies the subject of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("lxwclhihtyjjjrhi")
public suspend fun subject(`value`: Output) {
this.subject = value
}
/**
* @param value Specifies the topic of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("ukyurmscwulbsbmi")
public suspend fun topic(`value`: Output) {
this.topic = value
}
/**
* @param value Specifies the data version of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("stvxsyatmcxfjaem")
public suspend fun dataVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dataVersion = mapped
}
/**
* @param value Specifies the event time of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("hvypghdmymgjpfha")
public suspend fun eventTime(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.eventTime = mapped
}
/**
* @param value Specifies the event type of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("irlyoyrjqspnmkgr")
public suspend fun eventType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.eventType = mapped
}
/**
* @param value Specifies the id of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("iswaxdwgyoiovpcy")
public suspend fun id(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value Specifies the subject of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("vucooqvoenajbeeo")
public suspend fun subject(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.subject = mapped
}
/**
* @param value Specifies the topic of the EventGrid Event to associate with the domain. Changing this forces a new resource to be created.
*/
@JvmName("pfuefktjwhhbwfbd")
public suspend fun topic(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.topic = mapped
}
internal fun build(): DomainInputMappingFieldsArgs = DomainInputMappingFieldsArgs(
dataVersion = dataVersion,
eventTime = eventTime,
eventType = eventType,
id = id,
subject = subject,
topic = topic,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy