Skip to content

Commit

Permalink
Release v1.54.20 (2024-07-18) (#5311)
Browse files Browse the repository at this point in the history
Release v1.54.20 (2024-07-18)
===

### Service Client Updates
* `service/acm-pca`: Updates service waiters
* `service/connect`: Updates service API, documentation, and paginators
* `service/ec2`: Updates service API and documentation
  * Amazon VPC IP Address Manager (IPAM) now supports Bring-Your-Own-IP (BYOIP) for IP addresses registered with any Internet Registry. This feature uses DNS TXT records to validate ownership of a public IP address range.
* `service/firehose`: Updates service API and documentation
  * This release 1) Add configurable buffering hints for Snowflake as destination. 2) Add ReadFromTimestamp for MSK As Source. Firehose will start reading data from MSK Cluster using offset associated with this timestamp. 3) Gated public beta release to add Apache Iceberg tables as destination.
* `service/ivschat`: Updates service API, documentation, and waiters
* `service/medialive`: Updates service API and documentation
  * AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
* `service/sagemaker`: Updates service API
  * SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family.
* `service/secretsmanager`: Updates service documentation
  * Doc only update for Secrets Manager
* `service/taxsettings`: Updates service API
* `service/timestream-query`: Updates service API and documentation
* `service/workspaces-thin-client`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Jul 18, 2024
1 parent 943e665 commit 019bed0
Show file tree
Hide file tree
Showing 41 changed files with 5,270 additions and 566 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Release v1.54.20 (2024-07-18)
===

### Service Client Updates
* `service/acm-pca`: Updates service waiters
* `service/connect`: Updates service API, documentation, and paginators
* `service/ec2`: Updates service API and documentation
* Amazon VPC IP Address Manager (IPAM) now supports Bring-Your-Own-IP (BYOIP) for IP addresses registered with any Internet Registry. This feature uses DNS TXT records to validate ownership of a public IP address range.
* `service/firehose`: Updates service API and documentation
* This release 1) Add configurable buffering hints for Snowflake as destination. 2) Add ReadFromTimestamp for MSK As Source. Firehose will start reading data from MSK Cluster using offset associated with this timestamp. 3) Gated public beta release to add Apache Iceberg tables as destination.
* `service/ivschat`: Updates service API, documentation, and waiters
* `service/medialive`: Updates service API and documentation
* AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
* `service/sagemaker`: Updates service API
* SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family.
* `service/secretsmanager`: Updates service documentation
* Doc only update for Secrets Manager
* `service/taxsettings`: Updates service API
* `service/timestream-query`: Updates service API and documentation
* `service/workspaces-thin-client`: Updates service API and documentation

Release v1.54.19 (2024-07-12)
===

Expand Down
56 changes: 52 additions & 4 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.54.19"
const SDKVersion = "1.54.20"
136 changes: 74 additions & 62 deletions models/apis/acm-pca/2017-08-22/waiters-2.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,76 @@
{
"version" : 2,
"waiters" : {
"AuditReportCreated" : {
"description" : "Wait until a Audit Report is created",
"delay" : 3,
"maxAttempts" : 40,
"operation" : "DescribeCertificateAuthorityAuditReport",
"acceptors" : [ {
"matcher" : "path",
"argument" : "AuditReportStatus",
"state" : "success",
"expected" : "SUCCESS"
}, {
"matcher" : "path",
"argument" : "AuditReportStatus",
"state" : "failure",
"expected" : "FAILED"
}, {
"matcher" : "error",
"state" : "failure",
"expected" : "AccessDeniedException"
} ]
},
"CertificateAuthorityCSRCreated" : {
"description" : "Wait until a Certificate Authority CSR is created",
"delay" : 3,
"maxAttempts" : 40,
"operation" : "GetCertificateAuthorityCsr",
"acceptors" : [ {
"matcher" : "error",
"state" : "success",
"expected" : false
}, {
"matcher" : "error",
"state" : "retry",
"expected" : "RequestInProgressException"
}, {
"matcher" : "error",
"state" : "failure",
"expected" : "AccessDeniedException"
} ]
},
"CertificateIssued" : {
"description" : "Wait until a certificate is issued",
"delay" : 1,
"maxAttempts" : 120,
"operation" : "GetCertificate",
"acceptors" : [ {
"matcher" : "error",
"state" : "success",
"expected" : false
}, {
"matcher" : "error",
"state" : "retry",
"expected" : "RequestInProgressException"
}, {
"matcher" : "error",
"state" : "failure",
"expected" : "AccessDeniedException"
} ]
"version": 2,
"waiters": {
"CertificateAuthorityCSRCreated": {
"description": "Wait until a Certificate Authority CSR is created",
"operation": "GetCertificateAuthorityCsr",
"delay": 3,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "status",
"expected": 200
},
{
"state": "retry",
"matcher": "error",
"expected": "RequestInProgressException"
},
{
"state": "failure",
"matcher": "error",
"expected": "AccessDeniedException"
}
]
},
"CertificateIssued": {
"description": "Wait until a certificate is issued",
"operation": "GetCertificate",
"delay": 1,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "status",
"expected": 200
},
{
"state": "retry",
"matcher": "error",
"expected": "RequestInProgressException"
},
{
"state": "failure",
"matcher": "error",
"expected": "AccessDeniedException"
}
]
},
"AuditReportCreated": {
"description": "Wait until a Audit Report is created",
"operation": "DescribeCertificateAuthorityAuditReport",
"delay": 3,
"maxAttempts": 60,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "AuditReportStatus",
"expected": "SUCCESS"
},
{
"state": "failure",
"matcher": "path",
"argument": "AuditReportStatus",
"expected": "FAILED"
},
{
"state": "failure",
"matcher": "error",
"expected": "AccessDeniedException"
}
]
}
}
}
}
}
Loading

0 comments on commit 019bed0

Please sign in to comment.