Skip to content

Commit

Permalink
Merge branch 'release-1.34.144'
Browse files Browse the repository at this point in the history
* release-1.34.144:
  Bumping version to 1.34.144
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jul 12, 2024
2 parents a9082df + 7ed3d5e commit e4154a6
Show file tree
Hide file tree
Showing 11 changed files with 1,368 additions and 239 deletions.
27 changes: 27 additions & 0 deletions .changes/1.34.144.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``acm-pca``",
"description": "Minor refactoring of C2J model for AWS Private CA",
"type": "api-change"
},
{
"category": "``arc-zonal-shift``",
"description": "Adds the option to subscribe to get notifications when a zonal autoshift occurs in a region.",
"type": "api-change"
},
{
"category": "``globalaccelerator``",
"description": "This feature adds exceptions to the Customer API to avoid throwing Internal Service errors",
"type": "api-change"
},
{
"category": "``pinpoint``",
"description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "Vega ally control options and Support for Reviewed Answers in Topics",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.34.144
========

* api-change:``acm-pca``: Minor refactoring of C2J model for AWS Private CA
* api-change:``arc-zonal-shift``: Adds the option to subscribe to get notifications when a zonal autoshift occurs in a region.
* api-change:``globalaccelerator``: This feature adds exceptions to the Customer API to avoid throwing Internal Service errors
* api-change:``pinpoint``: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* api-change:``quicksight``: Vega ally control options and Support for Reviewed Answers in Topics


1.34.143
========

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.143'
__version__ = '1.34.144'


class NullHandler(logging.Handler):
Expand Down
195 changes: 99 additions & 96 deletions botocore/data/acm-pca/2017-08-22/service-2.json

Large diffs are not rendered by default.

136 changes: 62 additions & 74 deletions botocore/data/acm-pca/2017-08-22/waiters-2.json
Original file line number Diff line number Diff line change
@@ -1,76 +1,64 @@
{
"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"
}
]
}
"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"
} ]
}
}
}
}
Loading

0 comments on commit e4154a6

Please sign in to comment.