![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.databricks.kotlin.inputs.GetWorkspacePrivateEndpointConnectionPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.databricks.kotlin.inputs
import com.pulumi.azure.databricks.inputs.GetWorkspacePrivateEndpointConnectionPlainArgs.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 getWorkspacePrivateEndpointConnection.
* @property privateEndpointId The resource ID of the Private Endpoint.
* @property workspaceId The resource ID of the Databricks Workspace.
*/
public data class GetWorkspacePrivateEndpointConnectionPlainArgs(
public val privateEndpointId: String,
public val workspaceId: String,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.databricks.inputs.GetWorkspacePrivateEndpointConnectionPlainArgs =
com.pulumi.azure.databricks.inputs.GetWorkspacePrivateEndpointConnectionPlainArgs.builder()
.privateEndpointId(privateEndpointId.let({ args0 -> args0 }))
.workspaceId(workspaceId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetWorkspacePrivateEndpointConnectionPlainArgs].
*/
@PulumiTagMarker
public class GetWorkspacePrivateEndpointConnectionPlainArgsBuilder internal constructor() {
private var privateEndpointId: String? = null
private var workspaceId: String? = null
/**
* @param value The resource ID of the Private Endpoint.
*/
@JvmName("tgmgeedjsdwgjsgq")
public suspend fun privateEndpointId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.privateEndpointId = mapped
}
/**
* @param value The resource ID of the Databricks Workspace.
*/
@JvmName("dukagnxdutvcnyfa")
public suspend fun workspaceId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.workspaceId = mapped
}
internal fun build(): GetWorkspacePrivateEndpointConnectionPlainArgs =
GetWorkspacePrivateEndpointConnectionPlainArgs(
privateEndpointId = privateEndpointId ?: throw PulumiNullFieldException("privateEndpointId"),
workspaceId = workspaceId ?: throw PulumiNullFieldException("workspaceId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy