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

com.pulumi.azurenative.app.kotlin.inputs.ManagedEnvironmentStoragePropertiesArgs.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.app.kotlin.inputs

import com.pulumi.azurenative.app.inputs.ManagedEnvironmentStoragePropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 * Storage properties
 * @property azureFile Azure file properties
 */
public data class ManagedEnvironmentStoragePropertiesArgs(
    public val azureFile: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.app.inputs.ManagedEnvironmentStoragePropertiesArgs =
        com.pulumi.azurenative.app.inputs.ManagedEnvironmentStoragePropertiesArgs.builder()
            .azureFile(azureFile?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [ManagedEnvironmentStoragePropertiesArgs].
 */
@PulumiTagMarker
public class ManagedEnvironmentStoragePropertiesArgsBuilder internal constructor() {
    private var azureFile: Output? = null

    /**
     * @param value Azure file properties
     */
    @JvmName("rohspjniepqlgghl")
    public suspend fun azureFile(`value`: Output) {
        this.azureFile = value
    }

    /**
     * @param value Azure file properties
     */
    @JvmName("vlhdgvnqasyybpff")
    public suspend fun azureFile(`value`: AzureFilePropertiesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.azureFile = mapped
    }

    /**
     * @param argument Azure file properties
     */
    @JvmName("mqluynnjahkobbko")
    public suspend fun azureFile(argument: suspend AzureFilePropertiesArgsBuilder.() -> Unit) {
        val toBeMapped = AzureFilePropertiesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.azureFile = mapped
    }

    internal fun build(): ManagedEnvironmentStoragePropertiesArgs =
        ManagedEnvironmentStoragePropertiesArgs(
            azureFile = azureFile,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy