![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.databricks.kotlin.outputs.GetWorkspacePrivateEndpointConnectionConnection.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
/**
*
* @property actionRequired Actions required for a private endpoint connection.
* @property description The description for the current state of a private endpoint connection.
* @property name The name of the Databricks Workspace.
* @property status The status of a private endpoint connection. Possible values are `Pending`, `Approved`, `Rejected` or `Disconnected`.
* @property workspacePrivateEndpointId The Databricks Workspace resource ID for the private link endpoint.
*/
public data class GetWorkspacePrivateEndpointConnectionConnection(
public val actionRequired: String,
public val description: String,
public val name: String,
public val status: String,
public val workspacePrivateEndpointId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.databricks.outputs.GetWorkspacePrivateEndpointConnectionConnection): GetWorkspacePrivateEndpointConnectionConnection =
GetWorkspacePrivateEndpointConnectionConnection(
actionRequired = javaType.actionRequired(),
description = javaType.description(),
name = javaType.name(),
status = javaType.status(),
workspacePrivateEndpointId = javaType.workspacePrivateEndpointId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy