-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dataprotection] Full support for Soft Delete in V2 (#6639)
* Soft delete V2 code * Accidentally GAed it, reverting * Code for soft delete should be complete, tests pending * Added soft delete tests, infra not ready yet * Test infra setup, new version defined, PR ready * Remove debug statements * Update HISTORY.rst as per review recommendation. Co-authored-by: Yishi Wang <[email protected]> --------- Co-authored-by: Zubair Abid <[email protected]> Co-authored-by: Yishi Wang <[email protected]>
- Loading branch information
1 parent
9598e81
commit d195c72
Showing
29 changed files
with
4,502 additions
and
1,196 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
24 changes: 24 additions & 0 deletions
24
...otection/aaz/latest/dataprotection/backup_instance/deleted_backup_instance/__cmd_group.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# | ||
# Code generated by aaz-dev-tools | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
# pylint: skip-file | ||
# flake8: noqa | ||
|
||
from azure.cli.core.aaz import * | ||
|
||
|
||
@register_command_group( | ||
"dataprotection backup-instance deleted-backup-instance", | ||
is_experimental=True, | ||
) | ||
class __CMDGroup(AAZCommandGroup): | ||
"""Perform operations on soft-deleted backup instances. | ||
""" | ||
pass | ||
|
||
|
||
__all__ = ["__CMDGroup"] |
14 changes: 14 additions & 0 deletions
14
...aprotection/aaz/latest/dataprotection/backup_instance/deleted_backup_instance/__init__.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# | ||
# Code generated by aaz-dev-tools | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
# pylint: skip-file | ||
# flake8: noqa | ||
|
||
from .__cmd_group import * | ||
from ._list import * | ||
from ._show import * | ||
from ._undelete import * |
Oops, something went wrong.