Skip to content

Commit e11b98b

Browse files
Release v1.34.32 (2020-09-25) (#3561)
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
1 parent a67dc8f commit e11b98b

File tree

22 files changed

+832
-193
lines changed

22 files changed

+832
-193
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Release v1.34.32 (2020-09-25)
2+
===
3+
4+
### Service Client Updates
5+
* `service/batch`: Updates service API and documentation
6+
* Support custom logging, executionRole, secrets, and linuxParameters (initProcessEnabled, maxSwap, swappiness, sharedMemorySize, and tmpfs). Also, add new context keys for awslogs.
7+
* `service/config`: Updates service API
8+
* `service/docdb`: Updates service documentation
9+
* Documentation updates for docdb
10+
* `service/ec2`: Updates service API and documentation
11+
* This release supports returning additional information about local gateway resources, such as the local gateway route table.
12+
* `service/frauddetector`: Updates service API and documentation
13+
* `service/sts`: Updates service API and documentation
14+
* Documentation update for AssumeRole error
15+
116
Release v1.34.31 (2020-09-24)
217
===
318

aws/endpoints/defaults.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.34.31"
8+
const SDKVersion = "1.34.32"

models/apis/batch/2016-08-10/api-2.json

+71-3
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,7 @@
427427
"memory":{"shape":"Integer"},
428428
"command":{"shape":"StringList"},
429429
"jobRoleArn":{"shape":"String"},
430+
"executionRoleArn":{"shape":"String"},
430431
"volumes":{"shape":"Volumes"},
431432
"environment":{"shape":"EnvironmentVariables"},
432433
"mountPoints":{"shape":"MountPoints"},
@@ -442,7 +443,9 @@
442443
"instanceType":{"shape":"String"},
443444
"networkInterfaces":{"shape":"NetworkInterfaceList"},
444445
"resourceRequirements":{"shape":"ResourceRequirements"},
445-
"linuxParameters":{"shape":"LinuxParameters"}
446+
"linuxParameters":{"shape":"LinuxParameters"},
447+
"logConfiguration":{"shape":"LogConfiguration"},
448+
"secrets":{"shape":"SecretList"}
446449
}
447450
},
448451
"ContainerOverrides":{
@@ -464,6 +467,7 @@
464467
"memory":{"shape":"Integer"},
465468
"command":{"shape":"StringList"},
466469
"jobRoleArn":{"shape":"String"},
470+
"executionRoleArn":{"shape":"String"},
467471
"volumes":{"shape":"Volumes"},
468472
"environment":{"shape":"EnvironmentVariables"},
469473
"mountPoints":{"shape":"MountPoints"},
@@ -473,7 +477,9 @@
473477
"user":{"shape":"String"},
474478
"instanceType":{"shape":"String"},
475479
"resourceRequirements":{"shape":"ResourceRequirements"},
476-
"linuxParameters":{"shape":"LinuxParameters"}
480+
"linuxParameters":{"shape":"LinuxParameters"},
481+
"logConfiguration":{"shape":"LogConfiguration"},
482+
"secrets":{"shape":"SecretList"}
477483
}
478484
},
479485
"ContainerSummary":{
@@ -840,7 +846,12 @@
840846
"LinuxParameters":{
841847
"type":"structure",
842848
"members":{
843-
"devices":{"shape":"DevicesList"}
849+
"devices":{"shape":"DevicesList"},
850+
"initProcessEnabled":{"shape":"Boolean"},
851+
"sharedMemorySize":{"shape":"Integer"},
852+
"tmpfs":{"shape":"TmpfsList"},
853+
"maxSwap":{"shape":"Integer"},
854+
"swappiness":{"shape":"Integer"}
844855
}
845856
},
846857
"ListJobsRequest":{
@@ -862,6 +873,32 @@
862873
"nextToken":{"shape":"String"}
863874
}
864875
},
876+
"LogConfiguration":{
877+
"type":"structure",
878+
"required":["logDriver"],
879+
"members":{
880+
"logDriver":{"shape":"LogDriver"},
881+
"options":{"shape":"LogConfigurationOptionsMap"},
882+
"secretOptions":{"shape":"SecretList"}
883+
}
884+
},
885+
"LogConfigurationOptionsMap":{
886+
"type":"map",
887+
"key":{"shape":"String"},
888+
"value":{"shape":"String"}
889+
},
890+
"LogDriver":{
891+
"type":"string",
892+
"enum":[
893+
"json-file",
894+
"syslog",
895+
"journald",
896+
"gelf",
897+
"fluentd",
898+
"awslogs",
899+
"splunk"
900+
]
901+
},
865902
"Long":{"type":"long"},
866903
"MountPoint":{
867904
"type":"structure",
@@ -1005,6 +1042,21 @@
10051042
"attempts":{"shape":"Integer"}
10061043
}
10071044
},
1045+
"Secret":{
1046+
"type":"structure",
1047+
"required":[
1048+
"name",
1049+
"valueFrom"
1050+
],
1051+
"members":{
1052+
"name":{"shape":"String"},
1053+
"valueFrom":{"shape":"String"}
1054+
}
1055+
},
1056+
"SecretList":{
1057+
"type":"list",
1058+
"member":{"shape":"Secret"}
1059+
},
10081060
"ServerException":{
10091061
"type":"structure",
10101062
"members":{
@@ -1071,6 +1123,22 @@
10711123
"members":{
10721124
}
10731125
},
1126+
"Tmpfs":{
1127+
"type":"structure",
1128+
"required":[
1129+
"containerPath",
1130+
"size"
1131+
],
1132+
"members":{
1133+
"containerPath":{"shape":"String"},
1134+
"size":{"shape":"Integer"},
1135+
"mountOptions":{"shape":"StringList"}
1136+
}
1137+
},
1138+
"TmpfsList":{
1139+
"type":"list",
1140+
"member":{"shape":"Tmpfs"}
1141+
},
10741142
"Ulimit":{
10751143
"type":"structure",
10761144
"required":[

0 commit comments

Comments
 (0)