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

v1.15.54 #2207

Merged
merged 1 commit into from
Oct 12, 2018
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.15.54 (2018-10-12)
===

### Service Client Updates
* `service/cloudtrail`: Updates service API and documentation
* The LookupEvents API now supports two new attribute keys: ReadOnly and AccessKeyId

### SDK Enhancements
* `aws/session`: Add support for credential source(#2201)
* Allows for shared config file to contain `credential_source` with any of the given values `EcsContainer`, `Environment` or `Ec2InstanceMetadata`

Release v1.15.53 (2018-10-11)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
### SDK Features

### SDK Enhancements
* `aws/session`: Add support for credential source(#2201)
* Allows for shared config file to contain `credential_source` with any of the given values `EcsContainer`, `Environment` or `Ec2InstanceMetadata`

### SDK Bugs
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.53"
const SDKVersion = "1.15.54"
7 changes: 6 additions & 1 deletion models/apis/cloudtrail/2013-11-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"protocol":"json",
"serviceAbbreviation":"CloudTrail",
"serviceFullName":"AWS CloudTrail",
"serviceId":"CloudTrail",
"signatureVersion":"v4",
"targetPrefix":"com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101",
"uid":"cloudtrail-2013-11-01"
Expand Down Expand Up @@ -389,6 +390,8 @@
"members":{
"EventId":{"shape":"String"},
"EventName":{"shape":"String"},
"ReadOnly":{"shape":"String"},
"AccessKeyId":{"shape":"String"},
"EventTime":{"shape":"Date"},
"EventSource":{"shape":"String"},
"Username":{"shape":"String"},
Expand Down Expand Up @@ -634,10 +637,12 @@
"enum":[
"EventId",
"EventName",
"ReadOnly",
"Username",
"ResourceType",
"ResourceName",
"EventSource"
"EventSource",
"AccessKeyId"
]
},
"LookupAttributesList":{
Expand Down
70 changes: 36 additions & 34 deletions models/apis/cloudtrail/2013-11-01/docs-2.json

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions models/apis/cloudtrail/2013-11-01/smoke.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 1,
"defaultRegion": "us-west-2",
"testCases": [
{
"operationName": "DescribeTrails",
"input": {},
"errorExpectedFromService": false
},
{
"operationName": "DeleteTrail",
"input": {
"Name": "faketrail"
},
"errorExpectedFromService": true
}
]
}
247 changes: 174 additions & 73 deletions service/cloudtrail/api.go

Large diffs are not rendered by default.

15 changes: 12 additions & 3 deletions service/cloudtrail/errors.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.