
com.pulumi.azurenative.hybridcompute.kotlin.inputs.GetPrivateLinkScopedResourcePlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.hybridcompute.kotlin.inputs
import com.pulumi.azurenative.hybridcompute.inputs.GetPrivateLinkScopedResourcePlainArgs.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 name The name of the scoped resource object.
* @property resourceGroupName The name of the resource group.
* @property scopeName The name of the Azure Arc PrivateLinkScope resource.
*/
public data class GetPrivateLinkScopedResourcePlainArgs(
public val name: String,
public val resourceGroupName: String,
public val scopeName: String,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.hybridcompute.inputs.GetPrivateLinkScopedResourcePlainArgs =
com.pulumi.azurenative.hybridcompute.inputs.GetPrivateLinkScopedResourcePlainArgs.builder()
.name(name.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.scopeName(scopeName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetPrivateLinkScopedResourcePlainArgs].
*/
@PulumiTagMarker
public class GetPrivateLinkScopedResourcePlainArgsBuilder internal constructor() {
private var name: String? = null
private var resourceGroupName: String? = null
private var scopeName: String? = null
/**
* @param value The name of the scoped resource object.
*/
@JvmName("anjtexueoqkjmsgw")
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.
*/
@JvmName("mvithgphvntotumh")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value The name of the Azure Arc PrivateLinkScope resource.
*/
@JvmName("udljsggnavtxfjrw")
public suspend fun scopeName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.scopeName = mapped
}
internal fun build(): GetPrivateLinkScopedResourcePlainArgs =
GetPrivateLinkScopedResourcePlainArgs(
name = name ?: throw PulumiNullFieldException("name"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
scopeName = scopeName ?: throw PulumiNullFieldException("scopeName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy