Skip to content

Redash

Base class for Redash assets.

Reference documentation

This is reference documentation covering the entire Atlan model. It is not the best place to start when trying to understand managing Redash assets in Atlan. For that, we would suggest starting with either:

  • Snippets — small, atomic examples of single-step use cases.
  • Patterns — walkthroughs of common multi-step implementation patterns.
classDiagram
    direction RL
    class Redash {
        <<abstract>>
    }
    link Redash "../redash"
    class BI {
        <<abstract>>
    }
    link BI "../entities/bi"
    BI <|-- Redash : extends
    class Catalog {
        <<abstract>>
    }
    link Catalog "../entities/catalog"
    Catalog <|-- BI : extends
    class Asset {
        <<abstract>>
    }
    link Asset "../entities/asset"
    Asset <|-- Catalog : extends
    class Referenceable {
        <<abstract>>
    }
    link Referenceable "../entities/referenceable"
    Referenceable <|-- Asset : extends
    class RedashDashboard
    link RedashDashboard "../entities/redashdashboard"
    Redash <|-- RedashDashboard : extends
    class RedashQuery
    link RedashQuery "../entities/redashquery"
    Redash <|-- RedashQuery : extends
    class RedashVisualization
    link RedashVisualization "../entities/redashvisualization"
    Redash <|-- RedashVisualization : extends

Properties

These attributes are specific to instances of Redash (and all of its subtypes).

redashIsPublished

Whether this asset is published in Redash (true) or not (false).

Relationships

The following illustrates how the various Redash objects inter-relate with each other:

erDiagram
    Connection ||..o{ RedashDashboard : ""
    Connection ||..o{ RedashQuery : ""
    RedashQuery |o--o{ RedashVisualization : redashVisualizations