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

com.pulumi.azurenative.devices.kotlin.inputs.EventHubConsumerGroupNameArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.devices.kotlin.inputs

import com.pulumi.azurenative.devices.inputs.EventHubConsumerGroupNameArgs.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

/**
 * The EventHub consumer group name.
 * @property name EventHub consumer group name
 */
public data class EventHubConsumerGroupNameArgs(
    public val name: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.devices.inputs.EventHubConsumerGroupNameArgs =
        com.pulumi.azurenative.devices.inputs.EventHubConsumerGroupNameArgs.builder()
            .name(name.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [EventHubConsumerGroupNameArgs].
 */
@PulumiTagMarker
public class EventHubConsumerGroupNameArgsBuilder internal constructor() {
    private var name: Output? = null

    /**
     * @param value EventHub consumer group name
     */
    @JvmName("wiiouaywfutndovn")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value EventHub consumer group name
     */
    @JvmName("fgjwsbjsaqqinojh")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    internal fun build(): EventHubConsumerGroupNameArgs = EventHubConsumerGroupNameArgs(
        name = name ?: throw PulumiNullFieldException("name"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy