Skip to content

Commit

Permalink
Merge pull request aws#2214 from aws/release
Browse files Browse the repository at this point in the history
Release v1.15.56
  • Loading branch information
aws-sdk-go-automation committed Oct 16, 2018
2 parents 6e42625 + c35fe9d commit 58b3352
Show file tree
Hide file tree
Showing 16 changed files with 12,761 additions and 4,779 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.15.56 (2018-10-16)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
* New Glue APIs for creating, updating, reading and deleting Data Catalog resource-based policies.
* `service/lightsail`: Updates service API and documentation
* Adds support for Lightsail managed databases.
* `service/resource-groups`: Updates service API and documentation

Release v1.15.55 (2018-10-15)
===

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.15.55"
const SDKVersion = "1.15.56"
113 changes: 113 additions & 0 deletions models/apis/glue/2017-03-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,22 @@
{"shape":"OperationTimeoutException"}
]
},
"DeleteResourcePolicy":{
"name":"DeleteResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteResourcePolicyRequest"},
"output":{"shape":"DeleteResourcePolicyResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"},
{"shape":"ConditionCheckFailureException"}
]
},
"DeleteSecurityConfiguration":{
"name":"DeleteSecurityConfiguration",
"http":{
Expand Down Expand Up @@ -809,6 +825,21 @@
{"shape":"OperationTimeoutException"}
]
},
"GetResourcePolicy":{
"name":"GetResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetResourcePolicyRequest"},
"output":{"shape":"GetResourcePolicyResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"}
]
},
"GetSecurityConfiguration":{
"name":"GetSecurityConfiguration",
"http":{
Expand Down Expand Up @@ -992,6 +1023,22 @@
{"shape":"OperationTimeoutException"}
]
},
"PutResourcePolicy":{
"name":"PutResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutResourcePolicyRequest"},
"output":{"shape":"PutResourcePolicyResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"},
{"shape":"ConditionCheckFailureException"}
]
},
"ResetJobBookmark":{
"name":"ResetJobBookmark",
"http":{
Expand Down Expand Up @@ -1691,6 +1738,13 @@
"State":{"shape":"JobRunState"}
}
},
"ConditionCheckFailureException":{
"type":"structure",
"members":{
"Message":{"shape":"MessageString"}
},
"exception":true
},
"ConditionList":{
"type":"list",
"member":{"shape":"Condition"}
Expand Down Expand Up @@ -2294,6 +2348,17 @@
"members":{
}
},
"DeleteResourcePolicyRequest":{
"type":"structure",
"members":{
"PolicyHashCondition":{"shape":"HashString"}
}
},
"DeleteResourcePolicyResponse":{
"type":"structure",
"members":{
}
},
"DeleteSecurityConfigurationRequest":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -2474,6 +2539,14 @@
}
},
"ExecutionTime":{"type":"integer"},
"ExistCondition":{
"type":"string",
"enum":[
"MUST_EXIST",
"NOT_EXIST",
"NONE"
]
},
"FieldType":{"type":"string"},
"FilterString":{
"type":"string",
Expand Down Expand Up @@ -2833,6 +2906,20 @@
"ScalaCode":{"shape":"ScalaCode"}
}
},
"GetResourcePolicyRequest":{
"type":"structure",
"members":{
}
},
"GetResourcePolicyResponse":{
"type":"structure",
"members":{
"PolicyInJson":{"shape":"PolicyJsonString"},
"PolicyHash":{"shape":"HashString"},
"CreateTime":{"shape":"Timestamp"},
"UpdateTime":{"shape":"Timestamp"}
}
},
"GetSecurityConfigurationRequest":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -3037,6 +3124,12 @@
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\t]*"
},
"HashString":{
"type":"string",
"max":255,
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
},
"IdString":{
"type":"string",
"max":255,
Expand Down Expand Up @@ -3468,6 +3561,11 @@
"AvailabilityZone":{"shape":"NameString"}
}
},
"PolicyJsonString":{
"type":"string",
"max":10240,
"min":2
},
"Predecessor":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3518,6 +3616,21 @@
"members":{
}
},
"PutResourcePolicyRequest":{
"type":"structure",
"required":["PolicyInJson"],
"members":{
"PolicyInJson":{"shape":"PolicyJsonString"},
"PolicyHashCondition":{"shape":"HashString"},
"PolicyExistsCondition":{"shape":"ExistCondition"}
}
},
"PutResourcePolicyResponse":{
"type":"structure",
"members":{
"PolicyHash":{"shape":"HashString"}
}
},
"PythonScript":{"type":"string"},
"ResetJobBookmarkRequest":{
"type":"structure",
Expand Down
Loading

0 comments on commit 58b3352

Please sign in to comment.