Skip to content

Commit 7843563

Browse files
Merge branch 'release-1.37.12' into develop
* release-1.37.12: Bumping version to 1.37.12 Update endpoints model Update to latest models
2 parents 68ca78f + b90a480 commit 7843563

File tree

17 files changed

+8475
-610
lines changed

17 files changed

+8475
-610
lines changed

.changes/1.37.12.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "``acm-pca``",
4+
"description": "Private Certificate Authority service now supports P521 and RSA3072 key algorithms.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``amplify``",
9+
"description": "Introduced support for Skew Protection. Added enableSkewProtection field to createBranch and updateBranch API.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``codebuild``",
14+
"description": "AWS CodeBuild now supports webhook filtering by organization name",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``datazone``",
19+
"description": "This release adds support to update projects and environments",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``dynamodb``",
24+
"description": "Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ec2``",
29+
"description": "This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``ivs-realtime``",
34+
"description": "IVS Real-Time now offers customers the ability to adjust the participant & composition recording segment duration",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``logs``",
39+
"description": "Updated CreateLogAnomalyDetector to accept only kms key arn",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``mediapackagev2``",
44+
"description": "This release adds the ResetChannelState and ResetOriginEndpointState operation to reset MediaPackage V2 channel and origin endpoint. This release also adds a new field, UrlEncodeChildManifest, for HLS/LL-HLS to allow URL-encoding child manifest query string based on the requirements of AWS SigV4.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``s3control``",
49+
"description": "Updating GetDataAccess response for S3 Access Grants to include the matched Grantee for the requested prefix",
50+
"type": "api-change"
51+
}
52+
]

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
CHANGELOG
33
=========
44

5+
1.37.12
6+
=======
7+
8+
* api-change:``acm-pca``: Private Certificate Authority service now supports P521 and RSA3072 key algorithms.
9+
* api-change:``amplify``: Introduced support for Skew Protection. Added enableSkewProtection field to createBranch and updateBranch API.
10+
* api-change:``codebuild``: AWS CodeBuild now supports webhook filtering by organization name
11+
* api-change:``datazone``: This release adds support to update projects and environments
12+
* api-change:``dynamodb``: Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available
13+
* api-change:``ec2``: This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
14+
* api-change:``ivs-realtime``: IVS Real-Time now offers customers the ability to adjust the participant & composition recording segment duration
15+
* api-change:``logs``: Updated CreateLogAnomalyDetector to accept only kms key arn
16+
* api-change:``mediapackagev2``: This release adds the ResetChannelState and ResetOriginEndpointState operation to reset MediaPackage V2 channel and origin endpoint. This release also adds a new field, UrlEncodeChildManifest, for HLS/LL-HLS to allow URL-encoding child manifest query string based on the requirements of AWS SigV4.
17+
* api-change:``s3control``: Updating GetDataAccess response for S3 Access Grants to include the matched Grantee for the requested prefix
18+
19+
520
1.37.11
621
=======
722

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import re
1818

19-
__version__ = '1.37.11'
19+
__version__ = '1.37.12'
2020

2121

2222
class NullHandler(logging.Handler):

botocore/data/acm-pca/2017-08-22/service-2.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@
290290
"errors":[
291291
{"shape":"ResourceNotFoundException"},
292292
{"shape":"InvalidArnException"},
293+
{"shape":"RequestFailedException"},
293294
{"shape":"InvalidStateException"}
294295
],
295296
"documentation":"<p>Lists the tags, if any, that are associated with your private CA or one that has been shared with you. Tags are labels that you can use to identify and organize your CAs. Each tag consists of a key and an optional value. Call the <a href=\"https://docs.aws.amazon.com/privateca/latest/APIReference/API_TagCertificateAuthority.html\">TagCertificateAuthority</a> action to add one or more tags to your CA. Call the <a href=\"https://docs.aws.amazon.com/privateca/latest/APIReference/API_UntagCertificateAuthority.html\">UntagCertificateAuthority</a> action to remove tags. </p>"
@@ -1462,9 +1463,11 @@
14621463
"type":"string",
14631464
"enum":[
14641465
"RSA_2048",
1466+
"RSA_3072",
14651467
"RSA_4096",
14661468
"EC_prime256v1",
14671469
"EC_secp384r1",
1470+
"EC_secp521r1",
14681471
"SM2"
14691472
]
14701473
},

