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

com.pulumi.azurenative.azurestackhci.kotlin.inputs.OptionalServicesArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.azurestackhci.kotlin.inputs

import com.pulumi.azurenative.azurestackhci.inputs.OptionalServicesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * The OptionalServices of AzureStackHCI Cluster.
 * @property customLocation The name of custom location.
 */
public data class OptionalServicesArgs(
    public val customLocation: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.azurestackhci.inputs.OptionalServicesArgs =
        com.pulumi.azurenative.azurestackhci.inputs.OptionalServicesArgs.builder()
            .customLocation(customLocation?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [OptionalServicesArgs].
 */
@PulumiTagMarker
public class OptionalServicesArgsBuilder internal constructor() {
    private var customLocation: Output? = null

    /**
     * @param value The name of custom location.
     */
    @JvmName("hitkcqsxpqapvvfo")
    public suspend fun customLocation(`value`: Output) {
        this.customLocation = value
    }

    /**
     * @param value The name of custom location.
     */
    @JvmName("hygsjgcipqdrcnlc")
    public suspend fun customLocation(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.customLocation = mapped
    }

    internal fun build(): OptionalServicesArgs = OptionalServicesArgs(
        customLocation = customLocation,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy