gitextract_uhouros3/ ├── .changes/ │ ├── header.tpl.md │ ├── unreleased/ │ │ ├── added-20260420-140247.yaml │ │ ├── added-20260503-000000.yaml │ │ ├── fixed-20260424-103120.yaml │ │ ├── fixed-20260428-121610.yaml │ │ ├── new-items-20260505-123355.yaml │ │ └── optimization-20260505-142743.yaml │ ├── v0.1.0.md │ ├── v0.1.1.md │ ├── v0.1.10.md │ ├── v0.1.11.md │ ├── v0.1.12.md │ ├── v0.1.13.md │ ├── v0.1.14.md │ ├── v0.1.15.md │ ├── v0.1.16.md │ ├── v0.1.17.md │ ├── v0.1.18.md │ ├── v0.1.19.md │ ├── v0.1.2.md │ ├── v0.1.20.md │ ├── v0.1.21.md │ ├── v0.1.22.md │ ├── v0.1.23.md │ ├── v0.1.24.md │ ├── v0.1.25.md │ ├── v0.1.26.md │ ├── v0.1.27.md │ ├── v0.1.28.md │ ├── v0.1.29.md │ ├── v0.1.3.md │ ├── v0.1.30.md │ ├── v0.1.31.md │ ├── v0.1.32.md │ ├── v0.1.33.md │ ├── v0.1.34.md │ ├── v0.1.4.md │ ├── v0.1.5.md │ ├── v0.1.6.md │ ├── v0.1.7.md │ ├── v0.1.8.md │ ├── v0.1.9.md │ ├── v0.2.0.md │ ├── v0.3.0.md │ ├── v0.3.1.md │ └── v1.0.0.md ├── .changie.yaml ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug.yml │ │ ├── 2-feature.yml │ │ ├── 3-documentation.yml │ │ ├── 4-question.yml │ │ └── config.yml │ ├── agents/ │ │ └── new-item-type.agent.md │ ├── copilot-instructions.md │ ├── policies/ │ │ ├── resourceManagement.yml │ │ └── sdl.yml │ ├── prompts/ │ │ ├── bug-triage.prompt.yml │ │ ├── feature-triage.prompt.yml │ │ └── question-triage.prompt.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── ai-issue-triage.yml │ ├── bump.yml │ ├── changelog.yml │ ├── publish_docs.yml │ ├── test.yml │ └── validate.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .python-version ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CodeQL.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── activate.ps1 ├── activate.sh ├── devtools/ │ ├── debug_api.py │ ├── debug_local config.py │ ├── debug_local.py │ ├── debug_parameterization.py │ ├── debug_trace_deployment.py │ └── pypi_build_release_dev.ps1 ├── docs/ │ ├── about.md │ ├── changelog.md │ ├── code_reference.md │ ├── config/ │ │ ├── overrides/ │ │ │ └── main.html │ │ ├── pre-build/ │ │ │ ├── section_toc.py │ │ │ ├── update_item_types.py │ │ │ └── update_python_version.py │ │ └── stylesheets/ │ │ └── extra.css │ ├── example/ │ │ ├── authentication.md │ │ ├── deployment_variable.md │ │ ├── index.md │ │ └── release_pipeline.md │ ├── how_to/ │ │ ├── config_deployment.md │ │ ├── getting_started.md │ │ ├── index.md │ │ ├── item_types.md │ │ ├── optional_feature.md │ │ ├── parameterization.md │ │ └── troubleshooting.md │ └── index.md ├── mkdocs.yml ├── pyproject.toml ├── ruff.toml ├── sample/ │ └── workspace/ │ ├── ABC.Report/ │ │ ├── .platform │ │ ├── StaticResources/ │ │ │ ├── RegisteredResources/ │ │ │ │ └── test_image25861853181026917.tif │ │ │ └── SharedResources/ │ │ │ └── BaseThemes/ │ │ │ └── CY24SU10.json │ │ ├── definition.pbir │ │ └── report.json │ ├── ABC.SemanticModel/ │ │ ├── .platform │ │ ├── definition/ │ │ │ ├── cultures/ │ │ │ │ └── en-US.tmdl │ │ │ ├── database.tmdl │ │ │ ├── model.tmdl │ │ │ ├── relationships.tmdl │ │ │ └── tables/ │ │ │ ├── Table.tmdl │ │ │ └── Table_2.tmdl │ │ ├── definition.pbism │ │ └── diagramLayout.json │ ├── ABCD.Report/ │ │ ├── .platform │ │ ├── StaticResources/ │ │ │ └── SharedResources/ │ │ │ └── BaseThemes/ │ │ │ └── CY24SU10.json │ │ ├── definition.pbir │ │ └── report.json │ ├── ByConnection.Report/ │ │ ├── .platform │ │ ├── definition.pbir │ │ └── report.json │ ├── Default.Warehouse/ │ │ └── .platform │ ├── DefaultCaseInsensitive.Warehouse/ │ │ └── .platform │ ├── Example Notebook.Notebook/ │ │ ├── .platform │ │ └── notebook-content.py │ ├── Hello Copy Job.CopyJob/ │ │ ├── .platform │ │ └── copyjob-content.json │ ├── Hello Dataflow.Dataflow/ │ │ ├── .platform │ │ ├── mashup.pq │ │ └── queryMetadata.json │ ├── Hello World.Notebook/ │ │ ├── .platform │ │ └── notebook-content.py │ ├── Hello db.SQLDatabase/ │ │ ├── .gitignore │ │ ├── .platform │ │ └── Hello db.sqlproj │ ├── HelloEventhouse.Eventhouse/ │ │ ├── .children/ │ │ │ └── HelloEventhouse.KQLDatabase/ │ │ │ ├── .platform │ │ │ ├── DatabaseProperties.json │ │ │ └── DatabaseSchema.kql │ │ ├── .platform │ │ └── EventhouseProperties.json │ ├── HelloRealTimeDashboard.KQLDashboard/ │ │ ├── .platform │ │ └── RealTimeDashboard.json │ ├── MirroredDatabase_1.MirroredDatabase/ │ │ ├── .platform │ │ └── mirroring.json │ ├── OntologyDataLH.Lakehouse/ │ │ ├── .platform │ │ ├── alm.settings.json │ │ ├── lakehouse.metadata.json │ │ └── shortcuts.metadata.json │ ├── RetailSalesOntology.Ontology/ │ │ ├── .platform │ │ ├── EntityTypes/ │ │ │ ├── 205398164146535/ │ │ │ │ ├── DataBindings/ │ │ │ │ │ └── a790fdb3-e356-4f42-acf4-4420557c0fd7.json │ │ │ │ └── definition.json │ │ │ ├── 267812974919544/ │ │ │ │ ├── DataBindings/ │ │ │ │ │ └── 275d574a-4d0d-4935-9cfd-54e59ee36d7f.json │ │ │ │ └── definition.json │ │ │ ├── 28747097105824/ │ │ │ │ ├── DataBindings/ │ │ │ │ │ ├── 5f66bbb3-9bb6-415a-9cd9-9d7421d0e553.json │ │ │ │ │ └── f0767964-7f82-40a1-9ca2-f7e7fe931fcd.json │ │ │ │ └── definition.json │ │ │ └── 52068896499199/ │ │ │ ├── DataBindings/ │ │ │ │ └── 3d6fc8a5-b442-46b2-9bee-c22d08038f2e.json │ │ │ └── definition.json │ │ ├── RelationshipTypes/ │ │ │ ├── 4160405290834524422/ │ │ │ │ ├── Contextualizations/ │ │ │ │ │ └── 088a81ce-2a4c-4dbc-8887-ab6b831fa047.json │ │ │ │ └── definition.json │ │ │ ├── 4194354367812289411/ │ │ │ │ ├── Contextualizations/ │ │ │ │ │ └── 7be8afdf-2557-4950-930e-26c762fcb5a5.json │ │ │ │ └── definition.json │ │ │ └── 4244194862547506054/ │ │ │ ├── Contextualizations/ │ │ │ │ └── 7f23e2a5-25f6-4c87-8b9a-43b3b9a142ec.json │ │ │ └── definition.json │ │ └── definition.json │ ├── Run Hello World.DataPipeline/ │ │ ├── .platform │ │ ├── .schedules │ │ └── pipeline-content.json │ ├── Sample.GraphQLApi/ │ │ ├── .platform │ │ └── graphql-definition.json │ ├── SampleDataActivator.Reflex/ │ │ ├── .platform │ │ └── ReflexEntities.json │ ├── SampleDataBuildToolJob.DataBuildToolJob/ │ │ ├── .platform │ │ └── dbt-content.json │ ├── SampleEventhouse.Eventhouse/ │ │ ├── .children/ │ │ │ └── TaxiDB.KQLDatabase/ │ │ │ ├── .platform │ │ │ ├── DatabaseProperties.json │ │ │ └── DatabaseSchema.kql │ │ ├── .platform │ │ └── EventhouseProperties.json │ ├── SampleEventstream.Eventstream/ │ │ ├── .platform │ │ ├── eventstream.json │ │ └── eventstreamProperties.json │ ├── SampleKQLQueryset.KQLQueryset/ │ │ ├── .platform │ │ └── RealTimeQueryset.json │ ├── SampleSparkJobDefinition.SparkJobDefinition/ │ │ ├── .platform │ │ ├── Libs/ │ │ │ └── pipeline_config.py │ │ ├── Main/ │ │ │ └── main.py │ │ └── SparkJobDefinitionV1.json │ ├── SampleUserDataFunction.UserDataFunction/ │ │ ├── .platform │ │ ├── .resources/ │ │ │ └── functions.json │ │ ├── definition.json │ │ └── function_app.py │ ├── SourceForShortcutLH.Lakehouse/ │ │ ├── .platform │ │ ├── lakehouse.metadata.json │ │ └── shortcuts.metadata.json │ ├── TargetForShortcutLH.Lakehouse/ │ │ ├── .platform │ │ ├── lakehouse.metadata.json │ │ └── shortcuts.metadata.json │ ├── TelemetryDataEH.Eventhouse/ │ │ ├── .children/ │ │ │ └── TelemetryDataEH.KQLDatabase/ │ │ │ ├── .platform │ │ │ ├── DatabaseProperties.json │ │ │ └── DatabaseSchema.kql │ │ ├── .platform │ │ └── EventhouseProperties.json │ ├── Vars.VariableLibrary/ │ │ ├── .platform │ │ ├── settings.json │ │ ├── valueSets/ │ │ │ ├── PPE.json │ │ │ └── PROD.json │ │ └── variables.json │ ├── WithSchema.Lakehouse/ │ │ ├── .platform │ │ ├── lakehouse.metadata.json │ │ └── shortcuts.metadata.json │ ├── WithoutSchema.Lakehouse/ │ │ ├── .platform │ │ ├── lakehouse.metadata.json │ │ └── shortcuts.metadata.json │ ├── World.Environment/ │ │ ├── .platform │ │ ├── Libraries/ │ │ │ ├── CustomLibraries/ │ │ │ │ └── fabric_cicd-0.1.1-py3-none-any.whl │ │ │ └── PublicLibraries/ │ │ │ └── environment.yml │ │ └── Setting/ │ │ └── Sparkcompute.yml │ ├── cicd_experiment.MLExperiment/ │ │ ├── .platform │ │ └── mlexperiment.metadata.json │ ├── config.yml │ ├── parameter template.yml │ ├── parameter.yml │ ├── sample apache airflow job.ApacheAirflowJob/ │ │ ├── .platform │ │ ├── apacheairflowjob-content.json │ │ └── dags/ │ │ └── dag1.py │ ├── subfolder/ │ │ ├── Hello World Subfolder.Notebook/ │ │ │ ├── .platform │ │ │ └── notebook-content.py │ │ └── subfolder/ │ │ └── Hello World SubfolderSubfolder.Notebook/ │ │ ├── .platform │ │ └── notebook-content.py │ └── templates/ │ ├── nb parameter template 1.yml │ └── nb parameter template 2.yml ├── src/ │ └── fabric_cicd/ │ ├── __init__.py │ ├── _common/ │ │ ├── __init__.py │ │ ├── _check_utils.py │ │ ├── _color.py │ │ ├── _config_utils.py │ │ ├── _config_validator.py │ │ ├── _deployment_result.py │ │ ├── _exceptions.py │ │ ├── _fabric_endpoint.py │ │ ├── _file.py │ │ ├── _file_lock.py │ │ ├── _git_diff_utils.py │ │ ├── _http_tracer.py │ │ ├── _item.py │ │ ├── _logging.py │ │ ├── _validate_env_vars.py │ │ └── _validate_input.py │ ├── _items/ │ │ ├── __init__.py │ │ ├── _activator.py │ │ ├── _apacheairflowjob.py │ │ ├── _base_publisher.py │ │ ├── _copyjob.py │ │ ├── _dataagent.py │ │ ├── _databuildtooljob.py │ │ ├── _dataflowgen2.py │ │ ├── _datapipeline.py │ │ ├── _environment.py │ │ ├── _eventhouse.py │ │ ├── _eventstream.py │ │ ├── _graphqlapi.py │ │ ├── _kqldashboard.py │ │ ├── _kqldatabase.py │ │ ├── _kqlqueryset.py │ │ ├── _lakehouse.py │ │ ├── _manage_dependencies.py │ │ ├── _mirroreddatabase.py │ │ ├── _mlexperiment.py │ │ ├── _mounteddatafactory.py │ │ ├── _notebook.py │ │ ├── _ontology.py │ │ ├── _report.py │ │ ├── _semanticmodel.py │ │ ├── _sparkjobdefinition.py │ │ ├── _sqldatabase.py │ │ ├── _userdatafunction.py │ │ ├── _variablelibrary.py │ │ └── _warehouse.py │ ├── _parameter/ │ │ ├── __init__.py │ │ ├── _parameter.py │ │ └── _utils.py │ ├── constants.py │ ├── fabric_workspace.py │ └── publish.py └── tests/ ├── fixtures/ │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── credentials.py │ └── mock_fabric_server.py ├── test__check_utils.py ├── test__fabric_endpoint.py ├── test__file.py ├── test_config_validator.py ├── test_deploy_with_config.py ├── test_environment_publish.py ├── test_fabric_workspace.py ├── test_fqdn_workspace_id.py ├── test_git_diff_utils.py ├── test_hard_delete.py ├── test_integration_publish.py ├── test_logging.py ├── test_parameter.py ├── test_parameter_utils.py ├── test_publish.py ├── test_response_collection.py ├── test_semantic_model_exclude.py ├── test_shortcut_exclude.py ├── test_subfolders.py └── test_validate_env_vars.py