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

com.pulumi.azure.servicefabric.kotlin.inputs.ClusterAzureActiveDirectoryArgs.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.servicefabric.kotlin.inputs

import com.pulumi.azure.servicefabric.inputs.ClusterAzureActiveDirectoryArgs.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

/**
 *
 * @property clientApplicationId The Azure Active Directory Client ID which should be used for the Client Application.
 * @property clusterApplicationId The Azure Active Directory Cluster Application ID.
 * @property tenantId The Azure Active Directory Tenant ID.
 */
public data class ClusterAzureActiveDirectoryArgs(
    public val clientApplicationId: Output,
    public val clusterApplicationId: Output,
    public val tenantId: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.servicefabric.inputs.ClusterAzureActiveDirectoryArgs =
        com.pulumi.azure.servicefabric.inputs.ClusterAzureActiveDirectoryArgs.builder()
            .clientApplicationId(clientApplicationId.applyValue({ args0 -> args0 }))
            .clusterApplicationId(clusterApplicationId.applyValue({ args0 -> args0 }))
            .tenantId(tenantId.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ClusterAzureActiveDirectoryArgs].
 */
@PulumiTagMarker
public class ClusterAzureActiveDirectoryArgsBuilder internal constructor() {
    private var clientApplicationId: Output? = null

    private var clusterApplicationId: Output? = null

    private var tenantId: Output? = null

    /**
     * @param value The Azure Active Directory Client ID which should be used for the Client Application.
     */
    @JvmName("qljusyvdjpgvjava")
    public suspend fun clientApplicationId(`value`: Output) {
        this.clientApplicationId = value
    }

    /**
     * @param value The Azure Active Directory Cluster Application ID.
     */
    @JvmName("eypevynfhtxpgnji")
    public suspend fun clusterApplicationId(`value`: Output) {
        this.clusterApplicationId = value
    }

    /**
     * @param value The Azure Active Directory Tenant ID.
     */
    @JvmName("cypvvjewvohcmtdk")
    public suspend fun tenantId(`value`: Output) {
        this.tenantId = value
    }

    /**
     * @param value The Azure Active Directory Client ID which should be used for the Client Application.
     */
    @JvmName("vrernbdblxeugllq")
    public suspend fun clientApplicationId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.clientApplicationId = mapped
    }

    /**
     * @param value The Azure Active Directory Cluster Application ID.
     */
    @JvmName("djejukrrrfwsgmgj")
    public suspend fun clusterApplicationId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.clusterApplicationId = mapped
    }

    /**
     * @param value The Azure Active Directory Tenant ID.
     */
    @JvmName("koyspwanelmrftfm")
    public suspend fun tenantId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tenantId = mapped
    }

    internal fun build(): ClusterAzureActiveDirectoryArgs = ClusterAzureActiveDirectoryArgs(
        clientApplicationId = clientApplicationId ?: throw PulumiNullFieldException("clientApplicationId"),
        clusterApplicationId = clusterApplicationId ?: throw
            PulumiNullFieldException("clusterApplicationId"),
        tenantId = tenantId ?: throw PulumiNullFieldException("tenantId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy