-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-1.35.58' into develop
* release-1.35.58: Bumping version to 1.35.58 Update endpoints model Update to latest models Merge customizations for CloudFront
- Loading branch information
Showing
14 changed files
with
2,128 additions
and
830 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[ | ||
{ | ||
"category": "``cloudfront``", | ||
"description": "No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``inspector2``", | ||
"description": "Adds support for filePath filter.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``lambda``", | ||
"description": "Add Python 3.13 (python3.13) support to AWS Lambda", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``opensearch``", | ||
"description": "Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``outposts``", | ||
"description": "This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost.", | ||
"type": "api-change" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2,059 changes: 1,299 additions & 760 deletions
2,059
botocore/data/cloudfront/2020-05-31/service-2.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,41 @@ | ||
{ | ||
"version": 2, | ||
"waiters": { | ||
"DistributionDeployed": { | ||
"delay": 60, | ||
"operation": "GetDistribution", | ||
"maxAttempts": 35, | ||
"description": "Wait until a distribution is deployed.", | ||
"acceptors": [ | ||
{ | ||
"expected": "Deployed", | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "Distribution.Status" | ||
} | ||
] | ||
"version" : 2, | ||
"waiters" : { | ||
"DistributionDeployed" : { | ||
"description" : "Wait until a distribution is deployed.", | ||
"delay" : 60, | ||
"maxAttempts" : 35, | ||
"operation" : "GetDistribution", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "Distribution.Status", | ||
"state" : "success", | ||
"expected" : "Deployed" | ||
} ] | ||
}, | ||
"InvalidationCompleted": { | ||
"delay": 20, | ||
"operation": "GetInvalidation", | ||
"maxAttempts": 30, | ||
"description": "Wait until an invalidation has completed.", | ||
"acceptors": [ | ||
{ | ||
"expected": "Completed", | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "Invalidation.Status" | ||
} | ||
] | ||
"InvalidationCompleted" : { | ||
"description" : "Wait until an invalidation has completed.", | ||
"delay" : 20, | ||
"maxAttempts" : 30, | ||
"operation" : "GetInvalidation", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "Invalidation.Status", | ||
"state" : "success", | ||
"expected" : "Completed" | ||
} ] | ||
}, | ||
"StreamingDistributionDeployed": { | ||
"delay": 60, | ||
"operation": "GetStreamingDistribution", | ||
"maxAttempts": 25, | ||
"description": "Wait until a streaming distribution is deployed.", | ||
"acceptors": [ | ||
{ | ||
"expected": "Deployed", | ||
"matcher": "path", | ||
"state": "success", | ||
"argument": "StreamingDistribution.Status" | ||
} | ||
] | ||
"StreamingDistributionDeployed" : { | ||
"description" : "Wait until a streaming distribution is deployed.", | ||
"delay" : 60, | ||
"maxAttempts" : 25, | ||
"operation" : "GetStreamingDistribution", | ||
"acceptors" : [ { | ||
"matcher" : "path", | ||
"argument" : "StreamingDistribution.Status", | ||
"state" : "success", | ||
"expected" : "Deployed" | ||
} ] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.