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

com.pulumi.azurenative.apimanagement.kotlin.inputs.BackendSubnetConfigurationArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.apimanagement.kotlin.inputs

import com.pulumi.azurenative.apimanagement.inputs.BackendSubnetConfigurationArgs.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

/**
 * Information regarding how the subnet to which the gateway should be injected.
 * @property id The ARM ID of the subnet in which the backend systems are hosted.
 */
public data class BackendSubnetConfigurationArgs(
    public val id: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.apimanagement.inputs.BackendSubnetConfigurationArgs = com.pulumi.azurenative.apimanagement.inputs.BackendSubnetConfigurationArgs.builder()
        .id(id?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BackendSubnetConfigurationArgs].
 */
@PulumiTagMarker
public class BackendSubnetConfigurationArgsBuilder internal constructor() {
    private var id: Output? = null

    /**
     * @param value The ARM ID of the subnet in which the backend systems are hosted.
     */
    @JvmName("lsnbcdhubnjqkwnq")
    public suspend fun id(`value`: Output) {
        this.id = value
    }

    /**
     * @param value The ARM ID of the subnet in which the backend systems are hosted.
     */
    @JvmName("kqrjksqwrbnccvko")
    public suspend fun id(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.id = mapped
    }

    internal fun build(): BackendSubnetConfigurationArgs = BackendSubnetConfigurationArgs(
        id = id,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy