Skip to content

Commit 976b894

Browse files
Merge branch 'release-1.36.15' into develop
* release-1.36.15: Bumping version to 1.36.15 Update partitions file Update endpoints model Update to latest models
2 parents 1a2ebd8 + 5d4843d commit 976b894

File tree

14 files changed

+1383
-158
lines changed

14 files changed

+1383
-158
lines changed

.changes/1.36.15.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"category": "``cloudformation``",
4+
"description": "We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``connectcases``",
9+
"description": "This release adds the ability to conditionally require fields on a template. Check public documentation for more information.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``cost-optimization-hub``",
14+
"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.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``s3``",
19+
"description": "Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "Eventsteam",
24+
"description": "The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services.",
25+
"type": "enhancement"
26+
}
27+
]

.changes/next-release/enhancement-Eventsteam-78927.json

-5
This file was deleted.

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
CHANGELOG
33
=========
44

5+
1.36.15
6+
=======
7+
8+
* api-change:``cloudformation``: We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions.
9+
* api-change:``connectcases``: This release adds the ability to conditionally require fields on a template. Check public documentation for more information.
10+
* 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.
11+
* api-change:``s3``: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
12+
* enhancement:Eventsteam: The SDK no longer validates payload size for eventstreams. This is to facilitate varying payload requirements across AWS services.
13+
14+
515
1.36.14
616
=======
717

botocore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import re
1818

19-
__version__ = '1.36.14'
19+
__version__ = '1.36.15'
2020

2121

2222
class NullHandler(logging.Handler):

botocore/data/cloudformation/2010-05-15/paginators-1.json

+12
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,18 @@
119119
"limit_key": "MaxResults",
120120
"output_token": "NextToken",
121121
"result_key": "ResourceScanSummaries"
122+
},
123+
"ListStackRefactorActions": {
124+
"input_token": "NextToken",
125+
"limit_key": "MaxResults",
126+
"output_token": "NextToken",
127+
"result_key": "StackRefactorActions"
128+
},
129+
"ListStackRefactors": {
130+
"input_token": "NextToken",
131+
"limit_key": "MaxResults",
132+
"output_token": "NextToken",
133+
"result_key": "StackRefactorSummaries"
122134
}
123135
}
124136
}

botocore/data/cloudformation/2010-05-15/service-2.json

+490-46
Large diffs are not rendered by default.

botocore/data/cloudformation/2010-05-15/waiters-2.json

+56
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,62 @@
324324
}
325325
]
326326
},
327+
"StackRefactorCreateComplete": {
328+
"delay": 5,
329+
"operation": "DescribeStackRefactor",
330+
"maxAttempts": 120,
331+
"description": "Wait until the stack refactor status is CREATE_COMPLETE.",
332+
"acceptors": [
333+
{
334+
"argument": "Status",
335+
"expected": "CREATE_COMPLETE",
336+
"matcher": "path",
337+
"state": "success"
338+
},
339+
{
340+
"argument": "Status",
341+
"expected": "CREATE_FAILED",
342+
"matcher": "path",
343+
"state": "failure"
344+
},
345+
{
346+
"expected": "ValidationError",
347+
"matcher": "error",
348+
"state": "failure"
349+
}
350+
]
351+
},
352+
"StackRefactorExecuteComplete": {
353+
"delay": 15,
354+
"operation": "DescribeStackRefactor",
355+
"maxAttempts": 120,
356+
"description": "Wait until the stack refactor status is EXECUTE_COMPLETE.",
357+
"acceptors": [
358+
{
359+
"argument": "ExecutionStatus",
360+
"expected": "EXECUTE_COMPLETE",
361+
"matcher": "path",
362+
"state": "success"
363+
},
364+
{
365+
"argument": "ExecutionStatus",
366+
"expected": "EXECUTE_FAILED",
367+
"matcher": "path",
368+
"state": "failure"
369+
},
370+
{
371+
"argument": "ExecutionStatus",
372+
"expected": "ROLLBACK_COMPLETE",
373+
"matcher": "path",
374+
"state": "failure"
375+
},
376+
{
377+
"expected": "ValidationError",
378+
"matcher": "error",
379+
"state": "failure"
380+
}
381+
]
382+
},
327383
"TypeRegistrationComplete": {
328384
"delay": 30,
329385
"operation": "DescribeTypeRegistration",

botocore/data/connectcases/2022-10-03/paginators-1.json

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
"output_token": "nextToken",
1212
"limit_key": "maxResults",
1313
"result_key": "relatedItems"
14+
},
15+
"ListCaseRules": {
16+
"input_token": "nextToken",
17+
"output_token": "nextToken",
18+
"limit_key": "maxResults",
19+
"result_key": "caseRules"
1420
}
1521
}
1622
}

0 commit comments

Comments
 (0)