Skip to content

Commit

Permalink
Release v1.36.1 (2020-12-03)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/amplifybackend`: Updates service documentation
* `service/batch`: Updates service API and documentation
  * This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task.
* `service/compute-optimizer`: Updates service API and documentation
* `service/license-manager`: Updates service API and documentation
  • Loading branch information
awssdkgo committed Dec 3, 2020
1 parent 28d533c commit 0dc7cc0
Show file tree
Hide file tree
Showing 22 changed files with 13,146 additions and 2,148 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.36.1 (2020-12-03)
===

### Service Client Updates
* `service/amplifybackend`: Updates service documentation
* `service/batch`: Updates service API and documentation
* This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task.
* `service/compute-optimizer`: Updates service API and documentation
* `service/license-manager`: Updates service API and documentation

Release v1.36.0 (2020-12-02)
===

Expand Down
24 changes: 24 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.36.0"
const SDKVersion = "1.36.1"
160 changes: 80 additions & 80 deletions models/apis/amplifybackend/2020-08-11/docs-2.json

Large diffs are not rendered by default.

94 changes: 78 additions & 16 deletions models/apis/batch/2016-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,13 @@
"index":{"shape":"Integer"}
}
},
"AssignPublicIp":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"AttemptContainerDetail":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -356,7 +363,9 @@
"type":"string",
"enum":[
"EC2",
"SPOT"
"SPOT",
"FARGATE",
"FARGATE_SPOT"
]
},
"CancelJobRequest":{
Expand Down Expand Up @@ -426,11 +435,8 @@
"type":"structure",
"required":[
"type",
"minvCpus",
"maxvCpus",
"instanceTypes",
"subnets",
"instanceRole"
"subnets"
],
"members":{
"type":{"shape":"CRType"},
Expand Down Expand Up @@ -461,7 +467,9 @@
"members":{
"minvCpus":{"shape":"Integer"},
"maxvCpus":{"shape":"Integer"},
"desiredvCpus":{"shape":"Integer"}
"desiredvCpus":{"shape":"Integer"},
"subnets":{"shape":"StringList"},
"securityGroupIds":{"shape":"StringList"}
}
},
"ContainerDetail":{
Expand Down Expand Up @@ -490,14 +498,24 @@
"resourceRequirements":{"shape":"ResourceRequirements"},
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"}
"secrets":{"shape":"SecretList"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"}
}
},
"ContainerOverrides":{
"type":"structure",
"members":{
"vcpus":{"shape":"Integer"},
"memory":{"shape":"Integer"},
"vcpus":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"memory":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"command":{"shape":"StringList"},
"instanceType":{"shape":"String"},
"environment":{"shape":"EnvironmentVariables"},
Expand All @@ -508,8 +526,16 @@
"type":"structure",
"members":{
"image":{"shape":"String"},
"vcpus":{"shape":"Integer"},
"memory":{"shape":"Integer"},
"vcpus":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"memory":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"command":{"shape":"StringList"},
"jobRoleArn":{"shape":"String"},
"executionRoleArn":{"shape":"String"},
Expand All @@ -524,7 +550,9 @@
"resourceRequirements":{"shape":"ResourceRequirements"},
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"}
"secrets":{"shape":"SecretList"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"}
}
},
"ContainerSummary":{
Expand Down Expand Up @@ -734,6 +762,12 @@
"type":"list",
"member":{"shape":"EvaluateOnExit"}
},
"FargatePlatformConfiguration":{
"type":"structure",
"members":{
"platformVersion":{"shape":"String"}
}
},
"Host":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -788,7 +822,9 @@
"containerProperties":{"shape":"ContainerProperties"},
"timeout":{"shape":"JobTimeout"},
"nodeProperties":{"shape":"NodeProperties"},
"tags":{"shape":"TagrisTagsMap"}
"tags":{"shape":"TagrisTagsMap"},
"propagateTags":{"shape":"Boolean"},
"platformCapabilities":{"shape":"PlatformCapabilityList"}
}
},
"JobDefinitionList":{
Expand Down Expand Up @@ -843,7 +879,9 @@
"nodeProperties":{"shape":"NodeProperties"},
"arrayProperties":{"shape":"ArrayPropertiesDetail"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
"tags":{"shape":"TagrisTagsMap"},
"propagateTags":{"shape":"Boolean"},
"platformCapabilities":{"shape":"PlatformCapabilityList"}
}
},
"JobDetailList":{
Expand Down Expand Up @@ -1017,6 +1055,12 @@
"type":"list",
"member":{"shape":"MountPoint"}
},
"NetworkConfiguration":{
"type":"structure",
"members":{
"assignPublicIp":{"shape":"AssignPublicIp"}
}
},
"NetworkInterface":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1093,6 +1137,17 @@
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"PlatformCapability":{
"type":"string",
"enum":[
"EC2",
"FARGATE"
]
},
"PlatformCapabilityList":{
"type":"list",
"member":{"shape":"PlatformCapability"}
},
"RegisterJobDefinitionRequest":{
"type":"structure",
"required":[
Expand All @@ -1106,8 +1161,10 @@
"containerProperties":{"shape":"ContainerProperties"},
"nodeProperties":{"shape":"NodeProperties"},
"retryStrategy":{"shape":"RetryStrategy"},
"propagateTags":{"shape":"Boolean"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
"tags":{"shape":"TagrisTagsMap"},
"platformCapabilities":{"shape":"PlatformCapabilityList"}
}
},
"RegisterJobDefinitionResponse":{
Expand Down Expand Up @@ -1140,7 +1197,11 @@
},
"ResourceType":{
"type":"string",
"enum":["GPU"]
"enum":[
"GPU",
"VCPU",
"MEMORY"
]
},
"RetryAction":{
"type":"string",
Expand Down Expand Up @@ -1202,6 +1263,7 @@
"containerOverrides":{"shape":"ContainerOverrides"},
"nodeOverrides":{"shape":"NodeOverrides"},
"retryStrategy":{"shape":"RetryStrategy"},
"propagateTags":{"shape":"Boolean"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
}
Expand Down
Loading

0 comments on commit 0dc7cc0

Please sign in to comment.