Skip to content

Commit

Permalink
Release v1.34.32 (2020-09-25)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
  * Support custom logging, executionRole, secrets, and linuxParameters (initProcessEnabled, maxSwap, swappiness, sharedMemorySize, and tmpfs). Also, add new context keys for awslogs.
* `service/config`: Updates service API
* `service/docdb`: Updates service documentation
  * Documentation updates for docdb
* `service/ec2`: Updates service API and documentation
  * This release supports returning additional information about local gateway resources, such as the local gateway route table.
* `service/frauddetector`: Updates service API and documentation
* `service/sts`: Updates service API and documentation
  * Documentation update for AssumeRole error
  • Loading branch information
awssdkgo committed Sep 25, 2020
1 parent a67dc8f commit 419f55f
Show file tree
Hide file tree
Showing 22 changed files with 832 additions and 193 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.34.32 (2020-09-25)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
* Support custom logging, executionRole, secrets, and linuxParameters (initProcessEnabled, maxSwap, swappiness, sharedMemorySize, and tmpfs). Also, add new context keys for awslogs.
* `service/config`: Updates service API
* `service/docdb`: Updates service documentation
* Documentation updates for docdb
* `service/ec2`: Updates service API and documentation
* This release supports returning additional information about local gateway resources, such as the local gateway route table.
* `service/frauddetector`: Updates service API and documentation
* `service/sts`: Updates service API and documentation
* Documentation update for AssumeRole error

Release v1.34.31 (2020-09-24)
===

Expand Down
1 change: 1 addition & 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.34.31"
const SDKVersion = "1.34.32"
74 changes: 71 additions & 3 deletions models/apis/batch/2016-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@
"memory":{"shape":"Integer"},
"command":{"shape":"StringList"},
"jobRoleArn":{"shape":"String"},
"executionRoleArn":{"shape":"String"},
"volumes":{"shape":"Volumes"},
"environment":{"shape":"EnvironmentVariables"},
"mountPoints":{"shape":"MountPoints"},
Expand All @@ -442,7 +443,9 @@
"instanceType":{"shape":"String"},
"networkInterfaces":{"shape":"NetworkInterfaceList"},
"resourceRequirements":{"shape":"ResourceRequirements"},
"linuxParameters":{"shape":"LinuxParameters"}
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"}
}
},
"ContainerOverrides":{
Expand All @@ -464,6 +467,7 @@
"memory":{"shape":"Integer"},
"command":{"shape":"StringList"},
"jobRoleArn":{"shape":"String"},
"executionRoleArn":{"shape":"String"},
"volumes":{"shape":"Volumes"},
"environment":{"shape":"EnvironmentVariables"},
"mountPoints":{"shape":"MountPoints"},
Expand All @@ -473,7 +477,9 @@
"user":{"shape":"String"},
"instanceType":{"shape":"String"},
"resourceRequirements":{"shape":"ResourceRequirements"},
"linuxParameters":{"shape":"LinuxParameters"}
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"}
}
},
"ContainerSummary":{
Expand Down Expand Up @@ -840,7 +846,12 @@
"LinuxParameters":{
"type":"structure",
"members":{
"devices":{"shape":"DevicesList"}
"devices":{"shape":"DevicesList"},
"initProcessEnabled":{"shape":"Boolean"},
"sharedMemorySize":{"shape":"Integer"},
"tmpfs":{"shape":"TmpfsList"},
"maxSwap":{"shape":"Integer"},
"swappiness":{"shape":"Integer"}
}
},
"ListJobsRequest":{
Expand All @@ -862,6 +873,32 @@
"nextToken":{"shape":"String"}
}
},
"LogConfiguration":{
"type":"structure",
"required":["logDriver"],
"members":{
"logDriver":{"shape":"LogDriver"},
"options":{"shape":"LogConfigurationOptionsMap"},
"secretOptions":{"shape":"SecretList"}
}
},
"LogConfigurationOptionsMap":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"LogDriver":{
"type":"string",
"enum":[
"json-file",
"syslog",
"journald",
"gelf",
"fluentd",
"awslogs",
"splunk"
]
},
"Long":{"type":"long"},
"MountPoint":{
"type":"structure",
Expand Down Expand Up @@ -1005,6 +1042,21 @@
"attempts":{"shape":"Integer"}
}
},
"Secret":{
"type":"structure",
"required":[
"name",
"valueFrom"
],
"members":{
"name":{"shape":"String"},
"valueFrom":{"shape":"String"}
}
},
"SecretList":{
"type":"list",
"member":{"shape":"Secret"}
},
"ServerException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1071,6 +1123,22 @@
"members":{
}
},
"Tmpfs":{
"type":"structure",
"required":[
"containerPath",
"size"
],
"members":{
"containerPath":{"shape":"String"},
"size":{"shape":"Integer"},
"mountOptions":{"shape":"StringList"}
}
},
"TmpfsList":{
"type":"list",
"member":{"shape":"Tmpfs"}
},
"Ulimit":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 419f55f

Please sign in to comment.