feat(job): support semanticModel job run / start / run-status commands#2
Draft
may-hartov wants to merge 7 commits intomainfrom
Draft
feat(job): support semanticModel job run / start / run-status commands#2may-hartov wants to merge 7 commits intomainfrom
may-hartov wants to merge 7 commits intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for running and monitoring Power BI semantic model refresh as jobs in the CLI.
It adds new API client methods, job type definitions, error handling, and command logic to enable semantic model refresh as a distinct job type, with proper status polling, cancellation, and parameter validation. The changes also ensure that unsupported operations for semantic models are explicitly blocked and surfaced to the user.
P0 support:
Semantic Model Refresh Job Support:
fab_api_semantic_model.py) with methods to trigger, monitor, and cancel semantic model refreshes via Power BI REST API.FabricJobType.SEMANTIC_MODEL_REFRESHand mapped it to theItemType.SEMANTIC_MODELin the job type mapping. [1] [2]fab_jobs_run.py) and status (fab_jobs_run_status.py) commands to handle semantic model refresh jobs separately, including custom payloads, status transformation, and cancellation logic. [1] [2] [3] [4]Parameter Validation and Error Handling:
-P/--params,-i/--input) for semantic model refresh jobs and surfaced clear error messages. [1] [2]Job Polling and Status Logic:
Command Configuration and Restrictions:
run_cancel,run_list,run_update) as unsupported for semantic models, preventing accidental misuse.Minor Improvements:
These changes collectively enable semantic model refresh as a robust, well-integrated job type in the CLI, with user-friendly error handling and clear operational boundaries.