Skip to content

Preset

Base class for Preset 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 Preset assets in Atlan. For that, we would suggest starting with the manage Preset assets pattern.

classDiagram
    direction RL
    class Preset {
        <<abstract>>
    }
    link Preset "../preset"
    class BI {
        <<abstract>>
    }
    link BI "../entities/bi"
    BI <|-- Preset : 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 PresetChart
    link PresetChart "../entities/presetchart"
    Preset <|-- PresetChart : extends
    class PresetDataset
    link PresetDataset "../entities/presetdataset"
    Preset <|-- PresetDataset : extends
    class PresetDashboard
    link PresetDashboard "../entities/presetdashboard"
    Preset <|-- PresetDashboard : extends
    class PresetWorkspace
    link PresetWorkspace "../entities/presetworkspace"
    Preset <|-- PresetWorkspace : extends

Properties

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

presetDashboardId

Identifier of the dashboard in which this asset exists, in Preset.

presetDashboardQualifiedName

Unique name of the dashboard in which this asset exists.

presetWorkspaceId

Identifier of the workspace in which this asset exists, in Preset.

presetWorkspaceQualifiedName

Unique name of the workspace in which this asset exists.

Relationships

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

erDiagram
    Connection ||..o{ PresetWorkspace : ""
    PresetWorkspace ||--o{ PresetDashboard : presetDashboards
    PresetDashboard ||--o{ PresetChart : presetCharts
    PresetDashboard ||--o{ PresetDataset : presetDatasets