Microsoft Power BI Operators

Microsoft Power BI, is a unified, scalable platform for self-service and enterprise business intelligence(BI).

Prerequisite Tasks

To use these operators, you must do a few things:

PowerBIDatasetRefreshOperator

To trigger a refresh for the specified dataset from the specified workspace, use the PowerBIDatasetRefreshOperator.

tests/system/microsoft/azure/example_powerbi_dataset_refresh.py[source]

    refresh_powerbi_dataset = PowerBIDatasetRefreshOperator(
        conn_id="powerbi_default",
        task_id="refresh_powerbi_dataset",
        dataset_id=DATASET_ID,
        group_id=GROUP_ID,
        check_interval=30,
        timeout=120,
    )

Was this entry helpful?