![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.DelegationPropertiesArgs.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.DelegationPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Properties of the delegation.
* @property serviceName The service name to which the NVA is delegated.
*/
public data class DelegationPropertiesArgs(
public val serviceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.DelegationPropertiesArgs =
com.pulumi.azurenative.network.inputs.DelegationPropertiesArgs.builder()
.serviceName(serviceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DelegationPropertiesArgs].
*/
@PulumiTagMarker
public class DelegationPropertiesArgsBuilder internal constructor() {
private var serviceName: Output? = null
/**
* @param value The service name to which the NVA is delegated.
*/
@JvmName("cylofxdwdyijdiep")
public suspend fun serviceName(`value`: Output) {
this.serviceName = value
}
/**
* @param value The service name to which the NVA is delegated.
*/
@JvmName("feewerlwdqwwlwum")
public suspend fun serviceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serviceName = mapped
}
internal fun build(): DelegationPropertiesArgs = DelegationPropertiesArgs(
serviceName = serviceName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy