Skip to content

Commit a32a2a8

Browse files
Update to latest models
1 parent e566e05 commit a32a2a8

File tree

14 files changed

+1555
-28
lines changed

14 files changed

+1555
-28
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``bedrock-agent-runtime``",
4+
"description": "Introduces Sessions (preview) to enable stateful conversations in GenAI applications."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``emr``",
4+
"description": "Definition update for EbsConfiguration."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``qbusiness``",
4+
"description": "This release supports deleting attachments from conversations."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``redshift-serverless``",
4+
"description": "Add track support for Redshift Serverless workgroup."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``sagemaker``",
4+
"description": "SageMaker HubService is introducing support for creating Training Jobs in Curated Hub (Private Hub). Additionally, it is introducing two new APIs: UpdateHubContent and UpdateHubContentReference."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``storagegateway``",
4+
"description": "This release adds support to invoke a process that cleans the specified file share's cache of file entries that are failing upload to Amazon S3."
5+
}

botocore/data/bedrock-agent-runtime/2023-07-26/paginators-1.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@
1515
"input_token": "nextToken",
1616
"output_token": "nextToken",
1717
"result_key": "results"
18+
},
19+
"ListInvocationSteps": {
20+
"input_token": "nextToken",
21+
"output_token": "nextToken",
22+
"limit_key": "maxResults",
23+
"result_key": "invocationStepSummaries"
24+
},
25+
"ListInvocations": {
26+
"input_token": "nextToken",
27+
"output_token": "nextToken",
28+
"limit_key": "maxResults",
29+
"result_key": "invocationSummaries"
30+
},
31+
"ListSessions": {
32+
"input_token": "nextToken",
33+
"output_token": "nextToken",
34+
"limit_key": "maxResults",
35+
"result_key": "sessionSummaries"
1836
}
1937
}
2038
}

botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json

Lines changed: 1095 additions & 26 deletions
Large diffs are not rendered by default.

botocore/data/emr/2009-03-31/service-2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2013,7 +2013,7 @@
20132013
},
20142014
"EbsOptimized":{
20152015
"shape":"BooleanObject",
2016-
"documentation":"<p>Indicates whether an Amazon EBS volume is EBS-optimized.</p>"
2016+
"documentation":"<p>Indicates whether an Amazon EBS volume is EBS-optimized. The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.</p>"
20172017
}
20182018
},
20192019
"documentation":"<p>The Amazon EBS configuration of a cluster instance.</p>"

botocore/data/qbusiness/2023-11-27/service-2.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,26 @@
339339
"documentation":"<p>Deletes an Amazon Q Business application.</p>",
340340
"idempotent":true
341341
},
342+
"DeleteAttachment":{
343+
"name":"DeleteAttachment",
344+
"http":{
345+
"method":"DELETE",
346+
"requestUri":"/applications/{applicationId}/conversations/{conversationId}/attachments/{attachmentId}",
347+
"responseCode":200
348+
},
349+
"input":{"shape":"DeleteAttachmentRequest"},
350+
"output":{"shape":"DeleteAttachmentResponse"},
351+
"errors":[
352+
{"shape":"ResourceNotFoundException"},
353+
{"shape":"InternalServerException"},
354+
{"shape":"LicenseNotFoundException"},
355+
{"shape":"ThrottlingException"},
356+
{"shape":"ValidationException"},
357+
{"shape":"AccessDeniedException"}
358+
],
359+
"documentation":"<p>Deletes an attachment associated with a specific Amazon Q Business conversation.</p>",
360+
"idempotent":true
361+
},
342362
"DeleteChatControlsConfiguration":{
343363
"name":"DeleteChatControlsConfiguration",
344364
"http":{
@@ -3703,6 +3723,45 @@
37033723
"members":{
37043724
}
37053725
},
3726+
"DeleteAttachmentRequest":{
3727+
"type":"structure",
3728+
"required":[
3729+
"applicationId",
3730+
"conversationId",
3731+
"attachmentId"
3732+
],
3733+
"members":{
3734+
"applicationId":{
3735+
"shape":"ApplicationId",
3736+
"documentation":"<p>The unique identifier for the Amazon Q Business application environment.</p>",
3737+
"location":"uri",
3738+
"locationName":"applicationId"
3739+
},
3740+
"conversationId":{
3741+
"shape":"ConversationId",
3742+
"documentation":"<p>The unique identifier of the conversation.</p>",
3743+
"location":"uri",
3744+
"locationName":"conversationId"
3745+
},
3746+
"attachmentId":{
3747+
"shape":"AttachmentId",
3748+
"documentation":"<p>The unique identifier for the attachment.</p>",
3749+
"location":"uri",
3750+
"locationName":"attachmentId"
3751+
},
3752+
"userId":{
3753+
"shape":"UserId",
3754+
"documentation":"<p>The unique identifier of the user involved in the conversation.</p>",
3755+
"location":"querystring",
3756+
"locationName":"userId"
3757+
}
3758+
}
3759+
},
3760+
"DeleteAttachmentResponse":{
3761+
"type":"structure",
3762+
"members":{
3763+
}
3764+
},
37063765
"DeleteChatControlsConfigurationRequest":{
37073766
"type":"structure",
37083767
"required":["applicationId"],

botocore/data/redshift-serverless/2021-04-21/paginators-1.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@
6565
"output_token": "nextToken",
6666
"limit_key": "maxResults",
6767
"result_key": "managedWorkgroups"
68+
},
69+
"ListTracks": {
70+
"input_token": "nextToken",
71+
"output_token": "nextToken",
72+
"limit_key": "maxResults",
73+
"result_key": "tracks"
6874
}
6975
}
7076
}

botocore/data/redshift-serverless/2021-04-21/service-2.json

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,24 @@
471471
],
472472
"documentation":"<p>Returns information about a <code>TableRestoreStatus</code> object.</p>"
473473
},
474+
"GetTrack":{
475+
"name":"GetTrack",
476+
"http":{
477+
"method":"POST",
478+
"requestUri":"/"
479+
},
480+
"input":{"shape":"GetTrackRequest"},
481+
"output":{"shape":"GetTrackResponse"},
482+
"errors":[
483+
{"shape":"InternalServerException"},
484+
{"shape":"ResourceNotFoundException"},
485+
{"shape":"ConflictException"},
486+
{"shape":"ValidationException"},
487+
{"shape":"AccessDeniedException"},
488+
{"shape":"ThrottlingException"}
489+
],
490+
"documentation":"<p>Get the Redshift Serverless version for a specified track.</p>"
491+
},
474492
"GetUsageLimit":{
475493
"name":"GetUsageLimit",
476494
"http":{
@@ -656,6 +674,23 @@
656674
],
657675
"documentation":"<p>Lists the tags assigned to a resource.</p>"
658676
},
677+
"ListTracks":{
678+
"name":"ListTracks",
679+
"http":{
680+
"method":"POST",
681+
"requestUri":"/"
682+
},
683+
"input":{"shape":"ListTracksRequest"},
684+
"output":{"shape":"ListTracksResponse"},
685+
"errors":[
686+
{"shape":"InternalServerException"},
687+
{"shape":"InvalidPaginationException"},
688+
{"shape":"ValidationException"},
689+
{"shape":"AccessDeniedException"},
690+
{"shape":"ThrottlingException"}
691+
],
692+
"documentation":"<p>List the Amazon Redshift Serverless versions.</p>"
693+
},
659694
"ListUsageLimits":{
660695
"name":"ListUsageLimits",
661696
"http":{
@@ -1437,6 +1472,10 @@
14371472
"shape":"TagList",
14381473
"documentation":"<p>A array of tag instances.</p>"
14391474
},
1475+
"trackName":{
1476+
"shape":"TrackName",
1477+
"documentation":"<p>An optional parameter for the name of the track for the workgroup. If you don't provide a track name, the workgroup is assigned to the <code>current</code> track.</p>"
1478+
},
14401479
"workgroupName":{
14411480
"shape":"WorkgroupName",
14421481
"documentation":"<p>The name of the created workgroup.</p>"
@@ -1947,6 +1986,25 @@
19471986
}
19481987
}
19491988
},
1989+
"GetTrackRequest":{
1990+
"type":"structure",
1991+
"required":["trackName"],
1992+
"members":{
1993+
"trackName":{
1994+
"shape":"TrackName",
1995+
"documentation":"<p>The name of the track of which its version is fetched.</p>"
1996+
}
1997+
}
1998+
},
1999+
"GetTrackResponse":{
2000+
"type":"structure",
2001+
"members":{
2002+
"track":{
2003+
"shape":"ServerlessTrack",
2004+
"documentation":"<p>The version of the specified track.</p>"
2005+
}
2006+
}
2007+
},
19502008
"GetUsageLimitRequest":{
19512009
"type":"structure",
19522010
"required":["usageLimitId"],
@@ -2425,6 +2483,38 @@
24252483
}
24262484
}
24272485
},
2486+
"ListTracksRequest":{
2487+
"type":"structure",
2488+
"members":{
2489+
"maxResults":{
2490+
"shape":"ListTracksRequestMaxResultsInteger",
2491+
"documentation":"<p>The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.</p>"
2492+
},
2493+
"nextToken":{
2494+
"shape":"PaginationToken",
2495+
"documentation":"<p>If your initial <code>ListTracksRequest</code> operation returns a <code>nextToken</code>, you can include the returned <code>nextToken</code> in following <code>ListTracksRequest</code> operations, which returns results in the next page.</p>"
2496+
}
2497+
}
2498+
},
2499+
"ListTracksRequestMaxResultsInteger":{
2500+
"type":"integer",
2501+
"box":true,
2502+
"max":100,
2503+
"min":1
2504+
},
2505+
"ListTracksResponse":{
2506+
"type":"structure",
2507+
"members":{
2508+
"nextToken":{
2509+
"shape":"PaginationToken",
2510+
"documentation":"<p>When <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>"
2511+
},
2512+
"tracks":{
2513+
"shape":"TrackList",
2514+
"documentation":"<p>The returned tracks.</p>"
2515+
}
2516+
}
2517+
},
24282518
"ListUsageLimitsRequest":{
24292519
"type":"structure",
24302520
"members":{
@@ -3106,6 +3196,24 @@
31063196
"type":"list",
31073197
"member":{"shape":"SecurityGroupId"}
31083198
},
3199+
"ServerlessTrack":{
3200+
"type":"structure",
3201+
"members":{
3202+
"trackName":{
3203+
"shape":"TrackName",
3204+
"documentation":"<p>The name of the track. Valid values are <code>current</code> and <code>trailing</code>.</p>"
3205+
},
3206+
"updateTargets":{
3207+
"shape":"UpdateTargetsList",
3208+
"documentation":"<p>An array of <code>UpdateTarget</code> objects to update with the track.</p>"
3209+
},
3210+
"workgroupVersion":{
3211+
"shape":"String",
3212+
"documentation":"<p>The workgroup version number for the workgroup release.</p>"
3213+
}
3214+
},
3215+
"documentation":"<p>Defines a track that determines which Amazon Redshift version to apply after a new version is released. If the value for <code>ServerlessTrack</code> is <code>current</code>, the workgroup is updated to the most recently certified release. If the value is <code>trailing</code>, the workgroup is updated to the previously certified release.</p>"
3216+
},
31093217
"ServiceQuotaExceededException":{
31103218
"type":"structure",
31113219
"required":["message"],
@@ -3453,6 +3561,16 @@
34533561
"documentation":"<p>The request exceeded the number of tags allowed for a resource.</p>",
34543562
"exception":true
34553563
},
3564+
"TrackList":{
3565+
"type":"list",
3566+
"member":{"shape":"ServerlessTrack"}
3567+
},
3568+
"TrackName":{
3569+
"type":"string",
3570+
"max":256,
3571+
"min":1,
3572+
"pattern":"^[a-zA-Z0-9_]+$"
3573+
},
34563574
"UntagResourceRequest":{
34573575
"type":"structure",
34583576
"required":[
@@ -3684,6 +3802,24 @@
36843802
}
36853803
}
36863804
},
3805+
"UpdateTarget":{
3806+
"type":"structure",
3807+
"members":{
3808+
"trackName":{
3809+
"shape":"TrackName",
3810+
"documentation":"<p>The name of the new track.</p>"
3811+
},
3812+
"workgroupVersion":{
3813+
"shape":"String",
3814+
"documentation":"<p>The workgroup version for the new track.</p>"
3815+
}
3816+
},
3817+
"documentation":"<p>A track that you can switch the current track to.</p>"
3818+
},
3819+
"UpdateTargetsList":{
3820+
"type":"list",
3821+
"member":{"shape":"UpdateTarget"}
3822+
},
36873823
"UpdateUsageLimitRequest":{
36883824
"type":"structure",
36893825
"required":["usageLimitId"],
@@ -3755,6 +3891,10 @@
37553891
"shape":"SubnetIdList",
37563892
"documentation":"<p>An array of VPC subnet IDs to associate with the workgroup.</p>"
37573893
},
3894+
"trackName":{
3895+
"shape":"TrackName",
3896+
"documentation":"<p>An optional parameter for the name of the track for the workgroup. If you don't provide a track name, the workgroup is assigned to the <code>current</code> track.</p>"
3897+
},
37583898
"workgroupName":{
37593899
"shape":"WorkgroupName",
37603900
"documentation":"<p>The name of the workgroup to update. You can't update the name of a workgroup once it is created.</p>"
@@ -3947,6 +4087,10 @@
39474087
"shape":"String",
39484088
"documentation":"<p>The patch version of your Amazon Redshift Serverless workgroup. For more information about patch versions, see <a href=\"https://docs.aws.amazon.com/redshift/latest/mgmt/cluster-versions.html\">Cluster versions for Amazon Redshift</a>.</p>"
39494089
},
4090+
"pendingTrackName":{
4091+
"shape":"TrackName",
4092+
"documentation":"<p>The name for the track that you want to assign to the workgroup. When the track changes, the workgroup is switched to the latest workgroup release available for the track. At this point, the track name is applied.</p>"
4093+
},
39504094
"port":{
39514095
"shape":"Integer",
39524096
"documentation":"<p>The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.</p>"
@@ -3971,6 +4115,10 @@
39714115
"shape":"SubnetIdList",
39724116
"documentation":"<p>An array of subnet IDs the workgroup is associated with.</p>"
39734117
},
4118+
"trackName":{
4119+
"shape":"TrackName",
4120+
"documentation":"<p>The name of the track for the workgroup.</p>"
4121+
},
39744122
"workgroupArn":{
39754123
"shape":"String",
39764124
"documentation":"<p>The Amazon Resource Name (ARN) that links to the workgroup.</p>"

0 commit comments

Comments
 (0)