User Community Service Desk Downloads

Data Quality Gates Upgrade Notes

DQ Gates 1.2.0 Upgrade Notes

Firewall listing method replaced

Firewall listing now supports retrieving firewalls by a list of IDs in addition to AQL filter expressions. The new get_firewall_definitions client method replaces the previous get_firewall_ids helper.

If you have copied firewall listing code into custom scripts, update them as follows:

  1. Remove the from ataccama_one_snowflake import get_firewall_ids import.

  2. Replace get_firewall_ids(client, aql_filter=…​) calls with client.get_firewall_definitions(filter=…​).

  3. Replace references to the id attribute with firewall_id (for example, fw.id becomes fw.firewall_id).

  4. Wrap the result in list() if you need to iterate over it multiple times, as get_firewall_definitions returns an iterator.

Was this page useful?