acryl-datahub-cloud 0.3.10.3rc2__py3-none-any.whl → 0.3.11rc1__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.

Files changed (33) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/_sdk_extras/__init__.py +4 -0
  3. acryl_datahub_cloud/_sdk_extras/assertion.py +15 -0
  4. acryl_datahub_cloud/_sdk_extras/assertions_client.py +23 -0
  5. acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py +1 -1
  6. acryl_datahub_cloud/action_request/action_request_owner_source.py +1 -2
  7. acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +3 -7
  8. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +9 -5
  9. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +14 -32
  10. acryl_datahub_cloud/metadata/_urns/urn_defs.py +56 -0
  11. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -0
  12. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
  13. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py +6 -0
  14. acryl_datahub_cloud/metadata/schema.avsc +138 -29
  15. acryl_datahub_cloud/metadata/schema_classes.py +214 -29
  16. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +25 -0
  17. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +25 -0
  18. acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc +2 -1
  19. acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc +22 -0
  20. acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc +4 -2
  21. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +3 -0
  22. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +6 -0
  23. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +3 -0
  24. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +3 -0
  25. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +36 -26
  26. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +58 -0
  27. acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc +4 -2
  28. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +86 -0
  29. {acryl_datahub_cloud-0.3.10.3rc2.dist-info → acryl_datahub_cloud-0.3.11rc1.dist-info}/METADATA +45 -45
  30. {acryl_datahub_cloud-0.3.10.3rc2.dist-info → acryl_datahub_cloud-0.3.11rc1.dist-info}/RECORD +33 -28
  31. {acryl_datahub_cloud-0.3.10.3rc2.dist-info → acryl_datahub_cloud-0.3.11rc1.dist-info}/WHEEL +1 -1
  32. {acryl_datahub_cloud-0.3.10.3rc2.dist-info → acryl_datahub_cloud-0.3.11rc1.dist-info}/entry_points.txt +0 -0
  33. {acryl_datahub_cloud-0.3.10.3rc2.dist-info → acryl_datahub_cloud-0.3.11rc1.dist-info}/top_level.txt +0 -0
@@ -131,20 +131,24 @@
131
131
  },
132
132
  {
133
133
  "TimeseriesField": {},
134
- "type": {
135
- "type": "enum",
136
- "symbolDocs": {
137
- "CONFIRMED": "The anomaly has been confirmed by a human reviewer. This means the anomaly was validated.",
138
- "REJECTED": "The anomaly has been dismissed, or ignored, by a human reviewer. This means the anomaly should have been ignored."
139
- },
140
- "name": "AnomalyReviewState",
141
- "namespace": "com.linkedin.pegasus2avro.anomaly",
142
- "symbols": [
143
- "CONFIRMED",
144
- "REJECTED"
145
- ]
146
- },
134
+ "type": [
135
+ "null",
136
+ {
137
+ "type": "enum",
138
+ "symbolDocs": {
139
+ "CONFIRMED": "The anomaly has been confirmed by a human reviewer. This means the anomaly was validated.",
140
+ "REJECTED": "The anomaly has been dismissed, or ignored, by a human reviewer. This means the anomaly should have been ignored."
141
+ },
142
+ "name": "AnomalyReviewState",
143
+ "namespace": "com.linkedin.pegasus2avro.anomaly",
144
+ "symbols": [
145
+ "CONFIRMED",
146
+ "REJECTED"
147
+ ]
148
+ }
149
+ ],
147
150
  "name": "state",
151
+ "default": null,
148
152
  "doc": "The review of the anomaly, based on human-provided feedback.\nIf this is not present, then the Anomaly has not yet been reviewed."
149
153
  },
150
154
  {
@@ -190,24 +194,30 @@
190
194
  "name": "AnomalySourceProperties",
191
195
  "namespace": "com.linkedin.pegasus2avro.anomaly",
192
196
  "fields": [
193
- {
194
- "TimeseriesField": {},
195
- "type": [
196
- "null",
197
- "long"
198
- ],
199
- "name": "assertionRunEventTime",
200
- "default": null,
201
- "doc": "The timestampMillis field of the AssertionRunEvent which altered the anomaly status the anomaly (if applicable)."
202
- },
203
197
  {
204
198
  "type": [
205
199
  "null",
206
- "long"
200
+ {
201
+ "type": "record",
202
+ "name": "AssertionMetric",
203
+ "namespace": "com.linkedin.pegasus2avro.assertion",
204
+ "fields": [
205
+ {
206
+ "type": "long",
207
+ "name": "timestampMs",
208
+ "doc": "The timestamp associated with the metric sampling time in milliseconds since epoch"
209
+ },
210
+ {
211
+ "type": "float",
212
+ "name": "value",
213
+ "doc": "The value of the metric that was sampled"
214
+ }
215
+ ]
216
+ }
207
217
  ],
208
- "name": "metricCubeTimestamp",
218
+ "name": "assertionMetric",
209
219
  "default": null,
210
- "doc": "The timestamp associated with the metric cube value that triggered the anomaly."
220
+ "doc": "The monitor metric associated with the anomaly, if generated from an assertion monitor (the norm)."
211
221
  }
212
222
  ],
213
223
  "doc": "Ad-hoc properties about an anomaly source."
@@ -3553,6 +3553,64 @@
3553
3553
  "name": "settings",
3554
3554
  "default": null,
3555
3555
  "doc": "Specific settings for an assertion monitor"
3556
+ },
3557
+ {
3558
+ "type": [
3559
+ "null",
3560
+ {
3561
+ "type": "record",
3562
+ "name": "AssertionMonitorBootstrapStatus",
3563
+ "namespace": "com.linkedin.pegasus2avro.monitor",
3564
+ "fields": [
3565
+ {
3566
+ "type": [
3567
+ "null",
3568
+ {
3569
+ "type": "record",
3570
+ "name": "AssertionMonitorMetricsCubeBootstrapStatus",
3571
+ "namespace": "com.linkedin.pegasus2avro.monitor",
3572
+ "fields": [
3573
+ {
3574
+ "type": {
3575
+ "type": "enum",
3576
+ "symbolDocs": {
3577
+ "COMPLETED": "The metrics cube for this monitor has been bootstrapped.",
3578
+ "FAILED": "The metrics cube for this monitor has failed to bootstrap.",
3579
+ "PENDING": "The metrics cube for this monitor has not been bootstrapped."
3580
+ },
3581
+ "name": "AssertionMonitorMetricsCubeBootstrapState",
3582
+ "namespace": "com.linkedin.pegasus2avro.monitor",
3583
+ "symbols": [
3584
+ "PENDING",
3585
+ "FAILED",
3586
+ "COMPLETED"
3587
+ ]
3588
+ },
3589
+ "name": "state",
3590
+ "doc": "Whether the metrics cube for this monitor has been bootstrapped."
3591
+ },
3592
+ {
3593
+ "type": [
3594
+ "null",
3595
+ "string"
3596
+ ],
3597
+ "name": "message",
3598
+ "default": null,
3599
+ "doc": "The message associated with the bootstrap status.\nI.e., an error message if the bootstrap failed."
3600
+ }
3601
+ ]
3602
+ }
3603
+ ],
3604
+ "name": "metricsCubeBootstrapStatus",
3605
+ "default": null,
3606
+ "doc": "Whether the metrics cube for this monitor has been bootstrapped."
3607
+ }
3608
+ ]
3609
+ }
3610
+ ],
3611
+ "name": "bootstrapStatus",
3612
+ "default": null,
3613
+ "doc": "The status of the bootstrap actions performed on the assertion."
3556
3614
  }
3557
3615
  ],
3558
3616
  "doc": "Information about an Assertion monitor."
@@ -36,12 +36,14 @@
36
36
  "type": {
37
37
  "type": "enum",
38
38
  "symbolDocs": {
39
- "SQL": "A SQL Query"
39
+ "SQL": "A SQL Query",
40
+ "UNKNOWN": "Unknown query language"
40
41
  },
41
42
  "name": "QueryLanguage",
42
43
  "namespace": "com.linkedin.pegasus2avro.query",
43
44
  "symbols": [
44
- "SQL"
45
+ "SQL",
46
+ "UNKNOWN"
45
47
  ]
46
48
  },
47
49
  "name": "language",
@@ -0,0 +1,86 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "systemMetadata"
5
+ },
6
+ "name": "SystemMetadata",
7
+ "namespace": "com.linkedin.pegasus2avro.mxe",
8
+ "fields": [
9
+ {
10
+ "type": [
11
+ "long",
12
+ "null"
13
+ ],
14
+ "name": "lastObserved",
15
+ "default": 0,
16
+ "doc": "The timestamp the metadata was observed at"
17
+ },
18
+ {
19
+ "type": [
20
+ "string",
21
+ "null"
22
+ ],
23
+ "name": "runId",
24
+ "default": "no-run-id-provided",
25
+ "doc": "The original run id that produced the metadata. Populated in case of batch-ingestion."
26
+ },
27
+ {
28
+ "type": [
29
+ "string",
30
+ "null"
31
+ ],
32
+ "name": "lastRunId",
33
+ "default": "no-run-id-provided",
34
+ "doc": "The last run id that produced the metadata. Populated in case of batch-ingestion."
35
+ },
36
+ {
37
+ "type": [
38
+ "null",
39
+ "string"
40
+ ],
41
+ "name": "pipelineName",
42
+ "default": null,
43
+ "doc": "The ingestion pipeline id that produced the metadata. Populated in case of batch ingestion."
44
+ },
45
+ {
46
+ "type": [
47
+ "null",
48
+ "string"
49
+ ],
50
+ "name": "registryName",
51
+ "default": null,
52
+ "doc": "The model registry name that was used to process this event"
53
+ },
54
+ {
55
+ "type": [
56
+ "null",
57
+ "string"
58
+ ],
59
+ "name": "registryVersion",
60
+ "default": null,
61
+ "doc": "The model registry version that was used to process this event"
62
+ },
63
+ {
64
+ "type": [
65
+ "null",
66
+ {
67
+ "type": "map",
68
+ "values": "string"
69
+ }
70
+ ],
71
+ "name": "properties",
72
+ "default": null,
73
+ "doc": "Additional properties"
74
+ },
75
+ {
76
+ "type": [
77
+ "null",
78
+ "string"
79
+ ],
80
+ "name": "version",
81
+ "default": null,
82
+ "doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
83
+ }
84
+ ],
85
+ "doc": "Metadata associated with each metadata change that is processed by the system"
86
+ }
@@ -1,92 +1,92 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.10.3rc2
3
+ Version: 0.3.11rc1
4
4
  Requires-Dist: avro-gen3==0.7.16
5
5
  Requires-Dist: acryl-datahub
6
6
  Provides-Extra: datahub-lineage-features
7
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
8
7
  Requires-Dist: pandas; extra == "datahub-lineage-features"
9
- Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
10
8
  Requires-Dist: duckdb; extra == "datahub-lineage-features"
11
9
  Requires-Dist: pyarrow; extra == "datahub-lineage-features"
10
+ Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
11
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
- Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
14
- Requires-Dist: boto3; extra == "datahub-reporting-forms"
15
13
  Requires-Dist: pandas; extra == "datahub-reporting-forms"
16
- Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
17
14
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
18
15
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
16
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
17
+ Requires-Dist: boto3; extra == "datahub-reporting-forms"
18
+ Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
19
19
  Provides-Extra: datahub-reporting-extract-graph
20
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
22
20
  Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
23
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
24
21
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
25
22
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
23
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
24
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
25
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
26
26
  Provides-Extra: datahub-reporting-extract-sql
27
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
28
27
  Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
29
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
30
28
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
31
29
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
30
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
31
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
32
32
  Provides-Extra: datahub-usage-reporting
33
- Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
34
- Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
35
- Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
36
- Requires-Dist: boto3; extra == "datahub-usage-reporting"
37
- Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
38
- Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
39
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
40
33
  Requires-Dist: pandas; extra == "datahub-usage-reporting"
41
34
  Requires-Dist: duckdb; extra == "datahub-usage-reporting"
42
- Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
35
+ Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
36
+ Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
37
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
43
38
  Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
39
+ Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
40
+ Requires-Dist: boto3; extra == "datahub-usage-reporting"
41
+ Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
42
+ Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
44
43
  Requires-Dist: polars==1.23.0; extra == "datahub-usage-reporting"
44
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
45
45
  Provides-Extra: datahub-metadata-sharing
46
46
  Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
47
47
  Provides-Extra: datahub-action-request-owner
48
48
  Requires-Dist: tenacity; extra == "datahub-action-request-owner"
49
49
  Provides-Extra: acryl-cs-issues
50
- Requires-Dist: openai; extra == "acryl-cs-issues"
51
50
  Requires-Dist: jinja2; extra == "acryl-cs-issues"
52
- Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
53
51
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
52
+ Requires-Dist: openai; extra == "acryl-cs-issues"
53
+ Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
54
54
  Provides-Extra: all
55
- Requires-Dist: termcolor==2.5.0; extra == "all"
56
- Requires-Dist: slack-sdk; extra == "all"
57
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
58
- Requires-Dist: pandas; extra == "all"
59
- Requires-Dist: duckdb; extra == "all"
60
- Requires-Dist: zenpy; extra == "all"
55
+ Requires-Dist: numpy<2; extra == "all"
56
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
61
57
  Requires-Dist: pydantic<2; extra == "all"
62
- Requires-Dist: polars==1.23.0; extra == "all"
63
58
  Requires-Dist: scipy<=1.14.1; extra == "all"
64
- Requires-Dist: jinja2; extra == "all"
65
- Requires-Dist: openai; extra == "all"
66
59
  Requires-Dist: boto3; extra == "all"
67
- Requires-Dist: numpy<2; extra == "all"
60
+ Requires-Dist: termcolor==2.5.0; extra == "all"
61
+ Requires-Dist: openai; extra == "all"
62
+ Requires-Dist: jinja2; extra == "all"
63
+ Requires-Dist: pyarrow; extra == "all"
64
+ Requires-Dist: polars==1.23.0; extra == "all"
68
65
  Requires-Dist: opensearch-py==2.4.2; extra == "all"
66
+ Requires-Dist: pandas; extra == "all"
67
+ Requires-Dist: duckdb; extra == "all"
68
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
69
+ Requires-Dist: zenpy; extra == "all"
69
70
  Requires-Dist: tenacity; extra == "all"
70
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
71
- Requires-Dist: pyarrow; extra == "all"
71
+ Requires-Dist: slack-sdk; extra == "all"
72
72
  Provides-Extra: dev
73
- Requires-Dist: acryl-datahub[dev]; extra == "dev"
73
+ Requires-Dist: pandas; extra == "dev"
74
+ Requires-Dist: duckdb; extra == "dev"
75
+ Requires-Dist: numpy<2; extra == "dev"
76
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
77
+ Requires-Dist: tenacity; extra == "dev"
78
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
79
+ Requires-Dist: pydantic<2; extra == "dev"
74
80
  Requires-Dist: scipy<=1.14.1; extra == "dev"
81
+ Requires-Dist: zenpy; extra == "dev"
82
+ Requires-Dist: boto3; extra == "dev"
75
83
  Requires-Dist: termcolor==2.5.0; extra == "dev"
76
- Requires-Dist: jinja2; extra == "dev"
77
- Requires-Dist: pyarrow<=18.0.0; extra == "dev"
78
84
  Requires-Dist: openai; extra == "dev"
79
- Requires-Dist: boto3; extra == "dev"
85
+ Requires-Dist: jinja2; extra == "dev"
86
+ Requires-Dist: acryl-datahub[dev]; extra == "dev"
80
87
  Requires-Dist: slack-sdk; extra == "dev"
81
- Requires-Dist: zenpy; extra == "dev"
82
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
83
- Requires-Dist: numpy<2; extra == "dev"
84
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
85
- Requires-Dist: tenacity; extra == "dev"
86
- Requires-Dist: pandas; extra == "dev"
87
- Requires-Dist: duckdb; extra == "dev"
88
88
  Requires-Dist: pyarrow; extra == "dev"
89
- Requires-Dist: pydantic<2; extra == "dev"
90
89
  Requires-Dist: polars==1.23.0; extra == "dev"
90
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
91
91
  Dynamic: provides-extra
92
92
  Dynamic: requires-dist
@@ -1,15 +1,18 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=8tMhekiu0sajQSvSWvyZOdtkGA4cwH8YKFw3ryU8GHU,558
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=G7mIiA360yhfce4TPhVp6rV1Snk7iyH5TcrOLKhKjJ0,556
3
3
  acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ acryl_datahub_cloud/_sdk_extras/__init__.py,sha256=iVa-k7Ghrwp-qPmJihuJlh4PWEFzTE-cBrB5Re-eMwk,188
5
+ acryl_datahub_cloud/_sdk_extras/assertion.py,sha256=Qwai8A1-lQH9An0AlxFTeUhh2CIwPUoO1J_-3NPRKvc,473
6
+ acryl_datahub_cloud/_sdk_extras/assertions_client.py,sha256=6qoOh8YOFSYb8_Ah2YpW8jt5pzZHJdvT0_0aP3yDPb0,664
4
7
  acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=2pAA7GrRfVUvVCxPAgxi4BVgpwq9F_bvVWfjtkjAHVg,25231
8
+ acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
6
9
  acryl_datahub_cloud/acryl_cs_issues/acryl_linear.py,sha256=PH1fEKwG7ZNdQNw_KUTeyEjatyAMAp-E-rcveLc0VDI,6082
7
10
  acryl_datahub_cloud/acryl_cs_issues/acryl_slack.py,sha256=SCDnFG-wqK3W_OPXJQB-gDyMawtVWT0st_iC0Y9LN1Y,16211
8
11
  acryl_datahub_cloud/acryl_cs_issues/acryl_zendesk.py,sha256=eFS08VOzrUf9xgVmUEGxjY4vGyOlY5llIxJr8bcy5_g,5937
9
12
  acryl_datahub_cloud/acryl_cs_issues/models.py,sha256=6VvZjA-gInrG71kTzwN7y4lP-QsLcxhknVxNT2-cQEo,13459
10
13
  acryl_datahub_cloud/acryl_cs_issues/source.py,sha256=XwRfIs9x6mW7fbPwHLvyud9SJcr3Z2ZBoP-a3wYF2Pc,15999
11
14
  acryl_datahub_cloud/action_request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- acryl_datahub_cloud/action_request/action_request_owner_source.py,sha256=8PrSrd4PUiTo_78RAX5B0sY-OvVh5bK_zTLO28iKkAU,6299
15
+ acryl_datahub_cloud/action_request/action_request_owner_source.py,sha256=illBhfLMo3N0RwF4OkRLqXNiJ9JeaQJxmWxbi0j49u0,6298
13
16
  acryl_datahub_cloud/api/__init__.py,sha256=odqk3YUMCTlGZrZ7NmFFaGNgERcdT0ms4OSVS3k1a28,68
14
17
  acryl_datahub_cloud/api/client.py,sha256=6BXCNbmC4K4dbGfkTXgbSqHabt90PjpEAgb52m7XRX0,145
15
18
  acryl_datahub_cloud/datahub_metadata_sharing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -18,8 +21,8 @@ acryl_datahub_cloud/datahub_metadata_sharing/query.py,sha256=7Wc7Vtqdh2Ule5HMe0L
18
21
  acryl_datahub_cloud/datahub_metadata_sharing/scroll_shared_entities.gql,sha256=Nups4Pwc7_DFm0-Z5Gh22HWq44GpoADNuYCK5YM8BrI,3908
19
22
  acryl_datahub_cloud/datahub_metadata_sharing/share_entity.gql,sha256=tJ0VkAekRQCxZ3TkaC0nVqMHQoILqf2J6J-HfbSRL0U,286
20
23
  acryl_datahub_cloud/datahub_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=Vn7BMQAiUF9aLlfa1uSX8yQivsljx2985hMRa1AtSmY,19293
22
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=iWJg3RQ_n8_sdvzRxWBGc3EVA0q60Hc1hmZodyZLhLs,21969
24
+ acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=tDxWiXjZCpc5LcMF_ADb7eJbRZFSfa9Z0VS2408ekIo,19095
25
+ acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=ao70x2r-Nv-YhartMkvJ78bORPqzTs6lKwPI7IzokTw,22139
23
26
  acryl_datahub_cloud/datahub_reporting/extract_graph.py,sha256=n8DXMbGlAllWh5FcQ4bnUf3HYOiNYsSodWomigtmfWA,7896
24
27
  acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=H5y3e35RuwXk23trhcCKsjFkStGlXZiYzdIYf0213Hw,9537
