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

com.pulumi.azurenative.network.kotlin.inputs.VpnLinkProviderPropertiesArgs.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.network.kotlin.inputs

import com.pulumi.azurenative.network.inputs.VpnLinkProviderPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * List of properties of a link provider.
 * @property linkProviderName Name of the link provider.
 * @property linkSpeedInMbps Link speed.
 */
public data class VpnLinkProviderPropertiesArgs(
    public val linkProviderName: Output? = null,
    public val linkSpeedInMbps: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.network.inputs.VpnLinkProviderPropertiesArgs =
        com.pulumi.azurenative.network.inputs.VpnLinkProviderPropertiesArgs.builder()
            .linkProviderName(linkProviderName?.applyValue({ args0 -> args0 }))
            .linkSpeedInMbps(linkSpeedInMbps?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [VpnLinkProviderPropertiesArgs].
 */
@PulumiTagMarker
public class VpnLinkProviderPropertiesArgsBuilder internal constructor() {
    private var linkProviderName: Output? = null

    private var linkSpeedInMbps: Output? = null

    /**
     * @param value Name of the link provider.
     */
    @JvmName("qkrufovxstdmlwbb")
    public suspend fun linkProviderName(`value`: Output) {
        this.linkProviderName = value
    }

    /**
     * @param value Link speed.
     */
    @JvmName("ywmkybfaodkuqkco")
    public suspend fun linkSpeedInMbps(`value`: Output) {
        this.linkSpeedInMbps = value
    }

    /**
     * @param value Name of the link provider.
     */
    @JvmName("dgaecrhhexympgpj")
    public suspend fun linkProviderName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.linkProviderName = mapped
    }

    /**
     * @param value Link speed.
     */
    @JvmName("dhlklekpqwjkiomg")
    public suspend fun linkSpeedInMbps(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.linkSpeedInMbps = mapped
    }

    internal fun build(): VpnLinkProviderPropertiesArgs = VpnLinkProviderPropertiesArgs(
        linkProviderName = linkProviderName,
        linkSpeedInMbps = linkSpeedInMbps,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy