Skip to main content

Manage announcements

Add to existing asset

To add an announcement to an existing asset:

Add announcement to existing assets
models:
- name: TOP_BEVERAGE_USERS # (1)
meta:
atlan:
attributes: # (2)
announcementType: warning # (3)
announcementTitle: "Caution!" # (4)
announcementMessage: >- # (5)
This table was changed.
  1. You must of course give the name of the object.
  2. The details for the announcement must be nested within the meta.atlan.attributes structure.
  3. You must provide a valid status for the announcement (information, warning or issue).
  4. (Optional) You can also provide a title for the announcement.
  5. (Optional) You can also provide a message to include in the announcement.

Remove from existing asset

To remove an announcement from an existing asset:

It's currently not possible to remove an announcement from an asset via dbt.

When creating asset

To add an announcement when creating an asset:

Add announcement when creating asset
models:
- name: TOP_BEVERAGE_USERS # (1)
meta:
atlan:
attributes: # (2)
announcementType: information # (3)
announcementTitle: "New!" # (4)
announcementMessage: >- # (5)
This table is newly created.
  1. You must of course give the name of the object.
  2. The details for the announcement must be nested within the meta.atlan.attributes structure.
  3. You must provide a valid status for the announcement (information, warning or issue).
  4. (Optional) You can also provide a title for the announcement.
  5. (Optional) You can also provide a message to include in the announcement.
Was this page helpful?