Skip to content

Commit a06f533

Browse files
Updated API models and rebuilt service gems.
1 parent ed21d8b commit a06f533

File tree

81 files changed

+3726
-972
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+3726
-972
lines changed

apis/bedrock-data-automation-runtime/2024-06-13/api-2.json

Lines changed: 53 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"input":{"shape":"GetDataAutomationStatusRequest"},
2525
"output":{"shape":"GetDataAutomationStatusResponse"},
2626
"errors":[
27-
{"shape":"AccessDeniedException"},
2827
{"shape":"ValidationException"},
28+
{"shape":"AccessDeniedException"},
2929
{"shape":"InternalServerException"},
3030
{"shape":"ThrottlingException"},
3131
{"shape":"ResourceNotFoundException"}
@@ -41,8 +41,8 @@
4141
"output":{"shape":"InvokeDataAutomationAsyncResponse"},
4242
"errors":[
4343
{"shape":"ServiceQuotaExceededException"},
44-
{"shape":"AccessDeniedException"},
4544
{"shape":"ValidationException"},
45+
{"shape":"AccessDeniedException"},
4646
{"shape":"InternalServerException"},
4747
{"shape":"ThrottlingException"}
4848
],
@@ -57,11 +57,11 @@
5757
"input":{"shape":"ListTagsForResourceRequest"},
5858
"output":{"shape":"ListTagsForResourceResponse"},
5959
"errors":[
60-
{"shape":"AccessDeniedException"},
6160
{"shape":"ValidationException"},
61+
{"shape":"AccessDeniedException"},
6262
{"shape":"InternalServerException"},
63-
{"shape":"ThrottlingException"},
64-
{"shape":"ResourceNotFoundException"}
63+
{"shape":"ResourceNotFoundException"},
64+
{"shape":"ThrottlingException"}
6565
]
6666
},
6767
"TagResource":{
@@ -74,11 +74,11 @@
7474
"output":{"shape":"TagResourceResponse"},
7575
"errors":[
7676
{"shape":"ServiceQuotaExceededException"},
77-
{"shape":"AccessDeniedException"},
7877
{"shape":"ValidationException"},
78+
{"shape":"AccessDeniedException"},
7979
{"shape":"InternalServerException"},
80-
{"shape":"ThrottlingException"},
81-
{"shape":"ResourceNotFoundException"}
80+
{"shape":"ResourceNotFoundException"},
81+
{"shape":"ThrottlingException"}
8282
]
8383
},
8484
"UntagResource":{
@@ -90,11 +90,11 @@
9090
"input":{"shape":"UntagResourceRequest"},
9191
"output":{"shape":"UntagResourceResponse"},
9292
"errors":[
93-
{"shape":"AccessDeniedException"},
9493
{"shape":"ValidationException"},
94+
{"shape":"AccessDeniedException"},
9595
{"shape":"InternalServerException"},
96-
{"shape":"ThrottlingException"},
97-
{"shape":"ResourceNotFoundException"}
96+
{"shape":"ResourceNotFoundException"},
97+
{"shape":"ThrottlingException"}
9898
]
9999
}
100100
},
@@ -106,6 +106,12 @@
106106
},
107107
"exception":true
108108
},
109+
"AssetProcessingConfiguration":{
110+
"type":"structure",
111+
"members":{
112+
"video":{"shape":"VideoAssetProcessingConfiguration"}
113+
}
114+
},
109115
"AutomationJobStatus":{
110116
"type":"string",
111117
"enum":[
@@ -241,7 +247,8 @@
241247
"type":"structure",
242248
"required":["s3Uri"],
243249
"members":{
244-
"s3Uri":{"shape":"S3Uri"}
250+
"s3Uri":{"shape":"S3Uri"},
251+
"assetProcessingConfiguration":{"shape":"AssetProcessingConfiguration"}
245252
}
246253
},
247254
"InternalServerException":{
@@ -409,6 +416,27 @@
409416
},
410417
"exception":true
411418
},
419+
"TimestampSegment":{
420+
"type":"structure",
421+
"required":[
422+
"startTimeMillis",
423+
"endTimeMillis"
424+
],
425+
"members":{
426+
"startTimeMillis":{"shape":"TimestampSegmentStartTimeMillisLong"},
427+
"endTimeMillis":{"shape":"TimestampSegmentEndTimeMillisLong"}
428+
}
429+
},
430+
"TimestampSegmentEndTimeMillisLong":{
431+
"type":"long",
432+
"box":true,
433+
"min":300000
434+
},
435+
"TimestampSegmentStartTimeMillisLong":{
436+
"type":"long",
437+
"box":true,
438+
"min":0
439+
},
412440
"UntagResourceRequest":{
413441
"type":"structure",
414442
"required":[
@@ -431,6 +459,19 @@
431459
"message":{"shape":"NonBlankString"}
432460
},
433461
"exception":true
462+
},
463+
"VideoAssetProcessingConfiguration":{
464+
"type":"structure",
465+
"members":{
466+
"segmentConfiguration":{"shape":"VideoSegmentConfiguration"}
467+
}
468+
},
469+
"VideoSegmentConfiguration":{
470+
"type":"structure",
471+
"members":{
472+
"timestampSegment":{"shape":"TimestampSegment"}
473+
},
474+
"union":true
434475
}
435476
}
436477
}

apis/bedrock-data-automation-runtime/2024-06-13/docs-2.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@
1414
"refs": {
1515
}
1616
},
17+
"AssetProcessingConfiguration": {
18+
"base": "<p>Config containing asset processing related knobs for all modalities</p>",
19+
"refs": {
20+
"InputConfiguration$assetProcessingConfiguration": "<p>Asset processing configuration</p>"
21+
}
22+
},
1723
"AutomationJobStatus": {
1824
"base": "<p>List of status supported by automation jobs</p>",
1925
"refs": {
@@ -274,6 +280,24 @@
274280
"refs": {
275281
}
276282
},
283+
"TimestampSegment": {
284+
"base": "<p>Timestamp segment</p>",
285+
"refs": {
286+
"VideoSegmentConfiguration$timestampSegment": "<p>Timestamp segment</p>"
287+
}
288+
},
289+
"TimestampSegmentEndTimeMillisLong": {
290+
"base": null,
291+
"refs": {
292+
"TimestampSegment$endTimeMillis": "<p>End timestamp in milliseconds</p>"
293+
}
294+
},
295+
"TimestampSegmentStartTimeMillisLong": {
296+
"base": null,
297+
"refs": {
298+
"TimestampSegment$startTimeMillis": "<p>Start timestamp in milliseconds</p>"
299+
}
300+
},
277301
"UntagResourceRequest": {
278302
"base": null,
279303
"refs": {
@@ -288,6 +312,18 @@
288312
"base": "<p>This exception will be thrown when customer provided invalid parameters.</p>",
289313
"refs": {
290314
}
315+
},
316+
"VideoAssetProcessingConfiguration": {
317+
"base": "<p>Video asset processing configuration</p>",
318+
"refs": {
319+
"AssetProcessingConfiguration$video": "<p>Video asset processing configuration</p>"
320+
}
321+
},
322+
"VideoSegmentConfiguration": {
323+
"base": "<p>Delimits the segment of the input that will be processed</p>",
324+
"refs": {
325+
"VideoAssetProcessingConfiguration$segmentConfiguration": "<p>Delimits the segment of the input that will be processed</p>"
326+
}
291327
}
292328
}
293329
}

