├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── issue--question---advice-needed.md └── workflows │ ├── build.yaml │ └── codeql.yaml ├── .gitignore ├── .readthedocs.yaml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ └── modules.rst ├── environment.yml ├── notebooks ├── Best Practice Analyzer Report.ipynb ├── Capacity Migration.ipynb ├── Delta Analyzer.ipynb ├── Migration to Direct Lake.ipynb ├── Model Optimization.ipynb ├── Query Scale Out.ipynb ├── Report Analysis.ipynb ├── SQL.ipynb ├── Semantic Model Management.ipynb ├── Semantic Model Refresh.ipynb ├── Service Principal.ipynb └── Tabular Object Model.ipynb ├── pyproject.toml ├── src └── sempy_labs │ ├── __init__.py │ ├── _a_lib_info.py │ ├── _ai.py │ ├── _authentication.py │ ├── _bpa_translation │ └── _model │ │ ├── _translations_am-ET.po │ │ ├── _translations_ar-AE.po │ │ ├── _translations_bg-BG.po │ │ ├── _translations_ca-ES.po │ │ ├── _translations_cs-CZ.po │ │ ├── _translations_da-DK.po │ │ ├── _translations_de-DE.po │ │ ├── _translations_el-GR.po │ │ ├── _translations_es-ES.po │ │ ├── _translations_fa-IR.po │ │ ├── _translations_fi-FI.po │ │ ├── _translations_fr-FR.po │ │ ├── _translations_ga-IE.po │ │ ├── _translations_he-IL.po │ │ ├── _translations_hi-IN.po │ │ ├── _translations_hu-HU.po │ │ ├── _translations_id-ID.po │ │ ├── _translations_is-IS.po │ │ ├── _translations_it-IT.po │ │ ├── _translations_ja-JP.po │ │ ├── _translations_ko-KR.po │ │ ├── _translations_mt-MT.po │ │ ├── _translations_nl-NL.po │ │ ├── _translations_pl-PL.po │ │ ├── _translations_pt-BR.po │ │ ├── _translations_pt-PT.po │ │ ├── _translations_ro-RO.po │ │ ├── _translations_ru-RU.po │ │ ├── _translations_sk-SK.po │ │ ├── _translations_sl-SL.po │ │ ├── _translations_sv-SE.po │ │ ├── _translations_ta-IN.po │ │ ├── _translations_te-IN.po │ │ ├── _translations_th-TH.po │ │ ├── _translations_tr-TR.po │ │ ├── _translations_uk-UA.po │ │ ├── _translations_zh-CN.po │ │ └── _translations_zu-ZA.po │ ├── _capacities.py │ ├── _capacity_migration.py │ ├── _clear_cache.py │ ├── _connections.py │ ├── _dashboards.py │ ├── _data_access_security.py │ ├── _data_pipelines.py │ ├── _dataflows.py │ ├── _dax.py │ ├── _daxformatter.py │ ├── _delta_analyzer.py │ ├── _delta_analyzer_history.py │ ├── _dictionary_diffs.py │ ├── _documentation.py │ ├── _domains.py │ ├── _eventhouses.py │ ├── _external_data_shares.py │ ├── _gateways.py │ ├── _generate_semantic_model.py │ ├── _get_connection_string.py │ ├── _git.py │ ├── _graphQL.py │ ├── _helper_functions.py │ ├── _icons.py │ ├── _job_scheduler.py │ ├── _kql_databases.py │ ├── _kql_querysets.py │ ├── _kusto.py │ ├── _labels.py │ ├── _list_functions.py │ ├── _managed_private_endpoints.py │ ├── _mirrored_databases.py │ ├── _mirrored_warehouses.py │ ├── _ml_experiments.py │ ├── _model_auto_build.py │ ├── _model_bpa.py │ ├── _model_bpa_bulk.py │ ├── _model_bpa_rules.py │ ├── _model_dependencies.py │ ├── _mounted_data_factories.py │ ├── _notebooks.py │ ├── _one_lake_integration.py │ ├── _onelake.py │ ├── _query_scale_out.py │ ├── _refresh_semantic_model.py │ ├── _semantic_models.py │ ├── _spark.py │ ├── _sql.py │ ├── _sql_audit_settings.py │ ├── _sql_endpoints.py │ ├── _tags.py │ ├── _translations.py │ ├── _user_delegation_key.py │ ├── _utils.py │ ├── _vertipaq.py │ ├── _vpax.py │ ├── _warehouses.py │ ├── _workloads.py │ ├── _workspace_identity.py │ ├── _workspaces.py │ ├── admin │ ├── __init__.py │ ├── _activities.py │ ├── _apps.py │ ├── _artifacts.py │ ├── _basic_functions.py │ ├── _capacities.py │ ├── _dataflows.py │ ├── _datasets.py │ ├── _domains.py │ ├── _external_data_share.py │ ├── _git.py │ ├── _items.py │ ├── _labels.py │ ├── _reports.py │ ├── _scanner.py │ ├── _shared.py │ ├── _sharing_links.py │ ├── _tags.py │ ├── _tenant.py │ ├── _tenant_keys.py │ ├── _users.py │ └── _workspaces.py │ ├── deployment_pipeline │ ├── __init__.py │ └── _items.py │ ├── directlake │ ├── __init__.py │ ├── _autosync.py │ ├── _directlake_schema_compare.py │ ├── _directlake_schema_sync.py │ ├── _dl_helper.py │ ├── _generate_shared_expression.py │ ├── _get_directlake_lakehouse.py │ ├── _get_shared_expression.py │ ├── _guardrails.py │ ├── _list_directlake_model_calc_tables.py │ ├── _show_unsupported_directlake_objects.py │ ├── _update_directlake_model_lakehouse_connection.py │ ├── _update_directlake_partition_entity.py │ └── _warm_cache.py │ ├── dotnet_lib │ └── dotnet.runtime.config.json │ ├── environment │ ├── __init__.py │ ├── _items.py │ └── _pubstage.py │ ├── eventstream │ ├── __init__.py │ ├── _items.py │ └── _topology.py │ ├── graph │ ├── __init__.py │ ├── _groups.py │ ├── _sensitivity_labels.py │ ├── _teams.py │ ├── _user_licenses.py │ └── _users.py │ ├── graph_model │ ├── __init__.py │ ├── _background_jobs.py │ └── _items.py │ ├── lakehouse │ ├── __init__.py │ ├── _blobs.py │ ├── _get_lakehouse_columns.py │ ├── _get_lakehouse_tables.py │ ├── _helper.py │ ├── _lakehouse.py │ ├── _livy_sessions.py │ ├── _materialized_lake_views.py │ ├── _partitioning.py │ ├── _schemas.py │ └── _shortcuts.py │ ├── migration │ ├── __init__.py │ ├── _create_pqt_file.py │ ├── _direct_lake_to_import.py │ ├── _migrate_calctables_to_lakehouse.py │ ├── _migrate_calctables_to_semantic_model.py │ ├── _migrate_model_objects_to_semantic_model.py │ ├── _migrate_tables_columns_to_semantic_model.py │ ├── _migration_validation.py │ └── _refresh_calc_tables.py │ ├── mirrored_azure_databricks_catalog │ ├── __init__.py │ ├── _discover.py │ └── _refresh_catalog_metadata.py │ ├── ml_model │ ├── __init__.py │ └── _functions.py │ ├── report │ ├── _BPAReportTemplate.json │ ├── __init__.py │ ├── _bpareporttemplate │ │ ├── .pbi │ │ │ └── localSettings.json │ │ ├── .platform │ │ ├── StaticResources │ │ │ └── SharedResources │ │ │ │ └── BaseThemes │ │ │ │ └── CY24SU06.json │ │ ├── definition.pbir │ │ └── definition │ │ │ ├── pages │ │ │ ├── 01d72098bda5055bd500 │ │ │ │ ├── page.json │ │ │ │ └── visuals │ │ │ │ │ ├── 1b08bce3bebabb0a27a8 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 2f22ddb70c301693c165 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 3b1182230aa6c600b43a │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 58577ba6380c69891500 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── a2a8fa5028b3b776c96c │ │ │ │ │ └── visual.json │ │ │ │ │ ├── adfd47ef30652707b987 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── b6a80ee459e716e170b1 │ │ │ │ │ └── visual.json │ │ │ │ │ └── ce3130a721c020cc3d81 │ │ │ │ │ └── visual.json │ │ │ ├── 92735ae19b31712208ad │ │ │ │ ├── page.json │ │ │ │ └── visuals │ │ │ │ │ └── 66e60dfb526437cd78d1 │ │ │ │ │ └── visual.json │ │ │ ├── c597da16dc7e63222a82 │ │ │ │ ├── page.json │ │ │ │ └── visuals │ │ │ │ │ ├── 07deb8bce824e1be37d7 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 0b1c68838818b32ad03b │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 0c171de9d2683d10b930 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 0efa01be0510e40a645e │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 6bf2f0eb830ab53cc668 │ │ │ │ │ └── visual.json │ │ │ │ │ ├── 88d8141cb8500b60030c │ │ │ │ │ └── visual.json │ │ │ │ │ ├── a753273590beed656a03 │ │ │ │ │ └── visual.json │ │ │ │ │ └── b8fdc82cddd61ac447bc │ │ │ │ │ └── visual.json │ │ │ ├── d37dce724a0ccc30044b │ │ │ │ ├── page.json │ │ │ │ └── visuals │ │ │ │ │ └── ce8532a7e25020271077 │ │ │ │ │ └── visual.json │ │ │ └── pages.json │ │ │ ├── report.json │ │ │ └── version.json │ ├── _download_report.py │ ├── _export_report.py │ ├── _generate_report.py │ ├── _paginated.py │ ├── _report_bpa.py │ ├── _report_bpa_rules.py │ ├── _report_functions.py │ ├── _report_helper.py │ ├── _report_list_functions.py │ ├── _report_rebind.py │ ├── _reportwrapper.py │ └── _save_report.py │ ├── snowflake_database │ ├── __init__.py │ └── _items.py │ ├── sql_database │ ├── __init__.py │ ├── _items.py │ └── _mirroring.py │ ├── theme │ ├── __init__.py │ └── _org_themes.py │ ├── tom │ ├── __init__.py │ └── _model.py │ ├── variable_library │ ├── __init__.py │ └── _functions.py │ └── warehouse │ ├── __init__.py │ ├── _items.py │ └── _restore_points.py └── tests └── __init__.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue--question---advice-needed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.github/ISSUE_TEMPLATE/issue--question---advice-needed.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/Best Practice Analyzer Report.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Best Practice Analyzer Report.ipynb -------------------------------------------------------------------------------- /notebooks/Capacity Migration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Capacity Migration.ipynb -------------------------------------------------------------------------------- /notebooks/Delta Analyzer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Delta Analyzer.ipynb -------------------------------------------------------------------------------- /notebooks/Migration to Direct Lake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Migration to Direct Lake.ipynb -------------------------------------------------------------------------------- /notebooks/Model Optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Model Optimization.ipynb -------------------------------------------------------------------------------- /notebooks/Query Scale Out.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Query Scale Out.ipynb -------------------------------------------------------------------------------- /notebooks/Report Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Report Analysis.ipynb -------------------------------------------------------------------------------- /notebooks/SQL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/SQL.ipynb -------------------------------------------------------------------------------- /notebooks/Semantic Model Management.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Semantic Model Management.ipynb -------------------------------------------------------------------------------- /notebooks/Semantic Model Refresh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Semantic Model Refresh.ipynb -------------------------------------------------------------------------------- /notebooks/Service Principal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Service Principal.ipynb -------------------------------------------------------------------------------- /notebooks/Tabular Object Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/notebooks/Tabular Object Model.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/sempy_labs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/_a_lib_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_a_lib_info.py -------------------------------------------------------------------------------- /src/sempy_labs/_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_ai.py -------------------------------------------------------------------------------- /src/sempy_labs/_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_authentication.py -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_am-ET.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_am-ET.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ar-AE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ar-AE.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_bg-BG.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_bg-BG.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ca-ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ca-ES.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_cs-CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_cs-CZ.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_da-DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_da-DK.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_de-DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_de-DE.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_el-GR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_el-GR.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_es-ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_es-ES.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_fa-IR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_fa-IR.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_fi-FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_fi-FI.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_fr-FR.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ga-IE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ga-IE.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_he-IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_he-IL.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_hi-IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_hi-IN.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_hu-HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_hu-HU.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_id-ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_id-ID.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_is-IS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_is-IS.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_it-IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_it-IT.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ja-JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ja-JP.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ko-KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ko-KR.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_mt-MT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_mt-MT.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_nl-NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_nl-NL.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_pl-PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_pl-PL.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_pt-BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_pt-BR.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_pt-PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_pt-PT.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ro-RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ro-RO.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ru-RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ru-RU.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_sk-SK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_sk-SK.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_sl-SL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_sl-SL.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_sv-SE.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_ta-IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_ta-IN.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_te-IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_te-IN.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_th-TH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_th-TH.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_tr-TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_tr-TR.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_uk-UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_uk-UA.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_zh-CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_zh-CN.po -------------------------------------------------------------------------------- /src/sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po -------------------------------------------------------------------------------- /src/sempy_labs/_capacities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_capacities.py -------------------------------------------------------------------------------- /src/sempy_labs/_capacity_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_capacity_migration.py -------------------------------------------------------------------------------- /src/sempy_labs/_clear_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_clear_cache.py -------------------------------------------------------------------------------- /src/sempy_labs/_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_connections.py -------------------------------------------------------------------------------- /src/sempy_labs/_dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_dashboards.py -------------------------------------------------------------------------------- /src/sempy_labs/_data_access_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_data_access_security.py -------------------------------------------------------------------------------- /src/sempy_labs/_data_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_data_pipelines.py -------------------------------------------------------------------------------- /src/sempy_labs/_dataflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_dataflows.py -------------------------------------------------------------------------------- /src/sempy_labs/_dax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_dax.py -------------------------------------------------------------------------------- /src/sempy_labs/_daxformatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_daxformatter.py -------------------------------------------------------------------------------- /src/sempy_labs/_delta_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_delta_analyzer.py -------------------------------------------------------------------------------- /src/sempy_labs/_delta_analyzer_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_delta_analyzer_history.py -------------------------------------------------------------------------------- /src/sempy_labs/_dictionary_diffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_dictionary_diffs.py -------------------------------------------------------------------------------- /src/sempy_labs/_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_documentation.py -------------------------------------------------------------------------------- /src/sempy_labs/_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_domains.py -------------------------------------------------------------------------------- /src/sempy_labs/_eventhouses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_eventhouses.py -------------------------------------------------------------------------------- /src/sempy_labs/_external_data_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_external_data_shares.py -------------------------------------------------------------------------------- /src/sempy_labs/_gateways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_gateways.py -------------------------------------------------------------------------------- /src/sempy_labs/_generate_semantic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_generate_semantic_model.py -------------------------------------------------------------------------------- /src/sempy_labs/_get_connection_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_get_connection_string.py -------------------------------------------------------------------------------- /src/sempy_labs/_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_git.py -------------------------------------------------------------------------------- /src/sempy_labs/_graphQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_graphQL.py -------------------------------------------------------------------------------- /src/sempy_labs/_helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_helper_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_icons.py -------------------------------------------------------------------------------- /src/sempy_labs/_job_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_job_scheduler.py -------------------------------------------------------------------------------- /src/sempy_labs/_kql_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_kql_databases.py -------------------------------------------------------------------------------- /src/sempy_labs/_kql_querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_kql_querysets.py -------------------------------------------------------------------------------- /src/sempy_labs/_kusto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_kusto.py -------------------------------------------------------------------------------- /src/sempy_labs/_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_labels.py -------------------------------------------------------------------------------- /src/sempy_labs/_list_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_list_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/_managed_private_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_managed_private_endpoints.py -------------------------------------------------------------------------------- /src/sempy_labs/_mirrored_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_mirrored_databases.py -------------------------------------------------------------------------------- /src/sempy_labs/_mirrored_warehouses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_mirrored_warehouses.py -------------------------------------------------------------------------------- /src/sempy_labs/_ml_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_ml_experiments.py -------------------------------------------------------------------------------- /src/sempy_labs/_model_auto_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_model_auto_build.py -------------------------------------------------------------------------------- /src/sempy_labs/_model_bpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_model_bpa.py -------------------------------------------------------------------------------- /src/sempy_labs/_model_bpa_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_model_bpa_bulk.py -------------------------------------------------------------------------------- /src/sempy_labs/_model_bpa_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_model_bpa_rules.py -------------------------------------------------------------------------------- /src/sempy_labs/_model_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_model_dependencies.py -------------------------------------------------------------------------------- /src/sempy_labs/_mounted_data_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_mounted_data_factories.py -------------------------------------------------------------------------------- /src/sempy_labs/_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_notebooks.py -------------------------------------------------------------------------------- /src/sempy_labs/_one_lake_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_one_lake_integration.py -------------------------------------------------------------------------------- /src/sempy_labs/_onelake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_onelake.py -------------------------------------------------------------------------------- /src/sempy_labs/_query_scale_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_query_scale_out.py -------------------------------------------------------------------------------- /src/sempy_labs/_refresh_semantic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_refresh_semantic_model.py -------------------------------------------------------------------------------- /src/sempy_labs/_semantic_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_semantic_models.py -------------------------------------------------------------------------------- /src/sempy_labs/_spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_spark.py -------------------------------------------------------------------------------- /src/sempy_labs/_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_sql.py -------------------------------------------------------------------------------- /src/sempy_labs/_sql_audit_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_sql_audit_settings.py -------------------------------------------------------------------------------- /src/sempy_labs/_sql_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_sql_endpoints.py -------------------------------------------------------------------------------- /src/sempy_labs/_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_tags.py -------------------------------------------------------------------------------- /src/sempy_labs/_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_translations.py -------------------------------------------------------------------------------- /src/sempy_labs/_user_delegation_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_user_delegation_key.py -------------------------------------------------------------------------------- /src/sempy_labs/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_utils.py -------------------------------------------------------------------------------- /src/sempy_labs/_vertipaq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_vertipaq.py -------------------------------------------------------------------------------- /src/sempy_labs/_vpax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_vpax.py -------------------------------------------------------------------------------- /src/sempy_labs/_warehouses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_warehouses.py -------------------------------------------------------------------------------- /src/sempy_labs/_workloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_workloads.py -------------------------------------------------------------------------------- /src/sempy_labs/_workspace_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_workspace_identity.py -------------------------------------------------------------------------------- /src/sempy_labs/_workspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/_workspaces.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_activities.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_apps.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_artifacts.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_basic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_basic_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_capacities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_capacities.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_dataflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_dataflows.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_datasets.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_domains.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_external_data_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_external_data_share.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_git.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_labels.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_reports.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_scanner.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_shared.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_sharing_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_sharing_links.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_tags.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_tenant.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_tenant_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_tenant_keys.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_users.py -------------------------------------------------------------------------------- /src/sempy_labs/admin/_workspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/admin/_workspaces.py -------------------------------------------------------------------------------- /src/sempy_labs/deployment_pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/deployment_pipeline/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/deployment_pipeline/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/deployment_pipeline/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_autosync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_autosync.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_directlake_schema_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_directlake_schema_compare.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_directlake_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_directlake_schema_sync.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_dl_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_dl_helper.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_generate_shared_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_generate_shared_expression.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_get_directlake_lakehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_get_directlake_lakehouse.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_get_shared_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_get_shared_expression.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_guardrails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_guardrails.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_list_directlake_model_calc_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_list_directlake_model_calc_tables.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_show_unsupported_directlake_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_show_unsupported_directlake_objects.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_update_directlake_partition_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_update_directlake_partition_entity.py -------------------------------------------------------------------------------- /src/sempy_labs/directlake/_warm_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/directlake/_warm_cache.py -------------------------------------------------------------------------------- /src/sempy_labs/dotnet_lib/dotnet.runtime.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/dotnet_lib/dotnet.runtime.config.json -------------------------------------------------------------------------------- /src/sempy_labs/environment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/environment/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/environment/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/environment/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/environment/_pubstage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/environment/_pubstage.py -------------------------------------------------------------------------------- /src/sempy_labs/eventstream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/eventstream/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/eventstream/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/eventstream/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/eventstream/_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/eventstream/_topology.py -------------------------------------------------------------------------------- /src/sempy_labs/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/graph/_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph/_groups.py -------------------------------------------------------------------------------- /src/sempy_labs/graph/_sensitivity_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph/_sensitivity_labels.py -------------------------------------------------------------------------------- /src/sempy_labs/graph/_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph/_teams.py -------------------------------------------------------------------------------- /src/sempy_labs/graph/_user_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph/_user_licenses.py -------------------------------------------------------------------------------- /src/sempy_labs/graph/_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph/_users.py -------------------------------------------------------------------------------- /src/sempy_labs/graph_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph_model/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/graph_model/_background_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph_model/_background_jobs.py -------------------------------------------------------------------------------- /src/sempy_labs/graph_model/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/graph_model/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_blobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_blobs.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_get_lakehouse_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_get_lakehouse_columns.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_get_lakehouse_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_get_lakehouse_tables.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_helper.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_lakehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_lakehouse.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_livy_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_livy_sessions.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_materialized_lake_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_materialized_lake_views.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_partitioning.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_schemas.py -------------------------------------------------------------------------------- /src/sempy_labs/lakehouse/_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/lakehouse/_shortcuts.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_create_pqt_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_create_pqt_file.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_direct_lake_to_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_direct_lake_to_import.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_migrate_calctables_to_lakehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_migrate_calctables_to_lakehouse.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_migrate_calctables_to_semantic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_migrate_calctables_to_semantic_model.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_migrate_model_objects_to_semantic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_migrate_model_objects_to_semantic_model.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_migration_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_migration_validation.py -------------------------------------------------------------------------------- /src/sempy_labs/migration/_refresh_calc_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/migration/_refresh_calc_tables.py -------------------------------------------------------------------------------- /src/sempy_labs/mirrored_azure_databricks_catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/mirrored_azure_databricks_catalog/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/mirrored_azure_databricks_catalog/_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/mirrored_azure_databricks_catalog/_discover.py -------------------------------------------------------------------------------- /src/sempy_labs/mirrored_azure_databricks_catalog/_refresh_catalog_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/mirrored_azure_databricks_catalog/_refresh_catalog_metadata.py -------------------------------------------------------------------------------- /src/sempy_labs/ml_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/ml_model/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/ml_model/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/ml_model/_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_BPAReportTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_BPAReportTemplate.json -------------------------------------------------------------------------------- /src/sempy_labs/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/.pbi/localSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/.pbi/localSettings.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/.platform -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/StaticResources/SharedResources/BaseThemes/CY24SU06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/StaticResources/SharedResources/BaseThemes/CY24SU06.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition.pbir -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/page.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/1b08bce3bebabb0a27a8/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/1b08bce3bebabb0a27a8/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/2f22ddb70c301693c165/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/2f22ddb70c301693c165/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/3b1182230aa6c600b43a/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/3b1182230aa6c600b43a/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/58577ba6380c69891500/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/58577ba6380c69891500/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/a2a8fa5028b3b776c96c/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/a2a8fa5028b3b776c96c/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/adfd47ef30652707b987/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/adfd47ef30652707b987/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/b6a80ee459e716e170b1/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/b6a80ee459e716e170b1/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/ce3130a721c020cc3d81/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/ce3130a721c020cc3d81/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/page.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/visuals/66e60dfb526437cd78d1/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/visuals/66e60dfb526437cd78d1/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/page.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/07deb8bce824e1be37d7/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/07deb8bce824e1be37d7/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0b1c68838818b32ad03b/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0b1c68838818b32ad03b/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0c171de9d2683d10b930/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0c171de9d2683d10b930/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0efa01be0510e40a645e/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0efa01be0510e40a645e/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/6bf2f0eb830ab53cc668/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/6bf2f0eb830ab53cc668/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/88d8141cb8500b60030c/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/88d8141cb8500b60030c/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/a753273590beed656a03/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/a753273590beed656a03/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/b8fdc82cddd61ac447bc/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/b8fdc82cddd61ac447bc/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/page.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/pages/pages.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/report.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_bpareporttemplate/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_bpareporttemplate/definition/version.json -------------------------------------------------------------------------------- /src/sempy_labs/report/_download_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_download_report.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_export_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_export_report.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_generate_report.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_paginated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_paginated.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_report_bpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_report_bpa.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_report_bpa_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_report_bpa_rules.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_report_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_report_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_report_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_report_helper.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_report_list_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_report_list_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_report_rebind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_report_rebind.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_reportwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_reportwrapper.py -------------------------------------------------------------------------------- /src/sempy_labs/report/_save_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/report/_save_report.py -------------------------------------------------------------------------------- /src/sempy_labs/snowflake_database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/snowflake_database/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/snowflake_database/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/snowflake_database/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/sql_database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/sql_database/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/sql_database/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/sql_database/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/sql_database/_mirroring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/sql_database/_mirroring.py -------------------------------------------------------------------------------- /src/sempy_labs/theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/theme/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/theme/_org_themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/theme/_org_themes.py -------------------------------------------------------------------------------- /src/sempy_labs/tom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/tom/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/tom/_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/tom/_model.py -------------------------------------------------------------------------------- /src/sempy_labs/variable_library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/variable_library/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/variable_library/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/variable_library/_functions.py -------------------------------------------------------------------------------- /src/sempy_labs/warehouse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/warehouse/__init__.py -------------------------------------------------------------------------------- /src/sempy_labs/warehouse/_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/warehouse/_items.py -------------------------------------------------------------------------------- /src/sempy_labs/warehouse/_restore_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semantic-link-labs/HEAD/src/sempy_labs/warehouse/_restore_points.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------