![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.ReachabilityAnalysisRunPropertiesArgs.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.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.ReachabilityAnalysisRunPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Represents the Reachability Analysis Run properties.
* @property description
* @property intentId Id of the intent resource to run analysis on.
*/
public data class ReachabilityAnalysisRunPropertiesArgs(
public val description: Output? = null,
public val intentId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.ReachabilityAnalysisRunPropertiesArgs = com.pulumi.azurenative.network.inputs.ReachabilityAnalysisRunPropertiesArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.intentId(intentId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ReachabilityAnalysisRunPropertiesArgs].
*/
@PulumiTagMarker
public class ReachabilityAnalysisRunPropertiesArgsBuilder internal constructor() {
private var description: Output? = null
private var intentId: Output? = null
/**
* @param value
*/
@JvmName("cmksgyhnpwccscle")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Id of the intent resource to run analysis on.
*/
@JvmName("wgmdeijedrmrrjjp")
public suspend fun intentId(`value`: Output) {
this.intentId = value
}
/**
* @param value
*/
@JvmName("tnwjgcnwjeqvpwkm")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value Id of the intent resource to run analysis on.
*/
@JvmName("qhfxdrtqcfxcqjtt")
public suspend fun intentId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.intentId = mapped
}
internal fun build(): ReachabilityAnalysisRunPropertiesArgs =
ReachabilityAnalysisRunPropertiesArgs(
description = description,
intentId = intentId ?: throw PulumiNullFieldException("intentId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy