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

com.pulumi.azurenative.healthcareapis.kotlin.inputs.AnalyticsConnectorDataLakeDataDestinationArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.healthcareapis.kotlin.inputs

import com.pulumi.azurenative.healthcareapis.inputs.AnalyticsConnectorDataLakeDataDestinationArgs.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 Data Lake data destination for Analytics Connector.
 * @property dataLakeName The name for the Data Lake.
 * @property name Name of data destination.
 * @property type Type of data destination.
 * Expected value is 'datalake'.
 */
public data class AnalyticsConnectorDataLakeDataDestinationArgs(
    public val dataLakeName: Output,
    public val name: Output? = null,
    public val type: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.healthcareapis.inputs.AnalyticsConnectorDataLakeDataDestinationArgs =
        com.pulumi.azurenative.healthcareapis.inputs.AnalyticsConnectorDataLakeDataDestinationArgs.builder()
            .dataLakeName(dataLakeName.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .type(type.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AnalyticsConnectorDataLakeDataDestinationArgs].
 */
@PulumiTagMarker
public class AnalyticsConnectorDataLakeDataDestinationArgsBuilder internal constructor() {
    private var dataLakeName: Output? = null

    private var name: Output? = null

    private var type: Output? = null

    /**
     * @param value The name for the Data Lake.
     */
    @JvmName("kfneonhbfxwpuayh")
    public suspend fun dataLakeName(`value`: Output) {
        this.dataLakeName = value
    }

    /**
     * @param value Name of data destination.
     */
    @JvmName("cyykjtwmyjboewpm")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Type of data destination.
     * Expected value is 'datalake'.
     */
    @JvmName("pxtlgywgsighbiup")
    public suspend fun type(`value`: Output) {
        this.type = value
    }

    /**
     * @param value The name for the Data Lake.
     */
    @JvmName("tkfpvcbmfbhbjlir")
    public suspend fun dataLakeName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.dataLakeName = mapped
    }

    /**
     * @param value Name of data destination.
     */
    @JvmName("sqoidkdepvkieujr")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Type of data destination.
     * Expected value is 'datalake'.
     */
    @JvmName("ecffgmkkyvkhxoer")
    public suspend fun type(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.type = mapped
    }

    internal fun build(): AnalyticsConnectorDataLakeDataDestinationArgs =
        AnalyticsConnectorDataLakeDataDestinationArgs(
            dataLakeName = dataLakeName ?: throw PulumiNullFieldException("dataLakeName"),
            name = name,
            type = type ?: throw PulumiNullFieldException("type"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy