-
Notifications
You must be signed in to change notification settings - Fork 64
Auto-generate low/high level AWS wrappers #121
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d2462f6
Added dependencies to the Project.toml
mattBrzezinski fbdd690
Ignoring .DS_STORE
mattBrzezinski 00d95ab
Generate AWS Services in Julia code
mattBrzezinski 2af1ec8
Initial generation of AWS Services
mattBrzezinski 5b77167
Added unit testing
mattBrzezinski 46d6434
Added compat, extras, and targets section to Project.toml
mattBrzezinski d1e2b96
Don't export internal functions in AWSMetadataUtilities.jl
mattBrzezinski 24cd716
Added trailing white space, fixed typo, removed mutable from request …
mattBrzezinski 1fa65dc
Addressed CR comments from @omus
mattBrzezinski d6166d1
Re-generated API wrappers
mattBrzezinski f1292ae
Re-arranged include, using, export
mattBrzezinski 6004613
Addressed more CR feedback from @omus
mattBrzezinski 35eb499
Set OrderedCollections to 1
mattBrzezinski 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Manifest.toml | ||
.idea/* | ||
.idea/* | ||
.DS_Store |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,25 @@ | ||
name = "AWS" | ||
uuid = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc" | ||
license = "MIT" | ||
version = "1.0.0" | ||
version = "1.0.0" | ||
|
||
[deps] | ||
AWSCore = "4f1ea46c-232b-54a6-9b17-cc2d0f3e6598" | ||
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
SymDict = "2da68c74-98d7-5633-99d6-8493888d7b1e" | ||
|
||
[compat] | ||
AWSCore = "0.6" | ||
HTTP = "0.8" | ||
JSON = "0.18, 0.19, 0.20, 0.21" | ||
OrderedCollections = "1.0, 1.1" | ||
SymDict = "0.3" | ||
julia = "1" | ||
|
||
[extras] | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
mattBrzezinski marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[targets] | ||
test = ["Test"] |
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.
Uh oh!
There was an error while loading. Please reload this page.