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

com.pulumi.azurenative.kusto.kotlin.inputs.AcceptedAudiencesArgs.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.kusto.kotlin.inputs

import com.pulumi.azurenative.kusto.inputs.AcceptedAudiencesArgs.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

/**
 * Represents an accepted audience trusted by the cluster.
 * @property value GUID or valid URL representing an accepted audience.
 */
public data class AcceptedAudiencesArgs(
    public val `value`: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.kusto.inputs.AcceptedAudiencesArgs =
        com.pulumi.azurenative.kusto.inputs.AcceptedAudiencesArgs.builder()
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AcceptedAudiencesArgs].
 */
@PulumiTagMarker
public class AcceptedAudiencesArgsBuilder internal constructor() {
    private var `value`: Output? = null

    /**
     * @param value GUID or valid URL representing an accepted audience.
     */
    @JvmName("mgxejyeuefktmjlw")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value GUID or valid URL representing an accepted audience.
     */
    @JvmName("vsejwvdakmfbbrlh")
    public suspend fun `value`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): AcceptedAudiencesArgs = AcceptedAudiencesArgs(
        `value` = `value`,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy