Skip to content

Commit 650823c

Browse files
committed
feat: add data quality rule conditions and incremental run support
1 parent 3ca5560 commit 650823c

5 files changed

Lines changed: 377 additions & 16 deletions

File tree

pyatlan/errors.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,20 @@ class ErrorCode(Enum):
647647
"Ensure your product instance has a valid `data_product_assets_d_s_l` value before making the request.",
648648
InvalidRequestError,
649649
)
650+
DQ_RULE_TYPE_NOT_SUPPORTED = (
651+
400,
652+
"ATLAN-PYTHON-400-073",
653+
"Rule type '{0}' does not support {1}.",
654+
"Choose a rule type that supports the specified template configuration.",
655+
InvalidRequestError,
656+
)
657+
DQ_RULE_CONDITIONS_INVALID = (
658+
400,
659+
"ATLAN-PYTHON-400-074",
660+
"Invalid rule conditions: {0}.",
661+
"Ensure your rule conditions are valid and match the expected format.",
662+
InvalidRequestError,
663+
)
650664
AUTHENTICATION_PASSTHROUGH = (
651665
401,
652666
"ATLAN-PYTHON-401-000",

0 commit comments

Comments
 (0)