25
28
  acryl_datahub_cloud/datahub_reporting/forms.py,sha256=WUmJ3DLcKn4VcSplZFxmzdPrxQY2mYKqKc7hk8XZ9_Q,5939
@@ -30,17 +33,17 @@ acryl_datahub_cloud/datahub_restore/source.py,sha256=i4NJ3os4mzAnOHnmR-OaHxVUe4r
30
33
  acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
34
  acryl_datahub_cloud/datahub_usage_reporting/query_builder.py,sha256=hBHJRbsPJBeVpbu_QgCrFHQAR0cxAep2fGYkbFPahpc,5892
32
35
  acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=SOYl3xaZbWoY-V9oanLgzMTSCUB2AAayL3sCVGlymXY,14448
33
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=vBVDN8h_5P59Weqln0hDOJOJbHrN3_1AdzAKVf3iF2o,66943
36
+ acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=hWqvp5qP2J9DrbkNeAsb-ux5DjmggC3mRzpvyt6TMXc,66428
34
37
  acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
38
  acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
36
39
  acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
37
40
  acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
41
  acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
39
42
  acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
40
- acryl_datahub_cloud/metadata/schema.avsc,sha256=6C74Xyf7EJfMd0jqcuOnukjpbnZVsyRz4Hw2HiLleO4,1061720
41
- acryl_datahub_cloud/metadata/schema_classes.py,sha256=fNaqxjGnesuoAsFTAiqNVD0iYwGJrlKPtNOllKGtRh4,1465452
43
+ acryl_datahub_cloud/metadata/schema.avsc,sha256=9VPkBbfBKHRlDFIbAei3Mmfvrbu3p1sR3S0JwQQdGvs,1066430
44
+ acryl_datahub_cloud/metadata/schema_classes.py,sha256=QYJ-wdylrRJpvBATA7efZGkdlfob5Q7KEDJsZj7EnLY,1472529
42
45
  acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
43
- acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=3jOTikGWFufW6jKB5-Qp21FbS-6WJ9FgFrXQBT8uS38,159290
46
+ acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=dBTuZvnmpbj8wBY-AF1DFySje0jNHmwC8n0KR20MF3s,161651
44
47
  acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
45
48
  acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
46
49
  acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
@@ -51,7 +54,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/action/__init__.py,sha256
51
54
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionrequest/__init__.py,sha256=vtlFiz0hWtPezweYsp8dJIb_JkbS0bADkK1bLYuMmOk,1818
52
55
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ai/__init__.py,sha256=5KsPzzfbk6D4z6ld1hXSpzoH2VndqFwKk-q83rMndLs,772
53
56
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py,sha256=D_1FX-evDTjvbNow603v6OMo0qJylHiu0PXxSU3asjg,709
54
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py,sha256=bdKjRoALIT5rAyFliiO0nB2Y542S1Ifw98qgXuJHML4,7122
57
+ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py,sha256=LTvHysqOGrP7zrkIW5kKNagELc_GywVR988LgYNOsJg,7214
55
58
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/businessattribute/__init__.py,sha256=N8kO-eUi0_Rt7weizIExxlnJ2_kZRtPrZLWCC1xtDMA,653
56
59
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/chart/__init__.py,sha256=RNyyHLBNp_fxgFcBOLWO2UsXR1ofD_JczcBdPEQSusg,848
57
60
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py,sha256=cPAGOTTYr98H34I0m2ruhEksK7Ilrsh4WYnaowTEd1c,8167
@@ -93,7 +96,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/inferred/__init__.py,sha2
93
96
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ingestion/__init__.py,sha256=1bfG2naq4iS_pwU4J-BVer_gfL0hDbJbnH0gh1MPNgA,871
94
97
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/link/__init__.py,sha256=4DfT4T_I6dh-iGk9LXYjrp98L9D66xZzM7Boqc7jmNg,388
95
98
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
96
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=m8T0ClxWlA6sCC3bVp6Kz21ZPeuouSdYT7wM4DpJVeY,6093
99
+ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=ltwGSp8xnNHRYquvA8ant0DFLYyh-gSs4fFfzPccfTM,6210
97
100
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
98
101
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/filter/__init__.py,sha256=DBP_QtxkFmC5q_kuk4dGjb4uOKbB4xKgqTWXGxmNbBQ,532
99
102
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/recommendation/__init__.py,sha256=6XhFJ-Qf_H8RkEG_kZV6TcUWa0z-RXNlze6MLhV85l4,927
@@ -103,7 +106,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/snapshot/__init_
103
106
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metric/__init__.py,sha256=x6J8Ehqg_dQGuc3cq4p8qYy8rHwBDYxthVm7A-D3zhM,1171
104
107
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ml/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
105
108
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ml/metadata/__init__.py,sha256=qefB0n1xilQHCPla80b39wdjHOYoVtzBJT2jGc2szkM,3309
106
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py,sha256=1ddXeKtB4Y-6OQW0OLce7s0v1Om27ExjyF_SrjvWElw,3719
109
+ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py,sha256=JB8fF4OZ8Y8ik_W0SLMF9boNH1iXrTiMg0d1B2km1e0,4202
107
110
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/mxe/__init__.py,sha256=LqGp9QTLk_tiSsbHMGSUH7uPG00Bf_qQIMiU7vtO4Tk,973
108
111
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notebook/__init__.py,sha256=BcjOsz4YeHQbLLBb4Im4uJ7ux1hGHquQDmiIOiDXVtE,901
109
112
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ownership/__init__.py,sha256=r813MW_bkP1ZpC2NJf7uCHEOapjebl611c90vryKX4A,302
@@ -143,12 +146,12 @@ acryl_datahub_cloud/metadata/schemas/AiInferenceMetadata.avsc,sha256=NxZqYu3hKy-
143
146
  acryl_datahub_cloud/metadata/schemas/AnomaliesSummary.avsc,sha256=EhwcEm-B4pSpYKlUWyYcytNvmA4vnpmzhA7QhJUi4nU,3477
144
147
  acryl_datahub_cloud/metadata/schemas/AnomalyKey.avsc,sha256=Q-egJ8n2kZnbLVJ032bwd4F4iOcFO3fy8onO4GepoPE,358
145
148
  acryl_datahub_cloud/metadata/schemas/AssertionActions.avsc,sha256=zrvXzX2Nv_dmK6I3ZXCVWQ1bVs1q01Gl9sDRJA8oSDU,1618
146
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=Y72BFnerI_iTnMD5CQLGJD5WT5lVxqr0OpNz6Z-TMJ4,220880
149
+ acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=YDRW2_KlyJm6kJg4XKmBmgqtFvnPleJpVcOaONJnf6Y,221943
147
150
  acryl_datahub_cloud/metadata/schemas/AssertionDryRunEvent.avsc,sha256=uXrBr18Nx-qFCBGRCFKmHDxrFjfkOipTkVl6W5ieXyw,10366
148
151
  acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=H33ua52l2Jd72voNkwfHeB5V3aWWiJEAKrCFDNOm66I,13494
149
152
  acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=DpalR0rl7gkPa0aL4w_YXXAglpnRyYorOi8DvtbjyKY,136286
150
153
  acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=j3fJgSlz7YqprtMwZTQaujePRmmMeQEEJATa__eO_SI,790
151
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=W7nQPLqjycSzRX_8jy44-vpy68fsXWxYOgvks-26y4M,221861
154
+ acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=7zhcPzUdrQbS4AeEZvSYpfmqP41YUDbZptq6lXb8wRI,222924
152
155
  acryl_datahub_cloud/metadata/schemas/AssertionSummary.avsc,sha256=wuSb0f7OFPV3IIQahnjycm21ZVqWnDatvV3Vt6fvKdo,1207
153
156
  acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=7gzgianKh5MnTG9J4O9dfQs0lrRUj4r50dvMHHCigZY,5258
154
157
  acryl_datahub_cloud/metadata/schemas/BatchTestRunEvent.avsc,sha256=EPzwsRVMzBYCVRxug_LynjxRGkzv7QwFjw_zkJFBZAg,10083
@@ -182,7 +185,7 @@ acryl_datahub_cloud/metadata/schemas/CostFeatures.avsc,sha256=hY9E4ZTGIUn_fGLHck
182
185
  acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc,sha256=wWMMqAA4aO5ZDSWyWfq9DHacid8TwXG7IEWZ-l4K-4o,13472
183
186
  acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc,sha256=moxrK-DEBhotgCbr-tGb0DGuzaXtERkhgN9ewjJC0cQ,1481
184
187
  acryl_datahub_cloud/metadata/schemas/DashboardUsageStatistics.avsc,sha256=pUAKqs49Wy5pAL92g_6QcFtJeoYeMWRGiHWS68IJN2A,7693
185
- acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc,sha256=Oceu7P26--E0812IFrX3RiEY0Ktam869iiYN30zBudc,481
188
+ acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc,sha256=m0ej_Wu7NcuZQCRwQI3Sidfv9bUy5mvuhlpgax6i1xA,511
186
189
  acryl_datahub_cloud/metadata/schemas/DataContractProperties.avsc,sha256=9TyxmbasXY7mJ4PZseMrqw7QQjGRdNkE2qq84MPALSE,5901
187
190
  acryl_datahub_cloud/metadata/schemas/DataContractStatus.avsc,sha256=5yvT43AIB13Dn_h0-4s7fsL7BTuXhkK5pi2KJug4_qg,1029
188
191
  acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc,sha256=cThSl1UjYZyhaLlZGslBcseGja5udBbSAKP3yAsVUfc,4816
@@ -199,6 +202,7 @@ acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc,sha256=CSmoO
199
202
  acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeDefinition.avsc,sha256=9VkY6lNIeuJt_LoTsVAR6FJUY5TO4emG2QRYWELObIQ,5836
200
203
  acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeEvent.avsc,sha256=pB2csjB50ejZ5e4oFYYBGUAVV743u5beSh94e3fDZXI,5276
201
204
  acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeKey.avsc,sha256=vvGjm329gFtIcPj5LC2QT-KRKbiydFD8SmC7WWsIw6E,527
