All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.eventgrid.kotlin.outputs.GetDomainInputMappingField.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.eventgrid.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property dataVersion Specifies the default data version of the EventGrid Event associated with the domain.
 * @property eventTime Specifies the event time of the EventGrid Event associated with the domain.
 * @property eventType Specifies the default event type of the EventGrid Event associated with the domain.
 * @property id Specifies the id of the EventGrid Event associated with the domain.
 * @property subject Specifies the default subject of the EventGrid Event associated with the domain.
 * @property topic Specifies the topic of the EventGrid Event associated with the domain.
 */
public data class GetDomainInputMappingField(
    public val dataVersion: String,
    public val eventTime: String,
    public val eventType: String,
    public val id: String,
    public val subject: String,
    public val topic: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.eventgrid.outputs.GetDomainInputMappingField): GetDomainInputMappingField = GetDomainInputMappingField(
            dataVersion = javaType.dataVersion(),
            eventTime = javaType.eventTime(),
            eventType = javaType.eventType(),
            id = javaType.id(),
            subject = javaType.subject(),
            topic = javaType.topic(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy