Skip to content

Commit 025b6fa

Browse files
Merge branch 'release-1.42.53' into develop
* release-1.42.53: Bumping version to 1.42.53 Update to latest models
2 parents d1efb3b + a1ee10b commit 025b6fa

8 files changed

Lines changed: 84 additions & 27 deletions

File tree

.changes/1.42.53.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``bcm-dashboards``",
4+
"description": "The Billing and Cost Management GetDashboard API now returns identifier for each widget, enabling users to uniquely identify widgets within their dashboards.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``ecr``",
9+
"description": "Adds multiple artifact types filter support in ListImageReferrers API.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``pca-connector-scep``",
14+
"description": "AWS Private CA Connector for SCEP now supports AWS PrivateLink, allowing your clients to request certificates from within your Amazon Virtual Private Cloud (VPC) without traversing the public internet. With this launch, you can create VPC endpoints to connect to your SCEP connector privately.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``checksums``",
19+
"description": "Added support for the SHA512 checksum algorithm. When the optional AWS CRT (``awscrt``) dependency is installed, support is also enabled for the XXHASH64, XXHASH3, and XXHASH128 checksum algorithms. Also added pass-through support for customer-provided MD5 checksum headers (without SDK-side MD5 calculation or validation).",
20+
"type": "enhancement"
21+
}
22+
]

.changes/next-release/enhancement-httpchecksums.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.rst

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

5+
1.42.53
6+
=======
7+
8+
* api-change:``bcm-dashboards``: The Billing and Cost Management GetDashboard API now returns identifier for each widget, enabling users to uniquely identify widgets within their dashboards.
9+
* api-change:``ecr``: Adds multiple artifact types filter support in ListImageReferrers API.
10+
* api-change:``pca-connector-scep``: AWS Private CA Connector for SCEP now supports AWS PrivateLink, allowing your clients to request certificates from within your Amazon Virtual Private Cloud (VPC) without traversing the public internet. With this launch, you can create VPC endpoints to connect to your SCEP connector privately.
11+
* enhancement:``checksums``: Added support for the SHA512 checksum algorithm. When the optional AWS CRT (``awscrt``) dependency is installed, support is also enabled for the XXHASH64, XXHASH3, and XXHASH128 checksum algorithms. Also added pass-through support for customer-provided MD5 checksum headers (without SDK-side MD5 calculation or validation).
12+
13+
514
1.42.52
615
=======
716

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re
1818
from logging import NullHandler
1919

20-
__version__ = '1.42.52'
20+
__version__ = '1.42.53'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/bcm-dashboards/2025-08-18/service-2.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@
6363
{"shape":"ValidationException"},
6464
{"shape":"ResourceNotFoundException"}
6565
],
66-
"documentation":"<p>Retrieves the configuration and metadata of a specified dashboard, including its widgets and layout settings.</p>"
66+
"documentation":"<p>Retrieves the configuration and metadata of a specified dashboard, including its widgets and layout settings.</p>",
67+
"readonly":true
6768
},
6869
"GetResourcePolicy":{
6970
"name":"GetResourcePolicy",
@@ -80,7 +81,8 @@
8081
{"shape":"ValidationException"},
8182
{"shape":"ResourceNotFoundException"}
8283
],
83-
"documentation":"<p>Retrieves the resource-based policy attached to a dashboard, showing sharing configurations and permissions.</p>"
84+
"documentation":"<p>Retrieves the resource-based policy attached to a dashboard, showing sharing configurations and permissions.</p>",
85+
"readonly":true
8486
},
8587
"ListDashboards":{
8688
"name":"ListDashboards",
@@ -96,7 +98,8 @@
9698
{"shape":"InternalServerException"},
9799
{"shape":"ValidationException"}
98100
],
99-
"documentation":"<p>Returns a list of all dashboards in your account.</p>"
101+
"documentation":"<p>Returns a list of all dashboards in your account.</p>",
102+
"readonly":true
100103
},
101104
"ListTagsForResource":{
102105
"name":"ListTagsForResource",
@@ -112,7 +115,8 @@
112115
{"shape":"ValidationException"},
113116
{"shape":"ResourceNotFoundException"}
114117
],
115-
"documentation":"<p>Returns a list of all tags associated with a specified dashboard resource.</p>"
118+
"documentation":"<p>Returns a list of all tags associated with a specified dashboard resource.</p>",
119+
"readonly":true
116120
},
117121
"TagResource":{
118122
"name":"TagResource",
@@ -1031,6 +1035,10 @@
10311035
"configs"
10321036
],
10331037
"members":{
1038+
"id":{
1039+
"shape":"WidgetId",
1040+
"documentation":"<p>The unique identifier for the widget.</p>"
1041+
},
10341042
"title":{
10351043
"shape":"WidgetTitle",
10361044
"documentation":"<p>The title of the widget.</p>"
@@ -1088,6 +1096,12 @@
10881096
"max":10,
10891097
"min":4
10901098
},
1099+
"WidgetId":{
1100+
"type":"string",
1101+
"max":32,
1102+
"min":32,
1103+
"pattern":"[0-9a-f]{32}"
1104+
},
10911105
"WidgetList":{
10921106
"type":"list",
10931107
"member":{"shape":"Widget"},

botocore/data/ecr/2015-09-21/service-2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@
10161016
"ArtifactTypeList":{
10171017
"type":"list",
10181018
"member":{"shape":"ArtifactType"},
1019-
"max":1,
1019+
"max":5,
10201020
"min":0
10211021
},
10221022
"Attribute":{

botocore/data/pca-connector-scep/2018-05-10/service-2.json

Lines changed: 32 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
"input":{"shape":"CreateChallengeRequest"},
2424
"output":{"shape":"CreateChallengeResponse"},
2525
"errors":[
26-
{"shape":"ResourceNotFoundException"},
2726
{"shape":"BadRequestException"},
27+
{"shape":"ResourceNotFoundException"},
2828
{"shape":"InternalServerException"},
2929
{"shape":"ValidationException"},
3030
{"shape":"ThrottlingException"},
3131
{"shape":"AccessDeniedException"},
3232
{"shape":"ConflictException"},
3333
{"shape":"ServiceQuotaExceededException"}
3434
],
35-
"documentation":"<p>For general-purpose connectors. Creates a <i>challenge password</i> for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_ListConnectors.html\">ListConnectors</a>.</p> <p>To create additional challenge passwords for the connector, call <code>CreateChallenge</code> again. We recommend frequently rotating your challenge passwords.</p>"
35+
"documentation":"<p>For general-purpose connectors. Creates a <i>challenge password</i> for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_ListConnectors.html\">ListConnectors</a>.</p> <p>To create additional challenge passwords for the connector, call <code>CreateChallenge</code> again. We recommend frequently rotating your challenge passwords.</p>"
3636
},
3737
"CreateConnector":{
3838
"name":"CreateConnector",
@@ -70,7 +70,7 @@
7070
{"shape":"AccessDeniedException"},
7171
{"shape":"ConflictException"}
7272
],
73-
"documentation":"<p>Deletes the specified <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Challenge.html\">Challenge</a>.</p>",
73+
"documentation":"<p>Deletes the specified <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Challenge.html\">Challenge</a>.</p>",
7474
"idempotent":true
7575
},
7676
"DeleteConnector":{
@@ -89,7 +89,7 @@
8989
{"shape":"AccessDeniedException"},
9090
{"shape":"ConflictException"}
9191
],
92-
"documentation":"<p>Deletes the specified <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Connector.html\">Connector</a>. This operation also deletes any challenges associated with the connector.</p>",
92+
"documentation":"<p>Deletes the specified <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Connector.html\">Connector</a>. This operation also deletes any challenges associated with the connector.</p>",
9393
"idempotent":true
9494
},
9595
"GetChallengeMetadata":{
@@ -108,7 +108,8 @@
108108
{"shape":"ThrottlingException"},
109109
{"shape":"AccessDeniedException"}
110110
],
111-
"documentation":"<p>Retrieves the metadata for the specified <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Challenge.html\">Challenge</a>.</p>"
111+
"documentation":"<p>Retrieves the metadata for the specified <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Challenge.html\">Challenge</a>.</p>",
112+
"readonly":true
112113
},
113114
"GetChallengePassword":{
114115
"name":"GetChallengePassword",
@@ -126,7 +127,8 @@
126127
{"shape":"ThrottlingException"},
127128
{"shape":"AccessDeniedException"}
128129
],
129-
"documentation":"<p>Retrieves the challenge password for the specified <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Challenge.html\">Challenge</a>.</p>"
130+
"documentation":"<p>Retrieves the challenge password for the specified <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Challenge.html\">Challenge</a>.</p>",
131+
"readonly":true
130132
},
131133
"GetConnector":{
132134
"name":"GetConnector",
@@ -144,7 +146,8 @@
144146
{"shape":"ThrottlingException"},
145147
{"shape":"AccessDeniedException"}
146148
],
147-
"documentation":"<p>Retrieves details about the specified <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Connector.html\">Connector</a>. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.</p>"
149+
"documentation":"<p>Retrieves details about the specified <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Connector.html\">Connector</a>. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.</p>",
150+
"readonly":true
148151
},
149152
"ListChallengeMetadata":{
150153
"name":"ListChallengeMetadata",
@@ -162,7 +165,8 @@
162165
{"shape":"ThrottlingException"},
163166
{"shape":"AccessDeniedException"}
164167
],
165-
"documentation":"<p>Retrieves the challenge metadata for the specified ARN.</p>"
168+
"documentation":"<p>Retrieves the challenge metadata for the specified ARN.</p>",
169+
"readonly":true
166170
},
167171
"ListConnectors":{
168172
"name":"ListConnectors",
@@ -179,7 +183,8 @@
179183
{"shape":"ThrottlingException"},
180184
{"shape":"AccessDeniedException"}
181185
],
182-
"documentation":"<p>Lists the connectors belonging to your Amazon Web Services account.</p>"
186+
"documentation":"<p>Lists the connectors belonging to your Amazon Web Services account.</p>",
187+
"readonly":true
183188
},
184189
"ListTagsForResource":{
185190
"name":"ListTagsForResource",
@@ -197,7 +202,8 @@
197202
{"shape":"ThrottlingException"},
198203
{"shape":"AccessDeniedException"}
199204
],
200-
"documentation":"<p>Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to \"customer\" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.</p>"
205+
"documentation":"<p>Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to \"customer\" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.</p>",
206+
"readonly":true
201207
},
202208
"TagResource":{
203209
"name":"TagResource",
@@ -358,7 +364,7 @@
358364
"documentation":"<p>The date and time that the challenge was updated.</p>"
359365
}
360366
},
361-
"documentation":"<p>Details about the specified challenge, returned by the <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_GetChallengeMetadata.html\">GetChallengeMetadata</a> action.</p>"
367+
"documentation":"<p>Details about the specified challenge, returned by the <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_GetChallengeMetadata.html\">GetChallengeMetadata</a> action.</p>"
362368
},
363369
"ClientToken":{
364370
"type":"string",
@@ -462,7 +468,9 @@
462468
"INTERNAL_FAILURE",
463469
"PRIVATECA_ACCESS_DENIED",
464470
"PRIVATECA_INVALID_STATE",
465-
"PRIVATECA_RESOURCE_NOT_FOUND"
471+
"PRIVATECA_RESOURCE_NOT_FOUND",
472+
"VPC_ENDPOINT_RESOURCE_NOT_FOUND",
473+
"VPC_ENDPOINT_DNS_ENTRIES_NOT_FOUND"
466474
]
467475
},
468476
"ConnectorSummary":{
@@ -528,7 +536,7 @@
528536
},
529537
"ClientToken":{
530538
"shape":"ClientToken",
531-
"documentation":"<p>Custom string that can be used to distinguish between calls to the <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html\">CreateChallenge</a> action. Client tokens for <code>CreateChallenge</code> time out after five minutes. Therefore, if you call <code>CreateChallenge</code> multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.</p>",
539+
"documentation":"<p>Custom string that can be used to distinguish between calls to the <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_CreateChallenge.html\">CreateChallenge</a> action. Client tokens for <code>CreateChallenge</code> time out after five minutes. Therefore, if you call <code>CreateChallenge</code> multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.</p>",
532540
"idempotencyToken":true
533541
},
534542
"Tags":{
@@ -558,9 +566,13 @@
558566
"shape":"MobileDeviceManagement",
559567
"documentation":"<p>If you don't supply a value, by default Connector for SCEP creates a connector for general-purpose use. A general-purpose connector is designed to work with clients or endpoints that support the SCEP protocol, except Connector for SCEP for Microsoft Intune. With connectors for general-purpose use, you manage SCEP challenge passwords using Connector for SCEP. For information about considerations and limitations with using Connector for SCEP, see <a href=\"https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlc4scep-considerations-limitations.html\">Considerations and Limitations</a>.</p> <p>If you provide an <code>IntuneConfiguration</code>, Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see <a href=\"https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep-intune.html\">Using Connector for SCEP for Microsoft Intune</a>.</p>"
560568
},
569+
"VpcEndpointId":{
570+
"shape":"VpcEndpointId",
571+
"documentation":"<p>If you don't supply a value, by default Connector for SCEP creates a connector accessible over the public internet. If you provide a VPC endpoint ID, creates a connector accessible only through that specific VPC endpoint.</p>"
572+
},
561573
"ClientToken":{
562574
"shape":"ClientToken",
563-
"documentation":"<p>Custom string that can be used to distinguish between calls to the <a href=\"https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html\">CreateChallenge</a> action. Client tokens for <code>CreateChallenge</code> time out after five minutes. Therefore, if you call <code>CreateChallenge</code> multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.</p>",
575+
"documentation":"<p>Custom string that can be used to distinguish between calls to the <a href=\"https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_CreateChallenge.html\">CreateChallenge</a> action. Client tokens for <code>CreateChallenge</code> time out after five minutes. Therefore, if you call <code>CreateChallenge</code> multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.</p>",
564576
"idempotencyToken":true
565577
},
566578
"Tags":{
@@ -976,6 +988,12 @@
976988
"UNKNOWN_OPERATION",
977989
"OTHER"
978990
]
991+
},
992+
"VpcEndpointId":{
993+
"type":"string",
994+
"max":22,
995+
"min":13,
996+
"pattern":"vpce-[0-9a-f]{8}([0-9a-f]{9})?"
979997
}
980998
},
981999
"documentation":"<p>Connector for SCEP creates a connector between Amazon Web Services Private CA and your SCEP-enabled clients and devices. For more information, see <a href=\"https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep.html\">Connector for SCEP</a> in the <i>Amazon Web Services Private CA User Guide</i>.</p>"

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# The short X.Y version.
6060
version = '1.42.'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '1.42.52'
62+
release = '1.42.53'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

0 commit comments

Comments
 (0)