Skip to content

Commit

Permalink
Merge branch 'release-1.34.145'
Browse files Browse the repository at this point in the history
* release-1.34.145:
  Bumping version to 1.34.145
  Update endpoints model
  Update to latest models
  Update waiters to handle expected boolean values when matching errors (#3220)
  • Loading branch information
aws-sdk-python-automation committed Jul 18, 2024
2 parents e4154a6 + c1f635d commit 7f5ae0a
Show file tree
Hide file tree
Showing 23 changed files with 1,847 additions and 457 deletions.
67 changes: 67 additions & 0 deletions .changes/1.34.145.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
[
{
"category": "``acm-pca``",
"description": "Fix broken waiters for the acm-pca client. Waiters broke in version 1.13.144 of the Boto3 SDK.",
"type": "api-change"
},
{
"category": "``connect``",
"description": "Amazon Connect expands search API coverage for additional resources. Search for hierarchy groups by name, ID, tag, or other criteria (new endpoint). Search for agent statuses by name, ID, tag, or other criteria (new endpoint). Search for users by their assigned proficiencies (enhanced endpoint)",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "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.",
"type": "api-change"
},
{
"category": "``firehose``",
"description": "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.",
"type": "api-change"
},
{
"category": "``ivschat``",
"description": "Documentation update for IVS Chat API Reference.",
"type": "api-change"
},
{
"category": "``medialive``",
"description": "AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.",
"type": "api-change"
},
{
"category": "``rds``",
"description": "Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family.",
"type": "api-change"
},
{
"category": "``secretsmanager``",
"description": "Doc only update for Secrets Manager",
"type": "api-change"
},
{
"category": "``taxsettings``",
"description": "Set default endpoint for aws partition. Requests from all regions in aws partition will be forward to us-east-1 endpoint.",
"type": "api-change"
},
{
"category": "``timestream-query``",
"description": "Doc-only update for TimestreamQuery. Added guidance about the accepted valid value for the QueryPricingModel parameter.",
"type": "api-change"
},
{
"category": "``workspaces-thin-client``",
"description": "Documentation update for WorkSpaces Thin Client.",
"type": "api-change"
},
{
"category": "Waiter",
"description": "Update waiters to handle expected boolean values when matching errors (`boto/botocore#3220 <https://github.com/boto/botocore/issues/3220>`__)",
"type": "bugfix"
}
]
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@
CHANGELOG
=========

1.34.145
========

* api-change:``acm-pca``: Fix broken waiters for the acm-pca client. Waiters broke in version 1.13.144 of the Boto3 SDK.
* api-change:``connect``: Amazon Connect expands search API coverage for additional resources. Search for hierarchy groups by name, ID, tag, or other criteria (new endpoint). Search for agent statuses by name, ID, tag, or other criteria (new endpoint). Search for users by their assigned proficiencies (enhanced endpoint)
* api-change:``ec2``: 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.
* api-change:``firehose``: 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.
* api-change:``ivschat``: Documentation update for IVS Chat API Reference.
* api-change:``medialive``: AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
* api-change:``rds``: Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
* api-change:``sagemaker``: SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family.
* api-change:``secretsmanager``: Doc only update for Secrets Manager
* api-change:``taxsettings``: Set default endpoint for aws partition. Requests from all regions in aws partition will be forward to us-east-1 endpoint.
* api-change:``timestream-query``: Doc-only update for TimestreamQuery. Added guidance about the accepted valid value for the QueryPricingModel parameter.
* api-change:``workspaces-thin-client``: Documentation update for WorkSpaces Thin Client.
* bugfix:Waiter: Update waiters to handle expected boolean values when matching errors (`boto/botocore#3220 <https://github.com/boto/botocore/issues/3220>`__)


1.34.144
========

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.144'
__version__ = '1.34.145'


class NullHandler(logging.Handler):
Expand Down
136 changes: 74 additions & 62 deletions botocore/data/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"
}
]
}
}
}
}
}
18 changes: 18 additions & 0 deletions botocore/data/connect/2017-08-08/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,24 @@
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "AuthenticationProfileSummaryList"
},
"SearchAgentStatuses": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"non_aggregate_keys": [
"ApproximateTotalCount"
],
"output_token": "NextToken",
"result_key": "AgentStatuses"
},
"SearchUserHierarchyGroups": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"non_aggregate_keys": [
"ApproximateTotalCount"
],
"output_token": "NextToken",
"result_key": "UserHierarchyGroups"
}
}
}
Loading

0 comments on commit 7f5ae0a

Please sign in to comment.