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.

@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acryl-datahub-cloud",
3
- "version": "0.3.12rc4",
3
+ "version": "0.3.12rc6",
4
4
  "install_requires": [
5
5
  "avro-gen3==0.7.16",
6
6
  "acryl-datahub"
@@ -0,0 +1,7 @@
1
+ query getAppConfig {
2
+ appConfig {
3
+ featureFlags {
4
+ formsNotificationsEnabled
5
+ }
6
+ }
7
+ }
@@ -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