![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.managednetworkfabric.kotlin.inputs.VlanGroupPropertiesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.managednetworkfabric.kotlin.inputs
import com.pulumi.azurenative.managednetworkfabric.inputs.VlanGroupPropertiesArgs.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.collections.List
import kotlin.jvm.JvmName
/**
* Vlan group properties.
* @property name Vlan group name.
* @property vlans List of vlans.
*/
public data class VlanGroupPropertiesArgs(
public val name: Output? = null,
public val vlans: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.managednetworkfabric.inputs.VlanGroupPropertiesArgs = com.pulumi.azurenative.managednetworkfabric.inputs.VlanGroupPropertiesArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.vlans(vlans?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [VlanGroupPropertiesArgs].
*/
@PulumiTagMarker
public class VlanGroupPropertiesArgsBuilder internal constructor() {
private var name: Output? = null
private var vlans: Output>? = null
/**
* @param value Vlan group name.
*/
@JvmName("sofmbckujwkjovan")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value List of vlans.
*/
@JvmName("kogtcofegnwnvyxo")
public suspend fun vlans(`value`: Output>) {
this.vlans = value
}
@JvmName("ytsdnnwmtroiiinw")
public suspend fun vlans(vararg values: Output) {
this.vlans = Output.all(values.asList())
}
/**
* @param values List of vlans.
*/
@JvmName("gymlfmibcovyljcj")
public suspend fun vlans(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy