@aws-sdk/client-bedrock-data-automation-runtime 3.987.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +25 -438
- package/dist-cjs/models/BedrockDataAutomationRuntimeServiceException.js +12 -0
- package/dist-cjs/models/errors.js +95 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +305 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +51 -45
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var BedrockDataAutomationRuntimeServiceException = require('./models/BedrockDataAutomationRuntimeServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,390 +113,6 @@ class BedrockDataAutomationRuntimeClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class BedrockDataAutomationRuntimeServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, BedrockDataAutomationRuntimeServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends BedrockDataAutomationRuntimeServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends BedrockDataAutomationRuntimeServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends BedrockDataAutomationRuntimeServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ThrottlingException extends BedrockDataAutomationRuntimeServiceException {
|
|
157
|
-
name = "ThrottlingException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ThrottlingException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends BedrockDataAutomationRuntimeServiceException {
|
|
169
|
-
name = "ValidationException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ValidationException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ServiceQuotaExceededException extends BedrockDataAutomationRuntimeServiceException {
|
|
181
|
-
name = "ServiceQuotaExceededException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "ServiceQuotaExceededException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ServiceUnavailableException extends BedrockDataAutomationRuntimeServiceException {
|
|
193
|
-
name = "ServiceUnavailableException";
|
|
194
|
-
$fault = "server";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ServiceUnavailableException",
|
|
198
|
-
$fault: "server",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
const _ADE = "AccessDeniedException";
|
|
206
|
-
const _APC = "AssetProcessingConfiguration";
|
|
207
|
-
const _B = "Blueprint";
|
|
208
|
-
const _BL = "BlueprintList";
|
|
209
|
-
const _DAC = "DataAutomationConfiguration";
|
|
210
|
-
const _EBC = "EventBridgeConfiguration";
|
|
211
|
-
const _EC = "EncryptionConfiguration";
|
|
212
|
-
const _GDAS = "GetDataAutomationStatus";
|
|
213
|
-
const _GDASR = "GetDataAutomationStatusRequest";
|
|
214
|
-
const _GDASRe = "GetDataAutomationStatusResponse";
|
|
215
|
-
const _IC = "InputConfiguration";
|
|
216
|
-
const _IDA = "InvokeDataAutomation";
|
|
217
|
-
const _IDAA = "InvokeDataAutomationAsync";
|
|
218
|
-
const _IDAAR = "InvokeDataAutomationAsyncRequest";
|
|
219
|
-
const _IDAARn = "InvokeDataAutomationAsyncResponse";
|
|
220
|
-
const _IDAR = "InvokeDataAutomationRequest";
|
|
221
|
-
const _IDARn = "InvokeDataAutomationResponse";
|
|
222
|
-
const _ISE = "InternalServerException";
|
|
223
|
-
const _LTFR = "ListTagsForResource";
|
|
224
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
225
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
226
|
-
const _NC = "NotificationConfiguration";
|
|
227
|
-
const _OC = "OutputConfiguration";
|
|
228
|
-
const _OS = "OutputSegment";
|
|
229
|
-
const _OSL = "OutputSegmentList";
|
|
230
|
-
const _RNFE = "ResourceNotFoundException";
|
|
231
|
-
const _SIC = "SyncInputConfiguration";
|
|
232
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
233
|
-
const _SUE = "ServiceUnavailableException";
|
|
234
|
-
const _T = "Tag";
|
|
235
|
-
const _TE = "ThrottlingException";
|
|
236
|
-
const _TL = "TagList";
|
|
237
|
-
const _TR = "TagResource";
|
|
238
|
-
const _TRR = "TagResourceRequest";
|
|
239
|
-
const _TRRa = "TagResourceResponse";
|
|
240
|
-
const _TS = "TimestampSegment";
|
|
241
|
-
const _UR = "UntagResource";
|
|
242
|
-
const _URR = "UntagResourceRequest";
|
|
243
|
-
const _URRn = "UntagResourceResponse";
|
|
244
|
-
const _VAPC = "VideoAssetProcessingConfiguration";
|
|
245
|
-
const _VE = "ValidationException";
|
|
246
|
-
const _VSC = "VideoSegmentConfiguration";
|
|
247
|
-
const _aPC = "assetProcessingConfiguration";
|
|
248
|
-
const _b = "blueprints";
|
|
249
|
-
const _bA = "blueprintArn";
|
|
250
|
-
const _by = "bytes";
|
|
251
|
-
const _c = "client";
|
|
252
|
-
const _cO = "customOutput";
|
|
253
|
-
const _cOS = "customOutputStatus";
|
|
254
|
-
const _cT = "clientToken";
|
|
255
|
-
const _dAC = "dataAutomationConfiguration";
|
|
256
|
-
const _dAPA = "dataAutomationProjectArn";
|
|
257
|
-
const _dAPAa = "dataAutomationProfileArn";
|
|
258
|
-
const _e = "error";
|
|
259
|
-
const _eBC = "eventBridgeConfiguration";
|
|
260
|
-
const _eBE = "eventBridgeEnabled";
|
|
261
|
-
const _eC = "encryptionConfiguration";
|
|
262
|
-
const _eM = "errorMessage";
|
|
263
|
-
const _eT = "errorType";
|
|
264
|
-
const _eTM = "endTimeMillis";
|
|
265
|
-
const _hE = "httpError";
|
|
266
|
-
const _iA = "invocationArn";
|
|
267
|
-
const _iC = "inputConfiguration";
|
|
268
|
-
const _jCT = "jobCompletionTime";
|
|
269
|
-
const _jDIS = "jobDurationInSeconds";
|
|
270
|
-
const _jST = "jobSubmissionTime";
|
|
271
|
-
const _k = "key";
|
|
272
|
-
const _kEC = "kmsEncryptionContext";
|
|
273
|
-
const _kKI = "kmsKeyId";
|
|
274
|
-
const _m = "message";
|
|
275
|
-
const _nC = "notificationConfiguration";
|
|
276
|
-
const _oC = "outputConfiguration";
|
|
277
|
-
const _oS = "outputSegments";
|
|
278
|
-
const _rARN = "resourceARN";
|
|
279
|
-
const _s = "stage";
|
|
280
|
-
const _sC = "segmentConfiguration";
|
|
281
|
-
const _sM = "semanticModality";
|
|
282
|
-
const _sO = "standardOutput";
|
|
283
|
-
const _sTM = "startTimeMillis";
|
|
284
|
-
const _sU = "s3Uri";
|
|
285
|
-
const _se = "server";
|
|
286
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockdataautomationruntime";
|
|
287
|
-
const _st = "status";
|
|
288
|
-
const _t = "tags";
|
|
289
|
-
const _tK = "tagKeys";
|
|
290
|
-
const _tS = "timestampSegment";
|
|
291
|
-
const _v = "video";
|
|
292
|
-
const _va = "value";
|
|
293
|
-
const _ve = "version";
|
|
294
|
-
const n0 = "com.amazonaws.bedrockdataautomationruntime";
|
|
295
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
296
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
297
|
-
[_m],
|
|
298
|
-
[0]
|
|
299
|
-
];
|
|
300
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
301
|
-
var AssetProcessingConfiguration$ = [3, n0, _APC,
|
|
302
|
-
0,
|
|
303
|
-
[_v],
|
|
304
|
-
[() => VideoAssetProcessingConfiguration$]
|
|
305
|
-
];
|
|
306
|
-
var Blueprint$ = [3, n0, _B,
|
|
307
|
-
0,
|
|
308
|
-
[_bA, _ve, _s],
|
|
309
|
-
[0, 0, 0], 1
|
|
310
|
-
];
|
|
311
|
-
var DataAutomationConfiguration$ = [3, n0, _DAC,
|
|
312
|
-
0,
|
|
313
|
-
[_dAPA, _s],
|
|
314
|
-
[0, 0], 1
|
|
315
|
-
];
|
|
316
|
-
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
317
|
-
0,
|
|
318
|
-
[_kKI, _kEC],
|
|
319
|
-
[0, 128 | 0], 1
|
|
320
|
-
];
|
|
321
|
-
var EventBridgeConfiguration$ = [3, n0, _EBC,
|
|
322
|
-
0,
|
|
323
|
-
[_eBE],
|
|
324
|
-
[2], 1
|
|
325
|
-
];
|
|
326
|
-
var GetDataAutomationStatusRequest$ = [3, n0, _GDASR,
|
|
327
|
-
0,
|
|
328
|
-
[_iA],
|
|
329
|
-
[[0, 1]], 1
|
|
330
|
-
];
|
|
331
|
-
var GetDataAutomationStatusResponse$ = [3, n0, _GDASRe,
|
|
332
|
-
0,
|
|
333
|
-
[_st, _eT, _eM, _oC, _jST, _jCT, _jDIS],
|
|
334
|
-
[0, 0, 0, () => OutputConfiguration$, 5, 5, 1]
|
|
335
|
-
];
|
|
336
|
-
var InputConfiguration$ = [3, n0, _IC,
|
|
337
|
-
0,
|
|
338
|
-
[_sU, _aPC],
|
|
339
|
-
[0, () => AssetProcessingConfiguration$], 1
|
|
340
|
-
];
|
|
341
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
342
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
343
|
-
[_m],
|
|
344
|
-
[0]
|
|
345
|
-
];
|
|
346
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
347
|
-
var InvokeDataAutomationAsyncRequest$ = [3, n0, _IDAAR,
|
|
348
|
-
0,
|
|
349
|
-
[_iC, _oC, _dAPAa, _cT, _dAC, _eC, _nC, _b, _t],
|
|
350
|
-
[() => InputConfiguration$, () => OutputConfiguration$, 0, [0, 4], () => DataAutomationConfiguration$, () => EncryptionConfiguration$, () => NotificationConfiguration$, () => BlueprintList, () => TagList], 3
|
|
351
|
-
];
|
|
352
|
-
var InvokeDataAutomationAsyncResponse$ = [3, n0, _IDAARn,
|
|
353
|
-
0,
|
|
354
|
-
[_iA],
|
|
355
|
-
[0], 1
|
|
356
|
-
];
|
|
357
|
-
var InvokeDataAutomationRequest$ = [3, n0, _IDAR,
|
|
358
|
-
0,
|
|
359
|
-
[_iC, _dAPAa, _dAC, _b, _eC, _oC],
|
|
360
|
-
[() => SyncInputConfiguration$, 0, () => DataAutomationConfiguration$, () => BlueprintList, () => EncryptionConfiguration$, () => OutputConfiguration$], 2
|
|
361
|
-
];
|
|
362
|
-
var InvokeDataAutomationResponse$ = [3, n0, _IDARn,
|
|
363
|
-
0,
|
|
364
|
-
[_sM, _oC, _oS],
|
|
365
|
-
[0, () => OutputConfiguration$, () => OutputSegmentList], 1
|
|
366
|
-
];
|
|
367
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
368
|
-
0,
|
|
369
|
-
[_rARN],
|
|
370
|
-
[0], 1
|
|
371
|
-
];
|
|
372
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
373
|
-
0,
|
|
374
|
-
[_t],
|
|
375
|
-
[() => TagList]
|
|
376
|
-
];
|
|
377
|
-
var NotificationConfiguration$ = [3, n0, _NC,
|
|
378
|
-
0,
|
|
379
|
-
[_eBC],
|
|
380
|
-
[() => EventBridgeConfiguration$], 1
|
|
381
|
-
];
|
|
382
|
-
var OutputConfiguration$ = [3, n0, _OC,
|
|
383
|
-
0,
|
|
384
|
-
[_sU],
|
|
385
|
-
[0], 1
|
|
386
|
-
];
|
|
387
|
-
var OutputSegment$ = [3, n0, _OS,
|
|
388
|
-
0,
|
|
389
|
-
[_cOS, _cO, _sO],
|
|
390
|
-
[0, 0, 0]
|
|
391
|
-
];
|
|
392
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
393
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
394
|
-
[_m],
|
|
395
|
-
[0]
|
|
396
|
-
];
|
|
397
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
398
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
399
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
400
|
-
[_m],
|
|
401
|
-
[0]
|
|
402
|
-
];
|
|
403
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
404
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
405
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
406
|
-
[_m],
|
|
407
|
-
[0]
|
|
408
|
-
];
|
|
409
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
410
|
-
var SyncInputConfiguration$ = [3, n0, _SIC,
|
|
411
|
-
0,
|
|
412
|
-
[_by, _sU],
|
|
413
|
-
[21, 0]
|
|
414
|
-
];
|
|
415
|
-
var Tag$ = [3, n0, _T,
|
|
416
|
-
0,
|
|
417
|
-
[_k, _va],
|
|
418
|
-
[0, 0], 2
|
|
419
|
-
];
|
|
420
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
421
|
-
0,
|
|
422
|
-
[_rARN, _t],
|
|
423
|
-
[0, () => TagList], 2
|
|
424
|
-
];
|
|
425
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
426
|
-
0,
|
|
427
|
-
[],
|
|
428
|
-
[]
|
|
429
|
-
];
|
|
430
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
431
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
432
|
-
[_m],
|
|
433
|
-
[0]
|
|
434
|
-
];
|
|
435
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
436
|
-
var TimestampSegment$ = [3, n0, _TS,
|
|
437
|
-
0,
|
|
438
|
-
[_sTM, _eTM],
|
|
439
|
-
[1, 1], 2
|
|
440
|
-
];
|
|
441
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
442
|
-
0,
|
|
443
|
-
[_rARN, _tK],
|
|
444
|
-
[0, 64 | 0], 2
|
|
445
|
-
];
|
|
446
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
447
|
-
0,
|
|
448
|
-
[],
|
|
449
|
-
[]
|
|
450
|
-
];
|
|
451
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
452
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
453
|
-
[_m],
|
|
454
|
-
[0]
|
|
455
|
-
];
|
|
456
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
457
|
-
var VideoAssetProcessingConfiguration$ = [3, n0, _VAPC,
|
|
458
|
-
0,
|
|
459
|
-
[_sC],
|
|
460
|
-
[() => VideoSegmentConfiguration$]
|
|
461
|
-
];
|
|
462
|
-
var BedrockDataAutomationRuntimeServiceException$ = [-3, _sm, "BedrockDataAutomationRuntimeServiceException", 0, [], []];
|
|
463
|
-
schema.TypeRegistry.for(_sm).registerError(BedrockDataAutomationRuntimeServiceException$, BedrockDataAutomationRuntimeServiceException);
|
|
464
|
-
var BlueprintList = [1, n0, _BL,
|
|
465
|
-
0, () => Blueprint$
|
|
466
|
-
];
|
|
467
|
-
var OutputSegmentList = [1, n0, _OSL,
|
|
468
|
-
0, () => OutputSegment$
|
|
469
|
-
];
|
|
470
|
-
var TagList = [1, n0, _TL,
|
|
471
|
-
0, () => Tag$
|
|
472
|
-
];
|
|
473
|
-
var VideoSegmentConfiguration$ = [4, n0, _VSC,
|
|
474
|
-
0,
|
|
475
|
-
[_tS],
|
|
476
|
-
[() => TimestampSegment$]
|
|
477
|
-
];
|
|
478
|
-
var GetDataAutomationStatus$ = [9, n0, _GDAS,
|
|
479
|
-
0, () => GetDataAutomationStatusRequest$, () => GetDataAutomationStatusResponse$
|
|
480
|
-
];
|
|
481
|
-
var InvokeDataAutomation$ = [9, n0, _IDA,
|
|
482
|
-
0, () => InvokeDataAutomationRequest$, () => InvokeDataAutomationResponse$
|
|
483
|
-
];
|
|
484
|
-
var InvokeDataAutomationAsync$ = [9, n0, _IDAA,
|
|
485
|
-
2, () => InvokeDataAutomationAsyncRequest$, () => InvokeDataAutomationAsyncResponse$
|
|
486
|
-
];
|
|
487
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
488
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
489
|
-
];
|
|
490
|
-
var TagResource$ = [9, n0, _TR,
|
|
491
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
492
|
-
];
|
|
493
|
-
var UntagResource$ = [9, n0, _UR,
|
|
494
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
495
|
-
];
|
|
496
|
-
|
|
497
116
|
class GetDataAutomationStatusCommand extends smithyClient.Command
|
|
498
117
|
.classBuilder()
|
|
499
118
|
.ep(commonParams)
|
|
@@ -502,7 +121,7 @@ class GetDataAutomationStatusCommand extends smithyClient.Command
|
|
|
502
121
|
})
|
|
503
122
|
.s("AmazonBedrockKeystoneRuntimeService", "GetDataAutomationStatus", {})
|
|
504
123
|
.n("BedrockDataAutomationRuntimeClient", "GetDataAutomationStatusCommand")
|
|
505
|
-
.sc(GetDataAutomationStatus$)
|
|
124
|
+
.sc(schemas_0.GetDataAutomationStatus$)
|
|
506
125
|
.build() {
|
|
507
126
|
}
|
|
508
127
|
|
|
@@ -514,7 +133,7 @@ class InvokeDataAutomationAsyncCommand extends smithyClient.Command
|
|
|
514
133
|
})
|
|
515
134
|
.s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomationAsync", {})
|
|
516
135
|
.n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationAsyncCommand")
|
|
517
|
-
.sc(InvokeDataAutomationAsync$)
|
|
136
|
+
.sc(schemas_0.InvokeDataAutomationAsync$)
|
|
518
137
|
.build() {
|
|
519
138
|
}
|
|
520
139
|
|
|
@@ -526,7 +145,7 @@ class InvokeDataAutomationCommand extends smithyClient.Command
|
|
|
526
145
|
})
|
|
527
146
|
.s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomation", {})
|
|
528
147
|
.n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationCommand")
|
|
529
|
-
.sc(InvokeDataAutomation$)
|
|
148
|
+
.sc(schemas_0.InvokeDataAutomation$)
|
|
530
149
|
.build() {
|
|
531
150
|
}
|
|
532
151
|
|
|
@@ -538,7 +157,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
538
157
|
})
|
|
539
158
|
.s("AmazonBedrockKeystoneRuntimeService", "ListTagsForResource", {})
|
|
540
159
|
.n("BedrockDataAutomationRuntimeClient", "ListTagsForResourceCommand")
|
|
541
|
-
.sc(ListTagsForResource$)
|
|
160
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
542
161
|
.build() {
|
|
543
162
|
}
|
|
544
163
|
|
|
@@ -550,7 +169,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
550
169
|
})
|
|
551
170
|
.s("AmazonBedrockKeystoneRuntimeService", "TagResource", {})
|
|
552
171
|
.n("BedrockDataAutomationRuntimeClient", "TagResourceCommand")
|
|
553
|
-
.sc(TagResource$)
|
|
172
|
+
.sc(schemas_0.TagResource$)
|
|
554
173
|
.build() {
|
|
555
174
|
}
|
|
556
175
|
|
|
@@ -562,7 +181,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
562
181
|
})
|
|
563
182
|
.s("AmazonBedrockKeystoneRuntimeService", "UntagResource", {})
|
|
564
183
|
.n("BedrockDataAutomationRuntimeClient", "UntagResourceCommand")
|
|
565
|
-
.sc(UntagResource$)
|
|
184
|
+
.sc(schemas_0.UntagResource$)
|
|
566
185
|
.build() {
|
|
567
186
|
}
|
|
568
187
|
|
|
@@ -612,64 +231,32 @@ Object.defineProperty(exports, "__Client", {
|
|
|
612
231
|
enumerable: true,
|
|
613
232
|
get: function () { return smithyClient.Client; }
|
|
614
233
|
});
|
|
615
|
-
exports
|
|
616
|
-
|
|
617
|
-
|
|
234
|
+
Object.defineProperty(exports, "BedrockDataAutomationRuntimeServiceException", {
|
|
235
|
+
enumerable: true,
|
|
236
|
+
get: function () { return BedrockDataAutomationRuntimeServiceException.BedrockDataAutomationRuntimeServiceException; }
|
|
237
|
+
});
|
|
618
238
|
exports.AutomationJobStatus = AutomationJobStatus;
|
|
619
239
|
exports.BedrockDataAutomationRuntime = BedrockDataAutomationRuntime;
|
|
620
240
|
exports.BedrockDataAutomationRuntimeClient = BedrockDataAutomationRuntimeClient;
|
|
621
|
-
exports.BedrockDataAutomationRuntimeServiceException = BedrockDataAutomationRuntimeServiceException;
|
|
622
|
-
exports.BedrockDataAutomationRuntimeServiceException$ = BedrockDataAutomationRuntimeServiceException$;
|
|
623
|
-
exports.Blueprint$ = Blueprint$;
|
|
624
241
|
exports.BlueprintStage = BlueprintStage;
|
|
625
242
|
exports.CustomOutputStatus = CustomOutputStatus;
|
|
626
|
-
exports.DataAutomationConfiguration$ = DataAutomationConfiguration$;
|
|
627
243
|
exports.DataAutomationStage = DataAutomationStage;
|
|
628
|
-
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
629
|
-
exports.EventBridgeConfiguration$ = EventBridgeConfiguration$;
|
|
630
|
-
exports.GetDataAutomationStatus$ = GetDataAutomationStatus$;
|
|
631
244
|
exports.GetDataAutomationStatusCommand = GetDataAutomationStatusCommand;
|
|
632
|
-
exports.GetDataAutomationStatusRequest$ = GetDataAutomationStatusRequest$;
|
|
633
|
-
exports.GetDataAutomationStatusResponse$ = GetDataAutomationStatusResponse$;
|
|
634
|
-
exports.InputConfiguration$ = InputConfiguration$;
|
|
635
|
-
exports.InternalServerException = InternalServerException;
|
|
636
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
637
|
-
exports.InvokeDataAutomation$ = InvokeDataAutomation$;
|
|
638
|
-
exports.InvokeDataAutomationAsync$ = InvokeDataAutomationAsync$;
|
|
639
245
|
exports.InvokeDataAutomationAsyncCommand = InvokeDataAutomationAsyncCommand;
|
|
640
|
-
exports.InvokeDataAutomationAsyncRequest$ = InvokeDataAutomationAsyncRequest$;
|
|
641
|
-
exports.InvokeDataAutomationAsyncResponse$ = InvokeDataAutomationAsyncResponse$;
|
|
642
246
|
exports.InvokeDataAutomationCommand = InvokeDataAutomationCommand;
|
|
643
|
-
exports.InvokeDataAutomationRequest$ = InvokeDataAutomationRequest$;
|
|
644
|
-
exports.InvokeDataAutomationResponse$ = InvokeDataAutomationResponse$;
|
|
645
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
646
247
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
647
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
648
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
649
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
650
|
-
exports.OutputConfiguration$ = OutputConfiguration$;
|
|
651
|
-
exports.OutputSegment$ = OutputSegment$;
|
|
652
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
653
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
654
248
|
exports.SemanticModality = SemanticModality;
|
|
655
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
656
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
657
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
658
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
659
|
-
exports.SyncInputConfiguration$ = SyncInputConfiguration$;
|
|
660
|
-
exports.Tag$ = Tag$;
|
|
661
|
-
exports.TagResource$ = TagResource$;
|
|
662
249
|
exports.TagResourceCommand = TagResourceCommand;
|
|
663
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
664
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
665
|
-
exports.ThrottlingException = ThrottlingException;
|
|
666
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
667
|
-
exports.TimestampSegment$ = TimestampSegment$;
|
|
668
|
-
exports.UntagResource$ = UntagResource$;
|
|
669
250
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
670
|
-
|
|
671
|
-
exports.
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
251
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
252
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
253
|
+
enumerable: true,
|
|
254
|
+
get: function () { return schemas_0[k]; }
|
|
255
|
+
});
|
|
256
|
+
});
|
|
257
|
+
Object.keys(errors).forEach(function (k) {
|
|
258
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
259
|
+
enumerable: true,
|
|
260
|
+
get: function () { return errors[k]; }
|
|
261
|
+
});
|
|
262
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BedrockDataAutomationRuntimeServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class BedrockDataAutomationRuntimeServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, BedrockDataAutomationRuntimeServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.BedrockDataAutomationRuntimeServiceException = BedrockDataAutomationRuntimeServiceException;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServiceUnavailableException = exports.ServiceQuotaExceededException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
|
+
const BedrockDataAutomationRuntimeServiceException_1 = require("./BedrockDataAutomationRuntimeServiceException");
|
|
5
|
+
class AccessDeniedException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
6
|
+
name = "AccessDeniedException";
|
|
7
|
+
$fault = "client";
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "AccessDeniedException",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts,
|
|
13
|
+
});
|
|
14
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
+
class InternalServerException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
19
|
+
name = "InternalServerException";
|
|
20
|
+
$fault = "server";
|
|
21
|
+
constructor(opts) {
|
|
22
|
+
super({
|
|
23
|
+
name: "InternalServerException",
|
|
24
|
+
$fault: "server",
|
|
25
|
+
...opts,
|
|
26
|
+
});
|
|
27
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.InternalServerException = InternalServerException;
|
|
31
|
+
class ResourceNotFoundException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
32
|
+
name = "ResourceNotFoundException";
|
|
33
|
+
$fault = "client";
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "ResourceNotFoundException",
|
|
37
|
+
$fault: "client",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
44
|
+
class ThrottlingException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
45
|
+
name = "ThrottlingException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
constructor(opts) {
|
|
48
|
+
super({
|
|
49
|
+
name: "ThrottlingException",
|
|
50
|
+
$fault: "client",
|
|
51
|
+
...opts,
|
|
52
|
+
});
|
|
53
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
exports.ThrottlingException = ThrottlingException;
|
|
57
|
+
class ValidationException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
58
|
+
name = "ValidationException";
|
|
59
|
+
$fault = "client";
|
|
60
|
+
constructor(opts) {
|
|
61
|
+
super({
|
|
62
|
+
name: "ValidationException",
|
|
63
|
+
$fault: "client",
|
|
64
|
+
...opts,
|
|
65
|
+
});
|
|
66
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.ValidationException = ValidationException;
|
|
70
|
+
class ServiceQuotaExceededException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
71
|
+
name = "ServiceQuotaExceededException";
|
|
72
|
+
$fault = "client";
|
|
73
|
+
constructor(opts) {
|
|
74
|
+
super({
|
|
75
|
+
name: "ServiceQuotaExceededException",
|
|
76
|
+
$fault: "client",
|
|
77
|
+
...opts,
|
|
78
|
+
});
|
|
79
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
83
|
+
class ServiceUnavailableException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
84
|
+
name = "ServiceUnavailableException";
|
|
85
|
+
$fault = "server";
|
|
86
|
+
constructor(opts) {
|
|
87
|
+
super({
|
|
88
|
+
name: "ServiceUnavailableException",
|
|
89
|
+
$fault: "server",
|
|
90
|
+
...opts,
|
|
91
|
+
});
|
|
92
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
|
|
|
9
9
|
const util_utf8_1 = require("@smithy/util-utf8");
|
|
10
10
|
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
11
11
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
12
|
+
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
13
|
const getRuntimeConfig = (config) => {
|
|
13
14
|
return {
|
|
14
15
|
apiVersion: "2024-06-13",
|
|
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
|
|
|
29
30
|
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
31
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
32
|
defaultNamespace: "com.amazonaws.bedrockdataautomationruntime",
|
|
33
|
+
errorTypeRegistries: schemas_0_1.errorTypeRegistries,
|
|
32
34
|
version: "2024-06-13",
|
|
33
35
|
serviceTarget: "AmazonBedrockKeystoneRuntimeService",
|
|
34
36
|
},
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UntagResource$ = exports.TagResource$ = exports.ListTagsForResource$ = exports.InvokeDataAutomationAsync$ = exports.InvokeDataAutomation$ = exports.GetDataAutomationStatus$ = exports.VideoSegmentConfiguration$ = exports.VideoAssetProcessingConfiguration$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TimestampSegment$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SyncInputConfiguration$ = exports.OutputSegment$ = exports.OutputConfiguration$ = exports.NotificationConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.InvokeDataAutomationResponse$ = exports.InvokeDataAutomationRequest$ = exports.InvokeDataAutomationAsyncResponse$ = exports.InvokeDataAutomationAsyncRequest$ = exports.InputConfiguration$ = exports.GetDataAutomationStatusResponse$ = exports.GetDataAutomationStatusRequest$ = exports.EventBridgeConfiguration$ = exports.EncryptionConfiguration$ = exports.DataAutomationConfiguration$ = exports.Blueprint$ = exports.AssetProcessingConfiguration$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceUnavailableException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.AccessDeniedException$ = exports.BedrockDataAutomationRuntimeServiceException$ = void 0;
|
|
4
|
+
const _ADE = "AccessDeniedException";
|
|
5
|
+
const _APC = "AssetProcessingConfiguration";
|
|
6
|
+
const _B = "Blueprint";
|
|
7
|
+
const _BL = "BlueprintList";
|
|
8
|
+
const _DAC = "DataAutomationConfiguration";
|
|
9
|
+
const _EBC = "EventBridgeConfiguration";
|
|
10
|
+
const _EC = "EncryptionConfiguration";
|
|
11
|
+
const _GDAS = "GetDataAutomationStatus";
|
|
12
|
+
const _GDASR = "GetDataAutomationStatusRequest";
|
|
13
|
+
const _GDASRe = "GetDataAutomationStatusResponse";
|
|
14
|
+
const _IC = "InputConfiguration";
|
|
15
|
+
const _IDA = "InvokeDataAutomation";
|
|
16
|
+
const _IDAA = "InvokeDataAutomationAsync";
|
|
17
|
+
const _IDAAR = "InvokeDataAutomationAsyncRequest";
|
|
18
|
+
const _IDAARn = "InvokeDataAutomationAsyncResponse";
|
|
19
|
+
const _IDAR = "InvokeDataAutomationRequest";
|
|
20
|
+
const _IDARn = "InvokeDataAutomationResponse";
|
|
21
|
+
const _ISE = "InternalServerException";
|
|
22
|
+
const _LTFR = "ListTagsForResource";
|
|
23
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
24
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
25
|
+
const _NC = "NotificationConfiguration";
|
|
26
|
+
const _OC = "OutputConfiguration";
|
|
27
|
+
const _OS = "OutputSegment";
|
|
28
|
+
const _OSL = "OutputSegmentList";
|
|
29
|
+
const _RNFE = "ResourceNotFoundException";
|
|
30
|
+
const _SIC = "SyncInputConfiguration";
|
|
31
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
32
|
+
const _SUE = "ServiceUnavailableException";
|
|
33
|
+
const _T = "Tag";
|
|
34
|
+
const _TE = "ThrottlingException";
|
|
35
|
+
const _TL = "TagList";
|
|
36
|
+
const _TR = "TagResource";
|
|
37
|
+
const _TRR = "TagResourceRequest";
|
|
38
|
+
const _TRRa = "TagResourceResponse";
|
|
39
|
+
const _TS = "TimestampSegment";
|
|
40
|
+
const _UR = "UntagResource";
|
|
41
|
+
const _URR = "UntagResourceRequest";
|
|
42
|
+
const _URRn = "UntagResourceResponse";
|
|
43
|
+
const _VAPC = "VideoAssetProcessingConfiguration";
|
|
44
|
+
const _VE = "ValidationException";
|
|
45
|
+
const _VSC = "VideoSegmentConfiguration";
|
|
46
|
+
const _aPC = "assetProcessingConfiguration";
|
|
47
|
+
const _b = "blueprints";
|
|
48
|
+
const _bA = "blueprintArn";
|
|
49
|
+
const _by = "bytes";
|
|
50
|
+
const _c = "client";
|
|
51
|
+
const _cO = "customOutput";
|
|
52
|
+
const _cOS = "customOutputStatus";
|
|
53
|
+
const _cT = "clientToken";
|
|
54
|
+
const _dAC = "dataAutomationConfiguration";
|
|
55
|
+
const _dAPA = "dataAutomationProjectArn";
|
|
56
|
+
const _dAPAa = "dataAutomationProfileArn";
|
|
57
|
+
const _e = "error";
|
|
58
|
+
const _eBC = "eventBridgeConfiguration";
|
|
59
|
+
const _eBE = "eventBridgeEnabled";
|
|
60
|
+
const _eC = "encryptionConfiguration";
|
|
61
|
+
const _eM = "errorMessage";
|
|
62
|
+
const _eT = "errorType";
|
|
63
|
+
const _eTM = "endTimeMillis";
|
|
64
|
+
const _hE = "httpError";
|
|
65
|
+
const _iA = "invocationArn";
|
|
66
|
+
const _iC = "inputConfiguration";
|
|
67
|
+
const _jCT = "jobCompletionTime";
|
|
68
|
+
const _jDIS = "jobDurationInSeconds";
|
|
69
|
+
const _jST = "jobSubmissionTime";
|
|
70
|
+
const _k = "key";
|
|
71
|
+
const _kEC = "kmsEncryptionContext";
|
|
72
|
+
const _kKI = "kmsKeyId";
|
|
73
|
+
const _m = "message";
|
|
74
|
+
const _nC = "notificationConfiguration";
|
|
75
|
+
const _oC = "outputConfiguration";
|
|
76
|
+
const _oS = "outputSegments";
|
|
77
|
+
const _rARN = "resourceARN";
|
|
78
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockdataautomationruntime";
|
|
79
|
+
const _sC = "segmentConfiguration";
|
|
80
|
+
const _sM = "semanticModality";
|
|
81
|
+
const _sO = "standardOutput";
|
|
82
|
+
const _sTM = "startTimeMillis";
|
|
83
|
+
const _sU = "s3Uri";
|
|
84
|
+
const _se = "server";
|
|
85
|
+
const _st = "stage";
|
|
86
|
+
const _sta = "status";
|
|
87
|
+
const _t = "tags";
|
|
88
|
+
const _tK = "tagKeys";
|
|
89
|
+
const _tS = "timestampSegment";
|
|
90
|
+
const _v = "video";
|
|
91
|
+
const _va = "value";
|
|
92
|
+
const _ve = "version";
|
|
93
|
+
const n0 = "com.amazonaws.bedrockdataautomationruntime";
|
|
94
|
+
const schema_1 = require("@smithy/core/schema");
|
|
95
|
+
const BedrockDataAutomationRuntimeServiceException_1 = require("../models/BedrockDataAutomationRuntimeServiceException");
|
|
96
|
+
const errors_1 = require("../models/errors");
|
|
97
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
98
|
+
exports.BedrockDataAutomationRuntimeServiceException$ = [-3, _s, "BedrockDataAutomationRuntimeServiceException", 0, [], []];
|
|
99
|
+
_s_registry.registerError(exports.BedrockDataAutomationRuntimeServiceException$, BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException);
|
|
100
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
101
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
102
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
103
|
+
[_m],
|
|
104
|
+
[0]
|
|
105
|
+
];
|
|
106
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
107
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
108
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
109
|
+
[_m],
|
|
110
|
+
[0]
|
|
111
|
+
];
|
|
112
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
113
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
114
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
115
|
+
[_m],
|
|
116
|
+
[0]
|
|
117
|
+
];
|
|
118
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
119
|
+
exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
120
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
121
|
+
[_m],
|
|
122
|
+
[0]
|
|
123
|
+
];
|
|
124
|
+
n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
|
|
125
|
+
exports.ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
126
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
127
|
+
[_m],
|
|
128
|
+
[0]
|
|
129
|
+
];
|
|
130
|
+
n0_registry.registerError(exports.ServiceUnavailableException$, errors_1.ServiceUnavailableException);
|
|
131
|
+
exports.ThrottlingException$ = [-3, n0, _TE,
|
|
132
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
133
|
+
[_m],
|
|
134
|
+
[0]
|
|
135
|
+
];
|
|
136
|
+
n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
|
|
137
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
138
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
139
|
+
[_m],
|
|
140
|
+
[0]
|
|
141
|
+
];
|
|
142
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
143
|
+
exports.errorTypeRegistries = [
|
|
144
|
+
_s_registry,
|
|
145
|
+
n0_registry,
|
|
146
|
+
];
|
|
147
|
+
exports.AssetProcessingConfiguration$ = [3, n0, _APC,
|
|
148
|
+
0,
|
|
149
|
+
[_v],
|
|
150
|
+
[() => exports.VideoAssetProcessingConfiguration$]
|
|
151
|
+
];
|
|
152
|
+
exports.Blueprint$ = [3, n0, _B,
|
|
153
|
+
0,
|
|
154
|
+
[_bA, _ve, _st],
|
|
155
|
+
[0, 0, 0], 1
|
|
156
|
+
];
|
|
157
|
+
exports.DataAutomationConfiguration$ = [3, n0, _DAC,
|
|
158
|
+
0,
|
|
159
|
+
[_dAPA, _st],
|
|
160
|
+
[0, 0], 1
|
|
161
|
+
];
|
|
162
|
+
exports.EncryptionConfiguration$ = [3, n0, _EC,
|
|
163
|
+
0,
|
|
164
|
+
[_kKI, _kEC],
|
|
165
|
+
[0, 128 | 0], 1
|
|
166
|
+
];
|
|
167
|
+
exports.EventBridgeConfiguration$ = [3, n0, _EBC,
|
|
168
|
+
0,
|
|
169
|
+
[_eBE],
|
|
170
|
+
[2], 1
|
|
171
|
+
];
|
|
172
|
+
exports.GetDataAutomationStatusRequest$ = [3, n0, _GDASR,
|
|
173
|
+
0,
|
|
174
|
+
[_iA],
|
|
175
|
+
[[0, 1]], 1
|
|
176
|
+
];
|
|
177
|
+
exports.GetDataAutomationStatusResponse$ = [3, n0, _GDASRe,
|
|
178
|
+
0,
|
|
179
|
+
[_sta, _eT, _eM, _oC, _jST, _jCT, _jDIS],
|
|
180
|
+
[0, 0, 0, () => exports.OutputConfiguration$, 5, 5, 1]
|
|
181
|
+
];
|
|
182
|
+
exports.InputConfiguration$ = [3, n0, _IC,
|
|
183
|
+
0,
|
|
184
|
+
[_sU, _aPC],
|
|
185
|
+
[0, () => exports.AssetProcessingConfiguration$], 1
|
|
186
|
+
];
|
|
187
|
+
exports.InvokeDataAutomationAsyncRequest$ = [3, n0, _IDAAR,
|
|
188
|
+
0,
|
|
189
|
+
[_iC, _oC, _dAPAa, _cT, _dAC, _eC, _nC, _b, _t],
|
|
190
|
+
[() => exports.InputConfiguration$, () => exports.OutputConfiguration$, 0, [0, 4], () => exports.DataAutomationConfiguration$, () => exports.EncryptionConfiguration$, () => exports.NotificationConfiguration$, () => BlueprintList, () => TagList], 3
|
|
191
|
+
];
|
|
192
|
+
exports.InvokeDataAutomationAsyncResponse$ = [3, n0, _IDAARn,
|
|
193
|
+
0,
|
|
194
|
+
[_iA],
|
|
195
|
+
[0], 1
|
|
196
|
+
];
|
|
197
|
+
exports.InvokeDataAutomationRequest$ = [3, n0, _IDAR,
|
|
198
|
+
0,
|
|
199
|
+
[_iC, _dAPAa, _dAC, _b, _eC, _oC],
|
|
200
|
+
[() => exports.SyncInputConfiguration$, 0, () => exports.DataAutomationConfiguration$, () => BlueprintList, () => exports.EncryptionConfiguration$, () => exports.OutputConfiguration$], 2
|
|
201
|
+
];
|
|
202
|
+
exports.InvokeDataAutomationResponse$ = [3, n0, _IDARn,
|
|
203
|
+
0,
|
|
204
|
+
[_sM, _oC, _oS],
|
|
205
|
+
[0, () => exports.OutputConfiguration$, () => OutputSegmentList], 1
|
|
206
|
+
];
|
|
207
|
+
exports.ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
208
|
+
0,
|
|
209
|
+
[_rARN],
|
|
210
|
+
[0], 1
|
|
211
|
+
];
|
|
212
|
+
exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
213
|
+
0,
|
|
214
|
+
[_t],
|
|
215
|
+
[() => TagList]
|
|
216
|
+
];
|
|
217
|
+
exports.NotificationConfiguration$ = [3, n0, _NC,
|
|
218
|
+
0,
|
|
219
|
+
[_eBC],
|
|
220
|
+
[() => exports.EventBridgeConfiguration$], 1
|
|
221
|
+
];
|
|
222
|
+
exports.OutputConfiguration$ = [3, n0, _OC,
|
|
223
|
+
0,
|
|
224
|
+
[_sU],
|
|
225
|
+
[0], 1
|
|
226
|
+
];
|
|
227
|
+
exports.OutputSegment$ = [3, n0, _OS,
|
|
228
|
+
0,
|
|
229
|
+
[_cOS, _cO, _sO],
|
|
230
|
+
[0, 0, 0]
|
|
231
|
+
];
|
|
232
|
+
exports.SyncInputConfiguration$ = [3, n0, _SIC,
|
|
233
|
+
0,
|
|
234
|
+
[_by, _sU],
|
|
235
|
+
[21, 0]
|
|
236
|
+
];
|
|
237
|
+
exports.Tag$ = [3, n0, _T,
|
|
238
|
+
0,
|
|
239
|
+
[_k, _va],
|
|
240
|
+
[0, 0], 2
|
|
241
|
+
];
|
|
242
|
+
exports.TagResourceRequest$ = [3, n0, _TRR,
|
|
243
|
+
0,
|
|
244
|
+
[_rARN, _t],
|
|
245
|
+
[0, () => TagList], 2
|
|
246
|
+
];
|
|
247
|
+
exports.TagResourceResponse$ = [3, n0, _TRRa,
|
|
248
|
+
0,
|
|
249
|
+
[],
|
|
250
|
+
[]
|
|
251
|
+
];
|
|
252
|
+
exports.TimestampSegment$ = [3, n0, _TS,
|
|
253
|
+
0,
|
|
254
|
+
[_sTM, _eTM],
|
|
255
|
+
[1, 1], 2
|
|
256
|
+
];
|
|
257
|
+
exports.UntagResourceRequest$ = [3, n0, _URR,
|
|
258
|
+
0,
|
|
259
|
+
[_rARN, _tK],
|
|
260
|
+
[0, 64 | 0], 2
|
|
261
|
+
];
|
|
262
|
+
exports.UntagResourceResponse$ = [3, n0, _URRn,
|
|
263
|
+
0,
|
|
264
|
+
[],
|
|
265
|
+
[]
|
|
266
|
+
];
|
|
267
|
+
exports.VideoAssetProcessingConfiguration$ = [3, n0, _VAPC,
|
|
268
|
+
0,
|
|
269
|
+
[_sC],
|
|
270
|
+
[() => exports.VideoSegmentConfiguration$]
|
|
271
|
+
];
|
|
272
|
+
var BlueprintList = [1, n0, _BL,
|
|
273
|
+
0, () => exports.Blueprint$
|
|
274
|
+
];
|
|
275
|
+
var OutputSegmentList = [1, n0, _OSL,
|
|
276
|
+
0, () => exports.OutputSegment$
|
|
277
|
+
];
|
|
278
|
+
var TagKeyList = 64 | 0;
|
|
279
|
+
var TagList = [1, n0, _TL,
|
|
280
|
+
0, () => exports.Tag$
|
|
281
|
+
];
|
|
282
|
+
var EncryptionContextMap = 128 | 0;
|
|
283
|
+
exports.VideoSegmentConfiguration$ = [4, n0, _VSC,
|
|
284
|
+
0,
|
|
285
|
+
[_tS],
|
|
286
|
+
[() => exports.TimestampSegment$]
|
|
287
|
+
];
|
|
288
|
+
exports.GetDataAutomationStatus$ = [9, n0, _GDAS,
|
|
289
|
+
0, () => exports.GetDataAutomationStatusRequest$, () => exports.GetDataAutomationStatusResponse$
|
|
290
|
+
];
|
|
291
|
+
exports.InvokeDataAutomation$ = [9, n0, _IDA,
|
|
292
|
+
0, () => exports.InvokeDataAutomationRequest$, () => exports.InvokeDataAutomationResponse$
|
|
293
|
+
];
|
|
294
|
+
exports.InvokeDataAutomationAsync$ = [9, n0, _IDAA,
|
|
295
|
+
2, () => exports.InvokeDataAutomationAsyncRequest$, () => exports.InvokeDataAutomationAsyncResponse$
|
|
296
|
+
];
|
|
297
|
+
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
298
|
+
0, () => exports.ListTagsForResourceRequest$, () => exports.ListTagsForResourceResponse$
|
|
299
|
+
];
|
|
300
|
+
exports.TagResource$ = [9, n0, _TR,
|
|
301
|
+
0, () => exports.TagResourceRequest$, () => exports.TagResourceResponse$
|
|
302
|
+
];
|
|
303
|
+
exports.UntagResource$ = [9, n0, _UR,
|
|
304
|
+
0, () => exports.UntagResourceRequest$, () => exports.UntagResourceResponse$
|
|
305
|
+
];
|
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultBedrockDataAutomationRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2024-06-13",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.bedrockdataautomationruntime",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2024-06-13",
|
|
30
32
|
serviceTarget: "AmazonBedrockKeystoneRuntimeService",
|
|
31
33
|
},
|
|
@@ -72,15 +72,15 @@ const _nC = "notificationConfiguration";
|
|
|
72
72
|
const _oC = "outputConfiguration";
|
|
73
73
|
const _oS = "outputSegments";
|
|
74
74
|
const _rARN = "resourceARN";
|
|
75
|
-
const _s = "
|
|
75
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockdataautomationruntime";
|
|
76
76
|
const _sC = "segmentConfiguration";
|
|
77
77
|
const _sM = "semanticModality";
|
|
78
78
|
const _sO = "standardOutput";
|
|
79
79
|
const _sTM = "startTimeMillis";
|
|
80
80
|
const _sU = "s3Uri";
|
|
81
81
|
const _se = "server";
|
|
82
|
-
const
|
|
83
|
-
const
|
|
82
|
+
const _st = "stage";
|
|
83
|
+
const _sta = "status";
|
|
84
84
|
const _t = "tags";
|
|
85
85
|
const _tK = "tagKeys";
|
|
86
86
|
const _tS = "timestampSegment";
|
|
@@ -91,12 +91,56 @@ const n0 = "com.amazonaws.bedrockdataautomationruntime";
|
|
|
91
91
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
92
92
|
import { BedrockDataAutomationRuntimeServiceException } from "../models/BedrockDataAutomationRuntimeServiceException";
|
|
93
93
|
import { AccessDeniedException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ServiceUnavailableException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
94
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
95
|
+
export var BedrockDataAutomationRuntimeServiceException$ = [-3, _s, "BedrockDataAutomationRuntimeServiceException", 0, [], []];
|
|
96
|
+
_s_registry.registerError(BedrockDataAutomationRuntimeServiceException$, BedrockDataAutomationRuntimeServiceException);
|
|
97
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
94
98
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
95
99
|
{ [_e]: _c, [_hE]: 403 },
|
|
96
100
|
[_m],
|
|
97
101
|
[0]
|
|
98
102
|
];
|
|
99
|
-
|
|
103
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
104
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
105
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
106
|
+
[_m],
|
|
107
|
+
[0]
|
|
108
|
+
];
|
|
109
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
110
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
111
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
112
|
+
[_m],
|
|
113
|
+
[0]
|
|
114
|
+
];
|
|
115
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
116
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
117
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
118
|
+
[_m],
|
|
119
|
+
[0]
|
|
120
|
+
];
|
|
121
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
122
|
+
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
123
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
124
|
+
[_m],
|
|
125
|
+
[0]
|
|
126
|
+
];
|
|
127
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
128
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
129
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
130
|
+
[_m],
|
|
131
|
+
[0]
|
|
132
|
+
];
|
|
133
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
134
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
135
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
136
|
+
[_m],
|
|
137
|
+
[0]
|
|
138
|
+
];
|
|
139
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
140
|
+
export const errorTypeRegistries = [
|
|
141
|
+
_s_registry,
|
|
142
|
+
n0_registry,
|
|
143
|
+
];
|
|
100
144
|
export var AssetProcessingConfiguration$ = [3, n0, _APC,
|
|
101
145
|
0,
|
|
102
146
|
[_v],
|
|
@@ -104,12 +148,12 @@ export var AssetProcessingConfiguration$ = [3, n0, _APC,
|
|
|
104
148
|
];
|
|
105
149
|
export var Blueprint$ = [3, n0, _B,
|
|
106
150
|
0,
|
|
107
|
-
[_bA, _ve,
|
|
151
|
+
[_bA, _ve, _st],
|
|
108
152
|
[0, 0, 0], 1
|
|
109
153
|
];
|
|
110
154
|
export var DataAutomationConfiguration$ = [3, n0, _DAC,
|
|
111
155
|
0,
|
|
112
|
-
[_dAPA,
|
|
156
|
+
[_dAPA, _st],
|
|
113
157
|
[0, 0], 1
|
|
114
158
|
];
|
|
115
159
|
export var EncryptionConfiguration$ = [3, n0, _EC,
|
|
@@ -129,7 +173,7 @@ export var GetDataAutomationStatusRequest$ = [3, n0, _GDASR,
|
|
|
129
173
|
];
|
|
130
174
|
export var GetDataAutomationStatusResponse$ = [3, n0, _GDASRe,
|
|
131
175
|
0,
|
|
132
|
-
[
|
|
176
|
+
[_sta, _eT, _eM, _oC, _jST, _jCT, _jDIS],
|
|
133
177
|
[0, 0, 0, () => OutputConfiguration$, 5, 5, 1]
|
|
134
178
|
];
|
|
135
179
|
export var InputConfiguration$ = [3, n0, _IC,
|
|
@@ -137,12 +181,6 @@ export var InputConfiguration$ = [3, n0, _IC,
|
|
|
137
181
|
[_sU, _aPC],
|
|
138
182
|
[0, () => AssetProcessingConfiguration$], 1
|
|
139
183
|
];
|
|
140
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
141
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
142
|
-
[_m],
|
|
143
|
-
[0]
|
|
144
|
-
];
|
|
145
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
146
184
|
export var InvokeDataAutomationAsyncRequest$ = [3, n0, _IDAAR,
|
|
147
185
|
0,
|
|
148
186
|
[_iC, _oC, _dAPAa, _cT, _dAC, _eC, _nC, _b, _t],
|
|
@@ -188,24 +226,6 @@ export var OutputSegment$ = [3, n0, _OS,
|
|
|
188
226
|
[_cOS, _cO, _sO],
|
|
189
227
|
[0, 0, 0]
|
|
190
228
|
];
|
|
191
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
192
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
193
|
-
[_m],
|
|
194
|
-
[0]
|
|
195
|
-
];
|
|
196
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
197
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
198
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
199
|
-
[_m],
|
|
200
|
-
[0]
|
|
201
|
-
];
|
|
202
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
203
|
-
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
204
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
205
|
-
[_m],
|
|
206
|
-
[0]
|
|
207
|
-
];
|
|
208
|
-
TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
209
229
|
export var SyncInputConfiguration$ = [3, n0, _SIC,
|
|
210
230
|
0,
|
|
211
231
|
[_by, _sU],
|
|
@@ -226,12 +246,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
226
246
|
[],
|
|
227
247
|
[]
|
|
228
248
|
];
|
|
229
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
230
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
231
|
-
[_m],
|
|
232
|
-
[0]
|
|
233
|
-
];
|
|
234
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
235
249
|
export var TimestampSegment$ = [3, n0, _TS,
|
|
236
250
|
0,
|
|
237
251
|
[_sTM, _eTM],
|
|
@@ -247,19 +261,11 @@ export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
247
261
|
[],
|
|
248
262
|
[]
|
|
249
263
|
];
|
|
250
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
251
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
252
|
-
[_m],
|
|
253
|
-
[0]
|
|
254
|
-
];
|
|
255
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
256
264
|
export var VideoAssetProcessingConfiguration$ = [3, n0, _VAPC,
|
|
257
265
|
0,
|
|
258
266
|
[_sC],
|
|
259
267
|
[() => VideoSegmentConfiguration$]
|
|
260
268
|
];
|
|
261
|
-
export var BedrockDataAutomationRuntimeServiceException$ = [-3, _sm, "BedrockDataAutomationRuntimeServiceException", 0, [], []];
|
|
262
|
-
TypeRegistry.for(_sm).registerError(BedrockDataAutomationRuntimeServiceException$, BedrockDataAutomationRuntimeServiceException);
|
|
263
269
|
var BlueprintList = [1, n0, _BL,
|
|
264
270
|
0, () => Blueprint$
|
|
265
271
|
];
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var BedrockDataAutomationRuntimeServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
6
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
7
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
8
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
9
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
10
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
11
|
+
/**
|
|
12
|
+
* TypeRegistry instances containing modeled errors.
|
|
13
|
+
* @internal
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
17
|
export declare var AssetProcessingConfiguration$: StaticStructureSchema;
|
|
4
18
|
export declare var Blueprint$: StaticStructureSchema;
|
|
5
19
|
export declare var DataAutomationConfiguration$: StaticStructureSchema;
|
|
@@ -8,7 +22,6 @@ export declare var EventBridgeConfiguration$: StaticStructureSchema;
|
|
|
8
22
|
export declare var GetDataAutomationStatusRequest$: StaticStructureSchema;
|
|
9
23
|
export declare var GetDataAutomationStatusResponse$: StaticStructureSchema;
|
|
10
24
|
export declare var InputConfiguration$: StaticStructureSchema;
|
|
11
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
12
25
|
export declare var InvokeDataAutomationAsyncRequest$: StaticStructureSchema;
|
|
13
26
|
export declare var InvokeDataAutomationAsyncResponse$: StaticStructureSchema;
|
|
14
27
|
export declare var InvokeDataAutomationRequest$: StaticStructureSchema;
|
|
@@ -18,20 +31,14 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
18
31
|
export declare var NotificationConfiguration$: StaticStructureSchema;
|
|
19
32
|
export declare var OutputConfiguration$: StaticStructureSchema;
|
|
20
33
|
export declare var OutputSegment$: StaticStructureSchema;
|
|
21
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
22
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
23
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
24
34
|
export declare var SyncInputConfiguration$: StaticStructureSchema;
|
|
25
35
|
export declare var Tag$: StaticStructureSchema;
|
|
26
36
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
27
37
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
28
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
29
38
|
export declare var TimestampSegment$: StaticStructureSchema;
|
|
30
39
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
31
40
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
32
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
33
41
|
export declare var VideoAssetProcessingConfiguration$: StaticStructureSchema;
|
|
34
|
-
export declare var BedrockDataAutomationRuntimeServiceException$: StaticErrorSchema;
|
|
35
42
|
export declare var VideoSegmentConfiguration$: StaticUnionSchema;
|
|
36
43
|
export declare var GetDataAutomationStatus$: StaticOperationSchema;
|
|
37
44
|
export declare var InvokeDataAutomation$: StaticOperationSchema;
|
|
@@ -1,10 +1,19 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var BedrockDataAutomationRuntimeServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
12
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
14
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
15
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
8
17
|
export declare var AssetProcessingConfiguration$: StaticStructureSchema;
|
|
9
18
|
export declare var Blueprint$: StaticStructureSchema;
|
|
10
19
|
export declare var DataAutomationConfiguration$: StaticStructureSchema;
|
|
@@ -13,7 +22,6 @@ export declare var EventBridgeConfiguration$: StaticStructureSchema;
|
|
|
13
22
|
export declare var GetDataAutomationStatusRequest$: StaticStructureSchema;
|
|
14
23
|
export declare var GetDataAutomationStatusResponse$: StaticStructureSchema;
|
|
15
24
|
export declare var InputConfiguration$: StaticStructureSchema;
|
|
16
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
17
25
|
export declare var InvokeDataAutomationAsyncRequest$: StaticStructureSchema;
|
|
18
26
|
export declare var InvokeDataAutomationAsyncResponse$: StaticStructureSchema;
|
|
19
27
|
export declare var InvokeDataAutomationRequest$: StaticStructureSchema;
|
|
@@ -23,20 +31,14 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
23
31
|
export declare var NotificationConfiguration$: StaticStructureSchema;
|
|
24
32
|
export declare var OutputConfiguration$: StaticStructureSchema;
|
|
25
33
|
export declare var OutputSegment$: StaticStructureSchema;
|
|
26
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
27
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
28
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
29
34
|
export declare var SyncInputConfiguration$: StaticStructureSchema;
|
|
30
35
|
export declare var Tag$: StaticStructureSchema;
|
|
31
36
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
32
37
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
33
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
34
38
|
export declare var TimestampSegment$: StaticStructureSchema;
|
|
35
39
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
36
40
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
37
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
38
41
|
export declare var VideoAssetProcessingConfiguration$: StaticStructureSchema;
|
|
39
|
-
export declare var BedrockDataAutomationRuntimeServiceException$: StaticErrorSchema;
|
|
40
42
|
export declare var VideoSegmentConfiguration$: StaticUnionSchema;
|
|
41
43
|
export declare var GetDataAutomationStatus$: StaticOperationSchema;
|
|
42
44
|
export declare var InvokeDataAutomation$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-data-automation-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Data Automation Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-data-automation-runtime",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|