acryl-datahub-cloud 0.3.8rc16__py3-none-any.whl → 0.3.8.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/datahub_metadata_sharing/metadata_sharing_source.py +7 -10
- acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +1 -1
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1509 -1464
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorpool/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +21048 -21005
- acryl_datahub_cloud/metadata/schema_classes.py +569 -502
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolInfo.avsc +19 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolKey.avsc +24 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- {acryl_datahub_cloud-0.3.8rc16.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/METADATA +47 -47
- {acryl_datahub_cloud-0.3.8rc16.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/RECORD +18 -15
- {acryl_datahub_cloud-0.3.8rc16.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.8rc16.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.8rc16.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import RemoteExecutorPoolInfoClass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
RemoteExecutorPoolInfo = RemoteExecutorPoolInfoClass
|
|
14
|
+
|
|
15
|
+
# fmt: on
|
|
@@ -60,6 +60,7 @@ from ......schema_classes import PostKeyClass
|
|
|
60
60
|
from ......schema_classes import QueryKeyClass
|
|
61
61
|
from ......schema_classes import RecommendationModuleKeyClass
|
|
62
62
|
from ......schema_classes import RemoteExecutorKeyClass
|
|
63
|
+
from ......schema_classes import RemoteExecutorPoolKeyClass
|
|
63
64
|
from ......schema_classes import RoleKeyClass
|
|
64
65
|
from ......schema_classes import SchemaFieldKeyClass
|
|
65
66
|
from ......schema_classes import SubscriptionKeyClass
|
|
@@ -122,6 +123,7 @@ PostKey = PostKeyClass
|
|
|
122
123
|
QueryKey = QueryKeyClass
|
|
123
124
|
RecommendationModuleKey = RecommendationModuleKeyClass
|
|
124
125
|
RemoteExecutorKey = RemoteExecutorKeyClass
|
|
126
|
+
RemoteExecutorPoolKey = RemoteExecutorPoolKeyClass
|
|
125
127
|
RoleKey = RoleKeyClass
|
|
126
128
|
SchemaFieldKey = SchemaFieldKeyClass
|
|
127
129
|
SubscriptionKey = SubscriptionKeyClass
|