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

com.pulumi.azure.automation.kotlin.inputs.GetVariablesPlainArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.automation.kotlin.inputs

import com.pulumi.azure.automation.inputs.GetVariablesPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getVariables.
 * @property automationAccountId The resource ID of the automation account.
 */
public data class GetVariablesPlainArgs(
    public val automationAccountId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.automation.inputs.GetVariablesPlainArgs =
        com.pulumi.azure.automation.inputs.GetVariablesPlainArgs.builder()
            .automationAccountId(automationAccountId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetVariablesPlainArgs].
 */
@PulumiTagMarker
public class GetVariablesPlainArgsBuilder internal constructor() {
    private var automationAccountId: String? = null

    /**
     * @param value The resource ID of the automation account.
     */
    @JvmName("beepwgprnpokfcip")
    public suspend fun automationAccountId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.automationAccountId = mapped
    }

    internal fun build(): GetVariablesPlainArgs = GetVariablesPlainArgs(
        automationAccountId = automationAccountId ?: throw PulumiNullFieldException("automationAccountId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy