acryl-datahub-cloud 0.3.12rc4__py3-none-any.whl → 0.3.12rc6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
- acryl_datahub_cloud/sdk/__init__.py +11 -1
- acryl_datahub_cloud/sdk/assertion/__init__.py +0 -0
- acryl_datahub_cloud/sdk/{assertion.py → assertion/assertion_base.py} +565 -166
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +224 -0
- acryl_datahub_cloud/sdk/assertion/types.py +20 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +46 -14
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +1 -2
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +12 -43
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +274 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1202 -27
- acryl_datahub_cloud/sdk/entities/assertion.py +4 -0
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/METADATA +44 -44
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/RECORD +18 -13
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12rc4.dist-info → acryl_datahub_cloud-0.3.12rc6.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
from acryl_datahub_cloud.sdk.assertion import (
|
|
1
|
+
from acryl_datahub_cloud.sdk.assertion.assertion_base import (
|
|
2
2
|
FreshnessAssertion,
|
|
3
3
|
SmartFreshnessAssertion,
|
|
4
4
|
SmartVolumeAssertion,
|
|
5
|
+
SqlAssertion,
|
|
6
|
+
)
|
|
7
|
+
from acryl_datahub_cloud.sdk.assertion.smart_column_metric_assertion import (
|
|
8
|
+
SmartColumnMetricAssertion,
|
|
5
9
|
)
|
|
6
10
|
from acryl_datahub_cloud.sdk.assertion_input.assertion_input import (
|
|
7
11
|
AssertionIncidentBehavior,
|
|
@@ -10,6 +14,9 @@ from acryl_datahub_cloud.sdk.assertion_input.assertion_input import (
|
|
|
10
14
|
InferenceSensitivity,
|
|
11
15
|
TimeWindowSize,
|
|
12
16
|
)
|
|
17
|
+
from acryl_datahub_cloud.sdk.assertion_input.sql_assertion_input import (
|
|
18
|
+
SqlAssertionCriteria,
|
|
19
|
+
)
|
|
13
20
|
from acryl_datahub_cloud.sdk.assertions_client import AssertionsClient
|
|
14
21
|
from acryl_datahub_cloud.sdk.resolver_client import ResolverClient
|
|
15
22
|
from acryl_datahub_cloud.sdk.subscription_client import SubscriptionClient
|
|
@@ -17,6 +24,7 @@ from acryl_datahub_cloud.sdk.subscription_client import SubscriptionClient
|
|
|
17
24
|
__all__ = [
|
|
18
25
|
"SmartFreshnessAssertion",
|
|
19
26
|
"SmartVolumeAssertion",
|
|
27
|
+
"SmartColumnMetricAssertion",
|
|
20
28
|
"TimeWindowSize",
|
|
21
29
|
"FreshnessAssertion",
|
|
22
30
|
"DetectionMechanism",
|
|
@@ -26,4 +34,6 @@ __all__ = [
|
|
|
26
34
|
"AssertionsClient",
|
|
27
35
|
"ResolverClient",
|
|
28
36
|
"SubscriptionClient",
|
|
37
|
+
"SqlAssertion",
|
|
38
|
+
"SqlAssertionCriteria",
|
|
29
39
|
]
|
|
File without changes
|