acryl-datahub 1.1.0.1rc6__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.

Files changed (25) hide show
  1. {acryl_datahub-1.1.0.1rc6.dist-info → acryl_datahub-1.1.0.2.dist-info}/METADATA +2522 -2522
  2. {acryl_datahub-1.1.0.1rc6.dist-info → acryl_datahub-1.1.0.2.dist-info}/RECORD +25 -23
  3. datahub/_version.py +1 -1
  4. datahub/api/entities/external/lake_formation_external_entites.py +161 -0
  5. datahub/api/entities/external/restricted_text.py +10 -10
  6. datahub/api/entities/external/unity_catalog_external_entites.py +5 -2
  7. datahub/emitter/rest_emitter.py +29 -4
  8. datahub/ingestion/graph/client.py +2 -0
  9. datahub/ingestion/graph/config.py +1 -0
  10. datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +20 -10
  11. datahub/ingestion/sink/datahub_rest.py +1 -0
  12. datahub/ingestion/source/aws/aws_common.py +4 -0
  13. datahub/ingestion/source/aws/glue.py +488 -243
  14. datahub/ingestion/source/aws/tag_entities.py +292 -0
  15. datahub/ingestion/source/sql/mssql/source.py +207 -18
  16. datahub/ingestion/source/unity/source.py +2 -3
  17. datahub/metadata/_internal_schema_classes.py +499 -499
  18. datahub/metadata/_urns/urn_defs.py +1766 -1766
  19. datahub/metadata/schema.avsc +17480 -17093
  20. datahub/metadata/schemas/__init__.py +3 -3
  21. datahub/sdk/main_client.py +3 -3
  22. {acryl_datahub-1.1.0.1rc6.dist-info → acryl_datahub-1.1.0.2.dist-info}/WHEEL +0 -0
  23. {acryl_datahub-1.1.0.1rc6.dist-info → acryl_datahub-1.1.0.2.dist-info}/entry_points.txt +0 -0
  24. {acryl_datahub-1.1.0.1rc6.dist-info → acryl_datahub-1.1.0.2.dist-info}/licenses/LICENSE +0 -0
  25. {acryl_datahub-1.1.0.1rc6.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
@@ -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._sdk_extras import ( # type: ignore[import-not-found]
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._sdk_extras import AssertionsClient
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._sdk_extras import SubscriptionClient
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(