Skip to content

Commit

Permalink
Release v1.12.61
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jan 12, 2018
1 parent 15a0ee4 commit 0cebc63
Show file tree
Hide file tree
Showing 5 changed files with 369 additions and 139 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.12.61 (2018-01-12)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
* Support is added to generate ETL scripts in Scala which can now be run by AWS Glue ETL jobs. In addition, the trigger API now supports firing when any conditions are met (in addition to all conditions). Also, jobs can be triggered based on a "failed" or "stopped" job run (in addition to a "succeeded" job run).

Release v1.12.60 (2018-01-11)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.12.60"
const SDKVersion = "1.12.61"
44 changes: 33 additions & 11 deletions models/apis/glue/2017-03-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@
{"shape":"AlreadyExistsException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"ResourceNumberLimitExceededException"}
{"shape":"ResourceNumberLimitExceededException"},
{"shape":"ConcurrentModificationException"}
]
},
"CreatePartition":{
Expand Down Expand Up @@ -254,9 +255,11 @@
"errors":[
{"shape":"AlreadyExistsException"},
{"shape":"InvalidInputException"},
{"shape":"IdempotentParameterMismatchException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"ResourceNumberLimitExceededException"}
{"shape":"ResourceNumberLimitExceededException"},
{"shape":"ConcurrentModificationException"}
]
},
"CreateUserDefinedFunction":{
Expand Down Expand Up @@ -401,7 +404,8 @@
"errors":[
{"shape":"InvalidInputException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"}
{"shape":"OperationTimeoutException"},
{"shape":"ConcurrentModificationException"}
]
},
"DeleteUserDefinedFunction":{
Expand Down Expand Up @@ -951,7 +955,8 @@
{"shape":"InvalidInputException"},
{"shape":"InternalServiceException"},
{"shape":"EntityNotFoundException"},
{"shape":"OperationTimeoutException"}
{"shape":"OperationTimeoutException"},
{"shape":"ConcurrentModificationException"}
]
},
"UpdateClassifier":{
Expand Down Expand Up @@ -1058,7 +1063,8 @@
{"shape":"InvalidInputException"},
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"}
{"shape":"OperationTimeoutException"},
{"shape":"ConcurrentModificationException"}
]
},
"UpdatePartition":{
Expand Down Expand Up @@ -1104,7 +1110,8 @@
{"shape":"InvalidInputException"},
{"shape":"InternalServiceException"},
{"shape":"EntityNotFoundException"},
{"shape":"OperationTimeoutException"}
{"shape":"OperationTimeoutException"},
{"shape":"ConcurrentModificationException"}
]
},
"UpdateUserDefinedFunction":{
Expand Down Expand Up @@ -1786,13 +1793,15 @@
"type":"structure",
"members":{
"DagNodes":{"shape":"DagNodes"},
"DagEdges":{"shape":"DagEdges"}
"DagEdges":{"shape":"DagEdges"},
"Language":{"shape":"Language"}
}
},
"CreateScriptResponse":{
"type":"structure",
"members":{
"PythonScript":{"shape":"PythonScript"}
"PythonScript":{"shape":"PythonScript"},
"ScalaCode":{"shape":"ScalaCode"}
}
},
"CreateTableRequest":{
Expand Down Expand Up @@ -2467,13 +2476,15 @@
"Mapping":{"shape":"MappingList"},
"Source":{"shape":"CatalogEntry"},
"Sinks":{"shape":"CatalogEntries"},
"Location":{"shape":"Location"}
"Location":{"shape":"Location"},
"Language":{"shape":"Language"}
}
},
"GetPlanResponse":{
"type":"structure",
"members":{
"PythonScript":{"shape":"PythonScript"}
"PythonScript":{"shape":"PythonScript"},
"ScalaCode":{"shape":"ScalaCode"}
}
},
"GetTableRequest":{
Expand Down Expand Up @@ -2778,6 +2789,13 @@
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
},
"Language":{
"type":"string",
"enum":[
"PYTHON",
"SCALA"
]
},
"LastCrawlInfo":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2828,7 +2846,10 @@
},
"Logical":{
"type":"string",
"enum":["AND"]
"enum":[
"AND",
"ANY"
]
},
"LogicalOperator":{
"type":"string",
Expand Down Expand Up @@ -3083,6 +3104,7 @@
"type":"list",
"member":{"shape":"S3Target"}
},
"ScalaCode":{"type":"string"},
"Schedule":{
"type":"structure",
"members":{
Expand Down

0 comments on commit 0cebc63

Please sign in to comment.