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:
-
Remove the
from ataccama_one_snowflake import get_firewall_idsimport. -
Replace
get_firewall_ids(client, aql_filter=…)calls withclient.get_firewall_definitions(filter=…). -
Replace references to the
idattribute withfirewall_id(for example,fw.idbecomesfw.firewall_id). -
Wrap the result in
list()if you need to iterate over it multiple times, asget_firewall_definitionsreturns an iterator.
Was this page useful?