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

com.pulumi.azurenative.authorization.kotlin.inputs.ManagementLockOwnerArgs.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.authorization.kotlin.inputs

import com.pulumi.azurenative.authorization.inputs.ManagementLockOwnerArgs.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

/**
 * Lock owner properties.
 * @property applicationId The application ID of the lock owner.
 */
public data class ManagementLockOwnerArgs(
    public val applicationId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.authorization.inputs.ManagementLockOwnerArgs =
        com.pulumi.azurenative.authorization.inputs.ManagementLockOwnerArgs.builder()
            .applicationId(applicationId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ManagementLockOwnerArgs].
 */
@PulumiTagMarker
public class ManagementLockOwnerArgsBuilder internal constructor() {
    private var applicationId: Output? = null

    /**
     * @param value The application ID of the lock owner.
     */
    @JvmName("wgakvhrljcdkgtlg")
    public suspend fun applicationId(`value`: Output) {
        this.applicationId = value
    }

    /**
     * @param value The application ID of the lock owner.
     */
    @JvmName("fdxttoysvaeqsjyc")
    public suspend fun applicationId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.applicationId = mapped
    }

    internal fun build(): ManagementLockOwnerArgs = ManagementLockOwnerArgs(
        applicationId = applicationId,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy