-
Notifications
You must be signed in to change notification settings - Fork 906
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
feat(provider/aws): Lambda function target support for AWS ALB #7630
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
c7d0768
.
sidmuls 0dbd5f2
feat(provider/aws): Function listing and searching functionality
sidmuls 9f27c4f
feat(provider/aws): Function listing and searching functionality
sidmuls 4caa90c
Merge branch 'master' of https://github.com/sidmuls/deck
sidmuls 0d04734
refactor(provider/aws): Converting Function class component into func…
sidmuls aa9cdc0
refactor(provider/aws): Refactoring groupings into a separate component.
sidmuls 1cbb844
refactor(provider/aws): Removing unnecessary state from FunctionGroup…
sidmuls d1b43d2
refactor(provider/aws): removing extra line. Tthis is actually for r…
sidmuls d96a32b
refactor(provider/aws): Adding tests for FunctionFilterService and ch…
sidmuls ab69450
refactor(provider/aws): removing unnecessary field from IFunction
sidmuls 6ca3d99
Merge branch 'master' into master
mergify[bot] 543ee1e
refactor(provider/aws): adding flag to turn off functions feature
sidmuls 26d9043
Merge branch 'master' of https://github.com/sidmuls/deck
sidmuls 06ad9e6
Merge branch 'master' into master
mergify[bot] 2803afe
feat(provider/aws): Function CREATE EDIT and DELETE feature.
sidmuls 5bddb8b
fix(provider/aws): fixing import statement
sidmuls 7fbb282
Merge pull request #1 from sidmuls/function-crud
sidmuls 718b2d7
Merge remote-tracking branch 'upstream/master'
sidmuls df45ecb
fix(provider/aws): resolving merge conflicts
sidmuls 2261c12
fix(provider/aws): fixing property type for Entity Tags
sidmuls a47a3ba
Merge pull request #2 from sidmuls/function-crud
sidmuls d8a9404
fix(provider/aws): removing unnecessary component from AwsFunctionDet…
sidmuls 65eb1b0
refactor(provider/aws): fixing review comments by @caseyhebebrand
sidmuls d838d3b
refactor(provider/aws): changes for following best practices as reque…
sidmuls 990d82f
refactor(provider/aws): Adding message to display in case function i…
sidmuls c80bd9e
refactor(provider/aws): merging upstream changes
sidmuls dcf8f60
refactor(provider/aws): Replacing MapEditor with MapEditorInput in Fu…
sidmuls ff535ad
refactor(provider/aws): fixes for comments requested by @christheilen
sidmuls 6c71651
refactor(provider/aws): changes as requested by @christhielen and a b…
sidmuls c793e9f
Merge branch 'master' into master
mergify[bot] 10fc496
feat(provider/aws): ALB Lambda target support
sidmuls 2f3c70b
refactor(provider/aws): merging upstream changes
sidmuls 28ce7c8
Merge remote-tracking branch 'upstream/master'
sidmuls abd5615
fix(provider/aws): fixing error with tags and targetGroups
sidmuls 7be7c75
fix(provider/aws): fixing error with target group field in function r…
sidmuls 17bf6af
refactor(provider/aws): changes as requested by @christhielen
sidmuls 2d64b83
fix(provider/aws): fixing multiValueHeadersEnabled flag usage in lamb…
sidmuls c6512ab
Merge branch 'master' into master
mergify[bot] 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
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
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
Oops, something went wrong.
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.
Why is this typed as
string | string[]
? Why not just type these asstring[]
?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.
Currently we support adding only one target group instead of a list of target groups. Clouddriver expects it to be a string in Create/Update operation.
However, while fetching a function's details, AWS Lambda returns a list of string for the
targetGroups
field.Hence the type
string | string[]