Skip to content

Commit 576c0f1

Browse files
feat(workload-orchestration): add unstage command for solution versions
Add new `unstage` command to remove staged solution versions from targets. This command: - Implements the unstage operation following the AAZ pattern - Supports long-running operations (LRO) with no-wait flag - Includes command to fetch updated solution version after unstaging - Adds proper argument validation and resource group support Example usage: ``` az workload-orchestration target unstage -n myTarget -g myResourceGroup --solution-version-id <arm-id>
1 parent 1fba329 commit 576c0f1

2 files changed

Lines changed: 559 additions & 0 deletions

File tree

  • src/workload-orchestration/azext_workload_orchestration/aaz/latest/workload_orchestration/target

src/workload-orchestration/azext_workload_orchestration/aaz/latest/workload_orchestration/target/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from ._update_external_validation_status import *
2121
from ._show import *
2222
from ._uninstall import *
23+
from ._unstage import *
2324
from ._update import *
2425
from ._wait import *
2526
from ._solution_instance_list import *

0 commit comments

Comments
 (0)