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

com.pulumi.azurenative.cloudngfw.kotlin.inputs.RulestackDetailsArgs.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.cloudngfw.kotlin.inputs

import com.pulumi.azurenative.cloudngfw.inputs.RulestackDetailsArgs.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

/**
 * Associated rulestack details
 * @property location Rulestack location
 * @property resourceId Resource Id
 * @property rulestackId Associated rulestack Id
 */
public data class RulestackDetailsArgs(
    public val location: Output? = null,
    public val resourceId: Output? = null,
    public val rulestackId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.cloudngfw.inputs.RulestackDetailsArgs =
        com.pulumi.azurenative.cloudngfw.inputs.RulestackDetailsArgs.builder()
            .location(location?.applyValue({ args0 -> args0 }))
            .resourceId(resourceId?.applyValue({ args0 -> args0 }))
            .rulestackId(rulestackId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RulestackDetailsArgs].
 */
@PulumiTagMarker
public class RulestackDetailsArgsBuilder internal constructor() {
    private var location: Output? = null

    private var resourceId: Output? = null

    private var rulestackId: Output? = null

    /**
     * @param value Rulestack location
     */
    @JvmName("ivsqfflpblbtgkxg")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value Resource Id
     */
    @JvmName("tjxkrwwteovofmae")
    public suspend fun resourceId(`value`: Output) {
        this.resourceId = value
    }

    /**
     * @param value Associated rulestack Id
     */
    @JvmName("ntrgouqnttmvrlwh")
    public suspend fun rulestackId(`value`: Output) {
        this.rulestackId = value
    }

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

    /**
     * @param value Resource Id
     */
    @JvmName("nwphiaaqyduxfsqs")
    public suspend fun resourceId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceId = mapped
    }

    /**
     * @param value Associated rulestack Id
     */
    @JvmName("sgtlygdiehixthfa")
    public suspend fun rulestackId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.rulestackId = mapped
    }

    internal fun build(): RulestackDetailsArgs = RulestackDetailsArgs(
        location = location,
        resourceId = resourceId,
        rulestackId = rulestackId,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy