acryl-datahub 1.1.0.1__py3-none-any.whl → 1.1.0.2__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 might be problematic. Click here for more details.
- {acryl_datahub-1.1.0.1.dist-info → acryl_datahub-1.1.0.2.dist-info}/METADATA +2465 -2465
- {acryl_datahub-1.1.0.1.dist-info → acryl_datahub-1.1.0.2.dist-info}/RECORD +25 -23
- datahub/_version.py +1 -1
- datahub/api/entities/external/lake_formation_external_entites.py +161 -0
- datahub/api/entities/external/restricted_text.py +10 -10
- datahub/api/entities/external/unity_catalog_external_entites.py +5 -2
- datahub/emitter/rest_emitter.py +29 -4
- datahub/ingestion/graph/client.py +2 -0
- datahub/ingestion/graph/config.py +1 -0
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +20 -10
- datahub/ingestion/sink/datahub_rest.py +1 -0
- datahub/ingestion/source/aws/aws_common.py +4 -0
- datahub/ingestion/source/aws/glue.py +488 -243
- datahub/ingestion/source/aws/tag_entities.py +292 -0
- datahub/ingestion/source/sql/mssql/source.py +207 -18
- datahub/ingestion/source/unity/source.py +2 -3
- datahub/metadata/_internal_schema_classes.py +499 -499
- datahub/metadata/_urns/urn_defs.py +1766 -1766
- datahub/metadata/schema.avsc +17480 -17093
- datahub/metadata/schemas/__init__.py +3 -3
- datahub/sdk/main_client.py +3 -3
- {acryl_datahub-1.1.0.1.dist-info → acryl_datahub-1.1.0.2.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.0.1.dist-info → acryl_datahub-1.1.0.2.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.1.0.1.dist-info → acryl_datahub-1.1.0.2.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.0.1.dist-info → acryl_datahub-1.1.0.2.dist-info}/top_level.txt +0 -0
|
@@ -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 getMetadataChangeEventSchema() -> str:
|
|
19
|
-
return _load_schema("MetadataChangeEvent")
|
|
20
|
-
|
|
21
18
|
def getMetadataChangeProposalSchema() -> str:
|
|
22
19
|
return _load_schema("MetadataChangeProposal")
|
|
23
20
|
|
|
21
|
+
def getMetadataChangeEventSchema() -> str:
|
|
22
|
+
return _load_schema("MetadataChangeEvent")
|
|
23
|
+
|
|
24
24
|
# fmt: on
|
datahub/sdk/main_client.py
CHANGED
|
@@ -10,7 +10,7 @@ from datahub.sdk.lineage_client import LineageClient
|
|
|
10
10
|
from datahub.sdk.search_client import SearchClient
|
|
11
11
|
|
|
12
12
|
try:
|
|
13
|
-
from acryl_datahub_cloud.
|
|
13
|
+
from acryl_datahub_cloud.sdk import ( # type: ignore[import-not-found]
|
|
14
14
|
ResolverClient,
|
|
15
15
|
)
|
|
16
16
|
except ImportError:
|
|
@@ -115,7 +115,7 @@ class DataHubClient:
|
|
|
115
115
|
@property
|
|
116
116
|
def assertions(self): # type: ignore[report-untyped-call] # Not available due to circular import issues
|
|
117
117
|
try:
|
|
118
|
-
from acryl_datahub_cloud.
|
|
118
|
+
from acryl_datahub_cloud.sdk import AssertionsClient
|
|
119
119
|
except ImportError as e:
|
|
120
120
|
if "acryl_datahub_cloud" in str(e):
|
|
121
121
|
raise SdkUsageError(
|
|
@@ -128,7 +128,7 @@ class DataHubClient:
|
|
|
128
128
|
@property
|
|
129
129
|
def subscriptions(self): # type: ignore[report-untyped-call] # Not available due to circular import issues
|
|
130
130
|
try:
|
|
131
|
-
from acryl_datahub_cloud.
|
|
131
|
+
from acryl_datahub_cloud.sdk import SubscriptionClient
|
|
132
132
|
except ImportError as e:
|
|
133
133
|
if "acryl_datahub_cloud" in str(e):
|
|
134
134
|
raise SdkUsageError(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|