com.atlan.pkg.model.ConnectorAndConnections.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of package-toolkit-runtime Show documentation
Show all versions of package-toolkit-runtime Show documentation
Atlan custom package runtime toolkit
/* SPDX-License-Identifier: Apache-2.0
Copyright 2023 Atlan Pte. Ltd. */
package com.atlan.pkg.model
import com.atlan.model.enums.AtlanConnectorType
import com.fasterxml.jackson.annotation.JsonAutoDetect
/**
* Captures the selected connector type and all connections that exist in a tenant
* with that type, as returned by the ConnectorTypeSelector widget.
*/
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
data class ConnectorAndConnections(
val source: AtlanConnectorType,
val connections: List,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy