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

com.pulumi.azurenative.network.kotlin.inputs.GetReachabilityAnalysisIntentPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.network.kotlin.inputs

import com.pulumi.azurenative.network.inputs.GetReachabilityAnalysisIntentPlainArgs.builder
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

/**
 *
 * @property networkManagerName The name of the network manager.
 * @property reachabilityAnalysisIntentName Reachability Analysis Intent name.
 * @property resourceGroupName The name of the resource group.
 * @property workspaceName Workspace name.
 */
public data class GetReachabilityAnalysisIntentPlainArgs(
    public val networkManagerName: String,
    public val reachabilityAnalysisIntentName: String,
    public val resourceGroupName: String,
    public val workspaceName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.network.inputs.GetReachabilityAnalysisIntentPlainArgs =
        com.pulumi.azurenative.network.inputs.GetReachabilityAnalysisIntentPlainArgs.builder()
            .networkManagerName(networkManagerName.let({ args0 -> args0 }))
            .reachabilityAnalysisIntentName(reachabilityAnalysisIntentName.let({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
            .workspaceName(workspaceName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetReachabilityAnalysisIntentPlainArgs].
 */
@PulumiTagMarker
public class GetReachabilityAnalysisIntentPlainArgsBuilder internal constructor() {
    private var networkManagerName: String? = null

    private var reachabilityAnalysisIntentName: String? = null

    private var resourceGroupName: String? = null

    private var workspaceName: String? = null

    /**
     * @param value The name of the network manager.
     */
    @JvmName("vpuppmmdxsfjmfef")
    public suspend fun networkManagerName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.networkManagerName = mapped
    }

    /**
     * @param value Reachability Analysis Intent name.
     */
    @JvmName("rrvtasfgixldjjjq")
    public suspend fun reachabilityAnalysisIntentName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.reachabilityAnalysisIntentName = mapped
    }

    /**
     * @param value The name of the resource group.
     */
    @JvmName("hlnusqtbhfsdjryb")
    public suspend fun resourceGroupName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.resourceGroupName = mapped
    }

    /**
     * @param value Workspace name.
     */
    @JvmName("ybnpktvkadlrtxmb")
    public suspend fun workspaceName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.workspaceName = mapped
    }

    internal fun build(): GetReachabilityAnalysisIntentPlainArgs =
        GetReachabilityAnalysisIntentPlainArgs(
            networkManagerName = networkManagerName ?: throw PulumiNullFieldException("networkManagerName"),
            reachabilityAnalysisIntentName = reachabilityAnalysisIntentName ?: throw
                PulumiNullFieldException("reachabilityAnalysisIntentName"),
            resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
            workspaceName = workspaceName ?: throw PulumiNullFieldException("workspaceName"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy