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

com.pulumi.azurenative.machinelearningservices.kotlin.inputs.SystemCreatedAcrAccountArgs.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.machinelearningservices.kotlin.inputs

import com.pulumi.azurenative.machinelearningservices.inputs.SystemCreatedAcrAccountArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property acrAccountName Name of the ACR account
 * @property acrAccountSku SKU of the ACR account
 * @property armResourceId This is populated once the ACR account is created.
 */
public data class SystemCreatedAcrAccountArgs(
    public val acrAccountName: Output? = null,
    public val acrAccountSku: Output? = null,
    public val armResourceId: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.machinelearningservices.inputs.SystemCreatedAcrAccountArgs =
        com.pulumi.azurenative.machinelearningservices.inputs.SystemCreatedAcrAccountArgs.builder()
            .acrAccountName(acrAccountName?.applyValue({ args0 -> args0 }))
            .acrAccountSku(acrAccountSku?.applyValue({ args0 -> args0 }))
            .armResourceId(armResourceId?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [SystemCreatedAcrAccountArgs].
 */
@PulumiTagMarker
public class SystemCreatedAcrAccountArgsBuilder internal constructor() {
    private var acrAccountName: Output? = null

    private var acrAccountSku: Output? = null

    private var armResourceId: Output? = null

    /**
     * @param value Name of the ACR account
     */
    @JvmName("elmghfxhsjbpyigm")
    public suspend fun acrAccountName(`value`: Output) {
        this.acrAccountName = value
    }

    /**
     * @param value SKU of the ACR account
     */
    @JvmName("eedgsfivtesyphsi")
    public suspend fun acrAccountSku(`value`: Output) {
        this.acrAccountSku = value
    }

    /**
     * @param value This is populated once the ACR account is created.
     */
    @JvmName("svfoyammbcexwids")
    public suspend fun armResourceId(`value`: Output) {
        this.armResourceId = value
    }

    /**
     * @param value Name of the ACR account
     */
    @JvmName("diiuirysfrlpovja")
    public suspend fun acrAccountName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.acrAccountName = mapped
    }

    /**
     * @param value SKU of the ACR account
     */
    @JvmName("gxmiydqedkhntiei")
    public suspend fun acrAccountSku(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.acrAccountSku = mapped
    }

    /**
     * @param value This is populated once the ACR account is created.
     */
    @JvmName("otqqucmkboturstc")
    public suspend fun armResourceId(`value`: ArmResourceIdArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.armResourceId = mapped
    }

    /**
     * @param argument This is populated once the ACR account is created.
     */
    @JvmName("kekqkcydkoyytfdf")
    public suspend fun armResourceId(argument: suspend ArmResourceIdArgsBuilder.() -> Unit) {
        val toBeMapped = ArmResourceIdArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.armResourceId = mapped
    }

    internal fun build(): SystemCreatedAcrAccountArgs = SystemCreatedAcrAccountArgs(
        acrAccountName = acrAccountName,
        acrAccountSku = acrAccountSku,
        armResourceId = armResourceId,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy