-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Add lro enum #27284
Add lro enum #27284
Conversation
API changes have been detected in API changes + public enum WaitUntil {
+ Completed = 0,
+ Started = 1,
+ } |
This pull request is protected by Check Enforcer. |
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.
We should add tests to illustrate the intended usage of this type.
Are updates needed to any of the Operation*
types to enforce usage of this type, or is there an issue tracking that work?
No real way to enforce this, you can easily use an |
Looks like we have this issue tracking the work I mentioned - I just added the Azure.Core label so it doesn't get lost. |
* add lro enum * add comments * update api
Contributing to the Azure SDK
Adding a new LRO enum to indicate if the method should wait for full completion or return after it has started.
Please see our CONTRIBUTING.md if you are not familiar with contributing to this repository or have questions.
For specific information about pull request etiquette and best practices, see this section.