com.pulumi.awsnative.iotwireless.kotlin.NetworkAnalyzerConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-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.awsnative.iotwireless.kotlin
import com.pulumi.awsnative.iotwireless.NetworkAnalyzerConfigurationArgs.builder
import com.pulumi.awsnative.iotwireless.kotlin.inputs.TraceContentPropertiesArgs
import com.pulumi.awsnative.iotwireless.kotlin.inputs.TraceContentPropertiesArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.CreateOnlyTagArgs
import com.pulumi.awsnative.kotlin.inputs.CreateOnlyTagArgsBuilder
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.collections.List
import kotlin.jvm.JvmName
/**
* Create and manage NetworkAnalyzerConfiguration resource.
* @property description The description of the new resource
* @property name Name of the network analyzer configuration
* @property tags An array of key-value pairs to apply to this resource.
* @property traceContent Trace content for your wireless gateway and wireless device resources
* @property wirelessDevices List of wireless gateway resources that have been added to the network analyzer configuration
* @property wirelessGateways List of wireless gateway resources that have been added to the network analyzer configuration
*/
public data class NetworkAnalyzerConfigurationArgs(
public val description: Output? = null,
public val name: Output? = null,
public val tags: Output>? = null,
public val traceContent: Output? = null,
public val wirelessDevices: Output>? = null,
public val wirelessGateways: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotwireless.NetworkAnalyzerConfigurationArgs =
com.pulumi.awsnative.iotwireless.NetworkAnalyzerConfigurationArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.traceContent(traceContent?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.wirelessDevices(wirelessDevices?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.wirelessGateways(wirelessGateways?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [NetworkAnalyzerConfigurationArgs].
*/
@PulumiTagMarker
public class NetworkAnalyzerConfigurationArgsBuilder internal constructor() {
private var description: Output? = null
private var name: Output? = null
private var tags: Output>? = null
private var traceContent: Output? = null
private var wirelessDevices: Output>? = null
private var wirelessGateways: Output>? = null
/**
* @param value The description of the new resource
*/
@JvmName("abslvibantjkohsh")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Name of the network analyzer configuration
*/
@JvmName("byykaoithkqeyqkv")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value An array of key-value pairs to apply to this resource.
*/
@JvmName("aojukhchuiinaldh")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("rxlxrcitrxkfcqrp")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values An array of key-value pairs to apply to this resource.
*/
@JvmName("iwvtyfuseldbtpof")
public suspend fun tags(values: List