Skip to content

Commit

Permalink
Merge branch 'release-1.36.15' into develop
Browse files Browse the repository at this point in the history
* release-1.36.15:
  Bumping version to 1.36.15
  Update partitions file
  Update endpoints model
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Feb 6, 2025
2 parents 1a2ebd8 + 5d4843d commit 976b894
Show file tree
Hide file tree
Showing 14 changed files with 1,383 additions and 158 deletions.
27 changes: 27 additions & 0 deletions .changes/1.36.15.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``cloudformation``",
"description": "We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions.",
"type": "api-change"
},
{
"category": "``connectcases``",
"description": "This release adds the ability to conditionally require fields on a template. Check public documentation for more information.",
"type": "api-change"
},
{
"category": "``cost-optimization-hub``",
"description": "This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types.",
"type": "api-change"
},
{
"category": "``s3``",
"description": "Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.",
"type": "api-change"
},
{
"category": "Eventsteam",
"description": "The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services.",
"type": "enhancement"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/enhancement-Eventsteam-78927.json

This file was deleted.

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.36.15
=======

* api-change:``cloudformation``: We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions.
* api-change:``connectcases``: This release adds the ability to conditionally require fields on a template. Check public documentation for more information.
* api-change:``cost-optimization-hub``: This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types.
* api-change:``s3``: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
* enhancement:Eventsteam: The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services.


1.36.14
=======

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.36.14'
__version__ = '1.36.15'


class NullHandler(logging.Handler):
Expand Down
12 changes: 12 additions & 0 deletions botocore/data/cloudformation/2010-05-15/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,18 @@
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "ResourceScanSummaries"
},
"ListStackRefactorActions": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "StackRefactorActions"
},
"ListStackRefactors": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "StackRefactorSummaries"
}
}
}
536 changes: 490 additions & 46 deletions botocore/data/cloudformation/2010-05-15/service-2.json

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions botocore/data/cloudformation/2010-05-15/waiters-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,62 @@
}
]
},
"StackRefactorCreateComplete": {
"delay": 5,
"operation": "DescribeStackRefactor",
"maxAttempts": 120,
"description": "Wait until the stack refactor status is CREATE_COMPLETE.",
"acceptors": [
{
"argument": "Status",
"expected": "CREATE_COMPLETE",
"matcher": "path",
"state": "success"
},
{
"argument": "Status",
"expected": "CREATE_FAILED",
"matcher": "path",
"state": "failure"
},
{
"expected": "ValidationError",
"matcher": "error",
"state": "failure"
}
]
},
"StackRefactorExecuteComplete": {
"delay": 15,
"operation": "DescribeStackRefactor",
"maxAttempts": 120,
"description": "Wait until the stack refactor status is EXECUTE_COMPLETE.",
"acceptors": [
{
"argument": "ExecutionStatus",
"expected": "EXECUTE_COMPLETE",
"matcher": "path",
"state": "success"
},
{
"argument": "ExecutionStatus",
"expected": "EXECUTE_FAILED",
"matcher": "path",
"state": "failure"
},
{
"argument": "ExecutionStatus",
"expected": "ROLLBACK_COMPLETE",
"matcher": "path",
"state": "failure"
},
{
"expected": "ValidationError",
"matcher": "error",
"state": "failure"
}
]
},
"TypeRegistrationComplete": {
"delay": 30,
"operation": "DescribeTypeRegistration",
Expand Down
6 changes: 6 additions & 0 deletions botocore/data/connectcases/2022-10-03/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "relatedItems"
},
"ListCaseRules": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "caseRules"
}
}
}
Loading

0 comments on commit 976b894

Please sign in to comment.