205
+ acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc,sha256=q6ZyMoxInwmrkrXkUgMe-i-WZzAxbjcvJ-EI99SnEp8,599
202
206
  acryl_datahub_cloud/metadata/schemas/DataHubPersonaInfo.avsc,sha256=aAi4gMpOZaJCz3JL3uOYfZsxWWUJOsdboK3GVftX9HI,521
203
207
  acryl_datahub_cloud/metadata/schemas/DataHubPersonaKey.avsc,sha256=ddj-DhXa0_YMdLaGkKLLSklfIeDRvSwPXu8o__YEXUE,448
204
208
  acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc,sha256=mK8tvgX4hDYuck2R6EihKSYzo6s8hNvvA_hgTOgMrFc,9397
@@ -234,7 +238,7 @@ acryl_datahub_cloud/metadata/schemas/DataProcessInstanceRunEvent.avsc,sha256=zwT
234
238
  acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc,sha256=rREzqaumahWh4LRhg0fEH1ZrcgiCZuu8brtK9ziRZwo,2384
235
239
  acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc,sha256=GpDAm4bD8RNIHvobSzZsGU5pOs_CMuY9zWZyTDIazFI,670
236
240
  acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc,sha256=nYEK6JgpTprU0iZaqWLZsBGYJLkh6HCi1qCu-wbYhvM,6925
237
- acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc,sha256=wDng1GK9znVoK0INHGiSCSa-AH5MrDkVdMzz4wOWmrY,2011
241
+ acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc,sha256=nHTH6UzJ2Zz88N2aWa96hawLUR20HP7eSynfPtI1kzg,2111
238
242
  acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc,sha256=MCjzal71P8uIXZg161LrU8rZTJocZeizK-YxYA0Det0,704
239
243
  acryl_datahub_cloud/metadata/schemas/DataTypeKey.avsc,sha256=Gs5uc_azwg10e36ZbwDTFQMevr0IfiFvJoEGHRzEilw,546
240
244
  acryl_datahub_cloud/metadata/schemas/DatahubIngestionCheckpoint.avsc,sha256=m2Zyrx3ZWDc5gHuwbmBSRJ3JN4NFkpUhDEKM2Yeuqrw,5681
@@ -319,7 +323,7 @@ acryl_datahub_cloud/metadata/schemas/MLFeatureTableProperties.avsc,sha256=Btrqcs
319
323
  acryl_datahub_cloud/metadata/schemas/MLHyperParam.avsc,sha256=dE6i5r6LTYMNrQe9yy-jKoP09GOJUf__1bO69ldpydc,833
320
324
  acryl_datahub_cloud/metadata/schemas/MLMetric.avsc,sha256=y8WPVVwjhu3YGtqpFFJYNYK8w778RRL_d2sHG1Dc7uM,804
321
325
  acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc,sha256=UQqoNqZeTS8wWOFUXBJGH9VmBEI83rRaIhR7UMUifco,2551
322
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc,sha256=TEZPa6iWSd359NPcpq18YX2gzD5iL06fU2hbnPqwRtU,5476
326
+ acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc,sha256=VbEkvciFOPEQ0FkrJJtjdu5VqWWFq_aNDV5FcCpxJ6U,5547
323
327
  acryl_datahub_cloud/metadata/schemas/MLModelFactorPrompts.avsc,sha256=8kX-P4F4mVLFT980z3MwIautt1_6uA-c_Z87nYNDK-k,2712
324
328
  acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc,sha256=KGsxKObvI9FOZbWhJANUxy_hPm9eH1Q1OXrMmWuB_ic,2750
325
329
  acryl_datahub_cloud/metadata/schemas/MLModelGroupProperties.avsc,sha256=FkoKRYMKhC5zDFtYXymJ1UCoI71dZq7tdvvRGxjFkJ0,6991
@@ -328,12 +332,12 @@ acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc,sha256=-iJy0wMeKiJDt
328
332
  acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc,sha256=8IuJ_R6DW65mTrz45L6CavSPeELLiwHVaCsVAFt-PQI,1185
329
333
  acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc,sha256=9unOw5ZdIaNj8eQut5I16LWy1FeIWUtsRjiKw-myWd4,6918
330
334
  acryl_datahub_cloud/metadata/schemas/MLTrainingRunProperties.avsc,sha256=WGgj0MuQrGD4UgvyHCJHzTnHja2LlJTOr1gLu8SySj0,4269
331
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=j-j4lhXKo2B5jpu1NAghnSF0y6NaJWmWq8cZ4iJHA3Y,425841
332
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=mpdodpx25E6M1Gq_7slEcPAm-1Es5xPsoqV60HgO7zg,12167
333
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=EMfQrYsuHf1p6UvBjoLtfdTHGe-vGNJaCFEHz8hdKU0,9698
335
+ acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=1xcT_U5QNj0rLMYgr-HzwiNvzgN3mHhO8xfL6OXAN_E,426038
336
+ acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=Cf5eECeShCA_XHFr2MRhRQpPE61F6Xv-z1jjoBLJLgc,12239
337
+ acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=tvO5cGIqZAIvUbMon1RAKgSY4E0jvBqT5VmLWAuNGkY,9770
334
338
  acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