apis/bedrock-data-automation/2023-07-26/api-2.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,8 @@
11481148
"enum":[
11491149
"DOCUMENT",
11501150
"IMAGE",
1151-
"AUDIO"
1151+
"AUDIO",
1152+
"VIDEO"
11521153
]
11531154
},
11541155
"UntagResourceRequest":{

apis/codepipeline/2015-07-09/api-2.json

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,21 @@
267267
{"shape":"InvalidNextTokenException"}
268268
]
269269
},
270+
"ListDeployActionExecutionTargets":{
271+
"name":"ListDeployActionExecutionTargets",
272+
"http":{
273+
"method":"POST",
274+
"requestUri":"/"
275+
},
276+
"input":{"shape":"ListDeployActionExecutionTargetsInput"},
277+
"output":{"shape":"ListDeployActionExecutionTargetsOutput"},
278+
"errors":[
279+
{"shape":"ValidationException"},
280+
{"shape":"PipelineNotFoundException"},
281+
{"shape":"InvalidNextTokenException"},
282+
{"shape":"ActionExecutionNotFoundException"}
283+
]
284+
},
270285
"ListPipelineExecutions":{
271286
"name":"ListPipelineExecutions",
272287
"http":{
@@ -863,6 +878,13 @@
863878
"namespace":{"shape":"ActionNamespace"}
864879
}
865880
},
881+
"ActionExecutionNotFoundException":{
882+
"type":"structure",
883+
"members":{
884+
"message":{"shape":"Message"}
885+
},
886+
"exception":true
887+
},
866888
"ActionExecutionOutput":{
867889
"type":"structure",
868890
"members":{
@@ -1479,6 +1501,42 @@
14791501
"type":"structure",
14801502
"members":{}
14811503
},
1504+
"DeployActionExecutionTarget":{
1505+
"type":"structure",
1506+
"members":{
1507+
"targetId":{"shape":"String"},
1508+
"targetType":{"shape":"String"},
1509+
"status":{"shape":"String"},
1510+
"startTime":{"shape":"Timestamp"},
1511+
"endTime":{"shape":"Timestamp"},
1512+
"events":{"shape":"DeployTargetEventList"}
1513+
}
1514+
},
1515+
"DeployActionExecutionTargetList":{
1516+
"type":"list",
1517+
"member":{"shape":"DeployActionExecutionTarget"}
1518+
},
1519+
"DeployTargetEvent":{
1520+
"type":"structure",
1521+
"members":{
1522+
"name":{"shape":"String"},
1523+
"status":{"shape":"String"},
1524+
"startTime":{"shape":"Timestamp"},
1525+
"endTime":{"shape":"Timestamp"},
1526+
"context":{"shape":"DeployTargetEventContext"}
1527+
}
1528+
},
1529+
"DeployTargetEventContext":{
1530+
"type":"structure",
1531+
"members":{
1532+
"ssmCommandId":{"shape":"String"},
1533+
"message":{"shape":"String"}
1534+
}
1535+
},
1536+
"DeployTargetEventList":{
1537+
"type":"list",
1538+
"member":{"shape":"DeployTargetEvent"}
1539+
},
14821540
"DeregisterWebhookWithThirdPartyInput":{
14831541
"type":"structure",
14841542
"members":{
@@ -2127,6 +2185,24 @@
21272185
"nextToken":{"shape":"NextToken"}
21282186
}
21292187
},
2188+
"ListDeployActionExecutionTargetsInput":{
2189+
"type":"structure",
2190+
"required":["actionExecutionId"],
2191+
"members":{
2192+
"pipelineName":{"shape":"PipelineName"},
2193+
"actionExecutionId":{"shape":"ActionExecutionId"},
2194+
"filters":{"shape":"TargetFilterList"},
2195+
"maxResults":{"shape":"MaxResults"},
2196+
"nextToken":{"shape":"NextToken"}
2197+
}
2198+
},
2199+
"ListDeployActionExecutionTargetsOutput":{
2200+
"type":"structure",
2201+
"members":{
2202+
"targets":{"shape":"DeployActionExecutionTargetList"},
2203+
"nextToken":{"shape":"NextToken"}
2204+
}
2205+
},
21302206
"ListPipelineExecutionsInput":{
21312207
"type":"structure",
21322208
"required":["pipelineName"],
@@ -3482,6 +3558,29 @@
34823558
"max":256,
34833559
"min":0
34843560
},
3561+
"TargetFilter":{
3562+
"type":"structure",
3563+
"members":{
3564+
"name":{"shape":"TargetFilterName"},
3565+
"values":{"shape":"TargetFilterValueList"}
3566+
}
3567+
},
3568+
"TargetFilterList":{
3569+
"type":"list",
3570+
"member":{"shape":"TargetFilter"}
3571+
},
3572+
"TargetFilterName":{
3573+
"type":"string",
3574+
"enum":["TARGET_STATUS"]
3575+
},
3576+
"TargetFilterValue":{
3577+
"type":"string",
3578+
"min":1
3579+
},
3580+
"TargetFilterValueList":{
3581+
"type":"list",
3582+
"member":{"shape":"TargetFilterValue"}
3583+
},
34853584
"ThirdPartyJob":{
34863585
"type":"structure",
34873586
"members":{

0 commit comments

Comments
 (0)