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

Generate Elasticmapreduce support. #65

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ LIBRARIES := \
aws-cloudwatch \
aws-elasticache \
aws-elasticloadbalancing \
aws-emr \
aws-rds \
aws-sdb \
aws-ssm \
Expand Down
22 changes: 22 additions & 0 deletions aws-elasticmapreduce.opam
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 Elastic MapReduce"
description: "Amazon Web Services SDK bindings to Amazon Elastic MapReduce"
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"
]
5 changes: 5 additions & 0 deletions input/emr/2009-03-31/examples-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
15 changes: 15 additions & 0 deletions input/emr/2009-03-31/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@
"input_token": "Marker",
"output_token": "Marker",
"result_key": "Steps"
},
"ListInstanceFleets": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "InstanceFleets"
},
"ListSecurityConfigurations": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "SecurityConfigurations"
},
"ListNotebookExecutions": {
"input_token": "Marker",
"output_token": "Marker",
"result_key": "NotebookExecutions"
}
}
}
2,958 changes: 2,446 additions & 512 deletions input/emr/2009-03-31/service-2.json

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions input/emr/2009-03-31/waiters-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,50 @@
"expected": "TERMINATED_WITH_ERRORS"
}
]
},
"StepComplete": {
"delay": 30,
"operation": "DescribeStep",
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Step.Status.State",
"expected": "COMPLETED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Step.Status.State",
"expected": "FAILED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Step.Status.State",
"expected": "CANCELLED"
}
]
},
"ClusterTerminated": {
"delay": 30,
"operation": "DescribeCluster",
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATED"
},
{
"state": "failure",
"matcher": "path",
"argument": "Cluster.Status.State",
"expected": "TERMINATED_WITH_ERRORS"
}
]
}
}
}
1 change: 1 addition & 0 deletions input/emr/latest
Loading