-
Notifications
You must be signed in to change notification settings - Fork 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
mgmt, appservice redegisn #14890
Merged
weidongxu-microsoft
merged 25 commits into
Azure:master
from
weidongxu-microsoft:mgmt_appservice-redegisn
Sep 11, 2020
Merged
mgmt, appservice redegisn #14890
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
15f039f
bump netty version
weidongxu-microsoft 2d4b7b3
add WebSiteBase
weidongxu-microsoft 978d0f3
redesign WebApps.List
weidongxu-microsoft 728dc01
fix
weidongxu-microsoft 4b8ab5f
fix
weidongxu-microsoft 12a469d
remove inProgressOperationId
weidongxu-microsoft 0bc97f6
FunctionAppBasic
weidongxu-microsoft 2d9f3e4
fix tests
weidongxu-microsoft afa1567
add test case for WebAppBasic
weidongxu-microsoft 6b0b723
use flatMapDelayError
weidongxu-microsoft 4a846c1
let WebApp extends WebAppBasic
weidongxu-microsoft f377149
Merge branch 'master' into mgmt_appservice-redegisn
weidongxu-microsoft 59b8165
remove unused code
weidongxu-microsoft 3d48a59
add WebDeploymentSlotBasic and FunctionDeploymentSlotBasic
weidongxu-microsoft 2488cd4
test and fix
weidongxu-microsoft c84ece9
simplify FunctionRuntimeStack
weidongxu-microsoft e09197f
redact
weidongxu-microsoft 4d419ac
changelog
weidongxu-microsoft b9960e9
spotbugs
weidongxu-microsoft 5e0aec5
rename lambda function
weidongxu-microsoft 95a4853
code reuse
weidongxu-microsoft 2db7e1b
javadoc
weidongxu-microsoft 0e80c25
add test for batch flux
weidongxu-microsoft 2de39f3
delete ReactorMapper
weidongxu-microsoft 92507c8
refresh also refresh self
weidongxu-microsoft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I think the deleteByIdAsync should take one string
id
rather than two strings (some resource will need more).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 can easily overload it with same name, and take
Function<String, Mono<Void>>
for this case (I actually wrote this signature first, then changed it since most case it is resourceGroupName+name).