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

com.pulumi.azurenative.eventgrid.kotlin.inputs.InlineEventPropertiesArgs.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.eventgrid.kotlin.inputs

import com.pulumi.azurenative.eventgrid.inputs.InlineEventPropertiesArgs.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

/**
 * Additional information about every inline event.
 * @property dataSchemaUrl The dataSchemaUrl for the inline event.
 * @property description The description for the inline event.
 * @property displayName The displayName for the inline event.
 * @property documentationUrl The documentationUrl for the inline event.
 */
public data class InlineEventPropertiesArgs(
    public val dataSchemaUrl: Output? = null,
    public val description: Output? = null,
    public val displayName: Output? = null,
    public val documentationUrl: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.eventgrid.inputs.InlineEventPropertiesArgs =
        com.pulumi.azurenative.eventgrid.inputs.InlineEventPropertiesArgs.builder()
            .dataSchemaUrl(dataSchemaUrl?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .displayName(displayName?.applyValue({ args0 -> args0 }))
            .documentationUrl(documentationUrl?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InlineEventPropertiesArgs].
 */
@PulumiTagMarker
public class InlineEventPropertiesArgsBuilder internal constructor() {
    private var dataSchemaUrl: Output? = null

    private var description: Output? = null

    private var displayName: Output? = null

    private var documentationUrl: Output? = null

    /**
     * @param value The dataSchemaUrl for the inline event.
     */
    @JvmName("jepgfthfwrsujduo")
    public suspend fun dataSchemaUrl(`value`: Output) {
        this.dataSchemaUrl = value
    }

    /**
     * @param value The description for the inline event.
     */
    @JvmName("oxrmtgsqpbflypsl")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The displayName for the inline event.
     */
    @JvmName("nnchxmwcljsjfxao")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value The documentationUrl for the inline event.
     */
    @JvmName("lufphcjqqbdwonwk")
    public suspend fun documentationUrl(`value`: Output) {
        this.documentationUrl = value
    }

    /**
     * @param value The dataSchemaUrl for the inline event.
     */
    @JvmName("pbbixdsalgijxtyx")
    public suspend fun dataSchemaUrl(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dataSchemaUrl = mapped
    }

    /**
     * @param value The description for the inline event.
     */
    @JvmName("wemlenwrborludpw")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The displayName for the inline event.
     */
    @JvmName("pliunwlevjkhixxv")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    /**
     * @param value The documentationUrl for the inline event.
     */
    @JvmName("svpevbbbgoshkqak")
    public suspend fun documentationUrl(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.documentationUrl = mapped
    }

    internal fun build(): InlineEventPropertiesArgs = InlineEventPropertiesArgs(
        dataSchemaUrl = dataSchemaUrl,
        description = description,
        displayName = displayName,
        documentationUrl = documentationUrl,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy