acryl-datahub-cloud 0.3.15rc5__py3-none-any.whl → 0.3.15rc7__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.15rc5",
3
+ "version": "0.3.15rc7",
4
4
  "install_requires": [
5
5
  "avro-gen3==0.7.16",
6
6
  "acryl-datahub"
@@ -778,6 +778,46 @@
778
778
  "name": "erroringAssertionDetails",
779
779
  "default": [],
780
780
  "doc": "Summary details about the set of erroring assertions"
781
+ },
782
+ {
783
+ "Relationship": {
784
+ "/*/urn": {
785
+ "entityTypes": [
786
+ "assertion"
787
+ ],
788
+ "name": "InitializingAssertions"
789
+ }
790
+ },
791
+ "Searchable": {
792
+ "/*/lastResultAt": {
793
+ "fieldName": "initializingAssertionResultTimes",
794
+ "fieldType": "DATETIME",
795
+ "queryByDefault": false
796
+ },
797
+ "/*/source": {
798
+ "fieldName": "initializingAssertionSources",
799
+ "queryByDefault": false
800
+ },
801
+ "/*/type": {
802
+ "fieldName": "initializingAssertionType",
803
+ "fieldType": "KEYWORD",
804
+ "queryByDefault": false
805
+ },
806
+ "/*/urn": {
807
+ "fieldName": "initializingAssertions",
808
+ "fieldType": "URN",
809
+ "hasValuesFieldName": "hasInitializingAssertions",
810
+ "numValuesFieldName": "numInitializingAssertions",
811
+ "queryByDefault": false
812
+ }
813
+ },
814
+ "type": {
815
+ "type": "array",
816
+ "items": "com.linkedin.pegasus2avro.common.AssertionSummaryDetails"
817
+ },
818
+ "name": "initializingAssertionDetails",
819
+ "default": [],
820
+ "doc": "Summary details about the set of initializing assertions"
781
821
  }
782
822
  ],
783
823
  "doc": "Summary related to entity assertions"
@@ -9839,6 +9879,12 @@
9839
9879
  "doc": "The subscription types."
9840
9880
  },
9841
9881
  {
9882
+ "Searchable": {
9883
+ "/time": {
9884
+ "fieldName": "createdOn",
9885
+ "fieldType": "DATETIME"
9886
+ }
9887
+ },
9842
9888
  "type": "com.linkedin.pegasus2avro.common.AuditStamp",
9843
9889
  "name": "createdOn",
9844
9890
  "doc": "AuditStamp for when the subscription was created"
@@ -22445,7 +22491,9 @@
22445
22491
  "fields": [
22446
22492
  {
22447
22493
  "Searchable": {
22448
- "fieldName": "sourceType"
22494
+ "addToFilters": true,
22495
+ "fieldName": "sourceType",
22496
+ "fieldType": "KEYWORD"
22449
22497
  },
22450
22498
  "type": {
22451
22499
  "type": "enum",
@@ -22543,7 +22591,7 @@
22543
22591
  "null",
22544
22592
  "string"
22545
22593
  ],
22546
- "name": "entity",
22594
+ "name": "entityUrn",
22547
22595
  "default": null,
22548
22596
  "doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation"
22549
22597
  }
@@ -30308,6 +30356,19 @@
30308
30356
  "name": "lastPassedAtMillis",
30309
30357
  "default": null,
30310
30358
  "doc": "The last pass event timestamp field as epoch at UTC in milliseconds."
30359
+ },
30360
+ {
30361
+ "Searchable": {
30362
+ "fieldName": "lastInitializedAtMillis",
30363
+ "fieldType": "DATETIME"
30364
+ },
30365
+ "type": [
30366
+ "null",
30367
+ "long"
30368
+ ],
30369
+ "name": "lastInitializedAtMillis",
30370
+ "default": null,
30371
+ "doc": "The last initialized event timestamp field as epoch at UTC in milliseconds."
30311
30372
  }
30312
30373
  ],
30313
30374
  "doc": "Derived.\nTracks the latest summary details of an assertion."
@@ -3992,7 +3992,7 @@ class AssertionInfoClass(_Aspect):
3992
3992
  lastUpdated: Union[None, "AuditStampClass"]=None,
3993
3993
  description: Union[None, str]=None,
3994
3994
  note: Union[None, "AssertionNoteClass"]=None,
3995
- entity: Union[None, str]=None,
3995
+ entityUrn: Union[None, str]=None,
3996
3996
  ):
3997
3997
  super().__init__()
3998
3998
 
@@ -4014,7 +4014,7 @@ class AssertionInfoClass(_Aspect):
4014
4014
  self.lastUpdated = lastUpdated
4015
4015
  self.description = description
4016
4016
  self.note = note
4017
- self.entity = entity
4017
+ self.entityUrn = entityUrn
4018
4018
 
4019
4019
  def _restore_defaults(self) -> None:
4020
4020
  self.customProperties = dict()
@@ -4031,7 +4031,7 @@ class AssertionInfoClass(_Aspect):
4031
4031
  self.lastUpdated = self.RECORD_SCHEMA.fields_dict["lastUpdated"].default
4032
4032
  self.description = self.RECORD_SCHEMA.fields_dict["description"].default
4033
4033
  self.note = self.RECORD_SCHEMA.fields_dict["note"].default
4034
- self.entity = self.RECORD_SCHEMA.fields_dict["entity"].default
4034
+ self.entityUrn = self.RECORD_SCHEMA.fields_dict["entityUrn"].default
4035
4035
 
4036
4036
 
4037
4037
  @property
@@ -4180,13 +4180,13 @@ class AssertionInfoClass(_Aspect):
4180
4180
 
4181
4181
 
4182
4182
  @property
4183
- def entity(self) -> Union[None, str]:
4183
+ def entityUrn(self) -> Union[None, str]:
4184
4184
  """The entity targeted by this assertion. Newly added field, automatically set by mutation"""
4185
- return self._inner_dict.get('entity') # type: ignore
4185
+ return self._inner_dict.get('entityUrn') # type: ignore
4186
4186
 
4187
- @entity.setter
4188
- def entity(self, value: Union[None, str]) -> None:
4189
- self._inner_dict['entity'] = value
4187
+ @entityUrn.setter
4188
+ def entityUrn(self, value: Union[None, str]) -> None:
4189
+ self._inner_dict['entityUrn'] = value
4190
4190
 
4191
4191
 
4192
4192
  class AssertionMetricClass(DictWrapper):
@@ -4755,17 +4755,20 @@ class AssertionRunSummaryClass(_Aspect):
4755
4755
  lastFailedAtMillis: Union[None, int]=None,
4756
4756
  lastErroredAtMillis: Union[None, int]=None,
4757
4757
  lastPassedAtMillis: Union[None, int]=None,
4758
+ lastInitializedAtMillis: Union[None, int]=None,
4758
4759
  ):
4759
4760
  super().__init__()
4760
4761
 
4761
4762
  self.lastFailedAtMillis = lastFailedAtMillis
4762
4763
  self.lastErroredAtMillis = lastErroredAtMillis
4763
4764
  self.lastPassedAtMillis = lastPassedAtMillis
4765
+ self.lastInitializedAtMillis = lastInitializedAtMillis
4764
4766
 
4765
4767
  def _restore_defaults(self) -> None:
4766
4768
  self.lastFailedAtMillis = self.RECORD_SCHEMA.fields_dict["lastFailedAtMillis"].default
4767
4769
  self.lastErroredAtMillis = self.RECORD_SCHEMA.fields_dict["lastErroredAtMillis"].default
4768
4770
  self.lastPassedAtMillis = self.RECORD_SCHEMA.fields_dict["lastPassedAtMillis"].default
4771
+ self.lastInitializedAtMillis = self.RECORD_SCHEMA.fields_dict["lastInitializedAtMillis"].default
4769
4772
 
4770
4773
 
4771
4774
  @property
@@ -4798,6 +4801,16 @@ class AssertionRunSummaryClass(_Aspect):
4798
4801
  self._inner_dict['lastPassedAtMillis'] = value
4799
4802
 
4800
4803
 
4804
+ @property
4805
+ def lastInitializedAtMillis(self) -> Union[None, int]:
4806
+ """The last initialized event timestamp field as epoch at UTC in milliseconds."""
4807
+ return self._inner_dict.get('lastInitializedAtMillis') # type: ignore
4808
+
4809
+ @lastInitializedAtMillis.setter
4810
+ def lastInitializedAtMillis(self, value: Union[None, int]) -> None:
4811
+ self._inner_dict['lastInitializedAtMillis'] = value
4812
+
4813
+
4801
4814
  class AssertionSourceClass(DictWrapper):
4802
4815
  """The source of an assertion"""
4803
4816
 
@@ -7839,6 +7852,7 @@ class AssertionsSummaryClass(_Aspect):
7839
7852
  passingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
7840
7853
  failingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
7841
7854
  erroringAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
7855
+ initializingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
7842
7856
  ):
7843
7857
  super().__init__()
7844
7858
 
@@ -7868,6 +7882,11 @@ class AssertionsSummaryClass(_Aspect):
7868
7882
  self.erroringAssertionDetails = list()
7869
7883
  else:
7870
7884
  self.erroringAssertionDetails = erroringAssertionDetails
7885
+ if initializingAssertionDetails is None:
7886
+ # default: []
7887
+ self.initializingAssertionDetails = list()
7888
+ else:
7889
+ self.initializingAssertionDetails = initializingAssertionDetails
7871
7890
 
7872
7891
  def _restore_defaults(self) -> None:
7873
7892
  self.failingAssertions = list()
@@ -7876,6 +7895,7 @@ class AssertionsSummaryClass(_Aspect):
7876
7895
  self.passingAssertionDetails = list()
7877
7896
  self.failingAssertionDetails = list()
7878
7897
  self.erroringAssertionDetails = list()
7898
+ self.initializingAssertionDetails = list()
7879
7899
 
7880
7900
 
7881
7901
  @property
@@ -7940,6 +7960,16 @@ class AssertionsSummaryClass(_Aspect):
7940
7960
  self._inner_dict['erroringAssertionDetails'] = value
7941
7961
 
7942
7962
 
7963
+ @property
7964
+ def initializingAssertionDetails(self) -> List["AssertionSummaryDetailsClass"]:
7965
+ """Summary details about the set of initializing assertions"""
7966
+ return self._inner_dict.get('initializingAssertionDetails') # type: ignore
7967
+
7968
+ @initializingAssertionDetails.setter
7969
+ def initializingAssertionDetails(self, value: List["AssertionSummaryDetailsClass"]) -> None:
7970
+ self._inner_dict['initializingAssertionDetails'] = value
7971
+
7972
+
7943
7973
  class AuditStampClass(DictWrapper):
7944
7974
  """Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."""
7945
7975
 
@@ -2907,7 +2907,9 @@
2907
2907
  "fields": [
2908
2908
  {
2909
2909
  "Searchable": {
2910
- "fieldName": "sourceType"
2910
+ "addToFilters": true,
2911
+ "fieldName": "sourceType",
2912
+ "fieldType": "KEYWORD"
2911
2913
  },
2912
2914
  "type": {
2913
2915
  "type": "enum",
@@ -3004,7 +3006,7 @@
3004
3006
  "null",
3005
3007
  "string"
3006
3008
  ],
3007
- "name": "entity",
3009
+ "name": "entityUrn",
3008
3010
  "default": null,
3009
3011
  "doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation",
3010
3012
  "Urn": "Urn"
@@ -2598,7 +2598,9 @@
2598
2598
  "fields": [
2599
2599
  {
2600
2600
  "Searchable": {
2601
- "fieldName": "sourceType"
2601
+ "addToFilters": true,
2602
+ "fieldName": "sourceType",
2603
+ "fieldType": "KEYWORD"
2602
2604
  },
2603
2605
  "type": {
2604
2606
  "type": "enum",
@@ -2695,7 +2697,7 @@
2695
2697
  "null",
2696
2698
  "string"
2697
2699
  ],
2698
- "name": "entity",
2700
+ "name": "entityUrn",
2699
2701
  "default": null,
2700
2702
  "doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation",
2701
2703
  "Urn": "Urn"
@@ -2689,7 +2689,9 @@
2689
2689
  "fields": [
2690
2690
  {
2691
2691
  "Searchable": {
2692
- "fieldName": "sourceType"
2692
+ "addToFilters": true,
2693
+ "fieldName": "sourceType",
2694
+ "fieldType": "KEYWORD"
2693
2695
  },
2694
2696
  "type": {
2695
2697
  "type": "enum",
@@ -2786,7 +2788,7 @@
2786
2788
  "null",
2787
2789
  "string"
2788
2790
  ],
2789
- "name": "entity",
2791
+ "name": "entityUrn",
2790
2792
  "default": null,
2791
2793
  "doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation",
2792
2794
  "Urn": "Urn"
@@ -44,6 +44,19 @@
44
44
  "name": "lastPassedAtMillis",
45
45
  "default": null,
46
46
  "doc": "The last pass event timestamp field as epoch at UTC in milliseconds."
47
+ },
48
+ {
49
+ "Searchable": {
50
+ "fieldName": "lastInitializedAtMillis",
51
+ "fieldType": "DATETIME"
52
+ },
53
+ "type": [
54
+ "null",
55
+ "long"
56
+ ],
57
+ "name": "lastInitializedAtMillis",
58
+ "default": null,
59
+ "doc": "The last initialized event timestamp field as epoch at UTC in milliseconds."
47
60
  }
48
61
  ],
49
62
  "doc": "Derived.\nTracks the latest summary details of an assertion."
@@ -197,6 +197,46 @@
197
197
  "name": "erroringAssertionDetails",
198
198
  "default": [],
199
199
  "doc": "Summary details about the set of erroring assertions"
200
+ },
201
+ {
202
+ "Relationship": {
203
+ "/*/urn": {
204
+ "entityTypes": [
205
+ "assertion"
206
+ ],
207
+ "name": "InitializingAssertions"
208
+ }
209
+ },
210
+ "Searchable": {
211
+ "/*/lastResultAt": {
212
+ "fieldName": "initializingAssertionResultTimes",
213
+ "fieldType": "DATETIME",
214
+ "queryByDefault": false
215
+ },
216
+ "/*/source": {
217
+ "fieldName": "initializingAssertionSources",
218
+ "queryByDefault": false
219
+ },
220
+ "/*/type": {
221
+ "fieldName": "initializingAssertionType",
222
+ "fieldType": "KEYWORD",
223
+ "queryByDefault": false
224
+ },
225
+ "/*/urn": {
226
+ "fieldName": "initializingAssertions",
227
+ "fieldType": "URN",
228
+ "hasValuesFieldName": "hasInitializingAssertions",
229
+ "numValuesFieldName": "numInitializingAssertions",
230
+ "queryByDefault": false
231
+ }
232
+ },
233
+ "type": {
234
+ "type": "array",
235
+ "items": "com.linkedin.pegasus2avro.common.AssertionSummaryDetails"
236
+ },
237
+ "name": "initializingAssertionDetails",
238
+ "default": [],
239
+ "doc": "Summary details about the set of initializing assertions"
200
240
  }
201
241
  ],
202
242
  "doc": "Summary related to entity assertions"
@@ -3193,7 +3193,9 @@
3193
3193
  "fields": [
3194
3194
  {
3195
3195
  "Searchable": {
3196
- "fieldName": "sourceType"
3196
+ "addToFilters": true,
3197
+ "fieldName": "sourceType",
3198
+ "fieldType": "KEYWORD"
3197
3199
  },
3198
3200
  "type": {
3199
3201
  "type": "enum",
@@ -3290,7 +3292,7 @@
3290
3292
  "null",
3291
3293
  "string"
3292
3294
  ],
3293
- "name": "entity",
3295
+ "name": "entityUrn",
3294
3296
  "default": null,
3295
3297
  "doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation",
3296
3298
  "Urn": "Urn"
@@ -54,6 +54,12 @@
54
54
  "doc": "The subscription types."
55
55
  },
56
56
  {
57
+ "Searchable": {
58
+ "/time": {
59
+ "fieldName": "createdOn",
60
+ "fieldType": "DATETIME"
61
+ }
62
+ },
57
63
  "type": {
58
64
  "type": "record",
59
65
  "name": "AuditStamp",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.15rc5
3
+ Version: 0.3.15rc7
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: avro-gen3==0.7.16
6
6
  Requires-Dist: acryl-datahub
@@ -10,89 +10,89 @@ Requires-Dist: pytz
10
10
  Requires-Dist: types-croniter
11
11
  Requires-Dist: tzlocal
12
12
  Provides-Extra: datahub-lineage-features
13
+ Requires-Dist: pandas; extra == "datahub-lineage-features"
14
+ Requires-Dist: duckdb; extra == "datahub-lineage-features"
13
15
  Requires-Dist: tenacity; extra == "datahub-lineage-features"
14
16
  Requires-Dist: pyarrow; extra == "datahub-lineage-features"
15
- Requires-Dist: duckdb; extra == "datahub-lineage-features"
16
- Requires-Dist: pandas; extra == "datahub-lineage-features"
17
17
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
18
18
  Provides-Extra: datahub-reporting-forms
19
19
  Requires-Dist: boto3; extra == "datahub-reporting-forms"
20
- Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
20
+ Requires-Dist: pandas; extra == "datahub-reporting-forms"
21
21
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
22
+ Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
22
23
  Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
23
- Requires-Dist: pandas; extra == "datahub-reporting-forms"
24
24
  Provides-Extra: datahub-reporting-extract-graph
25
25
  Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
26
- Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
27
- Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
28
26
  Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
27
+ Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
28
+ Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
29
29
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
30
30
  Provides-Extra: datahub-reporting-extract-sql
31
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
32
31
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
32
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
33
33
  Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
34
34
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
35
35
  Provides-Extra: datahub-usage-reporting
36
- Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
37
36
  Requires-Dist: boto3; extra == "datahub-usage-reporting"
38
- Requires-Dist: duckdb; extra == "datahub-usage-reporting"
39
- Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
40
- Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
37
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
38
+ Requires-Dist: pandas; extra == "datahub-usage-reporting"
39
+ Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
41
40
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
41
+ Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
42
+ Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
43
+ Requires-Dist: duckdb; extra == "datahub-usage-reporting"
42
44
  Requires-Dist: polars==1.34.0; extra == "datahub-usage-reporting"
43
45
  Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
44
- Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
45
- Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
46
- Requires-Dist: pandas; extra == "datahub-usage-reporting"
46
+ Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
47
47
  Provides-Extra: datahub-metadata-sharing
48
48
  Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
49
49
  Provides-Extra: datahub-action-request-owner
50
50
  Requires-Dist: tenacity; extra == "datahub-action-request-owner"
51
51
  Provides-Extra: acryl-cs-issues
52
- Requires-Dist: jinja2; extra == "acryl-cs-issues"
53
52
  Requires-Dist: openai; extra == "acryl-cs-issues"
54
53
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
55
54
  Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
55
+ Requires-Dist: jinja2; extra == "acryl-cs-issues"
56
56
  Provides-Extra: datahub-forms-notifications
57
57
  Requires-Dist: tenacity; extra == "datahub-forms-notifications"
58
58
  Provides-Extra: all
59
- Requires-Dist: numpy<2; extra == "all"
60
59
  Requires-Dist: boto3; extra == "all"
61
- Requires-Dist: openai; extra == "all"
60
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
61
+ Requires-Dist: pandas; extra == "all"
62
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
62
63
  Requires-Dist: zenpy; extra == "all"
63
- Requires-Dist: duckdb; extra == "all"
64
- Requires-Dist: scipy<=1.14.1; extra == "all"
65
- Requires-Dist: termcolor==2.5.0; extra == "all"
66
64
  Requires-Dist: tenacity; extra == "all"
67
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
68
65
  Requires-Dist: jinja2; extra == "all"
66
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
67
+ Requires-Dist: termcolor==2.5.0; extra == "all"
68
+ Requires-Dist: openai; extra == "all"
69
+ Requires-Dist: numpy<2; extra == "all"
70
+ Requires-Dist: duckdb; extra == "all"
69
71
  Requires-Dist: polars==1.34.0; extra == "all"
70
- Requires-Dist: pyarrow; extra == "all"
71
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
72
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
73
- Requires-Dist: pandas; extra == "all"
74
72
  Requires-Dist: slack-sdk; extra == "all"
73
+ Requires-Dist: pyarrow; extra == "all"
74
+ Requires-Dist: scipy<=1.14.1; extra == "all"
75
75
  Provides-Extra: dev
76
- Requires-Dist: numpy<2; extra == "dev"
77
- Requires-Dist: duckdb; extra == "dev"
78
- Requires-Dist: acryl-datahub[dev]; extra == "dev"
79
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
76
+ Requires-Dist: pandas; extra == "dev"
80
77
  Requires-Dist: tenacity; extra == "dev"
78
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
79
+ Requires-Dist: openai; extra == "dev"
80
+ Requires-Dist: numpy<2; extra == "dev"
81
81
  Requires-Dist: polars==1.34.0; extra == "dev"
82
- Requires-Dist: pyarrow<=18.0.0; extra == "dev"
83
- Requires-Dist: pyarrow-stubs; extra == "dev"
82
+ Requires-Dist: zenpy; extra == "dev"
83
+ Requires-Dist: jinja2; extra == "dev"
84
+ Requires-Dist: pyarrow; extra == "dev"
84
85
  Requires-Dist: boto3; extra == "dev"
86
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
85
87
  Requires-Dist: scipy-stubs; extra == "dev"
86
- Requires-Dist: openai; extra == "dev"
88
+ Requires-Dist: acryl-datahub[dev]; extra == "dev"
87
89
  Requires-Dist: scipy<=1.14.1; extra == "dev"
88
- Requires-Dist: termcolor==2.5.0; extra == "dev"
89
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
90
- Requires-Dist: pandas; extra == "dev"
91
90
  Requires-Dist: pandas-stubs; extra == "dev"
91
+ Requires-Dist: termcolor==2.5.0; extra == "dev"
92
+ Requires-Dist: pyarrow-stubs; extra == "dev"
93
+ Requires-Dist: duckdb; extra == "dev"
92
94
  Requires-Dist: slack-sdk; extra == "dev"
93
- Requires-Dist: zenpy; extra == "dev"
94
- Requires-Dist: jinja2; extra == "dev"
95
- Requires-Dist: pyarrow; extra == "dev"
95
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
96
96
  Dynamic: provides-extra
97
97
  Dynamic: requires-dist
98
98
  Dynamic: requires-python
@@ -1,5 +1,5 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=95w5sL4fFQSJc9BqRm3Fozdzfn06oxdleQRX8ekU80o,556
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=PFGwSNKQgd2bFaiu4-7a4m7w3_-QvZdahOhsqs2ron4,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
@@ -45,8 +45,8 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=nvs8rfjT-3wMr193X9b98t
45
45
  acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  acryl_datahub_cloud/lineage_features/source.py,sha256=fGtnIM4PsablJleNPZA_sz0uHEy0Ij2jfm1Le2t8E0Q,16638
47
47
  acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
48
- acryl_datahub_cloud/metadata/schema.avsc,sha256=Ynlk6QU6E9Z9j_N26dnSg56xDKqvyCOjiO80VWGyLWM,1245399
49
- acryl_datahub_cloud/metadata/schema_classes.py,sha256=Z3-DXjtNo3xqRIxvxnSKPrKy-iDcLk8KYXFkOICvyks,1641283
48
+ acryl_datahub_cloud/metadata/schema.avsc,sha256=Fh01iBhgo6fou0iPJz_12Q5CsFNrFB6DshuwW-Is9qI,1247338
49
+ acryl_datahub_cloud/metadata/schema_classes.py,sha256=PD8nsxcKld6l5Qel5V_8N_saJvm5iyjH9ijjikOoYHs,1642796
50
50
  acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
51
51
  acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=Bij7q4iXp0EugcF3xZg-JrrSlvpavUBogUdCeCDJKWs,175353
52
52
  acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
@@ -165,14 +165,14 @@ acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc,sha256=WUKo-n1XiCy-09a2
165
165
  acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc,sha256=ZVjgnPEfi4SEvlyyIruK2sDj8xEjJeSeU3pbPINGum4,1560
166
166
  acryl_datahub_cloud/metadata/schemas/Applications.avsc,sha256=zL6yIzsS3w2463cZvTfdsTqBT7Kii8d58qc28QR_OOs,854
167
167
  acryl_datahub_cloud/metadata/schemas/AssertionActions.avsc,sha256=zrvXzX2Nv_dmK6I3ZXCVWQ1bVs1q01Gl9sDRJA8oSDU,1618
168
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=SN2h6l5Od7oEr6Y4QlZc0zirksrNz--TCtAqKGysXk4,228745
168
+ acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=SPd7HiS-HccbsMzJgmo6Z6t7hhCGErSKzhrzUDrJq2k,228858
169
169
  acryl_datahub_cloud/metadata/schemas/AssertionDryRunEvent.avsc,sha256=uXrBr18Nx-qFCBGRCFKmHDxrFjfkOipTkVl6W5ieXyw,10366
170
170
  acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=H33ua52l2Jd72voNkwfHeB5V3aWWiJEAKrCFDNOm66I,13494
171
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=FEx7zAWIR4emZ0nJesakWR5qznFA39f9fJhJnlaEa9g,138211
171
+ acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=F2LLEMKs98bNrTgTPKWnd5MKvp3Sz8w06wtSVq2OiUA,138292
172
172
  acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=lMIHiRwL_jqOg3OHUSjdc_-PSgFPvcDoOtgxqR0DOg0,793
173
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=ilsCbZFIgM8qYwwMm65FbzT92zbBJhhtlUy_oVHHMps,225932
174
- acryl_datahub_cloud/metadata/schemas/AssertionRunSummary.avsc,sha256=fLplWaSL9mLMSR3RG_BGAO7Kymmd1dBGBYc9VNNFRmY,1213
175
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=_3jUAnv4iKpz-tU7WHWDFvyvAQGDThLccPv3hvuAaaI,5582
173
+ acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=rlsQEg9due-BBV438c5MbYNy0FSMlf_JiIt_-510IwM,226045
174
+ acryl_datahub_cloud/metadata/schemas/AssertionRunSummary.avsc,sha256=g4DYOOjDNR3XNdMr16lRnicGvuMX0hG_D-qqmRas82E,1548
175
+ acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=bhYeuHVap5IccewW6cHY0qH5CeTlf_a98bj_M9fcVdw,6769
176
176
  acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc,sha256=LBmSybFUBkQPVmIEF1GwQl0ePmTrXlm0kHbKRIm--lo,2004
177
177
  acryl_datahub_cloud/metadata/schemas/BatchTestRunEvent.avsc,sha256=EPzwsRVMzBYCVRxug_LynjxRGkzv7QwFjw_zkJFBZAg,10083
178
178
  acryl_datahub_cloud/metadata/schemas/BrowsePaths.avsc,sha256=NR_4dKuJMk1X2RB4DLkHVSqyMQc4PvT7eR0n6lM5aOM,654
@@ -372,7 +372,7 @@ acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=soCmgrcEBE5yS
372
372
  acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=pT14vUmpj7VJ8hinQ0pcCUtRKx6RAGHWh1eJixkqaE8,12647
373
373
  acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
374
374
  acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc,sha256=ctoQusjDpN-nQKJje0l453AQioRj0x74b-32lyA6414,9587
375
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=2Pe5DBo0wDZrCZfo5PF_5oYEP_FcUxrNUGxiiYNAXLs,306034
375
+ acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=vwsOYni8m7iIKX33IeR_B7idSzu4_n_vuZlvxqJdw9o,306199
376
376
  acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc,sha256=NZwKD7jLXDsXRML2jTm-vkYoe7wJiuAKBOVpvZRYIX0,898
377
377
  acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc,sha256=HCKrzhMDSM_4NEH2tSGmJ1b9BrcA1ytDO863C-Sv3M4,45612
378
378
  acryl_datahub_cloud/metadata/schemas/MonitorSuiteKey.avsc,sha256=-bpGsyeoLcsUVPaHvZBvm4ZvItc94SYttkvd6x56XuE,438
@@ -431,7 +431,7 @@ acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=xx
431
431
  acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=RpAH8fW-64C6yVU8_D1h5vYeg8fNp5t2S6VLpOEcMZM,649
432
432
  acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=oHPbDuV_Wr_zR9vmTwZZKRzeaBx5nyqN1zn0cfIRhuQ,4044
433
433
  acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
434
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=kbrWNbFrykEHXdrwa8zgHO4r5vUs8Q4RUOTq0-lur3g,22692
434
+ acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=jj9oXB2xkCkMY_RHaBiycwkzd1d7FAOrmoJTRHW_upA,22822
435
435
  acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=CbtqlNaT49lo1iPzz9GVr8zDQl09LRgd5zKp3ZuZ49k,502
436
436
  acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc,sha256=XEU32-oZsyVwMii-DlQSVDaUTfKQ9n7K0ChMJ07KHvQ,4457
437
437
  acryl_datahub_cloud/metadata/schemas/TagKey.avsc,sha256=YINS5zatQp8rwwZRccFPSGeBj5mcaVEcK247TMluwJs,671
@@ -482,8 +482,8 @@ acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
482
482
  acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
483
483
  acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
484
484
  acryl_datahub_cloud/sdk/entities/subscription.py,sha256=0zl3LxkFM_hXBE8iCy8g6Nen-udJF784RmtPZ73QCb8,2801
485
- acryl_datahub_cloud-0.3.15rc5.dist-info/METADATA,sha256=l99EorUSlJ4mVpDVIJYFUA2TTOgbuVqvVbH-mail6hI,4615
486
- acryl_datahub_cloud-0.3.15rc5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
487
- acryl_datahub_cloud-0.3.15rc5.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
488
- acryl_datahub_cloud-0.3.15rc5.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
489
- acryl_datahub_cloud-0.3.15rc5.dist-info/RECORD,,
485
+ acryl_datahub_cloud-0.3.15rc7.dist-info/METADATA,sha256=JAxXYha1DD_9EZ9lbu5_Tk751gmTRfhgXgW3SJq0mMY,4615
486
+ acryl_datahub_cloud-0.3.15rc7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
487
+ acryl_datahub_cloud-0.3.15rc7.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
488
+ acryl_datahub_cloud-0.3.15rc7.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
489
+ acryl_datahub_cloud-0.3.15rc7.dist-info/RECORD,,