Skip to content

Commit

Permalink
Release v1.16.27
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Feb 4, 2019
1 parent 0943d65 commit 949cbce
Show file tree
Hide file tree
Showing 13 changed files with 550 additions and 139 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.16.27 (2019-02-04)
===

### Service Client Updates
* `service/application-autoscaling`: Updates service documentation
* `service/codecommit`: Updates service API
* This release supports a more graceful handling of the error case when a repository is not associated with a pull request ID in a merge request in AWS CodeCommit.
* `service/ecs`: Updates service API and documentation
* This release of Amazon Elastic Container Service (Amazon ECS) introduces support for GPU workloads by enabling you to create clusters with GPU-enabled container instances.
* `service/workspaces`: Updates service API
* This release sets ClientProperties as a required parameter.

Release v1.16.26 (2019-01-25)
===

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.16.26"
const SDKVersion = "1.16.27"
96 changes: 48 additions & 48 deletions models/apis/application-autoscaling/2016-02-06/docs-2.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions models/apis/codecommit/2015-04-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@
{"shape":"TipOfSourceReferenceIsDifferentException"},
{"shape":"ReferenceDoesNotExistException"},
{"shape":"InvalidCommitIdException"},
{"shape":"RepositoryNotAssociatedWithPullRequestException"},
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
Expand Down
55 changes: 52 additions & 3 deletions models/apis/ecs/2014-11-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,11 @@
"reason":{"shape":"String"},
"networkBindings":{"shape":"NetworkBindings"},
"networkInterfaces":{"shape":"NetworkInterfaces"},
"healthStatus":{"shape":"HealthStatus"}
"healthStatus":{"shape":"HealthStatus"},
"cpu":{"shape":"String"},
"memory":{"shape":"String"},
"memoryReservation":{"shape":"String"},
"gpuIds":{"shape":"GpuIds"}
}
},
"ContainerDefinition":{
Expand Down Expand Up @@ -802,7 +806,8 @@
"ulimits":{"shape":"UlimitList"},
"logConfiguration":{"shape":"LogConfiguration"},
"healthCheck":{"shape":"HealthCheck"},
"systemControls":{"shape":"SystemControls"}
"systemControls":{"shape":"SystemControls"},
"resourceRequirements":{"shape":"ResourceRequirements"}
}
},
"ContainerDefinitions":{
Expand Down Expand Up @@ -856,7 +861,8 @@
"environment":{"shape":"EnvironmentVariables"},
"cpu":{"shape":"BoxedInteger"},
"memory":{"shape":"BoxedInteger"},
"memoryReservation":{"shape":"BoxedInteger"}
"memoryReservation":{"shape":"BoxedInteger"},
"resourceRequirements":{"shape":"ResourceRequirements"}
}
},
"ContainerOverrides":{
Expand Down Expand Up @@ -1209,6 +1215,10 @@
"type":"list",
"member":{"shape":"Failure"}
},
"GpuIds":{
"type":"list",
"member":{"shape":"String"}
},
"HealthCheck":{
"type":"structure",
"required":["command"],
Expand Down Expand Up @@ -1594,6 +1604,25 @@
"binpack"
]
},
"PlatformDevice":{
"type":"structure",
"required":[
"id",
"type"
],
"members":{
"id":{"shape":"String"},
"type":{"shape":"PlatformDeviceType"}
}
},
"PlatformDeviceType":{
"type":"string",
"enum":["GPU"]
},
"PlatformDevices":{
"type":"list",
"member":{"shape":"PlatformDevice"}
},
"PlatformTaskDefinitionIncompatibilityException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1667,6 +1696,7 @@
"versionInfo":{"shape":"VersionInfo"},
"containerInstanceArn":{"shape":"String"},
"attributes":{"shape":"Attributes"},
"platformDevices":{"shape":"PlatformDevices"},
"tags":{"shape":"Tags"}
}
},
Expand Down Expand Up @@ -1733,6 +1763,25 @@
},
"exception":true
},
"ResourceRequirement":{
"type":"structure",
"required":[
"value",
"type"
],
"members":{
"value":{"shape":"String"},
"type":{"shape":"ResourceType"}
}
},
"ResourceRequirements":{
"type":"list",
"member":{"shape":"ResourceRequirement"}
},
"ResourceType":{
"type":"string",
"enum":["GPU"]
},
"Resources":{
"type":"list",
"member":{"shape":"Resource"}
Expand Down
53 changes: 51 additions & 2 deletions models/apis/ecs/2014-11-13/docs-2.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion models/apis/workspaces/2015-04-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,10 @@
},
"ModifyClientPropertiesRequest":{
"type":"structure",
"required":["ResourceId"],
"required":[
"ResourceId",
"ClientProperties"
],
"members":{
"ResourceId":{"shape":"NonEmptyString"},
"ClientProperties":{"shape":"ClientProperties"}
Expand Down
Loading

0 comments on commit 949cbce

Please sign in to comment.