![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.cdn.kotlin.inputs.GetTunnelPolicyPlainArgs.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.cdn.kotlin.inputs
import com.pulumi.azurenative.cdn.inputs.GetTunnelPolicyPlainArgs.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 profileName Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
* @property resourceGroupName Name of the Resource group within the Azure subscription.
* @property tunnelPolicyName Name of the Tunnel Policy under the profile.
*/
public data class GetTunnelPolicyPlainArgs(
public val profileName: String,
public val resourceGroupName: String,
public val tunnelPolicyName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.cdn.inputs.GetTunnelPolicyPlainArgs =
com.pulumi.azurenative.cdn.inputs.GetTunnelPolicyPlainArgs.builder()
.profileName(profileName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.tunnelPolicyName(tunnelPolicyName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetTunnelPolicyPlainArgs].
*/
@PulumiTagMarker
public class GetTunnelPolicyPlainArgsBuilder internal constructor() {
private var profileName: String? = null
private var resourceGroupName: String? = null
private var tunnelPolicyName: String? = null
/**
* @param value Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
*/
@JvmName("juiortmnwvcxjyfi")
public suspend fun profileName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.profileName = mapped
}
/**
* @param value Name of the Resource group within the Azure subscription.
*/
@JvmName("omhllwyaqjaobaca")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value Name of the Tunnel Policy under the profile.
*/
@JvmName("opqsuuganmkcdser")
public suspend fun tunnelPolicyName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.tunnelPolicyName = mapped
}
internal fun build(): GetTunnelPolicyPlainArgs = GetTunnelPolicyPlainArgs(
profileName = profileName ?: throw PulumiNullFieldException("profileName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
tunnelPolicyName = tunnelPolicyName ?: throw PulumiNullFieldException("tunnelPolicyName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy