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.51.20 #5223

Merged
merged 1 commit into from
Apr 11, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
Release v1.51.20 (2024-04-11)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
* This release adds the task properties field to attempt details and the name field on EKS container detail.
* `service/cloudfront`: Updates service API and documentation
* CloudFront origin access control extends support to AWS Lambda function URLs and AWS Elemental MediaPackage v2 origins.
* `service/codebuild`: Updates service documentation
* Support access tokens for Bitbucket sources
* `service/iam`: Updates service API and documentation
* For CreateOpenIDConnectProvider API, the ThumbprintList parameter is no longer required.
* `service/medialive`: Updates service API, documentation, waiters, and paginators
* AWS Elemental MediaLive introduces workflow monitor, a new feature that enables the visualization and monitoring of your media workflows. Create signal maps of your existing workflows and monitor them by creating notification and monitoring template groups.
* `service/monitoring`: Updates service API and documentation
* This release adds support for Metric Characteristics for CloudWatch Anomaly Detection. Anomaly Detector now takes Metric Characteristics object with Periodic Spikes boolean field that tells Anomaly Detection that spikes that repeat at the same time every week are part of the expected pattern.
* `service/omics`: Updates service API and documentation
* `service/pipes`: Updates service API
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* Updates Amazon RDS documentation for Standard Edition 2 support in RDS Custom for Oracle.
* `service/s3control`: Updates service documentation
* Documentation updates for Amazon S3-control.
* `service/wafv2`: Adds new service

Release v1.51.19 (2024-04-10)
===

Expand Down
128 changes: 128 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.51.19"
const SDKVersion = "1.51.20"
30 changes: 29 additions & 1 deletion models/apis/batch/2016-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,13 +383,32 @@
"container":{"shape":"AttemptContainerDetail"},
"startedAt":{"shape":"Long"},
"stoppedAt":{"shape":"Long"},
"statusReason":{"shape":"String"}
"statusReason":{"shape":"String"},
"taskProperties":{"shape":"ListAttemptEcsTaskDetails"}
}
},
"AttemptDetails":{
"type":"list",
"member":{"shape":"AttemptDetail"}
},
"AttemptEcsTaskDetails":{
"type":"structure",
"members":{
"containerInstanceArn":{"shape":"String"},
"taskArn":{"shape":"String"},
"containers":{"shape":"ListAttemptTaskContainerDetails"}
}
},
"AttemptTaskContainerDetails":{
"type":"structure",
"members":{
"exitCode":{"shape":"Integer"},
"name":{"shape":"String"},
"reason":{"shape":"String"},
"logStreamName":{"shape":"String"},
"networkInterfaces":{"shape":"NetworkInterfaceList"}
}
},
"Boolean":{"type":"boolean"},
"CEState":{
"type":"string",
Expand Down Expand Up @@ -976,6 +995,7 @@
"EksAttemptContainerDetail":{
"type":"structure",
"members":{
"name":{"shape":"String"},
"exitCode":{"shape":"Integer"},
"reason":{"shape":"String"}
}
Expand Down Expand Up @@ -1540,6 +1560,14 @@
"swappiness":{"shape":"Integer"}
}
},
"ListAttemptEcsTaskDetails":{
"type":"list",
"member":{"shape":"AttemptEcsTaskDetails"}
},
"ListAttemptTaskContainerDetails":{
"type":"list",
"member":{"shape":"AttemptTaskContainerDetails"}
},
"ListEcsTaskDetails":{
"type":"list",
"member":{"shape":"EcsTaskDetails"}
Expand Down
Loading
Loading