Skip to content

Commit

Permalink
Release v1.51.20 (2024-04-11) (#5223)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aws-sdk-go-automation committed Apr 11, 2024
1 parent ee8448b commit 8888dae
Show file tree
Hide file tree
Showing 40 changed files with 32,339 additions and 17,286 deletions.
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

0 comments on commit 8888dae

Please sign in to comment.