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

com.pulumi.azure.network.kotlin.inputs.GetVirtualHubRouteTablePlainArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.inputs

import com.pulumi.azure.network.inputs.GetVirtualHubRouteTablePlainArgs.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

/**
 * A collection of arguments for invoking getVirtualHubRouteTable.
 * @property name The name of the Virtual Hub Route Table.
 * @property resourceGroupName The Name of the Resource Group where the Virtual Hub Route Table exists.
 * @property virtualHubName The name which should be used for Virtual Hub Route Table.
 */
public data class GetVirtualHubRouteTablePlainArgs(
    public val name: String,
    public val resourceGroupName: String,
    public val virtualHubName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.network.inputs.GetVirtualHubRouteTablePlainArgs =
        com.pulumi.azure.network.inputs.GetVirtualHubRouteTablePlainArgs.builder()
            .name(name.let({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
            .virtualHubName(virtualHubName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetVirtualHubRouteTablePlainArgs].
 */
@PulumiTagMarker
public class GetVirtualHubRouteTablePlainArgsBuilder internal constructor() {
    private var name: String? = null

    private var resourceGroupName: String? = null

    private var virtualHubName: String? = null

    /**
     * @param value The name of the Virtual Hub Route Table.
     */
    @JvmName("kgnslbvaukvfwbjc")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.name = mapped
    }

    /**
     * @param value The Name of the Resource Group where the Virtual Hub Route Table exists.
     */
    @JvmName("qayebfkbhbnkypxd")
    public suspend fun resourceGroupName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.resourceGroupName = mapped
    }

    /**
     * @param value The name which should be used for Virtual Hub Route Table.
     */
    @JvmName("jvhvjwfuqwkdbfyc")
    public suspend fun virtualHubName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.virtualHubName = mapped
    }

    internal fun build(): GetVirtualHubRouteTablePlainArgs = GetVirtualHubRouteTablePlainArgs(
        name = name ?: throw PulumiNullFieldException("name"),
        resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
        virtualHubName = virtualHubName ?: throw PulumiNullFieldException("virtualHubName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy