![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.databricks.kotlin.outputs.GetWorkspacePrivateEndpointConnectionResult.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getWorkspacePrivateEndpointConnection.
* @property connections A `connections` block as documented below.
* @property id The provider-assigned unique ID for this managed resource.
* @property privateEndpointId The resource ID of the Private Endpoint.
* @property workspaceId The resource ID of the Databricks Workspace.
*/
public data class GetWorkspacePrivateEndpointConnectionResult(
public val connections: List,
public val id: String,
public val privateEndpointId: String,
public val workspaceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.databricks.outputs.GetWorkspacePrivateEndpointConnectionResult): GetWorkspacePrivateEndpointConnectionResult = GetWorkspacePrivateEndpointConnectionResult(
connections = javaType.connections().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.databricks.kotlin.outputs.GetWorkspacePrivateEndpointConnectionConnection.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
privateEndpointId = javaType.privateEndpointId(),
workspaceId = javaType.workspaceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy