![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.eventhub.kotlin.outputs.EventGridTopicInputMappingFields.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 EventGridTopicInputMappingFields(
public val dataVersion: String? = null,
public val eventTime: String? = null,
public val eventType: String? = null,
public val id: String? = null,
public val subject: String? = null,
public val topic: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.eventhub.outputs.EventGridTopicInputMappingFields): EventGridTopicInputMappingFields = EventGridTopicInputMappingFields(
dataVersion = javaType.dataVersion().map({ args0 -> args0 }).orElse(null),
eventTime = javaType.eventTime().map({ args0 -> args0 }).orElse(null),
eventType = javaType.eventType().map({ args0 -> args0 }).orElse(null),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
subject = javaType.subject().map({ args0 -> args0 }).orElse(null),
topic = javaType.topic().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy