-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[backup] az backup vault deleted-vault: Implementing List and Undelete for Deleted Backup Vaults
#32306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[backup] az backup vault deleted-vault: Implementing List and Undelete for Deleted Backup Vaults
#32306
Conversation
️✔️AzureCLI-FullTest
|
|
Hi @zubairabid, |
❌AzureCLI-BreakingChangeTest
Please submit your Breaking Change Pre-announcement ASAP if you haven't already. Please note:
|
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
|
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
|
Targeting November release (2025-11-04) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR implements list, get, undelete, and list-containers commands for soft-deleted Recovery Services vaults in Azure Backup, targeting the November 2025 release.
Key Changes:
- Upgrades
azure-mgmt-recoveryservicesfrom version 3.1.0 to 4.0.0 to support deleted vault operations - Adds four new commands under
az backup deleted-vault: list, get, undelete, and list-containers - Implements helper functions for extracting resource parameters from deleted vault IDs
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| setup.py | Updated azure-mgmt-recoveryservices dependency from ~=3.1.0 to ~=4.0.0 |
| requirements.py3.windows.txt | Updated azure-mgmt-recoveryservices from 3.1.0 to 4.0.0 |
| requirements.py3.Linux.txt | Updated azure-mgmt-recoveryservices from 3.1.0 to 4.0.0 |
| requirements.py3.Darwin.txt | Updated azure-mgmt-recoveryservices from 3.1.0 to 4.0.0 |
| custom_help.py | Added helper functions for parsing deleted vault IDs and extracting resource group information |
| custom.py | Implemented list, get, undelete, and list-containers operations for deleted vaults |
| commands.py | Registered new deleted-vault command group with four subcommands |
| _params.py | Added parameter definitions for deleted vault commands; removed unused parameter |
| _help.py | Added help documentation and examples for all deleted-vault commands |
| _client_factory.py | Added deleted_vaults_cf factory function for deleted vaults client |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…zubairabid/azure-cli into users/zubair/RSVVaultSoftDelete
…zubairabid/azure-cli into users/zubair/RSVVaultSoftDelete
…zubairabid/azure-cli into users/zubair/RSVVaultSoftDelete
…zubairabid/azure-cli into users/zubair/RSVVaultSoftDelete
Related command
Description
Targeting November release (2025-11-04).
Testing Guide
History Notes
[Component Name 1] BREAKING CHANGE:
az command a: Make some customer-facing breaking change[Component Name 2]
az command b: Add some customer-facing featureThis checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.