acryl-datahub-cloud 0.3.12rc6__py3-none-any.whl → 0.3.12rc8__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/forms_notifications_source.py +13 -3
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1856 -1856
- acryl_datahub_cloud/metadata/schema.avsc +23385 -23855
- acryl_datahub_cloud/metadata/schema_classes.py +644 -644
- acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +176 -26
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +650 -0
- acryl_datahub_cloud/sdk/assertions_client.py +685 -45
- acryl_datahub_cloud/sdk/subscription_client.py +47 -11
- {acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/METADATA +35 -35
- {acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/RECORD +18 -17
- {acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/top_level.txt +0 -0
|
@@ -16,7 +16,7 @@ from datahub.sdk.main_client import DataHubClient
|
|
|
16
16
|
|
|
17
17
|
logger = logging.getLogger(__name__)
|
|
18
18
|
|
|
19
|
-
SubscriberInputType: TypeAlias = Union[CorpUserUrn, CorpGroupUrn]
|
|
19
|
+
SubscriberInputType: TypeAlias = Union[CorpUserUrn, CorpGroupUrn, str]
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
ASSERTION_RELATED_ENTITY_CHANGE_TYPES = {
|
|
@@ -73,6 +73,7 @@ class SubscriptionClient:
|
|
|
73
73
|
For datasets: subscription applies to all assertions on the dataset.
|
|
74
74
|
For assertions: subscription applies only to that specific assertion.
|
|
75
75
|
subscriber_urn: The URN of the user or group that will receive notifications.
|
|
76
|
+
Can be a string (valid corpuser or corpGroup URN) or URN object.
|
|
76
77
|
entity_change_types: Specific change types to subscribe to. If None, defaults are:
|
|
77
78
|
- Dataset: all existing change types
|
|
78
79
|
- Assertion: assertion-related types (ASSERTION_PASSED,
|
|
@@ -91,6 +92,9 @@ class SubscriptionClient:
|
|
|
91
92
|
# Parse URN string if needed
|
|
92
93
|
parsed_urn = self._maybe_parse_urn(urn)
|
|
93
94
|
|
|
95
|
+
# Parse subscriber URN string if needed
|
|
96
|
+
parsed_subscriber_urn = self._maybe_parse_subscriber_urn(subscriber_urn)
|
|
97
|
+
|
|
94
98
|
dataset_urn: DatasetUrn
|
|
95
99
|
assertion_urn: Optional[AssertionUrn]
|
|
96
100
|
dataset_urn, assertion_urn = (
|
|
@@ -100,7 +104,7 @@ class SubscriptionClient:
|
|
|
100
104
|
)
|
|
101
105
|
|
|
102
106
|
logger.info(
|
|
103
|
-
f"Subscribing to dataset={dataset_urn} assertion={assertion_urn} for subscriber={
|
|
107
|
+
f"Subscribing to dataset={dataset_urn} assertion={assertion_urn} for subscriber={parsed_subscriber_urn} with change types: {entity_change_types}"
|
|
104
108
|
)
|
|
105
109
|
|
|
106
110
|
# Get entity change types (use all if none provided)
|
|
@@ -111,16 +115,16 @@ class SubscriptionClient:
|
|
|
111
115
|
|
|
112
116
|
existing_subscriptions = self.client.resolve.subscription( # type: ignore[attr-defined]
|
|
113
117
|
entity_urn=dataset_urn.urn(),
|
|
114
|
-
actor_urn=
|
|
118
|
+
actor_urn=parsed_subscriber_urn.urn(),
|
|
115
119
|
)
|
|
116
120
|
if not existing_subscriptions:
|
|
117
121
|
# new subscription
|
|
118
122
|
subscription = Subscription(
|
|
119
123
|
info=models.SubscriptionInfoClass(
|
|
120
124
|
entityUrn=dataset_urn.urn(),
|
|
121
|
-
actorUrn=
|
|
125
|
+
actorUrn=parsed_subscriber_urn.urn(),
|
|
122
126
|
actorType=CorpUserUrn.ENTITY_TYPE
|
|
123
|
-
if isinstance(
|
|
127
|
+
if isinstance(parsed_subscriber_urn, CorpUserUrn)
|
|
124
128
|
else CorpGroupUrn.ENTITY_TYPE,
|
|
125
129
|
types=[
|
|
126
130
|
models.SubscriptionTypeClass.ENTITY_CHANGE,
|
|
@@ -158,7 +162,7 @@ class SubscriptionClient:
|
|
|
158
162
|
return
|
|
159
163
|
else:
|
|
160
164
|
raise SdkUsageError(
|
|
161
|
-
f"We have a mesh here - {len(existing_subscriptions)} subscriptions found for dataset={dataset_urn} assertion={assertion_urn} and subscriber={
|
|
165
|
+
f"We have a mesh here - {len(existing_subscriptions)} subscriptions found for dataset={dataset_urn} assertion={assertion_urn} and subscriber={parsed_subscriber_urn}!"
|
|
162
166
|
)
|
|
163
167
|
|
|
164
168
|
def list_subscriptions(
|
|
@@ -178,7 +182,8 @@ class SubscriptionClient:
|
|
|
178
182
|
entity_change_types: Optional filter to return only subscriptions for specific
|
|
179
183
|
change types. If None, returns subscriptions for all change types.
|
|
180
184
|
subscriber_urn: Optional filter to return only subscriptions for a specific user
|
|
181
|
-
or group.
|
|
185
|
+
or group. Can be a string (valid corpuser or corpGroup URN) or URN object.
|
|
186
|
+
If None, returns subscriptions for all subscribers.
|
|
182
187
|
|
|
183
188
|
Returns:
|
|
184
189
|
List[Subscription]: List of matching subscription objects.
|
|
@@ -227,6 +232,7 @@ class SubscriptionClient:
|
|
|
227
232
|
Args:
|
|
228
233
|
urn: URN (string or URN object) of the dataset or assertion to unsubscribe from.
|
|
229
234
|
subscriber_urn: User or group URN to unsubscribe.
|
|
235
|
+
Can be a string (valid corpuser or corpGroup URN) or URN object.
|
|
230
236
|
entity_change_types: Specific change types to remove. If None, defaults are:
|
|
231
237
|
- Dataset: all existing change types in the subscription
|
|
232
238
|
- Assertion: assertion-related types (ASSERTION_PASSED,
|
|
@@ -248,6 +254,9 @@ class SubscriptionClient:
|
|
|
248
254
|
# Parse URN string if needed
|
|
249
255
|
parsed_urn = self._maybe_parse_urn(urn)
|
|
250
256
|
|
|
257
|
+
# Parse subscriber URN string if needed
|
|
258
|
+
parsed_subscriber_urn = self._maybe_parse_subscriber_urn(subscriber_urn)
|
|
259
|
+
|
|
251
260
|
dataset_urn: DatasetUrn
|
|
252
261
|
assertion_urn: Optional[AssertionUrn]
|
|
253
262
|
dataset_urn, assertion_urn = (
|
|
@@ -257,23 +266,23 @@ class SubscriptionClient:
|
|
|
257
266
|
)
|
|
258
267
|
|
|
259
268
|
logger.info(
|
|
260
|
-
f"Unsubscribing from dataset={dataset_urn}{f' assertion={assertion_urn}' if assertion_urn else ''} for subscriber={
|
|
269
|
+
f"Unsubscribing from dataset={dataset_urn}{f' assertion={assertion_urn}' if assertion_urn else ''} for subscriber={parsed_subscriber_urn} with change types: {entity_change_types}"
|
|
261
270
|
)
|
|
262
271
|
|
|
263
272
|
# Find existing subscription
|
|
264
273
|
existing_subscription_urns = self.client.resolve.subscription( # type: ignore[attr-defined]
|
|
265
274
|
entity_urn=dataset_urn.urn(),
|
|
266
|
-
actor_urn=
|
|
275
|
+
actor_urn=parsed_subscriber_urn.urn(),
|
|
267
276
|
)
|
|
268
277
|
|
|
269
278
|
if not existing_subscription_urns:
|
|
270
279
|
logger.info(
|
|
271
|
-
f"No subscription found for dataset={dataset_urn} and subscriber={
|
|
280
|
+
f"No subscription found for dataset={dataset_urn} and subscriber={parsed_subscriber_urn}"
|
|
272
281
|
)
|
|
273
282
|
return
|
|
274
283
|
elif len(existing_subscription_urns) > 1:
|
|
275
284
|
raise SdkUsageError(
|
|
276
|
-
f"Multiple subscriptions found for dataset={dataset_urn} and subscriber={
|
|
285
|
+
f"Multiple subscriptions found for dataset={dataset_urn} and subscriber={parsed_subscriber_urn}. "
|
|
277
286
|
f"Expected at most 1, got {len(existing_subscription_urns)}"
|
|
278
287
|
)
|
|
279
288
|
|
|
@@ -659,6 +668,33 @@ class SubscriptionClient:
|
|
|
659
668
|
f"Unsupported URN type. Only dataset and assertion URNs are supported, got: {urn}"
|
|
660
669
|
)
|
|
661
670
|
|
|
671
|
+
def _maybe_parse_subscriber_urn(
|
|
672
|
+
self, subscriber_urn: SubscriberInputType
|
|
673
|
+
) -> Union[CorpUserUrn, CorpGroupUrn]:
|
|
674
|
+
"""Parse subscriber URN string into appropriate URN object if needed.
|
|
675
|
+
|
|
676
|
+
Args:
|
|
677
|
+
subscriber_urn: String URN or URN object (CorpUserUrn or CorpGroupUrn)
|
|
678
|
+
|
|
679
|
+
Returns:
|
|
680
|
+
Parsed URN object (CorpUserUrn or CorpGroupUrn)
|
|
681
|
+
|
|
682
|
+
Raises:
|
|
683
|
+
SdkUsageError: If the URN string format is invalid or unsupported
|
|
684
|
+
"""
|
|
685
|
+
if isinstance(subscriber_urn, (CorpUserUrn, CorpGroupUrn)):
|
|
686
|
+
return subscriber_urn
|
|
687
|
+
|
|
688
|
+
# Try to determine URN type from string format
|
|
689
|
+
if ":corpuser:" in subscriber_urn:
|
|
690
|
+
return CorpUserUrn.from_string(subscriber_urn)
|
|
691
|
+
elif ":corpGroup:" in subscriber_urn:
|
|
692
|
+
return CorpGroupUrn.from_string(subscriber_urn)
|
|
693
|
+
else:
|
|
694
|
+
raise SdkUsageError(
|
|
695
|
+
f"Unsupported subscriber URN type. Only corpuser and corpGroup URNs are supported, got: {subscriber_urn}"
|
|
696
|
+
)
|
|
697
|
+
|
|
662
698
|
def _fetch_dataset_from_assertion(
|
|
663
699
|
self, assertion_urn: AssertionUrn
|
|
664
700
|
) -> Tuple[DatasetUrn, AssertionUrn]:
|
{acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.12rc8
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Requires-Dist: croniter
|
|
@@ -8,90 +8,90 @@ Requires-Dist: pytz
|
|
|
8
8
|
Requires-Dist: types-croniter
|
|
9
9
|
Provides-Extra: datahub-lineage-features
|
|
10
10
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
11
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
12
11
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
13
12
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
14
13
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
14
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
15
15
|
Provides-Extra: datahub-reporting-forms
|
|
16
16
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
17
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
18
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
19
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
20
18
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
19
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
20
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
21
21
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
22
22
|
Provides-Extra: datahub-reporting-extract-graph
|
|
23
23
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
25
24
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
26
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
27
25
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
26
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
28
27
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
28
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
29
29
|
Provides-Extra: datahub-reporting-extract-sql
|
|
30
30
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
32
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
33
32
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
33
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
34
34
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
35
35
|
Provides-Extra: datahub-usage-reporting
|
|
36
36
|
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
37
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
38
|
-
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
39
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
40
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
41
37
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
42
38
|
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
43
39
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
41
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
42
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
44
43
|
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
45
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
45
46
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
46
47
|
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
47
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
48
48
|
Provides-Extra: datahub-metadata-sharing
|
|
49
49
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
50
50
|
Provides-Extra: datahub-action-request-owner
|
|
51
51
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
52
52
|
Provides-Extra: acryl-cs-issues
|
|
53
|
-
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
54
|
-
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
55
53
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
54
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
55
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
56
56
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
57
57
|
Provides-Extra: datahub-forms-notifications
|
|
58
58
|
Requires-Dist: tenacity; extra == "datahub-forms-notifications"
|
|
59
59
|
Provides-Extra: all
|
|
60
|
-
Requires-Dist: pandas; extra == "all"
|
|
61
|
-
Requires-Dist: numpy<2; extra == "all"
|
|
62
|
-
Requires-Dist: openai; extra == "all"
|
|
63
|
-
Requires-Dist: boto3; extra == "all"
|
|
64
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
65
|
-
Requires-Dist: tenacity; extra == "all"
|
|
66
60
|
Requires-Dist: polars==1.30.0; extra == "all"
|
|
67
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
68
61
|
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
62
|
+
Requires-Dist: zenpy; extra == "all"
|
|
63
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
69
64
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
70
|
-
Requires-Dist: pyarrow; extra == "all"
|
|
71
|
-
Requires-Dist: pydantic<2; extra == "all"
|
|
72
65
|
Requires-Dist: slack-sdk; extra == "all"
|
|
66
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
73
67
|
Requires-Dist: duckdb; extra == "all"
|
|
74
|
-
Requires-Dist:
|
|
68
|
+
Requires-Dist: pandas; extra == "all"
|
|
69
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
75
70
|
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
76
|
-
Requires-Dist:
|
|
71
|
+
Requires-Dist: tenacity; extra == "all"
|
|
72
|
+
Requires-Dist: openai; extra == "all"
|
|
73
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
74
|
+
Requires-Dist: pydantic<2; extra == "all"
|
|
75
|
+
Requires-Dist: jinja2; extra == "all"
|
|
76
|
+
Requires-Dist: boto3; extra == "all"
|
|
77
77
|
Provides-Extra: dev
|
|
78
78
|
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
79
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
80
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
81
|
-
Requires-Dist: pandas; extra == "dev"
|
|
82
79
|
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
83
|
-
Requires-Dist:
|
|
84
|
-
Requires-Dist:
|
|
80
|
+
Requires-Dist: tenacity; extra == "dev"
|
|
81
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
82
|
+
Requires-Dist: openai; extra == "dev"
|
|
85
83
|
Requires-Dist: pyarrow; extra == "dev"
|
|
86
84
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
85
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
86
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
87
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
88
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
87
89
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
90
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
88
91
|
Requires-Dist: duckdb; extra == "dev"
|
|
89
|
-
Requires-Dist:
|
|
90
|
-
Requires-Dist:
|
|
92
|
+
Requires-Dist: pandas; extra == "dev"
|
|
93
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
91
94
|
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
92
95
|
Requires-Dist: boto3; extra == "dev"
|
|
93
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
94
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
95
|
-
Requires-Dist: tenacity; extra == "dev"
|
|
96
96
|
Dynamic: provides-extra
|
|
97
97
|
Dynamic: requires-dist
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
|
|
2
|
-
acryl_datahub_cloud/_codegen_config.json,sha256=
|
|
2
|
+
acryl_datahub_cloud/_codegen_config.json,sha256=u3uAQyDEsEvuTLj4O7IofdQ-xuPzEnuGeohHuuZqSwM,556
|
|
3
3
|
acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
@@ -13,7 +13,7 @@ acryl_datahub_cloud/action_request/action_request_owner_source.py,sha256=thLOkXf
|
|
|
13
13
|
acryl_datahub_cloud/api/__init__.py,sha256=odqk3YUMCTlGZrZ7NmFFaGNgERcdT0ms4OSVS3k1a28,68
|
|
14
14
|
acryl_datahub_cloud/api/client.py,sha256=6BXCNbmC4K4dbGfkTXgbSqHabt90PjpEAgb52m7XRX0,145
|
|
15
15
|
acryl_datahub_cloud/datahub_forms_notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py,sha256=
|
|
16
|
+
acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py,sha256=We_Uf44rEoZTqGwSTYqraMmCJeZbPvsHTxLQXpXj1Kk,21693
|
|
17
17
|
acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql,sha256=RibIdribsX7X4xnm6_rzZT5C2e4a4gf7rFCq9nt0vtM,91
|
|
18
18
|
acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql,sha256=ibSULhbUmRLpOAygirKJXCorLubscTEEXP55GlBzldI,271
|
|
19
19
|
acryl_datahub_cloud/datahub_forms_notifications/query.py,sha256=4OfPmNkNdrPLS0XbQHZASsdfUeme3ZxucJQDsBI3hG0,498
|
|
@@ -44,10 +44,10 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
|
|
|
44
44
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
|
|
46
46
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
47
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
48
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
47
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=nSjU6EjFc4v6ycQANg7UkO4ztwUV9SR0RNiPDx8WjlM,1155751
|
|
48
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=XrT0EQn0gO1-x2o-7OYet4RqwfeCPxagqH_bkIo7o58,1492667
|
|
49
49
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
50
|
-
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=
|
|
50
|
+
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=GrTD3dMb9pdGg_Zpyq0VFufMsg6580Yg7SoU-Irtod8,163823
|
|
51
51
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
52
52
|
acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
53
53
|
acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
|
|
@@ -174,7 +174,7 @@ acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc,sha256=q2djVFyUvWZ1xn3yIZB1a
|
|
|
174
174
|
acryl_datahub_cloud/metadata/schemas/ChartKey.avsc,sha256=B6HgUP7u-YJ9vEDXHlGIJUbYkXdF0DvhN70CdXpSkKU,1475
|
|
175
175
|
acryl_datahub_cloud/metadata/schemas/ChartQuery.avsc,sha256=6qz8Q5wa5h0GS6QcwfzVZrRi26PoEwXyjIwSqL8nyhk,919
|
|
176
176
|
acryl_datahub_cloud/metadata/schemas/ChartUsageStatistics.avsc,sha256=FjEEPj_19jUvJcS9cyZtHqByQyPdt2xhmxfFdw9mSM4,5881
|
|
177
|
-
acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc,sha256=
|
|
177
|
+
acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc,sha256=b7ks5EsDQFInnD7Ydij17ZvETINHVa1x9jNGxxvpF24,7125
|
|
178
178
|
acryl_datahub_cloud/metadata/schemas/ConstraintKey.avsc,sha256=8ni5Pz7G1sySlDnZdXqXUwJP-4IjafpNMXYfAhbct-A,380
|
|
179
179
|
acryl_datahub_cloud/metadata/schemas/Container.avsc,sha256=pEpRQgClrJRm59eAiltc4YoP0pg7TG6Bu-ENCh11-mw,813
|
|
180
180
|
acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc,sha256=53PLskwXZpSGwc59IA_8bQPZsZp61yn_F9vSxALuc_U,1012
|
|
@@ -214,7 +214,7 @@ acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeKey.avsc,sha256=vvGjm329gF
|
|
|
214
214
|
acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc,sha256=q6ZyMoxInwmrkrXkUgMe-i-WZzAxbjcvJ-EI99SnEp8,599
|
|
215
215
|
acryl_datahub_cloud/metadata/schemas/DataHubPersonaInfo.avsc,sha256=aAi4gMpOZaJCz3JL3uOYfZsxWWUJOsdboK3GVftX9HI,521
|
|
216
216
|
acryl_datahub_cloud/metadata/schemas/DataHubPersonaKey.avsc,sha256=ddj-DhXa0_YMdLaGkKLLSklfIeDRvSwPXu8o__YEXUE,448
|
|
217
|
-
acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc,sha256=
|
|
217
|
+
acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc,sha256=yBQe7pAuTMg9aovhugF4EkCRSHO_AN2TP_NM-0-Jg3A,10037
|
|
218
218
|
acryl_datahub_cloud/metadata/schemas/DataHubPolicyKey.avsc,sha256=dzKZpLQs0FnwlZ_8RCeNJykTYlGFbBlXnG2XX6ig29w,651
|
|
219
219
|
acryl_datahub_cloud/metadata/schemas/DataHubRetentionConfig.avsc,sha256=W62akcXHZaGXYSWa0TVC8AO4FgAaGaenuJIP0dk-i4c,1609
|
|
220
220
|
acryl_datahub_cloud/metadata/schemas/DataHubRetentionKey.avsc,sha256=WjVjoZ6mazGcjHqX_3qADxeSE044HhVg8wAGyY7ht78,660
|
|
@@ -344,7 +344,7 @@ acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc,sha256=-iJy0wMeKiJDt
|
|
|
344
344
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc,sha256=KcVMo7SYGW7k39rktVw8f7k7SeVFcEVMW5krDCB4o-A,1207
|
|
345
345
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc,sha256=9unOw5ZdIaNj8eQut5I16LWy1FeIWUtsRjiKw-myWd4,6918
|
|
346
346
|
acryl_datahub_cloud/metadata/schemas/MLTrainingRunProperties.avsc,sha256=WGgj0MuQrGD4UgvyHCJHzTnHja2LlJTOr1gLu8SySj0,4269
|
|
347
|
-
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=
|
|
347
|
+
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=K7JspKx_FOyWqEwl2DVHJz4wEF32ZU6PfI2U7vN4Jps,426876
|
|
348
348
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=Cf5eECeShCA_XHFr2MRhRQpPE61F6Xv-z1jjoBLJLgc,12239
|
|
349
349
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=tvO5cGIqZAIvUbMon1RAKgSY4E0jvBqT5VmLWAuNGkY,9770
|
|
350
350
|
acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
|
|
@@ -408,7 +408,7 @@ acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=RpAH8fW-6
|
|
|
408
408
|
acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNlXfT1TqogfulCanIc-nuYO9ZxRFOGzD9tl3ZJdB8,3732
|
|
409
409
|
acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
|
|
410
410
|
acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=Tdp8tMNEDeuMohYvfInhpNsEod7jrPIhz81SjP-v8xA,15669
|
|
411
|
-
acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=
|
|
411
|
+
acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=CbtqlNaT49lo1iPzz9GVr8zDQl09LRgd5zKp3ZuZ49k,502
|
|
412
412
|
acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc,sha256=wDVdpa9LSAlMzHIiWw-fMLHTCrxcJdnDOY_n5CDNTN8,2068
|
|
413
413
|
acryl_datahub_cloud/metadata/schemas/TagKey.avsc,sha256=YINS5zatQp8rwwZRccFPSGeBj5mcaVEcK247TMluwJs,671
|
|
414
414
|
acryl_datahub_cloud/metadata/schemas/TagProperties.avsc,sha256=Qzttxd7BB38JUwwl7tZzIV1Warnh-uQO-Ahw9Sd-vH4,883
|
|
@@ -430,12 +430,12 @@ acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAz
|
|
|
430
430
|
acryl_datahub_cloud/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
431
|
acryl_datahub_cloud/notifications/notification_recipient_builder.py,sha256=jmAh4q4OTjdYwySn-geRU23eiVWvHzABddr6yXii3E4,14573
|
|
432
432
|
acryl_datahub_cloud/sdk/__init__.py,sha256=Iqt8XTmyEwkM6Bh2P3bR2CcT9TQVgUPYJAOrhVXIcoU,1189
|
|
433
|
-
acryl_datahub_cloud/sdk/assertions_client.py,sha256=
|
|
433
|
+
acryl_datahub_cloud/sdk/assertions_client.py,sha256=5kR5nmk2sNdt_Dlkvbd0KeILqBj3eyNRQeK0AWygnMk,170448
|
|
434
434
|
acryl_datahub_cloud/sdk/errors.py,sha256=UfaA-u9rp_XhqiWAeVF-PcjgCPxUKLXe0GVkWCuX8Ds,1038
|
|
435
435
|
acryl_datahub_cloud/sdk/resolver_client.py,sha256=X5qy7lewDZ4QarpFrQ7goWDaMSC60sie1srnD4zwyH4,1468
|
|
436
|
-
acryl_datahub_cloud/sdk/subscription_client.py,sha256=
|
|
436
|
+
acryl_datahub_cloud/sdk/subscription_client.py,sha256=1dEYfMUsMbQ7Gf0ap06I13AnYzJsch1aynXareK5xsQ,31432
|
|
437
437
|
acryl_datahub_cloud/sdk/assertion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=
|
|
438
|
+
acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=2BQkN93vKAqb-fBX10f1ywOZBisxsRNs5XWcL84A7zw,58405
|
|
439
439
|
acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py,sha256=kR9hnx7YDDmkccx7hem2UWZBGi-XcFHOwbaEvjrTWTU,9000
|
|
440
440
|
acryl_datahub_cloud/sdk/assertion/types.py,sha256=8TXOEAlMmHyxaG5PEtP8e64aBt5GGlSw0A9KbMU-Yn0,515
|
|
441
441
|
acryl_datahub_cloud/sdk/assertion_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -443,12 +443,13 @@ acryl_datahub_cloud/sdk/assertion_input/assertion_input.py,sha256=KoKjr2l4N53uas
|
|
|
443
443
|
acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py,sha256=XcEQF5hZfr6AXubjgFIpg9tP1LpG5SiKDU3YEK44U6c,10594
|
|
444
444
|
acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py,sha256=IeQpI5Vka9mgCpTqeLjO4ILFeN9D02oWcgc5tgV8xdA,38787
|
|
445
445
|
acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py,sha256=7T7lG5St5WR1fBA6cMI5z7gwJdF0LlUMbMh2Akt1bns,10254
|
|
446
|
+
acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py,sha256=CeYpazaUVhgVsXzKPMu-3xbeqyRLYte9p3_ZUxi-KAE,26809
|
|
446
447
|
acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
448
|
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
448
449
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
449
450
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
450
|
-
acryl_datahub_cloud-0.3.
|
|
451
|
-
acryl_datahub_cloud-0.3.
|
|
452
|
-
acryl_datahub_cloud-0.3.
|
|
453
|
-
acryl_datahub_cloud-0.3.
|
|
454
|
-
acryl_datahub_cloud-0.3.
|
|
451
|
+
acryl_datahub_cloud-0.3.12rc8.dist-info/METADATA,sha256=C5Ch9ThCEcfXo1dn8V3bdDrWJWI8BrnFxUF4LoNITjc,4723
|
|
452
|
+
acryl_datahub_cloud-0.3.12rc8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
453
|
+
acryl_datahub_cloud-0.3.12rc8.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
454
|
+
acryl_datahub_cloud-0.3.12rc8.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
455
|
+
acryl_datahub_cloud-0.3.12rc8.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.12rc6.dist-info → acryl_datahub_cloud-0.3.12rc8.dist-info}/top_level.txt
RENAMED
|
File without changes
|