335
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc,sha256=xsWDolR9ZiT3xwJ8xlK-33KEiGK4HwjMmaxcCu1Ru84,8517
336
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=uVI0_wkFJ3n9NFBeaO_8cNxPzBBZ-oXM3blajB-YGoY,298542
339
+ acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc,sha256=NWKF6ndl5EptBVFOcEbjmPrXTZccY293kO1WHYGH32w,8931
340
+ acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=o2OUQGBmv4OEAgP_ULzYgNAVTbJzysX987TXhwYBDho,301258
337
341
  acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc,sha256=NZwKD7jLXDsXRML2jTm-vkYoe7wJiuAKBOVpvZRYIX0,898
338
342
  acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc,sha256=m8ZSWc6IU0YRXI10eWKSS-Macy7e1noq8zBAZkt02WQ,37820
339
343
  acryl_datahub_cloud/metadata/schemas/MonitorSuiteKey.avsc,sha256=-bpGsyeoLcsUVPaHvZBvm4ZvItc94SYttkvd6x56XuE,438
@@ -357,7 +361,7 @@ acryl_datahub_cloud/metadata/schemas/PostKey.avsc,sha256=2TKbhL7NY7L37rIUjLTXIuS
357
361
  acryl_datahub_cloud/metadata/schemas/Proposals.avsc,sha256=Z_psjYg3IjXUeWW-MArIhcP8ogNaoIfLbVtDwhgdxEY,1254
358
362
  acryl_datahub_cloud/metadata/schemas/QuantitativeAnalyses.avsc,sha256=XrGYVoGUh7ZRjAbMORSiqF5Zl4a0IbYDPiQuSJhABZM,960
359
363
  acryl_datahub_cloud/metadata/schemas/QueryKey.avsc,sha256=v6ZlJ9fQzOpLCkpSSB1A7snuiHKRvbJpCEPXvLhX1DI,571
360
- acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc,sha256=fiLYT539EM0jVEAngWXC7P9QnnIMoEsAaUp7nClwu0s,5509
364
+ acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc,sha256=26Q3zzuzJbUCUG7IJ3q_OEdcNbyzloZzDJWPbv3GQAk,5589
361
365
  acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc,sha256=WbnUGiOBdc1Ypn4P_R5gCfPH-wNHJUIk7YeyJ2NiOZQ,1747
362
366
  acryl_datahub_cloud/metadata/schemas/QueryUsageFeatures.avsc,sha256=8SpJcoybIh_fEiMxlIFSQHzBq3Wfaxj5h5RALOtT-gs,2133
363
367
  acryl_datahub_cloud/metadata/schemas/QueryUsageStatistics.avsc,sha256=z1gfAnXdBoPEeERi5RESjrdBuS6AcIdqdN5JqWOSuNo,6192
@@ -393,6 +397,7 @@ acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNl
393
397
  acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
394
398
  acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=HXrPHYK4kbIVt8Q03L5XfEP3QSI7UaI_QZdN2a8iVTU,15581
395
399
  acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=ChdTAOA1c6Ojx3HqNPDfQaupwezhp7SLUOmgIaeSD2Q,486
400
+ acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc,sha256=wDVdpa9LSAlMzHIiWw-fMLHTCrxcJdnDOY_n5CDNTN8,2068
396
401
  acryl_datahub_cloud/metadata/schemas/TagKey.avsc,sha256=YINS5zatQp8rwwZRccFPSGeBj5mcaVEcK247TMluwJs,671
397
402
  acryl_datahub_cloud/metadata/schemas/TagProperties.avsc,sha256=Qzttxd7BB38JUwwl7tZzIV1Warnh-uQO-Ahw9Sd-vH4,883
398
403
  acryl_datahub_cloud/metadata/schemas/TelemetryClientId.avsc,sha256=GScej0kXFZxoBUcRVrVynzArFSYQpO_dnhY5Po5dlx0,408
@@ -410,8 +415,8 @@ acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh
410
415
  acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=fxNxEMxGdUDi_-T0sd6KJks5BWEo5AzboQxpZYKLbiQ,1434
411
416
  acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
412
417
  acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
413
- acryl_datahub_cloud-0.3.10.3rc2.dist-info/METADATA,sha256=FpTypkptl9TnQQRC172miz76kcHuqFXtVcDXrdLu1QU,4543
414
- acryl_datahub_cloud-0.3.10.3rc2.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
415
- acryl_datahub_cloud-0.3.10.3rc2.dist-info/entry_points.txt,sha256=oXC4Hq3nxUKi9LR5NwsY17q6anLmYJKbapTx9Ij6vuc,1205
416
- acryl_datahub_cloud-0.3.10.3rc2.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
417
- acryl_datahub_cloud-0.3.10.3rc2.dist-info/RECORD,,
418
+ acryl_datahub_cloud-0.3.11rc1.dist-info/METADATA,sha256=bZrCv9uzkdhsJLDdepNh2q9BOCffIxBDAmldL64eBeY,4541
419
+ acryl_datahub_cloud-0.3.11rc1.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
420
+ acryl_datahub_cloud-0.3.11rc1.dist-info/entry_points.txt,sha256=oXC4Hq3nxUKi9LR5NwsY17q6anLmYJKbapTx9Ij6vuc,1205
421
+ acryl_datahub_cloud-0.3.11rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
422
+ acryl_datahub_cloud-0.3.11rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.0.0)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5