{% extends "base.html" %} {% block title %}CSP Sync — Data Mesh — ICDEV{% endblock %} {% block content %}
Data Mesh Domains Products Contracts Governance CSP Mesh Hub

Cloud Service Provider Sync

Sync Data Mesh domains and products to AWS DataZone, Azure Purview, or GCP Dataplex.

{% set aws = csp_status.aws %}
AWS DataZone
Data catalog and governance for AWS
SDK: {{ 'Available' if aws.available else 'Not Installed' }} Credentials: {{ 'Configured' if aws.configured else 'Not Set' }}
{% set azure = csp_status.azure %}
Azure Purview
Unified data governance for Azure
SDK: {{ 'Available' if azure.available else 'Not Installed' }} Credentials: {{ 'Configured' if azure.configured else 'Not Set' }}
{% set gcp = csp_status.gcp %}
GCP Dataplex
Intelligent data fabric for Google Cloud
SDK: {{ 'Available' if gcp.available else 'Not Installed' }} Credentials: {{ 'Configured' if gcp.configured else 'Not Set' }}

Sync Result —

0
Synced
0
Errors

Sync History

ID Provider Operation Status Synced Domains Error Timestamp
Loading…
{% set iqe_canvas = "data_mesh_csp" %} {% set iqe_api_route = "/data/api/iqe-query" %} {% set iqe_title = "IQE Query — CSP Bridges" %} {% set iqe_examples = [ {"label": "All domains", "query": "foreach d in data_mesh.domains select d.name, d.owner_team, d.status, d.classification"}, {"label": "Published products", "query": "foreach p in data_mesh.products where p.status == \"published\" select p.name, p.domain_id, p.sla_tier, p.output_port_type"}, {"label": "Active domains + products", "query": "foreach d in data_mesh.domains where d.status == \"active\" select d.name, d.maturity_level, d.classification"}, {"label": "Gold SLA products", "query": "foreach p in data_mesh.products where p.sla_tier in [\"gold\", \"platinum\"] select p.name, p.domain_id, p.sla_tier"} ] %} {% include "includes/iqe_query_widget.html" %} {% endblock %} {% block scripts %} {% endblock %}