Skip to content
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

Objects apigw API #115

Merged
merged 36 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e353d41
Get rust-analyzer working again
brainstorm Feb 22, 2024
d4195a4
Apigw CDK scaffold for the lambda (objects) query functionality
brainstorm Feb 22, 2024
99763c0
Readable version of the (hand-crafted) filemanager OpenAPI from month…
brainstorm Feb 22, 2024
c73a1da
Point to the right function, thanks @mmalenic [ci skip]
brainstorm Feb 23, 2024
2052cfa
Ignore caches and Cargo.lock from skel/rust to avoid dependabot buggi…
brainstorm Feb 25, 2024
0290e1d
Scaffold for Rust-side query objects api [ci skip]
brainstorm Feb 26, 2024
23afd08
Try SIMILAR TO, which is closer to regex syntax than LIKE: https://ww…
brainstorm Feb 27, 2024
a6e4d00
Merge branch 'main' of https:/umccr/orcabus into objects_…
brainstorm Mar 7, 2024
5ad221d
Own stack for API gateway testing
brainstorm Apr 10, 2024
207eb98
Merge filemanager apigw branch w/ main
brainstorm Apr 15, 2024
30a85be
Adjust lifetimes for Client on the query module
brainstorm Apr 15, 2024
47da4d2
Simplify docs, remove unused warning
brainstorm Apr 19, 2024
4df267e
Github conflicting files do not seem to be conflicting locally..
brainstorm Apr 19, 2024
47c7ccb
Fix conflicts
brainstorm Apr 19, 2024
25a39c4
Keeping up with the stack tree reorg
brainstorm Apr 19, 2024
04cfe88
compose's version field obsolete, interesting and welcome deprecation…
brainstorm Apr 19, 2024
0fafe33
Fix ApiGateway v2 CDK for Filemanager Query lambda
brainstorm Apr 19, 2024
bcb9f3d
Merge remote-tracking branch 'origin' into objects_apigw_api
brainstorm Apr 22, 2024
ccce5b5
Remove SRM from api-gateway construct, promote it to (hopefully reusa…
brainstorm Apr 22, 2024
cd9c081
Point SRM to the new higher level api-gateway construct. Fix some con…
brainstorm Apr 22, 2024
bf62137
Refactor filemanager stack with new api-gw construct, follow some of …
brainstorm Apr 22, 2024
6e533ce
Discussion with Marko on harmonizing the Props and stack structure (t…
brainstorm Apr 22, 2024
9b82fa8
Merge remote-tracking branch 'origin' into objects_apigw_api
brainstorm Apr 23, 2024
e3c90f9
Merge
brainstorm Apr 23, 2024
326cbec
Fix provider function new import
brainstorm Apr 23, 2024
f406dcd
Bad merge?
brainstorm Apr 23, 2024
3345460
Revert "Bad merge?"
brainstorm Apr 23, 2024
b4a18da
Make TODO stand out, more ripgrep-friendly
brainstorm Apr 23, 2024
19f8011
Pass correct package (filemanager-api) to stack to match query functi…
brainstorm Apr 26, 2024
343bd1f
Remove old stack
brainstorm Apr 26, 2024
2c7a91d
Fix id naming glitch with stack name, add access logs, explore CloudM…
brainstorm Apr 26, 2024
11f972d
Substitute custom policy/role for a managed one: https://docs.aws.ama…
brainstorm Apr 26, 2024
6088bf5
Bizarre TS import rules... was getting 'Cannot read properties of und…
brainstorm Apr 26, 2024
01a1c4d
Respect OrcaBusAPI prefix as observed in other u-services
brainstorm Apr 26, 2024
82211af
Fix API GW construct for metadata-manager
brainstorm Apr 26, 2024
78724e0
Address @victorskl's PR review feedback
brainstorm Apr 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ data/
Brewfile.lock.json
*.xml

target/

.coverage
htmlcov/

# Filemanager-specific
.sqlx
target/
lib/workload/stateful/filemanager/volume
skel/rust-api/Cargo.lock
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"rust-analyzer.linkedProjects": [
"lib/workload/stateful/filemanager/Cargo.toml",
"lib/workload/stateless/stacks/filemanager/Cargo.toml",
"skel/rust-api/Cargo.toml"
]
}
Loading
Loading