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

com.pulumi.azurenative.healthdataaiservices.kotlin.inputs.DeidServicePropertiesArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.healthdataaiservices.kotlin.inputs

import com.pulumi.azurenative.healthdataaiservices.inputs.DeidServicePropertiesArgs.builder
import com.pulumi.azurenative.healthdataaiservices.kotlin.enums.PublicNetworkAccess
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Details of the HealthDataAIServices DeidService.
 * @property publicNetworkAccess Gets or sets allow or disallow public network access to resource
 */
public data class DeidServicePropertiesArgs(
    public val publicNetworkAccess: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.healthdataaiservices.inputs.DeidServicePropertiesArgs =
        com.pulumi.azurenative.healthdataaiservices.inputs.DeidServicePropertiesArgs.builder()
            .publicNetworkAccess(
                publicNetworkAccess?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [DeidServicePropertiesArgs].
 */
@PulumiTagMarker
public class DeidServicePropertiesArgsBuilder internal constructor() {
    private var publicNetworkAccess: Output? = null

    /**
     * @param value Gets or sets allow or disallow public network access to resource
     */
    @JvmName("alasamqfxnmhokmt")
    public suspend fun publicNetworkAccess(`value`: Output) {
        this.publicNetworkAccess = value
    }

    /**
     * @param value Gets or sets allow or disallow public network access to resource
     */
    @JvmName("lejmkagabigcceak")
    public suspend fun publicNetworkAccess(`value`: PublicNetworkAccess?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicNetworkAccess = mapped
    }

    internal fun build(): DeidServicePropertiesArgs = DeidServicePropertiesArgs(
        publicNetworkAccess = publicNetworkAccess,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy