forked from jrochel/ocaml-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pm mck feature/add sqs (inhabitedtype#63)
* update aws mli to support transforming hashtbl keys; add sqs support; fix bug in generator for mapping enums * add endpoint generator * update to add region for to_http call * Generate sqs library. * Re-run libraries generation using the new endpoints. * Fixup maintainer information.
- Loading branch information
1 parent
f105cc2
commit acbb7fc
Showing
608 changed files
with
13,425 additions
and
1,302 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ libraries/**/*.install | |
lib/**/.merlin | ||
.envrc | ||
**/.merlin | ||
.idea |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
opam-version: "2.0" | ||
maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" | ||
maintainer: "Tim McGilchrist <timmcgil@gmail.com>" | ||
authors: [ "Spiros Eliopoulos <[email protected]>" | ||
"Daniel Patterson <[email protected]>" ] | ||
"Daniel Patterson <[email protected]>" | ||
"Tim McGilchrist <[email protected]>"] | ||
synopsis: "Amazon Web Services SDK bindings for async" | ||
description: "Amazon Web Services SDK bindings for async" | ||
license: "BSD-3-clause" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
opam-version: "2.0" | ||
maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" | ||
maintainer: "Tim McGilchrist <timmcgil@gmail.com>" | ||
authors: [ "Spiros Eliopoulos <[email protected]>" | ||
"Daniel Patterson <[email protected]>" ] | ||
"Daniel Patterson <[email protected]>" | ||
"Tim McGilchrist <[email protected]>" | ||
] | ||
synopsis: "Amazon Web Services code generator" | ||
description: "Amazon Web Services code generator - Builds OCaml bindings for AWS using botocore API definition" | ||
license: "BSD-3-clause" | ||
|
@@ -13,6 +15,7 @@ build: [ | |
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"atdgen" | ||
"yojson" | ||
"base-unix" | ||
"cmdliner" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
opam-version: "2.0" | ||
maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" | ||
maintainer: "Tim McGilchrist <timmcgil@gmail.com>" | ||
authors: [ "Spiros Eliopoulos <[email protected]>" | ||
"Daniel Patterson <[email protected]>" ] | ||
"Daniel Patterson <[email protected]>" | ||
"Tim McGilchrist <[email protected]>"] | ||
synopsis: "Amazon Web Services SDK bindings for lwt" | ||
description: "Amazon Web Services SDK bindings for lwt" | ||
license: "BSD-3-clause" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
opam-version: "2.0" | ||
maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" | ||
maintainer: "Tim McGilchrist <timmcgil@gmail.com>" | ||
authors: [ "Spiros Eliopoulos <[email protected]>" | ||
"Daniel Patterson <[email protected]>" ] | ||
"Daniel Patterson <[email protected]>" | ||
"Tim McGilchrist <[email protected]>"] | ||
synopsis: "Amazon Web Services SDK" | ||
description: """ | ||
Amazon Web Services SDK | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
opam-version: "2.0" | ||
maintainer: "Tim McGilchrist <[email protected]>" | ||
authors: [ "Spiros Eliopoulos <[email protected]>" | ||
"Daniel Patterson <[email protected]>" | ||
"Tim McGilchrist <[email protected]>" | ||
] | ||
synopsis: "Amazon Web Services SDK bindings to Amazon Simple Queue Service" | ||
description: "Amazon Web Services SDK bindings to Amazon Simple Queue Service" | ||
version: "1.1" | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/inhabitedtype/ocaml-aws" | ||
dev-repo: "git+https://github.com/inhabitedtype/ocaml-aws.git" | ||
bug-reports: "https://github.com/inhabitedtype/ocaml-aws/issues" | ||
doc: "https://github.com/inhabitedtype/ocaml-aws" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"aws" {>= "0.1.0"} | ||
"dune" {build} | ||
] |
Oops, something went wrong.