Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.40.9 #4031

Merged
merged 1 commit into from Jul 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,23 @@
Release v1.40.9 (2021-07-27)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
* Add support for ListJob filters
* `service/iotanalytics`: Updates service API and documentation
* `service/iotwireless`: Updates service API and documentation
* `service/models.lex.v2`: Updates service waiters
* `service/quicksight`: Updates service API and documentation
* Add support to use row-level security with tags when embedding dashboards for users not provisioned in QuickSight
* `service/redshift-data`: Updates service API and documentation
* `service/route53`: Updates service API and documentation
* This release adds support for the RECOVERY_CONTROL health check type to be used in conjunction with Route53 Application Recovery Controller.
* `service/route53-recovery-cluster`: Adds new service
* `service/route53-recovery-control-config`: Adds new service
* `service/route53-recovery-readiness`: Adds new service
* `service/shield`: Updates service documentation
* Change name of DDoS Response Team (DRT) to Shield Response Team (SRT)

Release v1.40.8 (2021-07-26)
===

Expand Down
53 changes: 48 additions & 5 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.40.8"
const SDKVersion = "1.40.9"
17 changes: 15 additions & 2 deletions models/apis/batch/2016-08-10/api-2.json
Expand Up @@ -972,7 +972,8 @@
"stoppedAt":{"shape":"Long"},
"container":{"shape":"ContainerSummary"},
"arrayProperties":{"shape":"ArrayPropertiesSummary"},
"nodeProperties":{"shape":"NodePropertiesSummary"}
"nodeProperties":{"shape":"NodePropertiesSummary"},
"jobDefinition":{"shape":"String"}
}
},
"JobSummaryList":{
Expand All @@ -992,6 +993,13 @@
"value":{"shape":"String"}
}
},
"KeyValuesPair":{
"type":"structure",
"members":{
"name":{"shape":"String"},
"values":{"shape":"StringList"}
}
},
"LaunchTemplateSpecification":{
"type":"structure",
"members":{
Expand All @@ -1011,6 +1019,10 @@
"swappiness":{"shape":"Integer"}
}
},
"ListJobsFilterList":{
"type":"list",
"member":{"shape":"KeyValuesPair"}
},
"ListJobsRequest":{
"type":"structure",
"members":{
Expand All @@ -1019,7 +1031,8 @@
"multiNodeJobId":{"shape":"String"},
"jobStatus":{"shape":"JobStatus"},
"maxResults":{"shape":"Integer"},
"nextToken":{"shape":"String"}
"nextToken":{"shape":"String"},
"filters":{"shape":"ListJobsFilterList"}
}
},
"ListJobsResponse":{
Expand Down