botocore/data/amplify/2017-07-25/service-2.json

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@
691691
},
692692
"computeRoleArn":{
693693
"shape":"ComputeRoleArn",
694-
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role for an SSR app. The Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
694+
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role for an SSR app. The Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
695695
},
696696
"iamServiceRoleArn":{
697697
"shape":"ServiceRoleArn",
@@ -1038,6 +1038,10 @@
10381038
"shape":"EnableAutoBuild",
10391039
"documentation":"<p> Enables auto-building on push for a branch of an Amplify app. </p>"
10401040
},
1041+
"enableSkewProtection":{
1042+
"shape":"EnableSkewProtection",
1043+
"documentation":"<p>Specifies whether the skew protection feature is enabled for the branch.</p> <p>Deployment skew protection is available to Amplify applications to eliminate version skew issues between client and servers in web applications. When you apply skew protection to a branch, you can ensure that your clients always interact with the correct version of server-side assets, regardless of when a deployment occurs. For more information about skew protection, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html\">Skew protection for Amplify deployments</a> in the <i>Amplify User Guide</i>.</p>"
1044+
},
10411045
"customDomains":{
10421046
"shape":"CustomDomains",
10431047
"documentation":"<p> The custom domains for a branch of an Amplify app. </p>"
@@ -1105,7 +1109,7 @@
11051109
"backend":{"shape":"Backend"},
11061110
"computeRoleArn":{
11071111
"shape":"ComputeRoleArn",
1108-
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role for a branch of an SSR app. The Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
1112+
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role for a branch of an SSR app. The Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
11091113
}
11101114
},
11111115
"documentation":"<p> The branch for an Amplify app, which maps to a third-party repository branch. </p>"
@@ -1250,7 +1254,7 @@
12501254
},
12511255
"computeRoleArn":{
12521256
"shape":"ComputeRoleArn",
1253-
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
1257+
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
12541258
},
12551259
"iamServiceRoleArn":{
12561260
"shape":"ServiceRoleArn",
@@ -1402,6 +1406,10 @@
14021406
"shape":"EnableAutoBuild",
14031407
"documentation":"<p> Enables auto building for the branch. </p>"
14041408
},
1409+
"enableSkewProtection":{
1410+
"shape":"EnableSkewProtection",
1411+
"documentation":"<p>Specifies whether the skew protection feature is enabled for the branch.</p> <p>Deployment skew protection is available to Amplify applications to eliminate version skew issues between client and servers in web applications. When you apply skew protection to a branch, you can ensure that your clients always interact with the correct version of server-side assets, regardless of when a deployment occurs. For more information about skew protection, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html\">Skew protection for Amplify deployments</a> in the <i>Amplify User Guide</i>.</p>"
1412+
},
14051413
"environmentVariables":{
14061414
"shape":"EnvironmentVariables",
14071415
"documentation":"<p> The environment variables for the branch. </p>"
@@ -1452,7 +1460,7 @@
14521460
},
14531461
"computeRoleArn":{
14541462
"shape":"ComputeRoleArn",
1455-
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to a branch of an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
1463+
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to a branch of an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
14561464
}
14571465
},
14581466
"documentation":"<p> The request structure for the create branch request. </p>"
@@ -1961,6 +1969,7 @@
19611969
"EnableNotification":{"type":"boolean"},
19621970
"EnablePerformanceMode":{"type":"boolean"},
19631971
"EnablePullRequestPreview":{"type":"boolean"},
1972+
"EnableSkewProtection":{"type":"boolean"},
19641973
"EndTime":{"type":"timestamp"},
19651974
"EnvKey":{
19661975
"type":"string",
@@ -3295,7 +3304,7 @@
32953304
},
32963305
"computeRoleArn":{
32973306
"shape":"ComputeRoleArn",
3298-
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
3307+
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
32993308
},
33003309
"iamServiceRoleArn":{
33013310
"shape":"ServiceRoleArn",
@@ -3414,6 +3423,10 @@
34143423
"shape":"EnableAutoBuild",
34153424
"documentation":"<p> Enables auto building for the branch. </p>"
34163425
},
3426+
"enableSkewProtection":{
3427+
"shape":"EnableSkewProtection",
3428+
"documentation":"<p>Specifies whether the skew protection feature is enabled for the branch.</p> <p>Deployment skew protection is available to Amplify applications to eliminate version skew issues between client and servers in web applications. When you apply skew protection to a branch, you can ensure that your clients always interact with the correct version of server-side assets, regardless of when a deployment occurs. For more information about skew protection, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/skew-protection.html\">Skew protection for Amplify deployments</a> in the <i>Amplify User Guide</i>.</p>"
3429+
},
34173430
"environmentVariables":{
34183431
"shape":"EnvironmentVariables",
34193432
"documentation":"<p> The environment variables for the branch. </p>"
@@ -3460,7 +3473,7 @@
34603473
},
34613474
"computeRoleArn":{
34623475
"shape":"ComputeRoleArn",
3463-
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to a branch of an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
3476+
"documentation":"<p>The Amazon Resource Name (ARN) of the IAM role to assign to a branch of an SSR app. The SSR Compute role allows the Amplify Hosting compute service to securely access specific Amazon Web Services resources based on the role's permissions. For more information about the SSR Compute role, see <a href=\"https://docs.aws.amazon.com/amplify/latest/userguide/amplify-SSR-compute-role.html\">Adding an SSR Compute role</a> in the <i>Amplify User Guide</i>.</p>"
34643477
}
34653478
},
34663479
"documentation":"<p>The request structure for the update branch request. </p>"

0 commit comments

Comments
 (0)