acryl-datahub-cloud 0.3.11.1rc8__py3-none-any.whl → 0.3.12rc1__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/_sdk_extras/__init__.py +17 -2
- acryl_datahub_cloud/_sdk_extras/assertion.py +603 -8
- acryl_datahub_cloud/_sdk_extras/assertion_input.py +1074 -0
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +705 -11
- acryl_datahub_cloud/_sdk_extras/entities/__init__.py +0 -0
- acryl_datahub_cloud/_sdk_extras/entities/assertion.py +425 -0
- acryl_datahub_cloud/_sdk_extras/entities/monitor.py +291 -0
- acryl_datahub_cloud/_sdk_extras/entities/subscription.py +84 -0
- acryl_datahub_cloud/_sdk_extras/errors.py +34 -0
- acryl_datahub_cloud/_sdk_extras/resolver_client.py +39 -0
- acryl_datahub_cloud/_sdk_extras/subscription_client.py +565 -0
- acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2023 -2023
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +4 -0
- acryl_datahub_cloud/metadata/schema.avsc +24889 -25252
- acryl_datahub_cloud/metadata/schema_classes.py +1133 -1008
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +189 -201
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +2 -2
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +27 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +21 -9
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +12 -4
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/METADATA +46 -46
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/RECORD +37 -28
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/top_level.txt +0 -0
|
@@ -161,16 +161,18 @@
|
|
|
161
161
|
"type": {
|
|
162
162
|
"type": "enum",
|
|
163
163
|
"symbolDocs": {
|
|
164
|
-
"INFERRED_ASSERTION_FAILURE": "An assertion has failed, triggering the anomaly."
|
|
164
|
+
"INFERRED_ASSERTION_FAILURE": "An assertion has failed, triggering the anomaly report.",
|
|
165
|
+
"USER_FEEDBACK": "An anomaly was reported by a user."
|
|
165
166
|
},
|
|
166
167
|
"name": "AnomalySourceType",
|
|
167
168
|
"namespace": "com.linkedin.pegasus2avro.anomaly",
|
|
168
169
|
"symbols": [
|
|
169
|
-
"INFERRED_ASSERTION_FAILURE"
|
|
170
|
+
"INFERRED_ASSERTION_FAILURE",
|
|
171
|
+
"USER_FEEDBACK"
|
|
170
172
|
]
|
|
171
173
|
},
|
|
172
174
|
"name": "type",
|
|
173
|
-
"doc": "
|
|
175
|
+
"doc": "How this feedback was provided."
|
|
174
176
|
},
|
|
175
177
|
{
|
|
176
178
|
"TimeseriesField": {},
|
|
@@ -183,9 +185,19 @@
|
|
|
183
185
|
],
|
|
184
186
|
"name": "sourceUrn",
|
|
185
187
|
"default": null,
|
|
186
|
-
"doc": "Reference to an URN related to the source of an anomaly.\
|
|
188
|
+
"doc": "Reference to an URN related to the source of an anomaly.\nFor assertion monitors, this will contain the urn of the source Assertion.",
|
|
187
189
|
"Urn": "Urn"
|
|
188
190
|
},
|
|
191
|
+
{
|
|
192
|
+
"TimeseriesField": {},
|
|
193
|
+
"type": [
|
|
194
|
+
"null",
|
|
195
|
+
"long"
|
|
196
|
+
],
|
|
197
|
+
"name": "sourceEventTimestampMillis",
|
|
198
|
+
"default": null,
|
|
199
|
+
"doc": "The timestamp of the event that triggered the anomaly.\nFor assertion monitors, this will be the timestamp of the assertion run event."
|
|
200
|
+
},
|
|
189
201
|
{
|
|
190
202
|
"type": [
|
|
191
203
|
"null",
|
|
@@ -225,10 +237,10 @@
|
|
|
225
237
|
],
|
|
226
238
|
"name": "properties",
|
|
227
239
|
"default": null,
|
|
228
|
-
"doc": "Additional properties about the source, for example which
|
|
240
|
+
"doc": "Additional properties about the source, for example which metric\nof an assertion generated the anomaly."
|
|
229
241
|
}
|
|
230
242
|
],
|
|
231
|
-
"doc": "Information about the source of an anomaly raised on an asset."
|
|
243
|
+
"doc": "Information about the source of feedback for an anomaly raised on an asset."
|
|
232
244
|
},
|
|
233
245
|
"name": "source",
|
|
234
246
|
"doc": "The source of an anomaly, i.e. how it was generated."
|
|
@@ -262,14 +274,14 @@
|
|
|
262
274
|
"doc": "A standard event timestamp"
|
|
263
275
|
},
|
|
264
276
|
"name": "created",
|
|
265
|
-
"doc": "
|
|
277
|
+
"doc": "@Deprecated: this matches the timestampMillis field in the TimeseriesAspectBase."
|
|
266
278
|
},
|
|
267
279
|
{
|
|
268
280
|
"TimeseriesField": {},
|
|
269
281
|
"type": "com.linkedin.pegasus2avro.common.TimeStamp",
|
|
270
282
|
"name": "lastUpdated",
|
|
271
|
-
"doc": "The time at which the
|
|
283
|
+
"doc": "The time at which the anomaly was last updated\n@Deprecated: this field is not used as this is an immutable log."
|
|
272
284
|
}
|
|
273
285
|
],
|
|
274
|
-
"doc": "
|
|
286
|
+
"doc": "A feedback log of anomalies detected by a monitor\nNOTE: this is an immutable log. The most recent entry for a given run can be used to determine the state of the anomaly."
|
|
275
287
|
}
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"type": "enum",
|
|
44
44
|
"symbolDocs": {
|
|
45
45
|
"ASSERTION": "A monitor responsible for evaluating Assertions.",
|
|
46
|
-
"FRESHNESS": "A monitor responsible for evaluating system freshness monitors"
|
|
46
|
+
"FRESHNESS": "A monitor responsible for evaluating system freshness monitors - This is not used"
|
|
47
47
|
},
|
|
48
48
|
"name": "MonitorType",
|
|
49
49
|
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"symbolDocs": {
|
|
69
69
|
"ACTIVE": "The monitor should be actively operating.",
|
|
70
70
|
"INACTIVE": "The monitor is not actively operating.",
|
|
71
|
-
"PASSIVE": "The monitor is running in passive mode.\nFor assertion monitors, this means that assertions will be run in dry mode."
|
|
71
|
+
"PASSIVE": "The monitor is running in passive mode.\nFor assertion monitors, this means that assertions will be run in dry mode.\nThis is for internal troubleshooting purposes."
|
|
72
72
|
},
|
|
73
73
|
"name": "MonitorMode",
|
|
74
74
|
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
@@ -1878,7 +1878,7 @@
|
|
|
1878
1878
|
},
|
|
1879
1879
|
"type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
|
|
1880
1880
|
"name": "field",
|
|
1881
|
-
"doc": "The field under evaluation"
|
|
1881
|
+
"doc": "The field path under evaluation"
|
|
1882
1882
|
},
|
|
1883
1883
|
{
|
|
1884
1884
|
"type": {
|
|
@@ -3166,6 +3166,14 @@
|
|
|
3166
3166
|
"doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
|
|
3167
3167
|
},
|
|
3168
3168
|
{
|
|
3169
|
+
"Searchable": {
|
|
3170
|
+
"/created/actor": {
|
|
3171
|
+
"fieldName": "creator",
|
|
3172
|
+
"fieldType": "URN",
|
|
3173
|
+
"filterNameOverride": "Created By",
|
|
3174
|
+
"hasValuesFieldName": "hasCreator"
|
|
3175
|
+
}
|
|
3176
|
+
},
|
|
3169
3177
|
"type": [
|
|
3170
3178
|
"null",
|
|
3171
3179
|
{
|
|
@@ -3500,7 +3508,7 @@
|
|
|
3500
3508
|
}
|
|
3501
3509
|
},
|
|
3502
3510
|
"name": "assertions",
|
|
3503
|
-
"doc": "Specs for each assertion to evaluate"
|
|
3511
|
+
"doc": "Specs for each assertion to evaluate\nThis will always have 1 reference. Modelling error caused it to be an array.\nIf it is != 1 then we have data corruption."
|
|
3504
3512
|
},
|
|
3505
3513
|
{
|
|
3506
3514
|
"type": [
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
"TAG_REMOVED",
|
|
510
510
|
"TAG_PROPOSED"
|
|
511
511
|
],
|
|
512
|
-
"doc": "Enum to define change types that can trigger a subscription."
|
|
512
|
+
"doc": "Enum to define change types that can trigger a notification for a subscription."
|
|
513
513
|
},
|
|
514
514
|
"name": "entityChangeType",
|
|
515
515
|
"doc": "Change type that triggers a notification for the subscription."
|
|
@@ -377,6 +377,23 @@
|
|
|
377
377
|
"type": "long",
|
|
378
378
|
"name": "lastUpdatedTimestamp",
|
|
379
379
|
"doc": "The time at which the operation occurred. Would be better named 'operationTime'"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"TimeseriesFieldCollection": {
|
|
383
|
+
"key": "query"
|
|
384
|
+
},
|
|
385
|
+
"type": [
|
|
386
|
+
"null",
|
|
387
|
+
{
|
|
388
|
+
"type": "array",
|
|
389
|
+
"items": "string"
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"name": "queries",
|
|
393
|
+
"default": null,
|
|
394
|
+
"doc": "Which queries were used in this operation.",
|
|
395
|
+
"Urn": "Urn",
|
|
396
|
+
"urn_is_array": true
|
|
380
397
|
}
|
|
381
398
|
],
|
|
382
399
|
"doc": "Operational info for an entity."
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "string",
|
|
17
17
|
"name": "actorUrn",
|
|
18
|
-
"doc": "Actor Urn",
|
|
18
|
+
"doc": "Actor Urn who will be notified ",
|
|
19
19
|
"Urn": "Urn"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
],
|
|
120
120
|
"name": "entityUrn",
|
|
121
121
|
"default": null,
|
|
122
|
-
"doc": "Optional entity Urn",
|
|
122
|
+
"doc": "Optional entity Urn - top level for now (Dataset, container etc. )",
|
|
123
123
|
"Urn": "Urn"
|
|
124
124
|
},
|
|
125
125
|
{
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"TAG_REMOVED",
|
|
197
197
|
"TAG_PROPOSED"
|
|
198
198
|
],
|
|
199
|
-
"doc": "Enum to define change types that can trigger a subscription."
|
|
199
|
+
"doc": "Enum to define change types that can trigger a notification for a subscription."
|
|
200
200
|
},
|
|
201
201
|
"name": "entityChangeType",
|
|
202
202
|
"doc": "Change type that triggers a notification for the subscription."
|
|
@@ -15,10 +15,10 @@ import pathlib
|
|
|
15
15
|
def _load_schema(schema_name: str) -> str:
|
|
16
16
|
return (pathlib.Path(__file__).parent / f"{schema_name}.avsc").read_text()
|
|
17
17
|
|
|
18
|
-
def getMetadataChangeProposalSchema() -> str:
|
|
19
|
-
return _load_schema("MetadataChangeProposal")
|
|
20
|
-
|
|
21
18
|
def getMetadataChangeEventSchema() -> str:
|
|
22
19
|
return _load_schema("MetadataChangeEvent")
|
|
23
20
|
|
|
21
|
+
def getMetadataChangeProposalSchema() -> str:
|
|
22
|
+
return _load_schema("MetadataChangeProposal")
|
|
23
|
+
|
|
24
24
|
# fmt: on
|
{acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/METADATA
RENAMED
|
@@ -1,92 +1,92 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.12rc1
|
|
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:
|
|
7
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
8
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
8
9
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
10
|
+
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
9
11
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
10
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
11
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
14
|
-
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
15
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
16
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
17
13
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
18
14
|
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
15
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
16
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: pydantic<2; 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: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
21
|
-
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
22
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
23
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
24
20
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
21
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
25
22
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
23
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
24
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
25
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
26
26
|
Provides-Extra: datahub-reporting-extract-sql
|
|
27
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
28
|
-
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
29
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
30
27
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
31
28
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
29
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
30
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
31
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
32
32
|
Provides-Extra: datahub-usage-reporting
|
|
33
|
-
Requires-Dist:
|
|
33
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
34
34
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
35
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
36
36
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
37
37
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
38
|
-
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
39
|
-
Requires-Dist: polars==1.23.0; extra == "datahub-usage-reporting"
|
|
40
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
41
|
-
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
42
38
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: polars==1.23.0; extra == "datahub-usage-reporting"
|
|
43
41
|
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
44
42
|
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
43
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: termcolor==2.5.0; 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: jinja2; extra == "acryl-cs-issues"
|
|
51
|
-
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
52
50
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
53
51
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
52
|
+
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
53
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
54
54
|
Provides-Extra: all
|
|
55
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
56
|
+
Requires-Dist: tenacity; extra == "all"
|
|
57
|
+
Requires-Dist: jinja2; extra == "all"
|
|
55
58
|
Requires-Dist: pandas; extra == "all"
|
|
56
|
-
Requires-Dist:
|
|
57
|
-
Requires-Dist:
|
|
59
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
60
|
+
Requires-Dist: duckdb; extra == "all"
|
|
58
61
|
Requires-Dist: openai; extra == "all"
|
|
59
|
-
Requires-Dist: polars==1.23.0; extra == "all"
|
|
60
|
-
Requires-Dist: numpy<2; extra == "all"
|
|
61
62
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
63
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
64
64
|
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
65
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
66
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
66
67
|
Requires-Dist: pydantic<2; extra == "all"
|
|
67
|
-
Requires-Dist:
|
|
68
|
-
Requires-Dist:
|
|
69
|
-
Requires-Dist: duckdb; extra == "all"
|
|
70
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
68
|
+
Requires-Dist: zenpy; extra == "all"
|
|
69
|
+
Requires-Dist: polars==1.23.0; extra == "all"
|
|
71
70
|
Requires-Dist: slack-sdk; extra == "all"
|
|
71
|
+
Requires-Dist: boto3; extra == "all"
|
|
72
72
|
Provides-Extra: dev
|
|
73
|
-
Requires-Dist:
|
|
73
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
74
74
|
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
75
|
-
Requires-Dist:
|
|
76
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
77
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
78
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
75
|
+
Requires-Dist: tenacity; extra == "dev"
|
|
79
76
|
Requires-Dist: jinja2; extra == "dev"
|
|
77
|
+
Requires-Dist: pandas; extra == "dev"
|
|
78
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
80
79
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
81
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
82
|
-
Requires-Dist: openai; extra == "dev"
|
|
83
|
-
Requires-Dist: pyarrow; extra == "dev"
|
|
84
|
-
Requires-Dist: polars==1.23.0; extra == "dev"
|
|
85
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
86
|
-
Requires-Dist: tenacity; extra == "dev"
|
|
87
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
88
80
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
81
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
82
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
83
|
+
Requires-Dist: polars==1.23.0; extra == "dev"
|
|
84
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
85
|
+
Requires-Dist: openai; extra == "dev"
|
|
89
86
|
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
90
87
|
Requires-Dist: boto3; extra == "dev"
|
|
88
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
89
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
90
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
91
91
|
Dynamic: provides-extra
|
|
92
92
|
Dynamic: requires-dist
|
{acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/RECORD
RENAMED
|
@@ -1,9 +1,17 @@
|
|
|
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=JUSdM9g-9F78g3gB7DtvdgZF_DnIXM7b_9lC6RYvTmc,556
|
|
3
3
|
acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
acryl_datahub_cloud/_sdk_extras/__init__.py,sha256=
|
|
5
|
-
acryl_datahub_cloud/_sdk_extras/assertion.py,sha256=
|
|
6
|
-
acryl_datahub_cloud/_sdk_extras/
|
|
4
|
+
acryl_datahub_cloud/_sdk_extras/__init__.py,sha256=3eTmhItfTzn5LkBq_rC0kt3GwE4zu7WRpcZT4Va_swE,620
|
|
5
|
+
acryl_datahub_cloud/_sdk_extras/assertion.py,sha256=vtTpxDyT391tbK03beDuGnAv0bGWp-jbZ7vgcVuhn38,24218
|
|
6
|
+
acryl_datahub_cloud/_sdk_extras/assertion_input.py,sha256=_LVqxb0-nqf86RECKzW8ewNRJAnCxNRj_txy2kHdW2Y,42916
|
|
7
|
+
acryl_datahub_cloud/_sdk_extras/assertions_client.py,sha256=QBebkJGiBePfcxsN0Hl9p9IPDHrJ1jJFHZYLx9FcN_Q,34551
|
|
8
|
+
acryl_datahub_cloud/_sdk_extras/errors.py,sha256=UfaA-u9rp_XhqiWAeVF-PcjgCPxUKLXe0GVkWCuX8Ds,1038
|
|
9
|
+
acryl_datahub_cloud/_sdk_extras/resolver_client.py,sha256=X5qy7lewDZ4QarpFrQ7goWDaMSC60sie1srnD4zwyH4,1468
|
|
10
|
+
acryl_datahub_cloud/_sdk_extras/subscription_client.py,sha256=aA-5X6bAQBqj7hWebInv5e7tbN9aSSmjOCSKsEqWr1o,24377
|
|
11
|
+
acryl_datahub_cloud/_sdk_extras/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
acryl_datahub_cloud/_sdk_extras/entities/assertion.py,sha256=_Y9FmtshPAQHwackAWuabi4jA9y-pg317t7lIuuenYY,14706
|
|
13
|
+
acryl_datahub_cloud/_sdk_extras/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
14
|
+
acryl_datahub_cloud/_sdk_extras/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
7
15
|
acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
16
|
acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
9
17
|
acryl_datahub_cloud/acryl_cs_issues/acryl_linear.py,sha256=PH1fEKwG7ZNdQNw_KUTeyEjatyAMAp-E-rcveLc0VDI,6082
|
|
@@ -12,7 +20,7 @@ acryl_datahub_cloud/acryl_cs_issues/acryl_zendesk.py,sha256=eFS08VOzrUf9xgVmUEGx
|
|
|
12
20
|
acryl_datahub_cloud/acryl_cs_issues/models.py,sha256=6VvZjA-gInrG71kTzwN7y4lP-QsLcxhknVxNT2-cQEo,13459
|
|
13
21
|
acryl_datahub_cloud/acryl_cs_issues/source.py,sha256=XwRfIs9x6mW7fbPwHLvyud9SJcr3Z2ZBoP-a3wYF2Pc,15999
|
|
14
22
|
acryl_datahub_cloud/action_request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
acryl_datahub_cloud/action_request/action_request_owner_source.py,sha256=
|
|
23
|
+
acryl_datahub_cloud/action_request/action_request_owner_source.py,sha256=thLOkXfw1jw-QKNdt_zvgRhr8A0AlvtgrpLUPoxAl_c,7274
|
|
16
24
|
acryl_datahub_cloud/api/__init__.py,sha256=odqk3YUMCTlGZrZ7NmFFaGNgERcdT0ms4OSVS3k1a28,68
|
|
17
25
|
acryl_datahub_cloud/api/client.py,sha256=6BXCNbmC4K4dbGfkTXgbSqHabt90PjpEAgb52m7XRX0,145
|
|
18
26
|
acryl_datahub_cloud/datahub_metadata_sharing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,10 +48,10 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
|
|
|
40
48
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
49
|
acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
|
|
42
50
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
43
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
44
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
51
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=3iF90RdoyAqOUXlz4jGVbiyAEwTsHf_pnIHl9omC464,1156918
|
|
52
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=cOfPUOaO7kKRBHtGM-pjqrb4QxgzZx1LFUUPusQny9o,1478216
|
|
45
53
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
46
|
-
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=
|
|
54
|
+
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=aGgp0vKCO7UasqeTRnehGZzqDa3jeu8V42nJL9dSlaM,161651
|
|
47
55
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
48
56
|
acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
49
57
|
acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
|
|
@@ -54,7 +62,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/action/__init__.py,sha256
|
|
|
54
62
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionrequest/__init__.py,sha256=vtlFiz0hWtPezweYsp8dJIb_JkbS0bADkK1bLYuMmOk,1818
|
|
55
63
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ai/__init__.py,sha256=5KsPzzfbk6D4z6ld1hXSpzoH2VndqFwKk-q83rMndLs,772
|
|
56
64
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py,sha256=D_1FX-evDTjvbNow603v6OMo0qJylHiu0PXxSU3asjg,709
|
|
57
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py,sha256=
|
|
65
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py,sha256=M4AGZWpI0yQ34SMvAeyUvpiNkzdF3yeErnTY8eqRmNc,7223
|
|
58
66
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/businessattribute/__init__.py,sha256=N8kO-eUi0_Rt7weizIExxlnJ2_kZRtPrZLWCC1xtDMA,653
|
|
59
67
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/chart/__init__.py,sha256=RNyyHLBNp_fxgFcBOLWO2UsXR1ofD_JczcBdPEQSusg,848
|
|
60
68
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py,sha256=cPAGOTTYr98H34I0m2ruhEksK7Ilrsh4WYnaowTEd1c,8167
|
|
@@ -88,7 +96,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py,sha
|
|
|
88
96
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executor/__init__.py,sha256=0biDXQQFL8m6iB4TJQ0na9SNeZqDEgkxN6ajJlhr63k,311
|
|
89
97
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorglobalconfig/__init__.py,sha256=7Yr8lHdK8lJULuoO4ITXcMsdet4TXHqBlmPkLRL4ps4,341
|
|
90
98
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorpool/__init__.py,sha256=zJYY1GHU9kDizwKWfR0Sh2gWlyzNiqh1tckDhYzxQL8,552
|
|
91
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py,sha256=
|
|
99
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py,sha256=GEnho-MqpbMbOjM--yfYuNqeEnv2Nr2OAyiWdbp30J4,1575
|
|
92
100
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/glossary/__init__.py,sha256=fa1QNv08O3TqXqZ14bkJerGho_t-8DPHFdcWKiXkkUA,501
|
|
93
101
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py,sha256=wfPpGMWEVl1Ual_nFs7UNiYVB_Tq_vRfNmFfO-XkENU,1582
|
|
94
102
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/incident/__init__.py,sha256=H5c6L70xk6BvIbbDf5kLeigtRruzFKqYFmniybEUoP0,1603
|
|
@@ -146,13 +154,13 @@ acryl_datahub_cloud/metadata/schemas/AiInferenceMetadata.avsc,sha256=NxZqYu3hKy-
|
|
|
146
154
|
acryl_datahub_cloud/metadata/schemas/AnomaliesSummary.avsc,sha256=EhwcEm-B4pSpYKlUWyYcytNvmA4vnpmzhA7QhJUi4nU,3477
|
|
147
155
|
acryl_datahub_cloud/metadata/schemas/AnomalyKey.avsc,sha256=Q-egJ8n2kZnbLVJ032bwd4F4iOcFO3fy8onO4GepoPE,358
|
|
148
156
|
acryl_datahub_cloud/metadata/schemas/AssertionActions.avsc,sha256=zrvXzX2Nv_dmK6I3ZXCVWQ1bVs1q01Gl9sDRJA8oSDU,1618
|
|
149
|
-
acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=
|
|
157
|
+
acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=0zYmSnBPVJmcvtsJI2qu-EstgEnYWnNBUvEvFaJETIs,225416
|
|
150
158
|
acryl_datahub_cloud/metadata/schemas/AssertionDryRunEvent.avsc,sha256=uXrBr18Nx-qFCBGRCFKmHDxrFjfkOipTkVl6W5ieXyw,10366
|
|
151
159
|
acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=H33ua52l2Jd72voNkwfHeB5V3aWWiJEAKrCFDNOm66I,13494
|
|
152
|
-
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=
|
|
153
|
-
acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=
|
|
154
|
-
acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256
|
|
155
|
-
acryl_datahub_cloud/metadata/schemas/
|
|
160
|
+
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=iXpR0pqzYMnZJCUy2pVsK7vs7jujJOeQd75i9WNHO_Y,136515
|
|
161
|
+
acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=lMIHiRwL_jqOg3OHUSjdc_-PSgFPvcDoOtgxqR0DOg0,793
|
|
162
|
+
acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=-MLSqWKEUnpHR8M1FnohndhQjy4MsQ0QMKZMClMJtCk,223281
|
|
163
|
+
acryl_datahub_cloud/metadata/schemas/AssertionRunSummary.avsc,sha256=fLplWaSL9mLMSR3RG_BGAO7Kymmd1dBGBYc9VNNFRmY,1213
|
|
156
164
|
acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=7gzgianKh5MnTG9J4O9dfQs0lrRUj4r50dvMHHCigZY,5258
|
|
157
165
|
acryl_datahub_cloud/metadata/schemas/BatchTestRunEvent.avsc,sha256=EPzwsRVMzBYCVRxug_LynjxRGkzv7QwFjw_zkJFBZAg,10083
|
|
158
166
|
acryl_datahub_cloud/metadata/schemas/BrowsePaths.avsc,sha256=NR_4dKuJMk1X2RB4DLkHVSqyMQc4PvT7eR0n6lM5aOM,654
|
|
@@ -198,7 +206,7 @@ acryl_datahub_cloud/metadata/schemas/DataHubActionStatus.avsc,sha256=9OrdSvY6lUG
|
|
|
198
206
|
acryl_datahub_cloud/metadata/schemas/DataHubConnectionDetails.avsc,sha256=IvZj6OA7HRvy-ZIIn0UbXdJNnyt_oTn16XIe5ZlcqGk,1661
|
|
199
207
|
acryl_datahub_cloud/metadata/schemas/DataHubConnectionKey.avsc,sha256=n9pykqL4EBTLuFoVasxF-4a1v_5g578IrgXLPSLDxGQ,538
|
|
200
208
|
acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc,sha256=yp_nmFpxRTW88hsSX7gviqVTsA-s1vXtSxe1XHlJbG4,4606
|
|
201
|
-
acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc,sha256=
|
|
209
|
+
acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc,sha256=TGmm9WEGTaABs7kt5Uc-N-kbc5Sd-2sQwx-JpfAptvw,545
|
|
202
210
|
acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeDefinition.avsc,sha256=9VkY6lNIeuJt_LoTsVAR6FJUY5TO4emG2QRYWELObIQ,5836
|
|
203
211
|
acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeEvent.avsc,sha256=pB2csjB50ejZ5e4oFYYBGUAVV743u5beSh94e3fDZXI,5276
|
|
204
212
|
acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeKey.avsc,sha256=vvGjm329gFtIcPj5LC2QT-KRKbiydFD8SmC7WWsIw6E,527
|
|
@@ -285,7 +293,8 @@ acryl_datahub_cloud/metadata/schemas/ExecutionRequestResult.avsc,sha256=BKFKf7Yy
|
|
|
285
293
|
acryl_datahub_cloud/metadata/schemas/ExecutionRequestSignal.avsc,sha256=IG3w4nplDVzUVYcVjgdG7K98oyUgTBC1s5xY31Mp-UU,2525
|
|
286
294
|
acryl_datahub_cloud/metadata/schemas/Filter.avsc,sha256=HIZV9ClkSozTBEFzjS9YlLVFudrkjkMThY5Yx1EWQow,6176
|
|
287
295
|
acryl_datahub_cloud/metadata/schemas/FormInfo.avsc,sha256=f2CSunJE3dBp4oG0hfKixJiCs8acZjdGW5PSW51NymQ,19170
|
|
288
|
-
acryl_datahub_cloud/metadata/schemas/FormKey.avsc,sha256
|
|
296
|
+
acryl_datahub_cloud/metadata/schemas/FormKey.avsc,sha256=-qi8Pm_k055i7uJb-puEiMPJkZelLOR_-Y-Ii9XwU8E,459
|
|
297
|
+
acryl_datahub_cloud/metadata/schemas/FormSettings.avsc,sha256=jrEWsPQ93fII-47xw6neyaTS39RdXalommIUsym-0W4,660
|
|
289
298
|
acryl_datahub_cloud/metadata/schemas/Forms.avsc,sha256=nyQdv1BWPPO8P8ueOt7Q5GX1C-FT8ujgaFiuzzwvyeE,23076
|
|
290
299
|
acryl_datahub_cloud/metadata/schemas/GenericEntityKey.avsc,sha256=5L7OgN-0JRRZsAP87_vFNLQida-Qg5SgAWtr7FQhHaY,642
|
|
291
300
|
acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc,sha256=ZwA6HEt51LBviJkI48sNOXEFQl0cxaEQ5aPZd2UVD80,19090
|
|
@@ -336,10 +345,10 @@ acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=1xcT_U5QNj0
|
|
|
336
345
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=Cf5eECeShCA_XHFr2MRhRQpPE61F6Xv-z1jjoBLJLgc,12239
|
|
337
346
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=tvO5cGIqZAIvUbMon1RAKgSY4E0jvBqT5VmLWAuNGkY,9770
|
|
338
347
|
acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
|
|
339
|
-
acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc,sha256=
|
|
340
|
-
acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=
|
|
348
|
+
acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc,sha256=ctoQusjDpN-nQKJje0l453AQioRj0x74b-32lyA6414,9587
|
|
349
|
+
acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=idU_NbuYzINb875T0iB7kNAzfNrd7_DveQVe9f0wQtw,302013
|
|
341
350
|
acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc,sha256=NZwKD7jLXDsXRML2jTm-vkYoe7wJiuAKBOVpvZRYIX0,898
|
|
342
|
-
acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc,sha256=
|
|
351
|
+
acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc,sha256=tHI9WzNoBrjPG6QloxnwL-eMsJGHf1JI0oKxXlve3Cw,37839
|
|
343
352
|
acryl_datahub_cloud/metadata/schemas/MonitorSuiteKey.avsc,sha256=-bpGsyeoLcsUVPaHvZBvm4ZvItc94SYttkvd6x56XuE,438
|
|
344
353
|
acryl_datahub_cloud/metadata/schemas/MonitorTimeseriesState.avsc,sha256=1jXL_tvgZq4-4Y__7YUpdfzSbI4TiQgThSd1f23UwXc,4550
|
|
345
354
|
acryl_datahub_cloud/metadata/schemas/NativeGroupMembership.avsc,sha256=9mh9tzyj3ErmTIhX7ERRUm78j1QtGwXUl9UuIXPndBg,588
|
|
@@ -347,7 +356,7 @@ acryl_datahub_cloud/metadata/schemas/NotebookContent.avsc,sha256=ck3yDt0qK5Hn3-m
|
|
|
347
356
|
acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc,sha256=7WRavX6dQZmLrwP1F4nMQOmeHPHjHF9NTVFAgLUdw4c,5833
|
|
348
357
|
acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc,sha256=7T3RHV3ppOPaMdUqR3ozaJ-Ofg-rE4o-mBBts3Hobe4,1238
|
|
349
358
|
acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc,sha256=JGXyr1juT-YHjhoF0AdYlZCkxBfn0xWsrN2vmKMr7_E,19963
|
|
350
|
-
acryl_datahub_cloud/metadata/schemas/Operation.avsc,sha256=
|
|
359
|
+
acryl_datahub_cloud/metadata/schemas/Operation.avsc,sha256=YHNzTCDT9lPB7zRddU13o2AsFWvwHY0aTKfVHsBsPh4,13319
|
|
351
360
|
acryl_datahub_cloud/metadata/schemas/Origin.avsc,sha256=1IAzS9VzVaMf7NTMyej4lOzKR_lnYWDgPZiJytoXA7M,6144
|
|
352
361
|
acryl_datahub_cloud/metadata/schemas/Ownership.avsc,sha256=J0rEclNsuIZ0IRC73Sc3FvPVhWKanIXyGVeqSeKKhyA,9750
|
|
353
362
|
acryl_datahub_cloud/metadata/schemas/OwnershipTypeInfo.avsc,sha256=qmyp-T0LozzNFYXkImFUfU6ixJmFkwOOwqHiolBoWuA,3256
|
|
@@ -395,7 +404,7 @@ acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=xx
|
|
|
395
404
|
acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=RpAH8fW-64C6yVU8_D1h5vYeg8fNp5t2S6VLpOEcMZM,649
|
|
396
405
|
acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNlXfT1TqogfulCanIc-nuYO9ZxRFOGzD9tl3ZJdB8,3732
|
|
397
406
|
acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
|
|
398
|
-
acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=
|
|
407
|
+
acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=Tdp8tMNEDeuMohYvfInhpNsEod7jrPIhz81SjP-v8xA,15669
|
|
399
408
|
acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=ChdTAOA1c6Ojx3HqNPDfQaupwezhp7SLUOmgIaeSD2Q,486
|
|
400
409
|
acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc,sha256=wDVdpa9LSAlMzHIiWw-fMLHTCrxcJdnDOY_n5CDNTN8,2068
|
|
401
410
|
acryl_datahub_cloud/metadata/schemas/TagKey.avsc,sha256=YINS5zatQp8rwwZRccFPSGeBj5mcaVEcK247TMluwJs,671
|
|
@@ -414,9 +423,9 @@ acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=hT4BS3rSZYfJp
|
|
|
414
423
|
acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh4HnUHNmBEU74uYdJR5g20NhRJU,659
|
|
415
424
|
acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=fxNxEMxGdUDi_-T0sd6KJks5BWEo5AzboQxpZYKLbiQ,1434
|
|
416
425
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
417
|
-
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=
|
|
418
|
-
acryl_datahub_cloud-0.3.
|
|
419
|
-
acryl_datahub_cloud-0.3.
|
|
420
|
-
acryl_datahub_cloud-0.3.
|
|
421
|
-
acryl_datahub_cloud-0.3.
|
|
422
|
-
acryl_datahub_cloud-0.3.
|
|
426
|
+
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
|
|
427
|
+
acryl_datahub_cloud-0.3.12rc1.dist-info/METADATA,sha256=n1KcCv_3POJ7H3tbSOhmpnLQxmg1hAufvj1fYBV7Z0Q,4541
|
|
428
|
+
acryl_datahub_cloud-0.3.12rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
429
|
+
acryl_datahub_cloud-0.3.12rc1.dist-info/entry_points.txt,sha256=oXC4Hq3nxUKi9LR5NwsY17q6anLmYJKbapTx9Ij6vuc,1205
|
|
430
|
+
acryl_datahub_cloud-0.3.12rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
431
|
+
acryl_datahub_cloud-0.3.12rc1.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/top_level.txt
RENAMED
|
File without changes
|