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

com.pulumi.azurenative.storagecache.kotlin.inputs.AmlFilesystemHsmArgs.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.storagecache.kotlin.inputs

import com.pulumi.azurenative.storagecache.inputs.AmlFilesystemHsmArgs.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

/**
 * Hydration and archive settings and status
 * @property settings Specifies HSM settings of the AML file system.
 */
public data class AmlFilesystemHsmArgs(
    public val settings: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.storagecache.inputs.AmlFilesystemHsmArgs =
        com.pulumi.azurenative.storagecache.inputs.AmlFilesystemHsmArgs.builder()
            .settings(settings?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [AmlFilesystemHsmArgs].
 */
@PulumiTagMarker
public class AmlFilesystemHsmArgsBuilder internal constructor() {
    private var settings: Output? = null

    /**
     * @param value Specifies HSM settings of the AML file system.
     */
    @JvmName("vjnkpgmcirjseret")
    public suspend fun settings(`value`: Output) {
        this.settings = value
    }

    /**
     * @param value Specifies HSM settings of the AML file system.
     */
    @JvmName("thoiwnflfcfvmlnx")
    public suspend fun settings(`value`: AmlFilesystemHsmSettingsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.settings = mapped
    }

    /**
     * @param argument Specifies HSM settings of the AML file system.
     */
    @JvmName("trletijmsowfdtlm")
    public suspend fun settings(argument: suspend AmlFilesystemHsmSettingsArgsBuilder.() -> Unit) {
        val toBeMapped = AmlFilesystemHsmSettingsArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.settings = mapped
    }

    internal fun build(): AmlFilesystemHsmArgs = AmlFilesystemHsmArgs(
        settings = settings,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy