-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[Storage] Add support for share soft delete. #10792
Conversation
Do we have any API changes? Need to re-generate the review file with |
Extracted API for review. In reply to: 678980593 [](ancestors = 678980593) |
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.
API changes look good so far.
LGTM. Agree with @sadasant on grouping the test cases as they have same logic for skipping. #Resolved |
Added share soft delete support. Added
undeleteShare
toShareServiceClient
.listShares
now can return deleted shares. Note: share soft delete only take effect on accounts with share soft delete feature enabled.For design, as align to .Net and Java,
undeleteShare
is added underShareServiceClient
, while not involvingundelete
under 'ShareClient'. This is due toundelete
doesn't support restore deleted share to a different share name in service side yet.