Skip to content

Commit 2ccc2db

Browse files
Merge branch 'release-1.42.75' into develop
* release-1.42.75: Bumping version to 1.42.75 Update to latest models
2 parents 6976bba + f9f7581 commit 2ccc2db

File tree

10 files changed

+218
-19
lines changed

10 files changed

+218
-19
lines changed

.changes/1.42.75.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"category": "``bedrock-agentcore-control``",
4+
"description": "Adds SDK support for 1) Persist session state in AgentCore Runtime via filesystemConfigurations in CreateAgentRuntime, UpdateAgentRuntime, and GetAgentRuntime APIs, 2) Optional name-based filtering on AgentCore ListBrowserProfiles API.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``gamelift``",
9+
"description": "Amazon GameLift Servers launches UDP ping beacons in the Beijing and Ningxia (China) Regions to help measure real-time network latency for multiplayer games. The ListLocations API is now available in these regions to provide endpoint domain and port information as part of the locations list.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``mediapackagev2``",
14+
"description": "Reduces the minimum allowed value for startOverWindowSeconds from 60 to 0, allowing customers to effectively disable the start-over window.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``opensearchserverless``",
19+
"description": "Adds support for updating the vector options field for existing collections.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``pcs``",
24+
"description": "This release adds support for custom slurmdbd and cgroup configuration in AWS PCS. Customers can now specify slurmdbd and cgroup settings to configure database accounting and reporting for their HPC workloads, and control resource allocation and limits for compute jobs.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``rds``",
29+
"description": "Adds support in Aurora PostgreSQL serverless databases for express configuration based creation through WithExpressConfiguration in CreateDbCluster API, and for restoring clusters using RestoreDBClusterToPointInTime and RestoreDBClusterFromSnapshot APIs.",
30+
"type": "api-change"
31+
}
32+
]

CHANGELOG.rst

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

5+
1.42.75
6+
=======
7+
8+
* api-change:``bedrock-agentcore-control``: Adds SDK support for 1) Persist session state in AgentCore Runtime via filesystemConfigurations in CreateAgentRuntime, UpdateAgentRuntime, and GetAgentRuntime APIs, 2) Optional name-based filtering on AgentCore ListBrowserProfiles API.
9+
* api-change:``gamelift``: Amazon GameLift Servers launches UDP ping beacons in the Beijing and Ningxia (China) Regions to help measure real-time network latency for multiplayer games. The ListLocations API is now available in these regions to provide endpoint domain and port information as part of the locations list.
10+
* api-change:``mediapackagev2``: Reduces the minimum allowed value for startOverWindowSeconds from 60 to 0, allowing customers to effectively disable the start-over window.
11+
* api-change:``opensearchserverless``: Adds support for updating the vector options field for existing collections.
12+
* api-change:``pcs``: This release adds support for custom slurmdbd and cgroup configuration in AWS PCS. Customers can now specify slurmdbd and cgroup settings to configure database accounting and reporting for their HPC workloads, and control resource allocation and limits for compute jobs.
13+
* api-change:``rds``: Adds support in Aurora PostgreSQL serverless databases for express configuration based creation through WithExpressConfiguration in CreateDbCluster API, and for restoring clusters using RestoreDBClusterToPointInTime and RestoreDBClusterFromSnapshot APIs.
14+
15+
516
1.42.74
617
=======
718

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.74'
20+
__version__ = '1.42.75'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/bedrock-agentcore-control/2023-06-05/service-2.json

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2950,6 +2950,10 @@
29502950
"shape":"EnvironmentVariablesMap",
29512951
"documentation":"<p>Environment variables to set in the AgentCore Runtime environment.</p>"
29522952
},
2953+
"filesystemConfigurations":{
2954+
"shape":"FilesystemConfigurations",
2955+
"documentation":"<p>The filesystem configurations to mount into the AgentCore Runtime. Use filesystem configurations to provide persistent storage to your AgentCore Runtime sessions.</p>"
2956+
},
29532957
"tags":{
29542958
"shape":"TagsMap",
29552959
"documentation":"<p>A map of tag keys and values to assign to the agent runtime. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>"
@@ -5383,6 +5387,23 @@
53835387
"documentation":"<p>Contains extraction configuration information for a memory strategy.</p>",
53845388
"union":true
53855389
},
5390+
"FilesystemConfiguration":{
5391+
"type":"structure",
5392+
"members":{
5393+
"sessionStorage":{
5394+
"shape":"SessionStorageConfiguration",
5395+
"documentation":"<p>Configuration for session storage. Session storage provides persistent storage that is preserved across AgentCore Runtime session invocations.</p>"
5396+
}
5397+
},
5398+
"documentation":"<p>Configuration for a filesystem that can be mounted into the AgentCore Runtime.</p>",
5399+
"union":true
5400+
},
5401+
"FilesystemConfigurations":{
5402+
"type":"list",
5403+
"member":{"shape":"FilesystemConfiguration"},
5404+
"max":1,
5405+
"min":0
5406+
},
53865407
"Filter":{
53875408
"type":"structure",
53885409
"required":[
@@ -5923,6 +5944,10 @@
59235944
"metadataConfiguration":{
59245945
"shape":"RuntimeMetadataConfiguration",
59255946
"documentation":"<p>Configuration for microVM Metadata Service (MMDS) settings for the AgentCore Runtime.</p>"
5947+
},
5948+
"filesystemConfigurations":{
5949+
"shape":"FilesystemConfigurations",
5950+
"documentation":"<p>The filesystem configurations mounted into the AgentCore Runtime.</p>"
59265951
}
59275952
}
59285953
},
@@ -7438,6 +7463,10 @@
74387463
"documentation":"<p>A token to retrieve the next page of results.</p>",
74397464
"location":"querystring",
74407465
"locationName":"nextToken"
7466+
},
7467+
"name":{
7468+
"shape":"BrowserProfileName",
7469+
"documentation":"<p>The name of the browser profile to filter results by.</p>"
74417470
}
74427471
}
74437472
},
@@ -8567,6 +8596,12 @@
85678596
},
85688597
"documentation":"<p>Contains information for modifying a strategy configuration.</p>"
85698598
},
8599+
"MountPath":{
8600+
"type":"string",
8601+
"max":200,
8602+
"min":6,
8603+
"pattern":"/mnt/[a-zA-Z0-9._-]+/?"
8604+
},
85708605
"Name":{
85718606
"type":"string",
85728607
"pattern":"[a-zA-Z][a-zA-Z0-9_]{0,47}"
@@ -9983,6 +10018,17 @@
998310018
"max":1440,
998410019
"min":1
998510020
},
10021+
"SessionStorageConfiguration":{
10022+
"type":"structure",
10023+
"required":["mountPath"],
10024+
"members":{
10025+
"mountPath":{
10026+
"shape":"MountPath",
10027+
"documentation":"<p>The mount path for the session storage filesystem inside the AgentCore Runtime. The path must be under <code>/mnt</code> with exactly one subdirectory level (for example, <code>/mnt/data</code>).</p>"
10028+
}
10029+
},
10030+
"documentation":"<p>Configuration for a session storage filesystem mounted into the AgentCore Runtime. Session storage provides persistent storage that is preserved across AgentCore Runtime session invocations.</p>"
10031+
},
998610032
"SetTokenVaultCMKRequest":{
998710033
"type":"structure",
998810034
"required":["kmsConfiguration"],
@@ -10836,6 +10882,10 @@
1083610882
"shape":"EnvironmentVariablesMap",
1083710883
"documentation":"<p>Updated environment variables to set in the AgentCore Runtime environment.</p>"
1083810884
},
10885+
"filesystemConfigurations":{
10886+
"shape":"FilesystemConfigurations",
10887+
"documentation":"<p>The updated filesystem configurations to mount into the AgentCore Runtime.</p>"
10888+
},
1083910889
"clientToken":{
1084010890
"shape":"ClientToken",
1084110891
"documentation":"<p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>",
@@ -11646,7 +11696,7 @@
1164611696
"documentation":"<p>Represents an optional value that is used to update the human-readable description of the resource. If set to null, it will clear the current description of the resource.</p>"
1164711697
}
1164811698
},
11649-
"documentation":"<p>Respresents an optional value that can be provided to update the human-readable description of the resource. If the field is omitted from the request, it will leave the current decription value unchanged.</p>"
11699+
"documentation":"<p>Wrapper for updating an optional Description field with PATCH semantics. When present in an update request, the description is replaced with optionalValue. When absent, the description is left unchanged. To unset the description, include the wrapper with optionalValue set to null.</p>"
1165011700
},
1165111701
"UserPreferenceConsolidationOverride":{
1165211702
"type":"structure",

botocore/data/gamelift/2015-10-01/service-2.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,7 +1422,7 @@
14221422
{"shape":"InvalidRequestException"},
14231423
{"shape":"InternalServiceException"}
14241424
],
1425-
"documentation":"<p> <b>This API works with the following fleet types:</b> Anywhere</p> <p>Lists all custom and Amazon Web Services locations where Amazon GameLift Servers can host game servers. </p> <p>Note that if you call this API using a location that doesn't have a service endpoint, such as one that can only be a remote location in a multi-location fleet, the API returns an error.</p> <p>Consult the table of supported locations in <a href=\"https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-regions.html\">Amazon GameLift Servers service locations</a> to identify home Regions that support single and multi-location fleets.</p> <p> <b>Learn more</b> </p> <p> <a href=\"https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-regions.html\">Service locations</a> </p>"
1425+
"documentation":"<p> <b>This API works with the following fleet types:</b> EC2, Anywhere, Container</p> <p>Lists all custom and Amazon Web Services locations where Amazon GameLift Servers can host game servers. This operation also returns UDP ping beacon information for locations, which you can use to measure network latency between player devices and potential hosting locations.</p> <p> <b>Learn more</b> </p> <p> <a href=\"https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-regions.html\">Service locations</a> </p>"
14261426
},
14271427
"ListScripts":{
14281428
"name":"ListScripts",
@@ -7968,7 +7968,7 @@
79687968
},
79697969
"PingBeacon":{
79707970
"shape":"PingBeacon",
7971-
"documentation":"<p>Information about the UDP ping beacon for this location. </p>"
7971+
"documentation":"<p>Information about the UDP ping beacon for this location. Ping beacons are fixed endpoints that you can use to measure network latency between a player device and an Amazon GameLift Servers hosting location.</p>"
79727972
}
79737973
},
79747974
"documentation":"<p>Properties of a location, which can include its name, ARN (for custom locations), and ping beacon information.</p>"
@@ -8450,7 +8450,7 @@
84508450
"members":{
84518451
"UDPEndpoint":{
84528452
"shape":"UDPEndpoint",
8453-
"documentation":"<p>The domain name and port of the UDP ping beacon. </p>"
8453+
"documentation":"<p>The domain name and port of the UDP ping beacon. Your game client can send UDP messages to this endpoint and receive responses to measure network latency.</p>"
84548454
}
84558455
},
84568456
"documentation":"<p>Information about a UDP ping beacon that can be used to measure network latency between a player device and an Amazon GameLift Servers hosting location.</p>"
@@ -9871,11 +9871,11 @@
98719871
"members":{
98729872
"Domain":{
98739873
"shape":"NonZeroAndMaxString",
9874-
"documentation":"<p>The domain name of the UDP endpoint. </p>"
9874+
"documentation":"<p>The domain name of the UDP endpoint.</p>"
98759875
},
98769876
"Port":{
98779877
"shape":"PositiveInteger",
9878-
"documentation":"<p>The port number of the UDP endpoint. </p>"
9878+
"documentation":"<p>The port number of the UDP endpoint. For Amazon GameLift Servers ping beacons, this is typically port 7770.</p>"
98799879
}
98809880
},
98819881
"documentation":"<p>The domain name and port information for a UDP endpoint.</p>"

botocore/data/mediapackagev2/2022-12-25/service-2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@
14271427
"type":"integer",
14281428
"box":true,
14291429
"max":1209600,
1430-
"min":60
1430+
"min":0
14311431
},
14321432
"CreateOriginEndpointResponse":{
14331433
"type":"structure",
@@ -3821,7 +3821,7 @@
38213821
},
38223822
"CertificateArn":{
38233823
"shape":"SpekeKeyProviderCertificateArnString",
3824-
"documentation":"<p>The ARN for the certificate that you imported to AWS Certificate Manager to add content key encryption to this endpoint. For this feature to work, your DRM key provider must support content key encryption.</p>"
3824+
"documentation":"<p>The ARN for the certificate that you imported to Amazon Web Services Certificate Manager to add content key encryption to this endpoint. For this feature to work, your DRM key provider must support content key encryption.</p>"
38253825
}
38263826
},
38273827
"documentation":"<p>The parameters for the SPEKE key provider.</p>"
@@ -4182,7 +4182,7 @@
41824182
"type":"integer",
41834183
"box":true,
41844184
"max":1209600,
4185-
"min":60
4185+
"min":0
41864186
},
41874187
"UpdateOriginEndpointResponse":{
41884188
"type":"structure",

botocore/data/opensearchserverless/2021-11-01/service-2.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,9 +1307,11 @@
13071307
"type":"string",
13081308
"enum":[
13091309
"CREATING",
1310+
"UPDATING",
13101311
"DELETING",
13111312
"ACTIVE",
1312-
"FAILED"
1313+
"FAILED",
1314+
"UPDATE_FAILED"
13131315
]
13141316
},
13151317
"CollectionSummaries":{
@@ -1370,7 +1372,7 @@
13701372
"members":{
13711373
"message":{"shape":"String"}
13721374
},
1373-
"documentation":"<p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>",
1375+
"documentation":"<p>When creating a resource, thrown when a resource with the same name already exists or is being created. When deleting a resource, thrown when the resource is not in the ACTIVE, FAILED, or UPDATE_FAILED state.</p>",
13741376
"exception":true
13751377
},
13761378
"CreateAccessPolicyRequest":{
@@ -3372,6 +3374,10 @@
33723374
"shape":"String",
33733375
"documentation":"<p>The description of the collection.</p>"
33743376
},
3377+
"vectorOptions":{
3378+
"shape":"VectorOptions",
3379+
"documentation":"<p>Configuration options for vector search capabilities in the collection.</p>"
3380+
},
33753381
"arn":{
33763382
"shape":"String",
33773383
"documentation":"<p>The Amazon Resource Name (ARN) of the collection.</p>"
@@ -3470,6 +3476,10 @@
34703476
"shape":"UpdateCollectionRequestDescriptionString",
34713477
"documentation":"<p>A description of the collection.</p>"
34723478
},
3479+
"vectorOptions":{
3480+
"shape":"VectorOptions",
3481+
"documentation":"<p>Configuration options for vector search capabilities in the collection.</p>"
3482+
},
34733483
"clientToken":{
34743484
"shape":"ClientToken",
34753485
"documentation":"<p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>",

0 commit comments

Comments
 (0)