Skip to content

Commit

Permalink
Release v1.32.0 (2020-06-11) (#3366)
Browse files Browse the repository at this point in the history
Release v1.32.0 (2020-06-11)
===

### Service Client Updates
* `service/ecs`: Updates service API and documentation
  * This release adds support for deleting capacity providers.
* `service/imagebuilder`: Updates service API and documentation
* `service/lex-models`: Updates service API and documentation

### SDK Features
* `service/iotdataplane`: As part of this release, we are introducing a new feature called named shadow, which extends the capability of AWS IoT Device Shadow to support multiple shadows for a single IoT device. With this release, customers can store different device state data into different shadows, and as a result access only the required state data when needed and reduce individual shadow size.
  • Loading branch information
aws-sdk-go-automation authored Jun 11, 2020
1 parent 685e18c commit 891e63f
Show file tree
Hide file tree
Showing 16 changed files with 804 additions and 72 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.32.0 (2020-06-11)
===

### Service Client Updates
* `service/ecs`: Updates service API and documentation
* This release adds support for deleting capacity providers.
* `service/imagebuilder`: Updates service API and documentation
* `service/lex-models`: Updates service API and documentation

### SDK Features
* `service/iotdataplane`: As part of this release, we are introducing a new feature called named shadow, which extends the capability of AWS IoT Device Shadow to support multiple shadows for a single IoT device. With this release, customers can store different device state data into different shadows, and as a result access only the required state data when needed and reduce individual shadow size.

Release v1.31.15 (2020-06-10)
===

Expand Down
1 change: 0 additions & 1 deletion CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
### SDK Features
* `service/iotdataplane`: As part of this release, we are introducing a new feature called named shadow, which extends the capability of AWS IoT Device Shadow to support multiple shadows for a single IoT device. With this release, customers can store different device state data into different shadows, and as a result access only the required state data when needed and reduce individual shadow size.

### SDK Enhancements

Expand Down
23 changes: 23 additions & 0 deletions aws/endpoints/defaults.go

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

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.31.15"
const SDKVersion = "1.32.0"
45 changes: 43 additions & 2 deletions models/apis/ecs/2014-11-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
{"shape":"ServerException"},
{"shape":"ClientException"},
{"shape":"InvalidParameterException"},
{"shape":"LimitExceededException"}
{"shape":"LimitExceededException"},
{"shape":"UpdateInProgressException"}
]
},
"CreateCluster":{
Expand Down Expand Up @@ -110,6 +111,20 @@
{"shape":"InvalidParameterException"}
]
},
"DeleteCapacityProvider":{
"name":"DeleteCapacityProvider",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteCapacityProviderRequest"},
"output":{"shape":"DeleteCapacityProviderResponse"},
"errors":[
{"shape":"ServerException"},
{"shape":"ClientException"},
{"shape":"InvalidParameterException"}
]
},
"DeleteCluster":{
"name":"DeleteCluster",
"http":{
Expand Down Expand Up @@ -883,6 +898,8 @@
"name":{"shape":"String"},
"status":{"shape":"CapacityProviderStatus"},
"autoScalingGroupProvider":{"shape":"AutoScalingGroupProvider"},
"updateStatus":{"shape":"CapacityProviderUpdateStatus"},
"updateStatusReason":{"shape":"String"},
"tags":{"shape":"Tags"}
}
},
Expand All @@ -896,7 +913,10 @@
},
"CapacityProviderStatus":{
"type":"string",
"enum":["ACTIVE"]
"enum":[
"ACTIVE",
"INACTIVE"
]
},
"CapacityProviderStrategy":{
"type":"list",
Expand All @@ -921,6 +941,14 @@
"max":1000,
"min":0
},
"CapacityProviderUpdateStatus":{
"type":"string",
"enum":[
"DELETE_IN_PROGRESS",
"DELETE_COMPLETE",
"DELETE_FAILED"
]
},
"CapacityProviders":{
"type":"list",
"member":{"shape":"CapacityProvider"}
Expand Down Expand Up @@ -1323,6 +1351,19 @@
"attributes":{"shape":"Attributes"}
}
},
"DeleteCapacityProviderRequest":{
"type":"structure",
"required":["capacityProvider"],
"members":{
"capacityProvider":{"shape":"String"}
}
},
"DeleteCapacityProviderResponse":{
"type":"structure",
"members":{
"capacityProvider":{"shape":"CapacityProvider"}
}
},
"DeleteClusterRequest":{
"type":"structure",
"required":["cluster"],
Expand Down
Loading

0 comments on commit 891e63f

Please sign in to comment.