acryl-datahub 1.1.0.5rc8__py3-none-any.whl → 1.1.0.5rc10__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.5rc8.dist-info → acryl_datahub-1.1.0.5rc10.dist-info}/METADATA +2465 -2465
- {acryl_datahub-1.1.0.5rc8.dist-info → acryl_datahub-1.1.0.5rc10.dist-info}/RECORD +47 -47
- datahub/_version.py +1 -1
- datahub/cli/check_cli.py +45 -1
- datahub/cli/cli_utils.py +0 -10
- datahub/cli/container_cli.py +5 -0
- datahub/cli/delete_cli.py +5 -0
- datahub/cli/docker_cli.py +2 -0
- datahub/cli/exists_cli.py +2 -0
- datahub/cli/get_cli.py +2 -0
- datahub/cli/iceberg_cli.py +5 -0
- datahub/cli/ingest_cli.py +7 -0
- datahub/cli/migrate.py +2 -0
- datahub/cli/put_cli.py +3 -0
- datahub/cli/specific/assertions_cli.py +2 -0
- datahub/cli/specific/datacontract_cli.py +3 -0
- datahub/cli/specific/dataproduct_cli.py +11 -0
- datahub/cli/specific/dataset_cli.py +4 -0
- datahub/cli/specific/forms_cli.py +2 -0
- datahub/cli/specific/group_cli.py +2 -0
- datahub/cli/specific/structuredproperties_cli.py +4 -0
- datahub/cli/specific/user_cli.py +2 -0
- datahub/cli/state_cli.py +2 -0
- datahub/cli/timeline_cli.py +2 -0
- datahub/emitter/rest_emitter.py +24 -8
- datahub/ingestion/api/report.py +72 -12
- datahub/ingestion/autogenerated/capability_summary.json +19 -1
- datahub/ingestion/autogenerated/lineage_helper.py +101 -19
- datahub/ingestion/source/common/subtypes.py +2 -0
- datahub/ingestion/source/dremio/dremio_api.py +38 -27
- datahub/ingestion/source/mlflow.py +11 -1
- datahub/ingestion/source/snowflake/snowflake_queries.py +127 -0
- datahub/ingestion/source/sql/sql_common.py +4 -0
- datahub/ingestion/source/sql/teradata.py +993 -234
- datahub/ingestion/source/tableau/tableau.py +11 -2
- datahub/ingestion/source/tableau/tableau_constant.py +0 -2
- datahub/metadata/_internal_schema_classes.py +528 -529
- datahub/metadata/_urns/urn_defs.py +1803 -1803
- datahub/metadata/schema.avsc +16720 -17109
- datahub/metadata/schemas/DataHubPageModuleProperties.avsc +1 -3
- datahub/sdk/main_client.py +14 -2
- datahub/sdk/search_client.py +4 -3
- datahub/telemetry/telemetry.py +17 -11
- {acryl_datahub-1.1.0.5rc8.dist-info → acryl_datahub-1.1.0.5rc10.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.0.5rc8.dist-info → acryl_datahub-1.1.0.5rc10.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.1.0.5rc8.dist-info → acryl_datahub-1.1.0.5rc10.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.0.5rc8.dist-info → acryl_datahub-1.1.0.5rc10.dist-info}/top_level.txt +0 -0
|
@@ -869,6 +869,15 @@ def report_user_role(report: TableauSourceReport, server: Server) -> None:
|
|
|
869
869
|
@platform_name("Tableau")
|
|
870
870
|
@config_class(TableauConfig)
|
|
871
871
|
@support_status(SupportStatus.CERTIFIED)
|
|
872
|
+
@capability(
|
|
873
|
+
SourceCapability.CONTAINERS,
|
|
874
|
+
"Enabled by default",
|
|
875
|
+
subtype_modifier=[
|
|
876
|
+
SourceCapabilityModifier.TABLEAU_PROJECT,
|
|
877
|
+
SourceCapabilityModifier.TABLEAU_SITE,
|
|
878
|
+
SourceCapabilityModifier.TABLEAU_WORKBOOK,
|
|
879
|
+
],
|
|
880
|
+
)
|
|
872
881
|
@capability(SourceCapability.PLATFORM_INSTANCE, "Enabled by default")
|
|
873
882
|
@capability(SourceCapability.DOMAINS, "Requires transformer", supported=False)
|
|
874
883
|
@capability(SourceCapability.DESCRIPTIONS, "Enabled by default")
|
|
@@ -3671,7 +3680,7 @@ class TableauSiteSource:
|
|
|
3671
3680
|
container_key=project_key,
|
|
3672
3681
|
name=project_.name,
|
|
3673
3682
|
description=project_.description,
|
|
3674
|
-
sub_types=[
|
|
3683
|
+
sub_types=[BIContainerSubTypes.TABLEAU_PROJECT],
|
|
3675
3684
|
parent_container_key=parent_project_key,
|
|
3676
3685
|
)
|
|
3677
3686
|
|
|
@@ -3689,7 +3698,7 @@ class TableauSiteSource:
|
|
|
3689
3698
|
yield from gen_containers(
|
|
3690
3699
|
container_key=self.gen_site_key(self.site_id),
|
|
3691
3700
|
name=self.site.name or "Default",
|
|
3692
|
-
sub_types=[
|
|
3701
|
+
sub_types=[BIContainerSubTypes.TABLEAU_SITE],
|
|
3693
3702
|
)
|
|
3694
3703
|
|
|
3695
3704
|
def _fetch_groups(self):
|
|
@@ -76,8 +76,6 @@ CHART = "chart"
|
|
|
76
76
|
DASHBOARD = "dashboard"
|
|
77
77
|
DASHBOARDS_CONNECTION = "dashboardsConnection"
|
|
78
78
|
EMBEDDED_DATA_SOURCES_CONNECTION = "embeddedDatasourcesConnection"
|
|
79
|
-
PROJECT = "Project"
|
|
80
|
-
SITE = "Site"
|
|
81
79
|
IS_UNSUPPORTED_CUSTOM_SQL = "isUnsupportedCustomSql"
|
|
82
80
|
SITE_PERMISSION = "sitePermission"
|
|
83
81
|
ROLE_SITE_ADMIN_EXPLORER = "SiteAdministratorExplorer"
|