Skip to content

Commit

Permalink
Merge pull request #2482 from aws/release
Browse files Browse the repository at this point in the history
Release v1.17.9
  • Loading branch information
aws-sdk-go-automation authored Mar 1, 2019
2 parents 18b4e17 + f2bb620 commit 156429b
Show file tree
Hide file tree
Showing 10 changed files with 481 additions and 148 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Release v1.17.9 (2019-03-01)
===

### Service Client Updates
* `service/autoscaling-plans`: Updates service documentation
* `service/ec2`: Updates service API and documentation
* This release adds support for modifying instance event start time which allows users to reschedule EC2 events.

### SDK Enhancements
* `example/service/s3`: Add example of S3 download with progress ([#2456](https://github.com/aws/aws-sdk-go/pull/2456))
* Adds a new example to the S3 service's examples. This example shows how you could use the S3's GetObject API call in conjunction with a custom writer keeping track of progress.
* Related to [#1868](https://github.com/aws/aws-sdk-go/pull/1868), [#2468](https://github.com/aws/aws-sdk-go/pull/2468)

### SDK Bugs
* `aws/session`: Allow HTTP Proxy with custom CA bundle ([#2343](https://github.com/aws/aws-sdk-go/pull/2343))
* Ensures Go HTTP Client's `ProxyFromEnvironment` functionality is still enabled when custom CA bundles are used with the SDK.
* Fix [#2287](https://github.com/aws/aws-sdk-go/pull/2287)
Release v1.17.8 (2019-02-28)
===

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

### SDK Enhancements
* `example/service/s3`: Add example of S3 download with progress ([#2456](https://github.com/aws/aws-sdk-go/pull/2456))
* Adds a new example to the S3 service's examples. This example shows how you could use the S3's GetObject API call in conjunction with a custom writer keeping track of progress.
* Related to [#1868](https://github.com/aws/aws-sdk-go/pull/1868), [#2468](https://github.com/aws/aws-sdk-go/pull/2468)

### SDK Bugs
* `aws/session`: Allow HTTP Proxy with custom CA bundle ([#2343](https://github.com/aws/aws-sdk-go/pull/2343))
* Ensures Go HTTP Client's `ProxyFromEnvironment` functionality is still enabled when custom CA bundles are used with the SDK.
* Fix [#2287](https://github.com/aws/aws-sdk-go/pull/2287)
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.17.8"
const SDKVersion = "1.17.9"
24 changes: 12 additions & 12 deletions models/apis/autoscaling-plans/2018-01-06/docs-2.json

Large diffs are not rendered by default.

48 changes: 47 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2380,6 +2380,15 @@
"input":{"shape":"ModifyInstanceCreditSpecificationRequest"},
"output":{"shape":"ModifyInstanceCreditSpecificationResult"}
},
"ModifyInstanceEventStartTime":{
"name":"ModifyInstanceEventStartTime",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ModifyInstanceEventStartTimeRequest"},
"output":{"shape":"ModifyInstanceEventStartTimeResult"}
},
"ModifyInstancePlacement":{
"name":"ModifyInstancePlacement",
"http":{
Expand Down Expand Up @@ -8537,6 +8546,11 @@
}
}
},
"DescribeInstanceCreditSpecificationsMaxResults":{
"type":"integer",
"max":1000,
"min":5
},
"DescribeInstanceCreditSpecificationsRequest":{
"type":"structure",
"members":{
Expand All @@ -8549,7 +8563,7 @@
"shape":"InstanceIdStringList",
"locationName":"InstanceId"
},
"MaxResults":{"shape":"Integer"},
"MaxResults":{"shape":"DescribeInstanceCreditSpecificationsMaxResults"},
"NextToken":{"shape":"String"}
}
},
Expand Down Expand Up @@ -13691,6 +13705,7 @@
"CpuCredits":{"shape":"String"}
}
},
"InstanceEventId":{"type":"string"},
"InstanceExportDetails":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -14133,6 +14148,10 @@
"InstanceStatusEvent":{
"type":"structure",
"members":{
"InstanceEventId":{
"shape":"InstanceEventId",
"locationName":"instanceEventId"
},
"Code":{
"shape":"EventCode",
"locationName":"code"
Expand All @@ -14148,6 +14167,10 @@
"NotBefore":{
"shape":"DateTime",
"locationName":"notBefore"
},
"NotBeforeDeadline":{
"shape":"DateTime",
"locationName":"notBeforeDeadline"
}
}
},
Expand Down Expand Up @@ -15742,6 +15765,29 @@
}
}
},
"ModifyInstanceEventStartTimeRequest":{
"type":"structure",
"required":[
"InstanceId",
"InstanceEventId",
"NotBefore"
],
"members":{
"DryRun":{"shape":"Boolean"},
"InstanceId":{"shape":"String"},
"InstanceEventId":{"shape":"String"},
"NotBefore":{"shape":"DateTime"}
}
},
"ModifyInstanceEventStartTimeResult":{
"type":"structure",
"members":{
"Event":{
"shape":"InstanceStatusEvent",
"locationName":"event"
}
}
},
"ModifyInstancePlacementRequest":{
"type":"structure",
"required":["InstanceId"],
Expand Down
118 changes: 73 additions & 45 deletions models/apis/ec2/2016-11-15/docs-2.json

Large diffs are not rendered by default.

53 changes: 41 additions & 12 deletions service/autoscalingplans/api.go

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

5 changes: 3 additions & 2 deletions service/autoscalingplans/doc.go

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

Loading

0 comments on commit 156429b

Please sign in to comment.