@aws-sdk/client-bedrock-data-automation 3.1075.0 → 3.1076.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 +1601 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/BedrockDataAutomationServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -87
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -46
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1307
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultBedrockDataAutomationHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "bedrock",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultBedrockDataAutomationHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1383 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://bedrock-data-automation-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://bedrock-data-automation-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://bedrock-data-automation.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://bedrock-data-automation.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class BedrockDataAutomationServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, BedrockDataAutomationServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends BedrockDataAutomationServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class InternalServerException extends BedrockDataAutomationServiceException {
|
|
152
|
+
name = "InternalServerException";
|
|
153
|
+
$fault = "server";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "InternalServerException",
|
|
157
|
+
$fault: "server",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class ResourceNotFoundException extends BedrockDataAutomationServiceException {
|
|
164
|
+
name = "ResourceNotFoundException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ResourceNotFoundException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class ThrottlingException extends BedrockDataAutomationServiceException {
|
|
176
|
+
name = "ThrottlingException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "ThrottlingException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class ValidationException extends BedrockDataAutomationServiceException {
|
|
188
|
+
name = "ValidationException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
fieldList;
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ValidationException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
198
|
+
this.fieldList = opts.fieldList;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class ServiceQuotaExceededException extends BedrockDataAutomationServiceException {
|
|
202
|
+
name = "ServiceQuotaExceededException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ServiceQuotaExceededException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class ConflictException extends BedrockDataAutomationServiceException {
|
|
214
|
+
name = "ConflictException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "ConflictException",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
const _ADE = "AccessDeniedException";
|
|
227
|
+
const _AEC = "AudioExtractionCategory";
|
|
228
|
+
const _AECTC = "AudioExtractionCategoryTypeConfiguration";
|
|
229
|
+
const _ALC = "AudioLanguageConfiguration";
|
|
230
|
+
const _AOC = "AudioOverrideConfiguration";
|
|
231
|
+
const _ASE = "AudioStandardExtraction";
|
|
232
|
+
const _ASGF = "AudioStandardGenerativeField";
|
|
233
|
+
const _ASOC = "AudioStandardOutputConfiguration";
|
|
234
|
+
const _B = "Blueprint";
|
|
235
|
+
const _BF = "BlueprintFilter";
|
|
236
|
+
const _BI = "BlueprintItem";
|
|
237
|
+
const _BIl = "BlueprintItems";
|
|
238
|
+
const _BN = "BlueprintName";
|
|
239
|
+
const _BOO = "BlueprintOptimizationObject";
|
|
240
|
+
const _BOOC = "BlueprintOptimizationOutputConfiguration";
|
|
241
|
+
const _BOS = "BlueprintOptimizationSample";
|
|
242
|
+
const _BOSl = "BlueprintOptimizationSamples";
|
|
243
|
+
const _BS = "BlueprintSchema";
|
|
244
|
+
const _BSl = "BlueprintSummary";
|
|
245
|
+
const _Bl = "Blueprints";
|
|
246
|
+
const _CB = "CreateBlueprint";
|
|
247
|
+
const _CBR = "CreateBlueprintRequest";
|
|
248
|
+
const _CBRr = "CreateBlueprintResponse";
|
|
249
|
+
const _CBS = "CopyBlueprintStage";
|
|
250
|
+
const _CBSR = "CopyBlueprintStageRequest";
|
|
251
|
+
const _CBSRo = "CopyBlueprintStageResponse";
|
|
252
|
+
const _CBV = "CreateBlueprintVersion";
|
|
253
|
+
const _CBVR = "CreateBlueprintVersionRequest";
|
|
254
|
+
const _CBVRr = "CreateBlueprintVersionResponse";
|
|
255
|
+
const _CDAL = "CreateDataAutomationLibrary";
|
|
256
|
+
const _CDALR = "CreateDataAutomationLibraryRequest";
|
|
257
|
+
const _CDALRr = "CreateDataAutomationLibraryResponse";
|
|
258
|
+
const _CDAP = "CreateDataAutomationProject";
|
|
259
|
+
const _CDAPR = "CreateDataAutomationProjectRequest";
|
|
260
|
+
const _CDAPRr = "CreateDataAutomationProjectResponse";
|
|
261
|
+
const _CE = "ConflictException";
|
|
262
|
+
const _CLC = "ChannelLabelingConfiguration";
|
|
263
|
+
const _COC = "CustomOutputConfiguration";
|
|
264
|
+
const _DAL = "DataAutomationLibrary";
|
|
265
|
+
const _DALC = "DataAutomationLibraryConfiguration";
|
|
266
|
+
const _DALD = "DataAutomationLibraryDescription";
|
|
267
|
+
const _DALES = "DataAutomationLibraryEntitySummaries";
|
|
268
|
+
const _DALESa = "DataAutomationLibraryEntitySummary";
|
|
269
|
+
const _DALF = "DataAutomationLibraryFilter";
|
|
270
|
+
const _DALI = "DataAutomationLibraryItem";
|
|
271
|
+
const _DALIJ = "DataAutomationLibraryIngestionJob";
|
|
272
|
+
const _DALIJS = "DataAutomationLibraryIngestionJobSummary";
|
|
273
|
+
const _DALIJSa = "DataAutomationLibraryIngestionJobSummaries";
|
|
274
|
+
const _DALIa = "DataAutomationLibraryItems";
|
|
275
|
+
const _DALN = "DataAutomationLibraryName";
|
|
276
|
+
const _DALS = "DataAutomationLibrarySummary";
|
|
277
|
+
const _DALSa = "DataAutomationLibrarySummaries";
|
|
278
|
+
const _DAP = "DataAutomationProject";
|
|
279
|
+
const _DAPD = "DataAutomationProjectDescription";
|
|
280
|
+
const _DAPF = "DataAutomationProjectFilter";
|
|
281
|
+
const _DAPN = "DataAutomationProjectName";
|
|
282
|
+
const _DAPS = "DataAutomationProjectSummary";
|
|
283
|
+
const _DAPSa = "DataAutomationProjectSummaries";
|
|
284
|
+
const _DB = "DeleteBlueprint";
|
|
285
|
+
const _DBB = "DocumentBoundingBox";
|
|
286
|
+
const _DBR = "DeleteBlueprintRequest";
|
|
287
|
+
const _DBRe = "DeleteBlueprintResponse";
|
|
288
|
+
const _DCOC = "DocumentCustomOutputConfiguration";
|
|
289
|
+
const _DDAL = "DeleteDataAutomationLibrary";
|
|
290
|
+
const _DDALR = "DeleteDataAutomationLibraryRequest";
|
|
291
|
+
const _DDALRe = "DeleteDataAutomationLibraryResponse";
|
|
292
|
+
const _DDAP = "DeleteDataAutomationProject";
|
|
293
|
+
const _DDAPR = "DeleteDataAutomationProjectRequest";
|
|
294
|
+
const _DDAPRe = "DeleteDataAutomationProjectResponse";
|
|
295
|
+
const _DEG = "DocumentExtractionGranularity";
|
|
296
|
+
const _DEI = "DeleteEntitiesInfo";
|
|
297
|
+
const _DOAFF = "DocumentOutputAdditionalFileFormat";
|
|
298
|
+
const _DOC = "DocumentOverrideConfiguration";
|
|
299
|
+
const _DOF = "DocumentOutputFormat";
|
|
300
|
+
const _DOTF = "DocumentOutputTextFormat";
|
|
301
|
+
const _DSE = "DocumentStandardExtraction";
|
|
302
|
+
const _DSGF = "DocumentStandardGenerativeField";
|
|
303
|
+
const _DSOC = "DocumentStandardOutputConfiguration";
|
|
304
|
+
const _EBC = "EventBridgeConfiguration";
|
|
305
|
+
const _EC = "EncryptionConfiguration";
|
|
306
|
+
const _ED = "EntityDescription";
|
|
307
|
+
const _EDn = "EntityDetails";
|
|
308
|
+
const _ETI = "EntityTypeInfo";
|
|
309
|
+
const _ETIL = "EntityTypeInfoList";
|
|
310
|
+
const _FBI = "FallbackBlueprintItems";
|
|
311
|
+
const _GB = "GetBlueprint";
|
|
312
|
+
const _GBOS = "GetBlueprintOptimizationStatus";
|
|
313
|
+
const _GBOSR = "GetBlueprintOptimizationStatusRequest";
|
|
314
|
+
const _GBOSRe = "GetBlueprintOptimizationStatusResponse";
|
|
315
|
+
const _GBR = "GetBlueprintRequest";
|
|
316
|
+
const _GBRe = "GetBlueprintResponse";
|
|
317
|
+
const _GDAL = "GetDataAutomationLibrary";
|
|
318
|
+
const _GDALE = "GetDataAutomationLibraryEntity";
|
|
319
|
+
const _GDALER = "GetDataAutomationLibraryEntityRequest";
|
|
320
|
+
const _GDALERe = "GetDataAutomationLibraryEntityResponse";
|
|
321
|
+
const _GDALIJ = "GetDataAutomationLibraryIngestionJob";
|
|
322
|
+
const _GDALIJR = "GetDataAutomationLibraryIngestionJobRequest";
|
|
323
|
+
const _GDALIJRe = "GetDataAutomationLibraryIngestionJobResponse";
|
|
324
|
+
const _GDALR = "GetDataAutomationLibraryRequest";
|
|
325
|
+
const _GDALRe = "GetDataAutomationLibraryResponse";
|
|
326
|
+
const _GDAP = "GetDataAutomationProject";
|
|
327
|
+
const _GDAPR = "GetDataAutomationProjectRequest";
|
|
328
|
+
const _GDAPRe = "GetDataAutomationProjectResponse";
|
|
329
|
+
const _IBB = "ImageBoundingBox";
|
|
330
|
+
const _IBOA = "InvokeBlueprintOptimizationAsync";
|
|
331
|
+
const _IBOAR = "InvokeBlueprintOptimizationAsyncRequest";
|
|
332
|
+
const _IBOARn = "InvokeBlueprintOptimizationAsyncResponse";
|
|
333
|
+
const _IC = "InputConfiguration";
|
|
334
|
+
const _IDALIJ = "InvokeDataAutomationLibraryIngestionJob";
|
|
335
|
+
const _IDALIJR = "InvokeDataAutomationLibraryIngestionJobRequest";
|
|
336
|
+
const _IDALIJRn = "InvokeDataAutomationLibraryIngestionJobResponse";
|
|
337
|
+
const _IEC = "ImageExtractionCategory";
|
|
338
|
+
const _IOC = "ImageOverrideConfiguration";
|
|
339
|
+
const _IP = "InlinePayload";
|
|
340
|
+
const _ISE = "InternalServerException";
|
|
341
|
+
const _ISEm = "ImageStandardExtraction";
|
|
342
|
+
const _ISGF = "ImageStandardGenerativeField";
|
|
343
|
+
const _ISOC = "ImageStandardOutputConfiguration";
|
|
344
|
+
const _LB = "ListBlueprints";
|
|
345
|
+
const _LBR = "ListBlueprintsRequest";
|
|
346
|
+
const _LBRi = "ListBlueprintsResponse";
|
|
347
|
+
const _LDAL = "ListDataAutomationLibraries";
|
|
348
|
+
const _LDALE = "ListDataAutomationLibraryEntities";
|
|
349
|
+
const _LDALER = "ListDataAutomationLibraryEntitiesRequest";
|
|
350
|
+
const _LDALERi = "ListDataAutomationLibraryEntitiesResponse";
|
|
351
|
+
const _LDALIJ = "ListDataAutomationLibraryIngestionJobs";
|
|
352
|
+
const _LDALIJR = "ListDataAutomationLibraryIngestionJobsRequest";
|
|
353
|
+
const _LDALIJRi = "ListDataAutomationLibraryIngestionJobsResponse";
|
|
354
|
+
const _LDALR = "ListDataAutomationLibrariesRequest";
|
|
355
|
+
const _LDALRi = "ListDataAutomationLibrariesResponse";
|
|
356
|
+
const _LDAP = "ListDataAutomationProjects";
|
|
357
|
+
const _LDAPR = "ListDataAutomationProjectsRequest";
|
|
358
|
+
const _LDAPRi = "ListDataAutomationProjectsResponse";
|
|
359
|
+
const _LTFR = "ListTagsForResource";
|
|
360
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
361
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
362
|
+
const _MPC = "ModalityProcessingConfiguration";
|
|
363
|
+
const _MRC = "ModalityRoutingConfiguration";
|
|
364
|
+
const _NC = "NotificationConfiguration";
|
|
365
|
+
const _OC = "OutputConfiguration";
|
|
366
|
+
const _OCv = "OverrideConfiguration";
|
|
367
|
+
const _P = "Phrase";
|
|
368
|
+
const _PDAT = "PhraseDisplayAsText";
|
|
369
|
+
const _PIIEC = "PIIEntitiesConfiguration";
|
|
370
|
+
const _PL = "PhraseList";
|
|
371
|
+
const _PT = "PhraseText";
|
|
372
|
+
const _RNFE = "ResourceNotFoundException";
|
|
373
|
+
const _SC = "SplitterConfiguration";
|
|
374
|
+
const _SDC = "SensitiveDataConfiguration";
|
|
375
|
+
const _SLC = "SpeakerLabelingConfiguration";
|
|
376
|
+
const _SO = "S3Object";
|
|
377
|
+
const _SOC = "StandardOutputConfiguration";
|
|
378
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
379
|
+
const _T = "Tag";
|
|
380
|
+
const _TC = "TranscriptConfiguration";
|
|
381
|
+
const _TE = "ThrottlingException";
|
|
382
|
+
const _TL = "TagList";
|
|
383
|
+
const _TR = "TagResource";
|
|
384
|
+
const _TRR = "TagResourceRequest";
|
|
385
|
+
const _TRRa = "TagResourceResponse";
|
|
386
|
+
const _UB = "UpdateBlueprint";
|
|
387
|
+
const _UBR = "UpdateBlueprintRequest";
|
|
388
|
+
const _UBRp = "UpdateBlueprintResponse";
|
|
389
|
+
const _UDAL = "UpdateDataAutomationLibrary";
|
|
390
|
+
const _UDALR = "UpdateDataAutomationLibraryRequest";
|
|
391
|
+
const _UDALRp = "UpdateDataAutomationLibraryResponse";
|
|
392
|
+
const _UDAP = "UpdateDataAutomationProject";
|
|
393
|
+
const _UDAPR = "UpdateDataAutomationProjectRequest";
|
|
394
|
+
const _UDAPRp = "UpdateDataAutomationProjectResponse";
|
|
395
|
+
const _UEI = "UpsertEntitiesInfo";
|
|
396
|
+
const _UEIp = "UpsertEntityInfo";
|
|
397
|
+
const _UR = "UntagResource";
|
|
398
|
+
const _URR = "UntagResourceRequest";
|
|
399
|
+
const _URRn = "UntagResourceResponse";
|
|
400
|
+
const _VBB = "VideoBoundingBox";
|
|
401
|
+
const _VE = "ValidationException";
|
|
402
|
+
const _VEC = "VideoExtractionCategory";
|
|
403
|
+
const _VEF = "ValidationExceptionField";
|
|
404
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
405
|
+
const _VEI = "VocabularyEntityInfo";
|
|
406
|
+
const _VES = "VocabularyEntitySummary";
|
|
407
|
+
const _VEo = "VocabularyEntity";
|
|
408
|
+
const _VOC = "VideoOverrideConfiguration";
|
|
409
|
+
const _VSE = "VideoStandardExtraction";
|
|
410
|
+
const _VSGF = "VideoStandardGenerativeField";
|
|
411
|
+
const _VSOC = "VideoStandardOutputConfiguration";
|
|
412
|
+
const _a = "audio";
|
|
413
|
+
const _aFF = "additionalFileFormat";
|
|
414
|
+
const _aSO = "assetS3Object";
|
|
415
|
+
const _b = "blueprint";
|
|
416
|
+
const _bA = "blueprintArn";
|
|
417
|
+
const _bB = "boundingBox";
|
|
418
|
+
const _bF = "blueprintFilter";
|
|
419
|
+
const _bN = "blueprintName";
|
|
420
|
+
const _bS = "blueprintStage";
|
|
421
|
+
const _bSF = "blueprintStageFilter";
|
|
422
|
+
const _bV = "blueprintVersion";
|
|
423
|
+
const _bl = "blueprints";
|
|
424
|
+
const _c = "client";
|
|
425
|
+
const _cL = "channelLabeling";
|
|
426
|
+
const _cOC = "customOutputConfiguration";
|
|
427
|
+
const _cT = "creationTime";
|
|
428
|
+
const _cTl = "clientToken";
|
|
429
|
+
const _cTo = "completionTime";
|
|
430
|
+
const _ca = "category";
|
|
431
|
+
const _d = "document";
|
|
432
|
+
const _dALC = "dataAutomationLibraryConfiguration";
|
|
433
|
+
const _dAPA = "dataAutomationProfileArn";
|
|
434
|
+
const _dAT = "displayAsText";
|
|
435
|
+
const _dEI = "deleteEntitiesInfo";
|
|
436
|
+
const _dM = "detectionMode";
|
|
437
|
+
const _dS = "detectionScope";
|
|
438
|
+
const _de = "description";
|
|
439
|
+
const _e = "error";
|
|
440
|
+
const _eBC = "eventBridgeConfiguration";
|
|
441
|
+
const _eBE = "eventBridgeEnabled";
|
|
442
|
+
const _eC = "encryptionConfiguration";
|
|
443
|
+
const _eI = "entityIds";
|
|
444
|
+
const _eIn = "entityId";
|
|
445
|
+
const _eM = "errorMessage";
|
|
446
|
+
const _eMn = "entityMetadata";
|
|
447
|
+
const _eT = "entityTypes";
|
|
448
|
+
const _eTn = "entityType";
|
|
449
|
+
const _eTr = "errorType";
|
|
450
|
+
const _en = "entity";
|
|
451
|
+
const _ent = "entities";
|
|
452
|
+
const _ex = "extraction";
|
|
453
|
+
const _fB = "fallbackBlueprints";
|
|
454
|
+
const _fL = "fieldList";
|
|
455
|
+
const _g = "granularity";
|
|
456
|
+
const _gF = "generativeField";
|
|
457
|
+
const _gOL = "generativeOutputLanguage";
|
|
458
|
+
const _gTSO = "groundTruthS3Object";
|
|
459
|
+
const _h = "http";
|
|
460
|
+
const _hE = "httpError";
|
|
461
|
+
const _hQ = "httpQuery";
|
|
462
|
+
const _i = "image";
|
|
463
|
+
const _iA = "invocationArn";
|
|
464
|
+
const _iC = "inputConfiguration";
|
|
465
|
+
const _iL = "inputLanguages";
|
|
466
|
+
const _iML = "identifyMultipleLanguages";
|
|
467
|
+
const _iP = "inlinePayload";
|
|
468
|
+
const _j = "job";
|
|
469
|
+
const _jA = "jobArn";
|
|
470
|
+
const _jS = "jobStatus";
|
|
471
|
+
const _jo = "jobs";
|
|
472
|
+
const _jp = "jpeg";
|
|
473
|
+
const _k = "key";
|
|
474
|
+
const _kEC = "kmsEncryptionContext";
|
|
475
|
+
const _kKI = "kmsKeyId";
|
|
476
|
+
const _l = "libraries";
|
|
477
|
+
const _lA = "libraryArn";
|
|
478
|
+
const _lC = "languageConfiguration";
|
|
479
|
+
const _lD = "libraryDescription";
|
|
480
|
+
const _lF = "libraryFilter";
|
|
481
|
+
const _lMT = "lastModifiedTime";
|
|
482
|
+
const _lN = "libraryName";
|
|
483
|
+
const _la = "language";
|
|
484
|
+
const _li = "library";
|
|
485
|
+
const _m = "message";
|
|
486
|
+
const _mP = "modalityProcessing";
|
|
487
|
+
const _mR = "maxResults";
|
|
488
|
+
const _mRo = "modalityRouting";
|
|
489
|
+
const _mo = "mov";
|
|
490
|
+
const _mp = "mp4";
|
|
491
|
+
const _n = "name";
|
|
492
|
+
const _nC = "notificationConfiguration";
|
|
493
|
+
const _nOP = "numOfPhrases";
|
|
494
|
+
const _nT = "nextToken";
|
|
495
|
+
const _oC = "overrideConfiguration";
|
|
496
|
+
const _oCu = "outputConfiguration";
|
|
497
|
+
const _oF = "outputFormat";
|
|
498
|
+
const _oS = "optimizationSamples";
|
|
499
|
+
const _oT = "optimizationTime";
|
|
500
|
+
const _oTp = "operationType";
|
|
501
|
+
const _p = "project";
|
|
502
|
+
const _pA = "projectArn";
|
|
503
|
+
const _pD = "projectDescription";
|
|
504
|
+
const _pEC = "piiEntitiesConfiguration";
|
|
505
|
+
const _pET = "piiEntityTypes";
|
|
506
|
+
const _pF = "projectFilter";
|
|
507
|
+
const _pN = "projectName";
|
|
508
|
+
const _pS = "projectStage";
|
|
509
|
+
const _pSF = "projectStageFilter";
|
|
510
|
+
const _pT = "projectType";
|
|
511
|
+
const _ph = "phrases";
|
|
512
|
+
const _pn = "png";
|
|
513
|
+
const _pr = "projects";
|
|
514
|
+
const _rARN = "resourceARN";
|
|
515
|
+
const _rMM = "redactionMaskMode";
|
|
516
|
+
const _rO = "resourceOwner";
|
|
517
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockdataautomation";
|
|
518
|
+
const _sDC = "sensitiveDataConfiguration";
|
|
519
|
+
const _sL = "speakerLabeling";
|
|
520
|
+
const _sO = "s3Object";
|
|
521
|
+
const _sOC = "standardOutputConfiguration";
|
|
522
|
+
const _sS = "sourceStage";
|
|
523
|
+
const _sU = "s3Uri";
|
|
524
|
+
const _sa = "samples";
|
|
525
|
+
const _sc = "schema";
|
|
526
|
+
const _se = "server";
|
|
527
|
+
const _sp = "splitter";
|
|
528
|
+
const _st = "state";
|
|
529
|
+
const _sta = "stage";
|
|
530
|
+
const _stat = "status";
|
|
531
|
+
const _t = "types";
|
|
532
|
+
const _tC = "typeConfiguration";
|
|
533
|
+
const _tF = "textFormat";
|
|
534
|
+
const _tK = "tagKeys";
|
|
535
|
+
const _tS = "targetStage";
|
|
536
|
+
const _ta = "tags";
|
|
537
|
+
const _te = "text";
|
|
538
|
+
const _tr = "transcript";
|
|
539
|
+
const _ty = "type";
|
|
540
|
+
const _uEI = "upsertEntitiesInfo";
|
|
541
|
+
const _v = "video";
|
|
542
|
+
const _va = "value";
|
|
543
|
+
const _ve = "version";
|
|
544
|
+
const _vo = "vocabulary";
|
|
545
|
+
const n0 = "com.amazonaws.bedrockdataautomation";
|
|
546
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
547
|
+
var BedrockDataAutomationServiceException$ = [-3, _s, "BedrockDataAutomationServiceException", 0, [], []];
|
|
548
|
+
_s_registry.registerError(BedrockDataAutomationServiceException$, BedrockDataAutomationServiceException);
|
|
549
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
550
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
551
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
552
|
+
[_m],
|
|
553
|
+
[0]
|
|
554
|
+
];
|
|
555
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
556
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
557
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
558
|
+
[_m],
|
|
559
|
+
[0]
|
|
560
|
+
];
|
|
561
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
562
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
563
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
564
|
+
[_m],
|
|
565
|
+
[0]
|
|
566
|
+
];
|
|
567
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
568
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
569
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
570
|
+
[_m],
|
|
571
|
+
[0]
|
|
572
|
+
];
|
|
573
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
574
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
575
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
576
|
+
[_m],
|
|
577
|
+
[0]
|
|
578
|
+
];
|
|
579
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
580
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
581
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
582
|
+
[_m],
|
|
583
|
+
[0]
|
|
584
|
+
];
|
|
585
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
586
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
587
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
588
|
+
[_m, _fL],
|
|
589
|
+
[0, () => ValidationExceptionFieldList]
|
|
590
|
+
];
|
|
591
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
592
|
+
const errorTypeRegistries = [
|
|
593
|
+
_s_registry,
|
|
594
|
+
n0_registry,
|
|
595
|
+
];
|
|
596
|
+
var BlueprintName = [0, n0, _BN, 8, 0];
|
|
597
|
+
var BlueprintSchema = [0, n0, _BS, 8, 0];
|
|
598
|
+
var DataAutomationLibraryDescription = [0, n0, _DALD, 8, 0];
|
|
599
|
+
var DataAutomationLibraryName = [0, n0, _DALN, 8, 0];
|
|
600
|
+
var DataAutomationProjectDescription = [0, n0, _DAPD, 8, 0];
|
|
601
|
+
var DataAutomationProjectName = [0, n0, _DAPN, 8, 0];
|
|
602
|
+
var EntityDescription = [0, n0, _ED, 8, 0];
|
|
603
|
+
var PhraseDisplayAsText = [0, n0, _PDAT, 8, 0];
|
|
604
|
+
var PhraseText = [0, n0, _PT, 8, 0];
|
|
605
|
+
var AudioExtractionCategory$ = [3, n0, _AEC,
|
|
606
|
+
0,
|
|
607
|
+
[_st, _t, _tC],
|
|
608
|
+
[0, 64 | 0, () => AudioExtractionCategoryTypeConfiguration$], 1
|
|
609
|
+
];
|
|
610
|
+
var AudioExtractionCategoryTypeConfiguration$ = [3, n0, _AECTC,
|
|
611
|
+
0,
|
|
612
|
+
[_tr],
|
|
613
|
+
[() => TranscriptConfiguration$]
|
|
614
|
+
];
|
|
615
|
+
var AudioLanguageConfiguration$ = [3, n0, _ALC,
|
|
616
|
+
0,
|
|
617
|
+
[_iL, _gOL, _iML],
|
|
618
|
+
[64 | 0, 0, 2]
|
|
619
|
+
];
|
|
620
|
+
var AudioOverrideConfiguration$ = [3, n0, _AOC,
|
|
621
|
+
0,
|
|
622
|
+
[_mP, _lC, _sDC],
|
|
623
|
+
[() => ModalityProcessingConfiguration$, () => AudioLanguageConfiguration$, () => SensitiveDataConfiguration$]
|
|
624
|
+
];
|
|
625
|
+
var AudioStandardExtraction$ = [3, n0, _ASE,
|
|
626
|
+
0,
|
|
627
|
+
[_ca],
|
|
628
|
+
[() => AudioExtractionCategory$], 1
|
|
629
|
+
];
|
|
630
|
+
var AudioStandardGenerativeField$ = [3, n0, _ASGF,
|
|
631
|
+
0,
|
|
632
|
+
[_st, _t],
|
|
633
|
+
[0, 64 | 0], 1
|
|
634
|
+
];
|
|
635
|
+
var AudioStandardOutputConfiguration$ = [3, n0, _ASOC,
|
|
636
|
+
0,
|
|
637
|
+
[_ex, _gF],
|
|
638
|
+
[() => AudioStandardExtraction$, () => AudioStandardGenerativeField$]
|
|
639
|
+
];
|
|
640
|
+
var Blueprint$ = [3, n0, _B,
|
|
641
|
+
0,
|
|
642
|
+
[_bA, _sc, _ty, _cT, _lMT, _bN, _bV, _bS, _kKI, _kEC, _oS, _oT],
|
|
643
|
+
[0, [() => BlueprintSchema, 0], 0, 5, 5, [() => BlueprintName, 0], 0, 0, 0, 128 | 0, () => BlueprintOptimizationSamples, 5], 6
|
|
644
|
+
];
|
|
645
|
+
var BlueprintFilter$ = [3, n0, _BF,
|
|
646
|
+
0,
|
|
647
|
+
[_bA, _bV, _bS],
|
|
648
|
+
[0, 0, 0], 1
|
|
649
|
+
];
|
|
650
|
+
var BlueprintItem$ = [3, n0, _BI,
|
|
651
|
+
0,
|
|
652
|
+
[_bA, _bV, _bS],
|
|
653
|
+
[0, 0, 0], 1
|
|
654
|
+
];
|
|
655
|
+
var BlueprintOptimizationObject$ = [3, n0, _BOO,
|
|
656
|
+
0,
|
|
657
|
+
[_bA, _sta],
|
|
658
|
+
[0, 0], 1
|
|
659
|
+
];
|
|
660
|
+
var BlueprintOptimizationOutputConfiguration$ = [3, n0, _BOOC,
|
|
661
|
+
0,
|
|
662
|
+
[_sO],
|
|
663
|
+
[() => S3Object$], 1
|
|
664
|
+
];
|
|
665
|
+
var BlueprintOptimizationSample$ = [3, n0, _BOS,
|
|
666
|
+
0,
|
|
667
|
+
[_aSO, _gTSO],
|
|
668
|
+
[() => S3Object$, () => S3Object$], 2
|
|
669
|
+
];
|
|
670
|
+
var BlueprintSummary$ = [3, n0, _BSl,
|
|
671
|
+
0,
|
|
672
|
+
[_bA, _cT, _bV, _bS, _bN, _lMT],
|
|
673
|
+
[0, 5, 0, 0, [() => BlueprintName, 0], 5], 2
|
|
674
|
+
];
|
|
675
|
+
var ChannelLabelingConfiguration$ = [3, n0, _CLC,
|
|
676
|
+
0,
|
|
677
|
+
[_st],
|
|
678
|
+
[0], 1
|
|
679
|
+
];
|
|
680
|
+
var CopyBlueprintStageRequest$ = [3, n0, _CBSR,
|
|
681
|
+
0,
|
|
682
|
+
[_bA, _sS, _tS, _cTl],
|
|
683
|
+
[[0, 1], 0, 0, [0, 4]], 3
|
|
684
|
+
];
|
|
685
|
+
var CopyBlueprintStageResponse$ = [3, n0, _CBSRo,
|
|
686
|
+
0,
|
|
687
|
+
[],
|
|
688
|
+
[]
|
|
689
|
+
];
|
|
690
|
+
var CreateBlueprintRequest$ = [3, n0, _CBR,
|
|
691
|
+
0,
|
|
692
|
+
[_bN, _ty, _sc, _bS, _cTl, _eC, _ta],
|
|
693
|
+
[[() => BlueprintName, 0], 0, [() => BlueprintSchema, 0], 0, [0, 4], () => EncryptionConfiguration$, () => TagList], 3
|
|
694
|
+
];
|
|
695
|
+
var CreateBlueprintResponse$ = [3, n0, _CBRr,
|
|
696
|
+
0,
|
|
697
|
+
[_b],
|
|
698
|
+
[[() => Blueprint$, 0]], 1
|
|
699
|
+
];
|
|
700
|
+
var CreateBlueprintVersionRequest$ = [3, n0, _CBVR,
|
|
701
|
+
0,
|
|
702
|
+
[_bA, _cTl],
|
|
703
|
+
[[0, 1], [0, 4]], 1
|
|
704
|
+
];
|
|
705
|
+
var CreateBlueprintVersionResponse$ = [3, n0, _CBVRr,
|
|
706
|
+
0,
|
|
707
|
+
[_b],
|
|
708
|
+
[[() => Blueprint$, 0]], 1
|
|
709
|
+
];
|
|
710
|
+
var CreateDataAutomationLibraryRequest$ = [3, n0, _CDALR,
|
|
711
|
+
0,
|
|
712
|
+
[_lN, _lD, _cTl, _eC, _ta],
|
|
713
|
+
[[() => DataAutomationLibraryName, 0], [() => DataAutomationLibraryDescription, 0], [0, 4], () => EncryptionConfiguration$, () => TagList], 1
|
|
714
|
+
];
|
|
715
|
+
var CreateDataAutomationLibraryResponse$ = [3, n0, _CDALRr,
|
|
716
|
+
0,
|
|
717
|
+
[_lA, _stat],
|
|
718
|
+
[0, 0]
|
|
719
|
+
];
|
|
720
|
+
var CreateDataAutomationProjectRequest$ = [3, n0, _CDAPR,
|
|
721
|
+
0,
|
|
722
|
+
[_pN, _sOC, _pD, _pS, _pT, _cOC, _oC, _dALC, _cTl, _eC, _ta],
|
|
723
|
+
[[() => DataAutomationProjectName, 0], () => StandardOutputConfiguration$, [() => DataAutomationProjectDescription, 0], 0, 0, () => CustomOutputConfiguration$, () => OverrideConfiguration$, () => DataAutomationLibraryConfiguration$, [0, 4], () => EncryptionConfiguration$, () => TagList], 2
|
|
724
|
+
];
|
|
725
|
+
var CreateDataAutomationProjectResponse$ = [3, n0, _CDAPRr,
|
|
726
|
+
0,
|
|
727
|
+
[_pA, _pS, _stat],
|
|
728
|
+
[0, 0, 0], 1
|
|
729
|
+
];
|
|
730
|
+
var CustomOutputConfiguration$ = [3, n0, _COC,
|
|
731
|
+
0,
|
|
732
|
+
[_bl, _d],
|
|
733
|
+
[() => BlueprintItems, () => DocumentCustomOutputConfiguration$]
|
|
734
|
+
];
|
|
735
|
+
var DataAutomationLibrary$ = [3, n0, _DAL,
|
|
736
|
+
0,
|
|
737
|
+
[_lA, _cT, _lN, _stat, _lD, _eT, _kKI, _kEC],
|
|
738
|
+
[0, 5, [() => DataAutomationLibraryName, 0], 0, [() => DataAutomationLibraryDescription, 0], () => EntityTypeInfoList, 0, 128 | 0], 4
|
|
739
|
+
];
|
|
740
|
+
var DataAutomationLibraryConfiguration$ = [3, n0, _DALC,
|
|
741
|
+
0,
|
|
742
|
+
[_l],
|
|
743
|
+
[() => DataAutomationLibraryItems]
|
|
744
|
+
];
|
|
745
|
+
var DataAutomationLibraryFilter$ = [3, n0, _DALF,
|
|
746
|
+
0,
|
|
747
|
+
[_lA],
|
|
748
|
+
[0], 1
|
|
749
|
+
];
|
|
750
|
+
var DataAutomationLibraryIngestionJob$ = [3, n0, _DALIJ,
|
|
751
|
+
0,
|
|
752
|
+
[_jA, _cT, _eTn, _oTp, _jS, _oCu, _cTo, _eM, _eTr],
|
|
753
|
+
[0, 5, 0, 0, 0, () => OutputConfiguration$, 5, 0, 0], 6
|
|
754
|
+
];
|
|
755
|
+
var DataAutomationLibraryIngestionJobSummary$ = [3, n0, _DALIJS,
|
|
756
|
+
0,
|
|
757
|
+
[_jA, _jS, _eTn, _oTp, _cT, _cTo],
|
|
758
|
+
[0, 0, 0, 0, 5, 5], 5
|
|
759
|
+
];
|
|
760
|
+
var DataAutomationLibraryItem$ = [3, n0, _DALI,
|
|
761
|
+
0,
|
|
762
|
+
[_lA],
|
|
763
|
+
[0], 1
|
|
764
|
+
];
|
|
765
|
+
var DataAutomationLibrarySummary$ = [3, n0, _DALS,
|
|
766
|
+
0,
|
|
767
|
+
[_lA, _cT, _lN],
|
|
768
|
+
[0, 5, [() => DataAutomationLibraryName, 0]], 2
|
|
769
|
+
];
|
|
770
|
+
var DataAutomationProject$ = [3, n0, _DAP,
|
|
771
|
+
0,
|
|
772
|
+
[_pA, _cT, _lMT, _pN, _stat, _pS, _pT, _pD, _sOC, _cOC, _oC, _dALC, _kKI, _kEC],
|
|
773
|
+
[0, 5, 5, [() => DataAutomationProjectName, 0], 0, 0, 0, [() => DataAutomationProjectDescription, 0], () => StandardOutputConfiguration$, () => CustomOutputConfiguration$, () => OverrideConfiguration$, () => DataAutomationLibraryConfiguration$, 0, 128 | 0], 5
|
|
774
|
+
];
|
|
775
|
+
var DataAutomationProjectFilter$ = [3, n0, _DAPF,
|
|
776
|
+
0,
|
|
777
|
+
[_pA, _pS],
|
|
778
|
+
[0, 0], 1
|
|
779
|
+
];
|
|
780
|
+
var DataAutomationProjectSummary$ = [3, n0, _DAPS,
|
|
781
|
+
0,
|
|
782
|
+
[_pA, _cT, _pS, _pT, _pN],
|
|
783
|
+
[0, 5, 0, 0, [() => DataAutomationProjectName, 0]], 2
|
|
784
|
+
];
|
|
785
|
+
var DeleteBlueprintRequest$ = [3, n0, _DBR,
|
|
786
|
+
0,
|
|
787
|
+
[_bA, _bV],
|
|
788
|
+
[[0, 1], [0, { [_hQ]: _bV }]], 1
|
|
789
|
+
];
|
|
790
|
+
var DeleteBlueprintResponse$ = [3, n0, _DBRe,
|
|
791
|
+
0,
|
|
792
|
+
[],
|
|
793
|
+
[]
|
|
794
|
+
];
|
|
795
|
+
var DeleteDataAutomationLibraryRequest$ = [3, n0, _DDALR,
|
|
796
|
+
0,
|
|
797
|
+
[_lA],
|
|
798
|
+
[[0, 1]], 1
|
|
799
|
+
];
|
|
800
|
+
var DeleteDataAutomationLibraryResponse$ = [3, n0, _DDALRe,
|
|
801
|
+
0,
|
|
802
|
+
[_lA, _stat],
|
|
803
|
+
[0, 0]
|
|
804
|
+
];
|
|
805
|
+
var DeleteDataAutomationProjectRequest$ = [3, n0, _DDAPR,
|
|
806
|
+
0,
|
|
807
|
+
[_pA],
|
|
808
|
+
[[0, 1]], 1
|
|
809
|
+
];
|
|
810
|
+
var DeleteDataAutomationProjectResponse$ = [3, n0, _DDAPRe,
|
|
811
|
+
0,
|
|
812
|
+
[_pA, _stat],
|
|
813
|
+
[0, 0], 1
|
|
814
|
+
];
|
|
815
|
+
var DeleteEntitiesInfo$ = [3, n0, _DEI,
|
|
816
|
+
0,
|
|
817
|
+
[_eI],
|
|
818
|
+
[64 | 0], 1
|
|
819
|
+
];
|
|
820
|
+
var DocumentBoundingBox$ = [3, n0, _DBB,
|
|
821
|
+
0,
|
|
822
|
+
[_st],
|
|
823
|
+
[0], 1
|
|
824
|
+
];
|
|
825
|
+
var DocumentCustomOutputConfiguration$ = [3, n0, _DCOC,
|
|
826
|
+
0,
|
|
827
|
+
[_fB],
|
|
828
|
+
[() => FallbackBlueprintItems]
|
|
829
|
+
];
|
|
830
|
+
var DocumentExtractionGranularity$ = [3, n0, _DEG,
|
|
831
|
+
0,
|
|
832
|
+
[_t],
|
|
833
|
+
[64 | 0]
|
|
834
|
+
];
|
|
835
|
+
var DocumentOutputAdditionalFileFormat$ = [3, n0, _DOAFF,
|
|
836
|
+
0,
|
|
837
|
+
[_st],
|
|
838
|
+
[0], 1
|
|
839
|
+
];
|
|
840
|
+
var DocumentOutputFormat$ = [3, n0, _DOF,
|
|
841
|
+
0,
|
|
842
|
+
[_tF, _aFF],
|
|
843
|
+
[() => DocumentOutputTextFormat$, () => DocumentOutputAdditionalFileFormat$], 2
|
|
844
|
+
];
|
|
845
|
+
var DocumentOutputTextFormat$ = [3, n0, _DOTF,
|
|
846
|
+
0,
|
|
847
|
+
[_t],
|
|
848
|
+
[64 | 0]
|
|
849
|
+
];
|
|
850
|
+
var DocumentOverrideConfiguration$ = [3, n0, _DOC,
|
|
851
|
+
0,
|
|
852
|
+
[_sp, _mP, _sDC],
|
|
853
|
+
[() => SplitterConfiguration$, () => ModalityProcessingConfiguration$, () => SensitiveDataConfiguration$]
|
|
854
|
+
];
|
|
855
|
+
var DocumentStandardExtraction$ = [3, n0, _DSE,
|
|
856
|
+
0,
|
|
857
|
+
[_g, _bB],
|
|
858
|
+
[() => DocumentExtractionGranularity$, () => DocumentBoundingBox$], 2
|
|
859
|
+
];
|
|
860
|
+
var DocumentStandardGenerativeField$ = [3, n0, _DSGF,
|
|
861
|
+
0,
|
|
862
|
+
[_st],
|
|
863
|
+
[0], 1
|
|
864
|
+
];
|
|
865
|
+
var DocumentStandardOutputConfiguration$ = [3, n0, _DSOC,
|
|
866
|
+
0,
|
|
867
|
+
[_ex, _gF, _oF],
|
|
868
|
+
[() => DocumentStandardExtraction$, () => DocumentStandardGenerativeField$, () => DocumentOutputFormat$]
|
|
869
|
+
];
|
|
870
|
+
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
871
|
+
0,
|
|
872
|
+
[_kKI, _kEC],
|
|
873
|
+
[0, 128 | 0], 1
|
|
874
|
+
];
|
|
875
|
+
var EntityTypeInfo$ = [3, n0, _ETI,
|
|
876
|
+
0,
|
|
877
|
+
[_eTn, _eMn],
|
|
878
|
+
[0, 0], 1
|
|
879
|
+
];
|
|
880
|
+
var EventBridgeConfiguration$ = [3, n0, _EBC,
|
|
881
|
+
0,
|
|
882
|
+
[_eBE],
|
|
883
|
+
[2], 1
|
|
884
|
+
];
|
|
885
|
+
var GetBlueprintOptimizationStatusRequest$ = [3, n0, _GBOSR,
|
|
886
|
+
0,
|
|
887
|
+
[_iA],
|
|
888
|
+
[[0, 1]], 1
|
|
889
|
+
];
|
|
890
|
+
var GetBlueprintOptimizationStatusResponse$ = [3, n0, _GBOSRe,
|
|
891
|
+
0,
|
|
892
|
+
[_stat, _eTr, _eM, _oCu],
|
|
893
|
+
[0, 0, 0, () => BlueprintOptimizationOutputConfiguration$]
|
|
894
|
+
];
|
|
895
|
+
var GetBlueprintRequest$ = [3, n0, _GBR,
|
|
896
|
+
0,
|
|
897
|
+
[_bA, _bV, _bS],
|
|
898
|
+
[[0, 1], 0, 0], 1
|
|
899
|
+
];
|
|
900
|
+
var GetBlueprintResponse$ = [3, n0, _GBRe,
|
|
901
|
+
0,
|
|
902
|
+
[_b],
|
|
903
|
+
[[() => Blueprint$, 0]], 1
|
|
904
|
+
];
|
|
905
|
+
var GetDataAutomationLibraryEntityRequest$ = [3, n0, _GDALER,
|
|
906
|
+
0,
|
|
907
|
+
[_lA, _eTn, _eIn],
|
|
908
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
909
|
+
];
|
|
910
|
+
var GetDataAutomationLibraryEntityResponse$ = [3, n0, _GDALERe,
|
|
911
|
+
0,
|
|
912
|
+
[_en],
|
|
913
|
+
[[() => EntityDetails$, 0]]
|
|
914
|
+
];
|
|
915
|
+
var GetDataAutomationLibraryIngestionJobRequest$ = [3, n0, _GDALIJR,
|
|
916
|
+
0,
|
|
917
|
+
[_lA, _jA],
|
|
918
|
+
[[0, 1], [0, 1]], 2
|
|
919
|
+
];
|
|
920
|
+
var GetDataAutomationLibraryIngestionJobResponse$ = [3, n0, _GDALIJRe,
|
|
921
|
+
0,
|
|
922
|
+
[_j],
|
|
923
|
+
[() => DataAutomationLibraryIngestionJob$]
|
|
924
|
+
];
|
|
925
|
+
var GetDataAutomationLibraryRequest$ = [3, n0, _GDALR,
|
|
926
|
+
0,
|
|
927
|
+
[_lA],
|
|
928
|
+
[[0, 1]], 1
|
|
929
|
+
];
|
|
930
|
+
var GetDataAutomationLibraryResponse$ = [3, n0, _GDALRe,
|
|
931
|
+
0,
|
|
932
|
+
[_li],
|
|
933
|
+
[[() => DataAutomationLibrary$, 0]]
|
|
934
|
+
];
|
|
935
|
+
var GetDataAutomationProjectRequest$ = [3, n0, _GDAPR,
|
|
936
|
+
0,
|
|
937
|
+
[_pA, _pS],
|
|
938
|
+
[[0, 1], 0], 1
|
|
939
|
+
];
|
|
940
|
+
var GetDataAutomationProjectResponse$ = [3, n0, _GDAPRe,
|
|
941
|
+
0,
|
|
942
|
+
[_p],
|
|
943
|
+
[[() => DataAutomationProject$, 0]], 1
|
|
944
|
+
];
|
|
945
|
+
var ImageBoundingBox$ = [3, n0, _IBB,
|
|
946
|
+
0,
|
|
947
|
+
[_st],
|
|
948
|
+
[0], 1
|
|
949
|
+
];
|
|
950
|
+
var ImageExtractionCategory$ = [3, n0, _IEC,
|
|
951
|
+
0,
|
|
952
|
+
[_st, _t],
|
|
953
|
+
[0, 64 | 0], 1
|
|
954
|
+
];
|
|
955
|
+
var ImageOverrideConfiguration$ = [3, n0, _IOC,
|
|
956
|
+
0,
|
|
957
|
+
[_mP, _sDC],
|
|
958
|
+
[() => ModalityProcessingConfiguration$, () => SensitiveDataConfiguration$]
|
|
959
|
+
];
|
|
960
|
+
var ImageStandardExtraction$ = [3, n0, _ISEm,
|
|
961
|
+
0,
|
|
962
|
+
[_ca, _bB],
|
|
963
|
+
[() => ImageExtractionCategory$, () => ImageBoundingBox$], 2
|
|
964
|
+
];
|
|
965
|
+
var ImageStandardGenerativeField$ = [3, n0, _ISGF,
|
|
966
|
+
0,
|
|
967
|
+
[_st, _t],
|
|
968
|
+
[0, 64 | 0], 1
|
|
969
|
+
];
|
|
970
|
+
var ImageStandardOutputConfiguration$ = [3, n0, _ISOC,
|
|
971
|
+
0,
|
|
972
|
+
[_ex, _gF],
|
|
973
|
+
[() => ImageStandardExtraction$, () => ImageStandardGenerativeField$]
|
|
974
|
+
];
|
|
975
|
+
var InputConfiguration$ = [3, n0, _IC,
|
|
976
|
+
0,
|
|
977
|
+
[_sO, _iP],
|
|
978
|
+
[() => S3Object$, [() => InlinePayload$, 0]]
|
|
979
|
+
];
|
|
980
|
+
var InvokeBlueprintOptimizationAsyncRequest$ = [3, n0, _IBOAR,
|
|
981
|
+
0,
|
|
982
|
+
[_b, _sa, _oCu, _dAPA, _eC, _ta],
|
|
983
|
+
[() => BlueprintOptimizationObject$, () => BlueprintOptimizationSamples, () => BlueprintOptimizationOutputConfiguration$, 0, () => EncryptionConfiguration$, () => TagList], 4
|
|
984
|
+
];
|
|
985
|
+
var InvokeBlueprintOptimizationAsyncResponse$ = [3, n0, _IBOARn,
|
|
986
|
+
0,
|
|
987
|
+
[_iA],
|
|
988
|
+
[0], 1
|
|
989
|
+
];
|
|
990
|
+
var InvokeDataAutomationLibraryIngestionJobRequest$ = [3, n0, _IDALIJR,
|
|
991
|
+
0,
|
|
992
|
+
[_lA, _iC, _eTn, _oTp, _oCu, _cTl, _nC, _ta],
|
|
993
|
+
[[0, 1], [() => InputConfiguration$, 0], 0, 0, () => OutputConfiguration$, [0, 4], () => NotificationConfiguration$, () => TagList], 5
|
|
994
|
+
];
|
|
995
|
+
var InvokeDataAutomationLibraryIngestionJobResponse$ = [3, n0, _IDALIJRn,
|
|
996
|
+
0,
|
|
997
|
+
[_jA],
|
|
998
|
+
[0]
|
|
999
|
+
];
|
|
1000
|
+
var ListBlueprintsRequest$ = [3, n0, _LBR,
|
|
1001
|
+
0,
|
|
1002
|
+
[_bA, _rO, _bSF, _mR, _nT, _pF],
|
|
1003
|
+
[0, 0, 0, 1, 0, () => DataAutomationProjectFilter$]
|
|
1004
|
+
];
|
|
1005
|
+
var ListBlueprintsResponse$ = [3, n0, _LBRi,
|
|
1006
|
+
0,
|
|
1007
|
+
[_bl, _nT],
|
|
1008
|
+
[[() => Blueprints, 0], 0], 1
|
|
1009
|
+
];
|
|
1010
|
+
var ListDataAutomationLibrariesRequest$ = [3, n0, _LDALR,
|
|
1011
|
+
0,
|
|
1012
|
+
[_mR, _nT, _pF],
|
|
1013
|
+
[1, 0, () => DataAutomationProjectFilter$]
|
|
1014
|
+
];
|
|
1015
|
+
var ListDataAutomationLibrariesResponse$ = [3, n0, _LDALRi,
|
|
1016
|
+
0,
|
|
1017
|
+
[_l, _nT],
|
|
1018
|
+
[[() => DataAutomationLibrarySummaries, 0], 0]
|
|
1019
|
+
];
|
|
1020
|
+
var ListDataAutomationLibraryEntitiesRequest$ = [3, n0, _LDALER,
|
|
1021
|
+
0,
|
|
1022
|
+
[_lA, _eTn, _mR, _nT],
|
|
1023
|
+
[[0, 1], [0, 1], 1, 0], 2
|
|
1024
|
+
];
|
|
1025
|
+
var ListDataAutomationLibraryEntitiesResponse$ = [3, n0, _LDALERi,
|
|
1026
|
+
0,
|
|
1027
|
+
[_ent, _nT],
|
|
1028
|
+
[[() => DataAutomationLibraryEntitySummaries, 0], 0]
|
|
1029
|
+
];
|
|
1030
|
+
var ListDataAutomationLibraryIngestionJobsRequest$ = [3, n0, _LDALIJR,
|
|
1031
|
+
0,
|
|
1032
|
+
[_lA, _mR, _nT],
|
|
1033
|
+
[[0, 1], 1, 0], 1
|
|
1034
|
+
];
|
|
1035
|
+
var ListDataAutomationLibraryIngestionJobsResponse$ = [3, n0, _LDALIJRi,
|
|
1036
|
+
0,
|
|
1037
|
+
[_jo, _nT],
|
|
1038
|
+
[() => DataAutomationLibraryIngestionJobSummaries, 0]
|
|
1039
|
+
];
|
|
1040
|
+
var ListDataAutomationProjectsRequest$ = [3, n0, _LDAPR,
|
|
1041
|
+
0,
|
|
1042
|
+
[_mR, _nT, _pSF, _bF, _rO, _lF],
|
|
1043
|
+
[1, 0, 0, () => BlueprintFilter$, 0, () => DataAutomationLibraryFilter$]
|
|
1044
|
+
];
|
|
1045
|
+
var ListDataAutomationProjectsResponse$ = [3, n0, _LDAPRi,
|
|
1046
|
+
0,
|
|
1047
|
+
[_pr, _nT],
|
|
1048
|
+
[[() => DataAutomationProjectSummaries, 0], 0], 1
|
|
1049
|
+
];
|
|
1050
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1051
|
+
0,
|
|
1052
|
+
[_rARN],
|
|
1053
|
+
[0], 1
|
|
1054
|
+
];
|
|
1055
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1056
|
+
0,
|
|
1057
|
+
[_ta],
|
|
1058
|
+
[() => TagList]
|
|
1059
|
+
];
|
|
1060
|
+
var ModalityProcessingConfiguration$ = [3, n0, _MPC,
|
|
1061
|
+
0,
|
|
1062
|
+
[_st],
|
|
1063
|
+
[0]
|
|
1064
|
+
];
|
|
1065
|
+
var ModalityRoutingConfiguration$ = [3, n0, _MRC,
|
|
1066
|
+
0,
|
|
1067
|
+
[_jp, _pn, _mp, _mo],
|
|
1068
|
+
[0, 0, 0, 0]
|
|
1069
|
+
];
|
|
1070
|
+
var NotificationConfiguration$ = [3, n0, _NC,
|
|
1071
|
+
0,
|
|
1072
|
+
[_eBC],
|
|
1073
|
+
[() => EventBridgeConfiguration$], 1
|
|
1074
|
+
];
|
|
1075
|
+
var OutputConfiguration$ = [3, n0, _OC,
|
|
1076
|
+
0,
|
|
1077
|
+
[_sU],
|
|
1078
|
+
[0], 1
|
|
1079
|
+
];
|
|
1080
|
+
var OverrideConfiguration$ = [3, n0, _OCv,
|
|
1081
|
+
0,
|
|
1082
|
+
[_d, _i, _v, _a, _mRo],
|
|
1083
|
+
[() => DocumentOverrideConfiguration$, () => ImageOverrideConfiguration$, () => VideoOverrideConfiguration$, () => AudioOverrideConfiguration$, () => ModalityRoutingConfiguration$]
|
|
1084
|
+
];
|
|
1085
|
+
var Phrase$ = [3, n0, _P,
|
|
1086
|
+
0,
|
|
1087
|
+
[_te, _dAT],
|
|
1088
|
+
[[() => PhraseText, 0], [() => PhraseDisplayAsText, 0]], 1
|
|
1089
|
+
];
|
|
1090
|
+
var PIIEntitiesConfiguration$ = [3, n0, _PIIEC,
|
|
1091
|
+
0,
|
|
1092
|
+
[_pET, _rMM],
|
|
1093
|
+
[64 | 0, 0]
|
|
1094
|
+
];
|
|
1095
|
+
var S3Object$ = [3, n0, _SO,
|
|
1096
|
+
0,
|
|
1097
|
+
[_sU, _ve],
|
|
1098
|
+
[0, 0], 1
|
|
1099
|
+
];
|
|
1100
|
+
var SensitiveDataConfiguration$ = [3, n0, _SDC,
|
|
1101
|
+
0,
|
|
1102
|
+
[_dM, _dS, _pEC],
|
|
1103
|
+
[0, 64 | 0, () => PIIEntitiesConfiguration$], 1
|
|
1104
|
+
];
|
|
1105
|
+
var SpeakerLabelingConfiguration$ = [3, n0, _SLC,
|
|
1106
|
+
0,
|
|
1107
|
+
[_st],
|
|
1108
|
+
[0], 1
|
|
1109
|
+
];
|
|
1110
|
+
var SplitterConfiguration$ = [3, n0, _SC,
|
|
1111
|
+
0,
|
|
1112
|
+
[_st],
|
|
1113
|
+
[0]
|
|
1114
|
+
];
|
|
1115
|
+
var StandardOutputConfiguration$ = [3, n0, _SOC,
|
|
1116
|
+
0,
|
|
1117
|
+
[_d, _i, _v, _a],
|
|
1118
|
+
[() => DocumentStandardOutputConfiguration$, () => ImageStandardOutputConfiguration$, () => VideoStandardOutputConfiguration$, () => AudioStandardOutputConfiguration$]
|
|
1119
|
+
];
|
|
1120
|
+
var Tag$ = [3, n0, _T,
|
|
1121
|
+
0,
|
|
1122
|
+
[_k, _va],
|
|
1123
|
+
[0, 0], 2
|
|
1124
|
+
];
|
|
1125
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1126
|
+
0,
|
|
1127
|
+
[_rARN, _ta],
|
|
1128
|
+
[0, () => TagList], 2
|
|
1129
|
+
];
|
|
1130
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1131
|
+
0,
|
|
1132
|
+
[],
|
|
1133
|
+
[]
|
|
1134
|
+
];
|
|
1135
|
+
var TranscriptConfiguration$ = [3, n0, _TC,
|
|
1136
|
+
0,
|
|
1137
|
+
[_sL, _cL],
|
|
1138
|
+
[() => SpeakerLabelingConfiguration$, () => ChannelLabelingConfiguration$]
|
|
1139
|
+
];
|
|
1140
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1141
|
+
0,
|
|
1142
|
+
[_rARN, _tK],
|
|
1143
|
+
[0, 64 | 0], 2
|
|
1144
|
+
];
|
|
1145
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1146
|
+
0,
|
|
1147
|
+
[],
|
|
1148
|
+
[]
|
|
1149
|
+
];
|
|
1150
|
+
var UpdateBlueprintRequest$ = [3, n0, _UBR,
|
|
1151
|
+
0,
|
|
1152
|
+
[_bA, _sc, _bS, _eC],
|
|
1153
|
+
[[0, 1], [() => BlueprintSchema, 0], 0, () => EncryptionConfiguration$], 2
|
|
1154
|
+
];
|
|
1155
|
+
var UpdateBlueprintResponse$ = [3, n0, _UBRp,
|
|
1156
|
+
0,
|
|
1157
|
+
[_b],
|
|
1158
|
+
[[() => Blueprint$, 0]], 1
|
|
1159
|
+
];
|
|
1160
|
+
var UpdateDataAutomationLibraryRequest$ = [3, n0, _UDALR,
|
|
1161
|
+
0,
|
|
1162
|
+
[_lA, _lD, _cTl],
|
|
1163
|
+
[[0, 1], [() => DataAutomationLibraryDescription, 0], [0, 4]], 1
|
|
1164
|
+
];
|
|
1165
|
+
var UpdateDataAutomationLibraryResponse$ = [3, n0, _UDALRp,
|
|
1166
|
+
0,
|
|
1167
|
+
[_lA, _stat],
|
|
1168
|
+
[0, 0]
|
|
1169
|
+
];
|
|
1170
|
+
var UpdateDataAutomationProjectRequest$ = [3, n0, _UDAPR,
|
|
1171
|
+
0,
|
|
1172
|
+
[_pA, _sOC, _pS, _pD, _cOC, _oC, _dALC, _eC],
|
|
1173
|
+
[[0, 1], () => StandardOutputConfiguration$, 0, [() => DataAutomationProjectDescription, 0], () => CustomOutputConfiguration$, () => OverrideConfiguration$, () => DataAutomationLibraryConfiguration$, () => EncryptionConfiguration$], 2
|
|
1174
|
+
];
|
|
1175
|
+
var UpdateDataAutomationProjectResponse$ = [3, n0, _UDAPRp,
|
|
1176
|
+
0,
|
|
1177
|
+
[_pA, _pS, _stat],
|
|
1178
|
+
[0, 0, 0], 1
|
|
1179
|
+
];
|
|
1180
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1181
|
+
0,
|
|
1182
|
+
[_n, _m],
|
|
1183
|
+
[0, 0], 2
|
|
1184
|
+
];
|
|
1185
|
+
var VideoBoundingBox$ = [3, n0, _VBB,
|
|
1186
|
+
0,
|
|
1187
|
+
[_st],
|
|
1188
|
+
[0], 1
|
|
1189
|
+
];
|
|
1190
|
+
var VideoExtractionCategory$ = [3, n0, _VEC,
|
|
1191
|
+
0,
|
|
1192
|
+
[_st, _t],
|
|
1193
|
+
[0, 64 | 0], 1
|
|
1194
|
+
];
|
|
1195
|
+
var VideoOverrideConfiguration$ = [3, n0, _VOC,
|
|
1196
|
+
0,
|
|
1197
|
+
[_mP, _sDC],
|
|
1198
|
+
[() => ModalityProcessingConfiguration$, () => SensitiveDataConfiguration$]
|
|
1199
|
+
];
|
|
1200
|
+
var VideoStandardExtraction$ = [3, n0, _VSE,
|
|
1201
|
+
0,
|
|
1202
|
+
[_ca, _bB],
|
|
1203
|
+
[() => VideoExtractionCategory$, () => VideoBoundingBox$], 2
|
|
1204
|
+
];
|
|
1205
|
+
var VideoStandardGenerativeField$ = [3, n0, _VSGF,
|
|
1206
|
+
0,
|
|
1207
|
+
[_st, _t],
|
|
1208
|
+
[0, 64 | 0], 1
|
|
1209
|
+
];
|
|
1210
|
+
var VideoStandardOutputConfiguration$ = [3, n0, _VSOC,
|
|
1211
|
+
0,
|
|
1212
|
+
[_ex, _gF],
|
|
1213
|
+
[() => VideoStandardExtraction$, () => VideoStandardGenerativeField$]
|
|
1214
|
+
];
|
|
1215
|
+
var VocabularyEntity$ = [3, n0, _VEo,
|
|
1216
|
+
0,
|
|
1217
|
+
[_eIn, _de, _la, _ph, _lMT],
|
|
1218
|
+
[0, [() => EntityDescription, 0], 0, [() => PhraseList, 0], 5]
|
|
1219
|
+
];
|
|
1220
|
+
var VocabularyEntityInfo$ = [3, n0, _VEI,
|
|
1221
|
+
0,
|
|
1222
|
+
[_la, _ph, _eIn, _de],
|
|
1223
|
+
[0, [() => PhraseList, 0], 0, [() => EntityDescription, 0]], 2
|
|
1224
|
+
];
|
|
1225
|
+
var VocabularyEntitySummary$ = [3, n0, _VES,
|
|
1226
|
+
0,
|
|
1227
|
+
[_eIn, _de, _la, _nOP, _lMT],
|
|
1228
|
+
[0, [() => EntityDescription, 0], 0, 1, 5]
|
|
1229
|
+
];
|
|
1230
|
+
var BlueprintItems = [1, n0, _BIl,
|
|
1231
|
+
0, () => BlueprintItem$
|
|
1232
|
+
];
|
|
1233
|
+
var BlueprintOptimizationSamples = [1, n0, _BOSl,
|
|
1234
|
+
0, () => BlueprintOptimizationSample$
|
|
1235
|
+
];
|
|
1236
|
+
var Blueprints = [1, n0, _Bl,
|
|
1237
|
+
0, [() => BlueprintSummary$,
|
|
1238
|
+
0]
|
|
1239
|
+
];
|
|
1240
|
+
var DataAutomationLibraryEntitySummaries = [1, n0, _DALES,
|
|
1241
|
+
0, [() => DataAutomationLibraryEntitySummary$,
|
|
1242
|
+
0]
|
|
1243
|
+
];
|
|
1244
|
+
var DataAutomationLibraryIngestionJobSummaries = [1, n0, _DALIJSa,
|
|
1245
|
+
0, () => DataAutomationLibraryIngestionJobSummary$
|
|
1246
|
+
];
|
|
1247
|
+
var DataAutomationLibraryItems = [1, n0, _DALIa,
|
|
1248
|
+
0, () => DataAutomationLibraryItem$
|
|
1249
|
+
];
|
|
1250
|
+
var DataAutomationLibrarySummaries = [1, n0, _DALSa,
|
|
1251
|
+
0, [() => DataAutomationLibrarySummary$,
|
|
1252
|
+
0]
|
|
1253
|
+
];
|
|
1254
|
+
var DataAutomationProjectSummaries = [1, n0, _DAPSa,
|
|
1255
|
+
0, [() => DataAutomationProjectSummary$,
|
|
1256
|
+
0]
|
|
1257
|
+
];
|
|
1258
|
+
var EntityTypeInfoList = [1, n0, _ETIL,
|
|
1259
|
+
0, () => EntityTypeInfo$
|
|
1260
|
+
];
|
|
1261
|
+
var FallbackBlueprintItems = [1, n0, _FBI,
|
|
1262
|
+
0, () => BlueprintItem$
|
|
1263
|
+
];
|
|
1264
|
+
var PhraseList = [1, n0, _PL,
|
|
1265
|
+
0, [() => Phrase$,
|
|
1266
|
+
0]
|
|
1267
|
+
];
|
|
1268
|
+
var TagList = [1, n0, _TL,
|
|
1269
|
+
0, () => Tag$
|
|
1270
|
+
];
|
|
1271
|
+
var UpsertEntitiesInfo = [1, n0, _UEI,
|
|
1272
|
+
0, [() => UpsertEntityInfo$,
|
|
1273
|
+
0]
|
|
1274
|
+
];
|
|
1275
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1276
|
+
0, () => ValidationExceptionField$
|
|
1277
|
+
];
|
|
1278
|
+
var DataAutomationLibraryEntitySummary$ = [4, n0, _DALESa,
|
|
1279
|
+
0,
|
|
1280
|
+
[_vo],
|
|
1281
|
+
[[() => VocabularyEntitySummary$, 0]]
|
|
1282
|
+
];
|
|
1283
|
+
var EntityDetails$ = [4, n0, _EDn,
|
|
1284
|
+
0,
|
|
1285
|
+
[_vo],
|
|
1286
|
+
[[() => VocabularyEntity$, 0]]
|
|
1287
|
+
];
|
|
1288
|
+
var InlinePayload$ = [4, n0, _IP,
|
|
1289
|
+
0,
|
|
1290
|
+
[_uEI, _dEI],
|
|
1291
|
+
[[() => UpsertEntitiesInfo, 0], () => DeleteEntitiesInfo$]
|
|
1292
|
+
];
|
|
1293
|
+
var UpsertEntityInfo$ = [4, n0, _UEIp,
|
|
1294
|
+
0,
|
|
1295
|
+
[_vo],
|
|
1296
|
+
[[() => VocabularyEntityInfo$, 0]]
|
|
1297
|
+
];
|
|
1298
|
+
var CopyBlueprintStage$ = [9, n0, _CBS,
|
|
1299
|
+
{ [_h]: ["PUT", "/blueprints/{blueprintArn}/copy-stage", 200] }, () => CopyBlueprintStageRequest$, () => CopyBlueprintStageResponse$
|
|
1300
|
+
];
|
|
1301
|
+
var CreateBlueprint$ = [9, n0, _CB,
|
|
1302
|
+
{ [_h]: ["PUT", "/blueprints/", 201] }, () => CreateBlueprintRequest$, () => CreateBlueprintResponse$
|
|
1303
|
+
];
|
|
1304
|
+
var CreateBlueprintVersion$ = [9, n0, _CBV,
|
|
1305
|
+
{ [_h]: ["POST", "/blueprints/{blueprintArn}/versions/", 201] }, () => CreateBlueprintVersionRequest$, () => CreateBlueprintVersionResponse$
|
|
1306
|
+
];
|
|
1307
|
+
var CreateDataAutomationLibrary$ = [9, n0, _CDAL,
|
|
1308
|
+
{ [_h]: ["PUT", "/data-automation-libraries/", 201] }, () => CreateDataAutomationLibraryRequest$, () => CreateDataAutomationLibraryResponse$
|
|
1309
|
+
];
|
|
1310
|
+
var CreateDataAutomationProject$ = [9, n0, _CDAP,
|
|
1311
|
+
{ [_h]: ["PUT", "/data-automation-projects/", 201] }, () => CreateDataAutomationProjectRequest$, () => CreateDataAutomationProjectResponse$
|
|
1312
|
+
];
|
|
1313
|
+
var DeleteBlueprint$ = [9, n0, _DB,
|
|
1314
|
+
{ [_h]: ["DELETE", "/blueprints/{blueprintArn}/", 200] }, () => DeleteBlueprintRequest$, () => DeleteBlueprintResponse$
|
|
1315
|
+
];
|
|
1316
|
+
var DeleteDataAutomationLibrary$ = [9, n0, _DDAL,
|
|
1317
|
+
{ [_h]: ["DELETE", "/data-automation-libraries/{libraryArn}/", 200] }, () => DeleteDataAutomationLibraryRequest$, () => DeleteDataAutomationLibraryResponse$
|
|
1318
|
+
];
|
|
1319
|
+
var DeleteDataAutomationProject$ = [9, n0, _DDAP,
|
|
1320
|
+
{ [_h]: ["DELETE", "/data-automation-projects/{projectArn}/", 200] }, () => DeleteDataAutomationProjectRequest$, () => DeleteDataAutomationProjectResponse$
|
|
1321
|
+
];
|
|
1322
|
+
var GetBlueprint$ = [9, n0, _GB,
|
|
1323
|
+
{ [_h]: ["POST", "/blueprints/{blueprintArn}/", 200] }, () => GetBlueprintRequest$, () => GetBlueprintResponse$
|
|
1324
|
+
];
|
|
1325
|
+
var GetBlueprintOptimizationStatus$ = [9, n0, _GBOS,
|
|
1326
|
+
{ [_h]: ["POST", "/getBlueprintOptimizationStatus/{invocationArn}", 200] }, () => GetBlueprintOptimizationStatusRequest$, () => GetBlueprintOptimizationStatusResponse$
|
|
1327
|
+
];
|
|
1328
|
+
var GetDataAutomationLibrary$ = [9, n0, _GDAL,
|
|
1329
|
+
{ [_h]: ["POST", "/data-automation-libraries/{libraryArn}/", 200] }, () => GetDataAutomationLibraryRequest$, () => GetDataAutomationLibraryResponse$
|
|
1330
|
+
];
|
|
1331
|
+
var GetDataAutomationLibraryEntity$ = [9, n0, _GDALE,
|
|
1332
|
+
{ [_h]: ["POST", "/data-automation-libraries/{libraryArn}/entityType/{entityType}/entities/{entityId}", 200] }, () => GetDataAutomationLibraryEntityRequest$, () => GetDataAutomationLibraryEntityResponse$
|
|
1333
|
+
];
|
|
1334
|
+
var GetDataAutomationLibraryIngestionJob$ = [9, n0, _GDALIJ,
|
|
1335
|
+
{ [_h]: ["POST", "/data-automation-libraries/{libraryArn}/library-ingestion-jobs/{jobArn}", 200] }, () => GetDataAutomationLibraryIngestionJobRequest$, () => GetDataAutomationLibraryIngestionJobResponse$
|
|
1336
|
+
];
|
|
1337
|
+
var GetDataAutomationProject$ = [9, n0, _GDAP,
|
|
1338
|
+
{ [_h]: ["POST", "/data-automation-projects/{projectArn}/", 200] }, () => GetDataAutomationProjectRequest$, () => GetDataAutomationProjectResponse$
|
|
1339
|
+
];
|
|
1340
|
+
var InvokeBlueprintOptimizationAsync$ = [9, n0, _IBOA,
|
|
1341
|
+
{ [_h]: ["POST", "/invokeBlueprintOptimizationAsync", 200] }, () => InvokeBlueprintOptimizationAsyncRequest$, () => InvokeBlueprintOptimizationAsyncResponse$
|
|
1342
|
+
];
|
|
1343
|
+
var InvokeDataAutomationLibraryIngestionJob$ = [9, n0, _IDALIJ,
|
|
1344
|
+
{ [_h]: ["PUT", "/data-automation-libraries/{libraryArn}/library-ingestion-jobs/", 201] }, () => InvokeDataAutomationLibraryIngestionJobRequest$, () => InvokeDataAutomationLibraryIngestionJobResponse$
|
|
1345
|
+
];
|
|
1346
|
+
var ListBlueprints$ = [9, n0, _LB,
|
|
1347
|
+
{ [_h]: ["POST", "/blueprints/", 200] }, () => ListBlueprintsRequest$, () => ListBlueprintsResponse$
|
|
1348
|
+
];
|
|
1349
|
+
var ListDataAutomationLibraries$ = [9, n0, _LDAL,
|
|
1350
|
+
{ [_h]: ["POST", "/data-automation-libraries/", 200] }, () => ListDataAutomationLibrariesRequest$, () => ListDataAutomationLibrariesResponse$
|
|
1351
|
+
];
|
|
1352
|
+
var ListDataAutomationLibraryEntities$ = [9, n0, _LDALE,
|
|
1353
|
+
{ [_h]: ["POST", "/data-automation-libraries/{libraryArn}/entityType/{entityType}/entities/", 200] }, () => ListDataAutomationLibraryEntitiesRequest$, () => ListDataAutomationLibraryEntitiesResponse$
|
|
1354
|
+
];
|
|
1355
|
+
var ListDataAutomationLibraryIngestionJobs$ = [9, n0, _LDALIJ,
|
|
1356
|
+
{ [_h]: ["POST", "/data-automation-libraries/{libraryArn}/library-ingestion-jobs/", 200] }, () => ListDataAutomationLibraryIngestionJobsRequest$, () => ListDataAutomationLibraryIngestionJobsResponse$
|
|
1357
|
+
];
|
|
1358
|
+
var ListDataAutomationProjects$ = [9, n0, _LDAP,
|
|
1359
|
+
{ [_h]: ["POST", "/data-automation-projects/", 200] }, () => ListDataAutomationProjectsRequest$, () => ListDataAutomationProjectsResponse$
|
|
1360
|
+
];
|
|
1361
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1362
|
+
{ [_h]: ["POST", "/listTagsForResource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1363
|
+
];
|
|
1364
|
+
var TagResource$ = [9, n0, _TR,
|
|
1365
|
+
{ [_h]: ["POST", "/tagResource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1366
|
+
];
|
|
1367
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1368
|
+
{ [_h]: ["POST", "/untagResource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1369
|
+
];
|
|
1370
|
+
var UpdateBlueprint$ = [9, n0, _UB,
|
|
1371
|
+
{ [_h]: ["PUT", "/blueprints/{blueprintArn}/", 200] }, () => UpdateBlueprintRequest$, () => UpdateBlueprintResponse$
|
|
1372
|
+
];
|
|
1373
|
+
var UpdateDataAutomationLibrary$ = [9, n0, _UDAL,
|
|
1374
|
+
{ [_h]: ["PUT", "/data-automation-libraries/{libraryArn}/", 200] }, () => UpdateDataAutomationLibraryRequest$, () => UpdateDataAutomationLibraryResponse$
|
|
1375
|
+
];
|
|
1376
|
+
var UpdateDataAutomationProject$ = [9, n0, _UDAP,
|
|
1377
|
+
{ [_h]: ["PUT", "/data-automation-projects/{projectArn}/", 200] }, () => UpdateDataAutomationProjectRequest$, () => UpdateDataAutomationProjectResponse$
|
|
1378
|
+
];
|
|
1379
|
+
|
|
1380
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1381
|
+
return {
|
|
1382
|
+
apiVersion: "2023-07-26",
|
|
1383
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1384
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1385
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1386
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1387
|
+
extensions: config?.extensions ?? [],
|
|
1388
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBedrockDataAutomationHttpAuthSchemeProvider,
|
|
1389
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1390
|
+
{
|
|
1391
|
+
schemeId: "aws.auth#sigv4",
|
|
1392
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1393
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1394
|
+
},
|
|
1395
|
+
],
|
|
1396
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1397
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1398
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1399
|
+
defaultNamespace: "com.amazonaws.bedrockdataautomation",
|
|
1400
|
+
errorTypeRegistries,
|
|
1401
|
+
version: "2023-07-26",
|
|
1402
|
+
serviceTarget: "AmazonBedrockKeystoneBuildTimeService",
|
|
1403
|
+
},
|
|
1404
|
+
serviceId: config?.serviceId ?? "Bedrock Data Automation",
|
|
1405
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1406
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1407
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1408
|
+
};
|
|
1409
|
+
};
|
|
1410
|
+
|
|
1411
|
+
const getRuntimeConfig = (config) => {
|
|
1412
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1413
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1414
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1415
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1416
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1417
|
+
const loaderConfig = {
|
|
1418
|
+
profile: config?.profile,
|
|
1419
|
+
logger: clientSharedValues.logger,
|
|
1420
|
+
signingName: "bedrock",
|
|
1421
|
+
};
|
|
1422
|
+
return {
|
|
1423
|
+
...clientSharedValues,
|
|
1424
|
+
...config,
|
|
1425
|
+
runtime: "node",
|
|
1426
|
+
defaultsMode,
|
|
1427
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1428
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1429
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1430
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1431
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1432
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1433
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1434
|
+
retryMode: config?.retryMode ??
|
|
1435
|
+
loadConfig({
|
|
1436
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1437
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1438
|
+
}, config),
|
|
1439
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1440
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1441
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1442
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1443
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1444
|
+
};
|
|
1445
|
+
};
|
|
1446
|
+
|
|
34
1447
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1448
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1449
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -663,64 +2076,237 @@ const DataAutomationProjectStageFilter = {
|
|
|
663
2076
|
LIVE: "LIVE",
|
|
664
2077
|
};
|
|
665
2078
|
|
|
2079
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2080
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2081
|
+
exports.AudioExtractionCategory$ = AudioExtractionCategory$;
|
|
666
2082
|
exports.AudioExtractionCategoryType = AudioExtractionCategoryType;
|
|
2083
|
+
exports.AudioExtractionCategoryTypeConfiguration$ = AudioExtractionCategoryTypeConfiguration$;
|
|
667
2084
|
exports.AudioGenerativeOutputLanguage = AudioGenerativeOutputLanguage;
|
|
2085
|
+
exports.AudioLanguageConfiguration$ = AudioLanguageConfiguration$;
|
|
2086
|
+
exports.AudioOverrideConfiguration$ = AudioOverrideConfiguration$;
|
|
2087
|
+
exports.AudioStandardExtraction$ = AudioStandardExtraction$;
|
|
2088
|
+
exports.AudioStandardGenerativeField$ = AudioStandardGenerativeField$;
|
|
668
2089
|
exports.AudioStandardGenerativeFieldType = AudioStandardGenerativeFieldType;
|
|
2090
|
+
exports.AudioStandardOutputConfiguration$ = AudioStandardOutputConfiguration$;
|
|
669
2091
|
exports.BedrockDataAutomation = BedrockDataAutomation;
|
|
670
2092
|
exports.BedrockDataAutomationClient = BedrockDataAutomationClient;
|
|
2093
|
+
exports.BedrockDataAutomationServiceException = BedrockDataAutomationServiceException;
|
|
2094
|
+
exports.BedrockDataAutomationServiceException$ = BedrockDataAutomationServiceException$;
|
|
2095
|
+
exports.Blueprint$ = Blueprint$;
|
|
2096
|
+
exports.BlueprintFilter$ = BlueprintFilter$;
|
|
2097
|
+
exports.BlueprintItem$ = BlueprintItem$;
|
|
671
2098
|
exports.BlueprintOptimizationJobStatus = BlueprintOptimizationJobStatus;
|
|
2099
|
+
exports.BlueprintOptimizationObject$ = BlueprintOptimizationObject$;
|
|
2100
|
+
exports.BlueprintOptimizationOutputConfiguration$ = BlueprintOptimizationOutputConfiguration$;
|
|
2101
|
+
exports.BlueprintOptimizationSample$ = BlueprintOptimizationSample$;
|
|
672
2102
|
exports.BlueprintStage = BlueprintStage;
|
|
673
2103
|
exports.BlueprintStageFilter = BlueprintStageFilter;
|
|
2104
|
+
exports.BlueprintSummary$ = BlueprintSummary$;
|
|
2105
|
+
exports.ChannelLabelingConfiguration$ = ChannelLabelingConfiguration$;
|
|
2106
|
+
exports.ConflictException = ConflictException;
|
|
2107
|
+
exports.ConflictException$ = ConflictException$;
|
|
2108
|
+
exports.CopyBlueprintStage$ = CopyBlueprintStage$;
|
|
674
2109
|
exports.CopyBlueprintStageCommand = CopyBlueprintStageCommand;
|
|
2110
|
+
exports.CopyBlueprintStageRequest$ = CopyBlueprintStageRequest$;
|
|
2111
|
+
exports.CopyBlueprintStageResponse$ = CopyBlueprintStageResponse$;
|
|
2112
|
+
exports.CreateBlueprint$ = CreateBlueprint$;
|
|
675
2113
|
exports.CreateBlueprintCommand = CreateBlueprintCommand;
|
|
2114
|
+
exports.CreateBlueprintRequest$ = CreateBlueprintRequest$;
|
|
2115
|
+
exports.CreateBlueprintResponse$ = CreateBlueprintResponse$;
|
|
2116
|
+
exports.CreateBlueprintVersion$ = CreateBlueprintVersion$;
|
|
676
2117
|
exports.CreateBlueprintVersionCommand = CreateBlueprintVersionCommand;
|
|
2118
|
+
exports.CreateBlueprintVersionRequest$ = CreateBlueprintVersionRequest$;
|
|
2119
|
+
exports.CreateBlueprintVersionResponse$ = CreateBlueprintVersionResponse$;
|
|
2120
|
+
exports.CreateDataAutomationLibrary$ = CreateDataAutomationLibrary$;
|
|
677
2121
|
exports.CreateDataAutomationLibraryCommand = CreateDataAutomationLibraryCommand;
|
|
2122
|
+
exports.CreateDataAutomationLibraryRequest$ = CreateDataAutomationLibraryRequest$;
|
|
2123
|
+
exports.CreateDataAutomationLibraryResponse$ = CreateDataAutomationLibraryResponse$;
|
|
2124
|
+
exports.CreateDataAutomationProject$ = CreateDataAutomationProject$;
|
|
678
2125
|
exports.CreateDataAutomationProjectCommand = CreateDataAutomationProjectCommand;
|
|
2126
|
+
exports.CreateDataAutomationProjectRequest$ = CreateDataAutomationProjectRequest$;
|
|
2127
|
+
exports.CreateDataAutomationProjectResponse$ = CreateDataAutomationProjectResponse$;
|
|
2128
|
+
exports.CustomOutputConfiguration$ = CustomOutputConfiguration$;
|
|
2129
|
+
exports.DataAutomationLibrary$ = DataAutomationLibrary$;
|
|
2130
|
+
exports.DataAutomationLibraryConfiguration$ = DataAutomationLibraryConfiguration$;
|
|
2131
|
+
exports.DataAutomationLibraryEntitySummary$ = DataAutomationLibraryEntitySummary$;
|
|
2132
|
+
exports.DataAutomationLibraryFilter$ = DataAutomationLibraryFilter$;
|
|
2133
|
+
exports.DataAutomationLibraryIngestionJob$ = DataAutomationLibraryIngestionJob$;
|
|
2134
|
+
exports.DataAutomationLibraryIngestionJobSummary$ = DataAutomationLibraryIngestionJobSummary$;
|
|
2135
|
+
exports.DataAutomationLibraryItem$ = DataAutomationLibraryItem$;
|
|
679
2136
|
exports.DataAutomationLibraryStatus = DataAutomationLibraryStatus;
|
|
2137
|
+
exports.DataAutomationLibrarySummary$ = DataAutomationLibrarySummary$;
|
|
2138
|
+
exports.DataAutomationProject$ = DataAutomationProject$;
|
|
2139
|
+
exports.DataAutomationProjectFilter$ = DataAutomationProjectFilter$;
|
|
680
2140
|
exports.DataAutomationProjectStage = DataAutomationProjectStage;
|
|
681
2141
|
exports.DataAutomationProjectStageFilter = DataAutomationProjectStageFilter;
|
|
682
2142
|
exports.DataAutomationProjectStatus = DataAutomationProjectStatus;
|
|
2143
|
+
exports.DataAutomationProjectSummary$ = DataAutomationProjectSummary$;
|
|
683
2144
|
exports.DataAutomationProjectType = DataAutomationProjectType;
|
|
2145
|
+
exports.DeleteBlueprint$ = DeleteBlueprint$;
|
|
684
2146
|
exports.DeleteBlueprintCommand = DeleteBlueprintCommand;
|
|
2147
|
+
exports.DeleteBlueprintRequest$ = DeleteBlueprintRequest$;
|
|
2148
|
+
exports.DeleteBlueprintResponse$ = DeleteBlueprintResponse$;
|
|
2149
|
+
exports.DeleteDataAutomationLibrary$ = DeleteDataAutomationLibrary$;
|
|
685
2150
|
exports.DeleteDataAutomationLibraryCommand = DeleteDataAutomationLibraryCommand;
|
|
2151
|
+
exports.DeleteDataAutomationLibraryRequest$ = DeleteDataAutomationLibraryRequest$;
|
|
2152
|
+
exports.DeleteDataAutomationLibraryResponse$ = DeleteDataAutomationLibraryResponse$;
|
|
2153
|
+
exports.DeleteDataAutomationProject$ = DeleteDataAutomationProject$;
|
|
686
2154
|
exports.DeleteDataAutomationProjectCommand = DeleteDataAutomationProjectCommand;
|
|
2155
|
+
exports.DeleteDataAutomationProjectRequest$ = DeleteDataAutomationProjectRequest$;
|
|
2156
|
+
exports.DeleteDataAutomationProjectResponse$ = DeleteDataAutomationProjectResponse$;
|
|
2157
|
+
exports.DeleteEntitiesInfo$ = DeleteEntitiesInfo$;
|
|
687
2158
|
exports.DesiredModality = DesiredModality;
|
|
2159
|
+
exports.DocumentBoundingBox$ = DocumentBoundingBox$;
|
|
2160
|
+
exports.DocumentCustomOutputConfiguration$ = DocumentCustomOutputConfiguration$;
|
|
2161
|
+
exports.DocumentExtractionGranularity$ = DocumentExtractionGranularity$;
|
|
688
2162
|
exports.DocumentExtractionGranularityType = DocumentExtractionGranularityType;
|
|
2163
|
+
exports.DocumentOutputAdditionalFileFormat$ = DocumentOutputAdditionalFileFormat$;
|
|
2164
|
+
exports.DocumentOutputFormat$ = DocumentOutputFormat$;
|
|
2165
|
+
exports.DocumentOutputTextFormat$ = DocumentOutputTextFormat$;
|
|
689
2166
|
exports.DocumentOutputTextFormatType = DocumentOutputTextFormatType;
|
|
2167
|
+
exports.DocumentOverrideConfiguration$ = DocumentOverrideConfiguration$;
|
|
2168
|
+
exports.DocumentStandardExtraction$ = DocumentStandardExtraction$;
|
|
2169
|
+
exports.DocumentStandardGenerativeField$ = DocumentStandardGenerativeField$;
|
|
2170
|
+
exports.DocumentStandardOutputConfiguration$ = DocumentStandardOutputConfiguration$;
|
|
2171
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
2172
|
+
exports.EntityDetails$ = EntityDetails$;
|
|
690
2173
|
exports.EntityType = EntityType;
|
|
2174
|
+
exports.EntityTypeInfo$ = EntityTypeInfo$;
|
|
2175
|
+
exports.EventBridgeConfiguration$ = EventBridgeConfiguration$;
|
|
2176
|
+
exports.GetBlueprint$ = GetBlueprint$;
|
|
691
2177
|
exports.GetBlueprintCommand = GetBlueprintCommand;
|
|
2178
|
+
exports.GetBlueprintOptimizationStatus$ = GetBlueprintOptimizationStatus$;
|
|
692
2179
|
exports.GetBlueprintOptimizationStatusCommand = GetBlueprintOptimizationStatusCommand;
|
|
2180
|
+
exports.GetBlueprintOptimizationStatusRequest$ = GetBlueprintOptimizationStatusRequest$;
|
|
2181
|
+
exports.GetBlueprintOptimizationStatusResponse$ = GetBlueprintOptimizationStatusResponse$;
|
|
2182
|
+
exports.GetBlueprintRequest$ = GetBlueprintRequest$;
|
|
2183
|
+
exports.GetBlueprintResponse$ = GetBlueprintResponse$;
|
|
2184
|
+
exports.GetDataAutomationLibrary$ = GetDataAutomationLibrary$;
|
|
693
2185
|
exports.GetDataAutomationLibraryCommand = GetDataAutomationLibraryCommand;
|
|
2186
|
+
exports.GetDataAutomationLibraryEntity$ = GetDataAutomationLibraryEntity$;
|
|
694
2187
|
exports.GetDataAutomationLibraryEntityCommand = GetDataAutomationLibraryEntityCommand;
|
|
2188
|
+
exports.GetDataAutomationLibraryEntityRequest$ = GetDataAutomationLibraryEntityRequest$;
|
|
2189
|
+
exports.GetDataAutomationLibraryEntityResponse$ = GetDataAutomationLibraryEntityResponse$;
|
|
2190
|
+
exports.GetDataAutomationLibraryIngestionJob$ = GetDataAutomationLibraryIngestionJob$;
|
|
695
2191
|
exports.GetDataAutomationLibraryIngestionJobCommand = GetDataAutomationLibraryIngestionJobCommand;
|
|
2192
|
+
exports.GetDataAutomationLibraryIngestionJobRequest$ = GetDataAutomationLibraryIngestionJobRequest$;
|
|
2193
|
+
exports.GetDataAutomationLibraryIngestionJobResponse$ = GetDataAutomationLibraryIngestionJobResponse$;
|
|
2194
|
+
exports.GetDataAutomationLibraryRequest$ = GetDataAutomationLibraryRequest$;
|
|
2195
|
+
exports.GetDataAutomationLibraryResponse$ = GetDataAutomationLibraryResponse$;
|
|
2196
|
+
exports.GetDataAutomationProject$ = GetDataAutomationProject$;
|
|
696
2197
|
exports.GetDataAutomationProjectCommand = GetDataAutomationProjectCommand;
|
|
2198
|
+
exports.GetDataAutomationProjectRequest$ = GetDataAutomationProjectRequest$;
|
|
2199
|
+
exports.GetDataAutomationProjectResponse$ = GetDataAutomationProjectResponse$;
|
|
2200
|
+
exports.ImageBoundingBox$ = ImageBoundingBox$;
|
|
2201
|
+
exports.ImageExtractionCategory$ = ImageExtractionCategory$;
|
|
697
2202
|
exports.ImageExtractionCategoryType = ImageExtractionCategoryType;
|
|
2203
|
+
exports.ImageOverrideConfiguration$ = ImageOverrideConfiguration$;
|
|
2204
|
+
exports.ImageStandardExtraction$ = ImageStandardExtraction$;
|
|
2205
|
+
exports.ImageStandardGenerativeField$ = ImageStandardGenerativeField$;
|
|
698
2206
|
exports.ImageStandardGenerativeFieldType = ImageStandardGenerativeFieldType;
|
|
2207
|
+
exports.ImageStandardOutputConfiguration$ = ImageStandardOutputConfiguration$;
|
|
2208
|
+
exports.InlinePayload$ = InlinePayload$;
|
|
2209
|
+
exports.InputConfiguration$ = InputConfiguration$;
|
|
2210
|
+
exports.InternalServerException = InternalServerException;
|
|
2211
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2212
|
+
exports.InvokeBlueprintOptimizationAsync$ = InvokeBlueprintOptimizationAsync$;
|
|
699
2213
|
exports.InvokeBlueprintOptimizationAsyncCommand = InvokeBlueprintOptimizationAsyncCommand;
|
|
2214
|
+
exports.InvokeBlueprintOptimizationAsyncRequest$ = InvokeBlueprintOptimizationAsyncRequest$;
|
|
2215
|
+
exports.InvokeBlueprintOptimizationAsyncResponse$ = InvokeBlueprintOptimizationAsyncResponse$;
|
|
2216
|
+
exports.InvokeDataAutomationLibraryIngestionJob$ = InvokeDataAutomationLibraryIngestionJob$;
|
|
700
2217
|
exports.InvokeDataAutomationLibraryIngestionJobCommand = InvokeDataAutomationLibraryIngestionJobCommand;
|
|
2218
|
+
exports.InvokeDataAutomationLibraryIngestionJobRequest$ = InvokeDataAutomationLibraryIngestionJobRequest$;
|
|
2219
|
+
exports.InvokeDataAutomationLibraryIngestionJobResponse$ = InvokeDataAutomationLibraryIngestionJobResponse$;
|
|
701
2220
|
exports.Language = Language;
|
|
702
2221
|
exports.LibraryIngestionJobOperationType = LibraryIngestionJobOperationType;
|
|
703
2222
|
exports.LibraryIngestionJobStatus = LibraryIngestionJobStatus;
|
|
2223
|
+
exports.ListBlueprints$ = ListBlueprints$;
|
|
704
2224
|
exports.ListBlueprintsCommand = ListBlueprintsCommand;
|
|
2225
|
+
exports.ListBlueprintsRequest$ = ListBlueprintsRequest$;
|
|
2226
|
+
exports.ListBlueprintsResponse$ = ListBlueprintsResponse$;
|
|
2227
|
+
exports.ListDataAutomationLibraries$ = ListDataAutomationLibraries$;
|
|
705
2228
|
exports.ListDataAutomationLibrariesCommand = ListDataAutomationLibrariesCommand;
|
|
2229
|
+
exports.ListDataAutomationLibrariesRequest$ = ListDataAutomationLibrariesRequest$;
|
|
2230
|
+
exports.ListDataAutomationLibrariesResponse$ = ListDataAutomationLibrariesResponse$;
|
|
2231
|
+
exports.ListDataAutomationLibraryEntities$ = ListDataAutomationLibraryEntities$;
|
|
706
2232
|
exports.ListDataAutomationLibraryEntitiesCommand = ListDataAutomationLibraryEntitiesCommand;
|
|
2233
|
+
exports.ListDataAutomationLibraryEntitiesRequest$ = ListDataAutomationLibraryEntitiesRequest$;
|
|
2234
|
+
exports.ListDataAutomationLibraryEntitiesResponse$ = ListDataAutomationLibraryEntitiesResponse$;
|
|
2235
|
+
exports.ListDataAutomationLibraryIngestionJobs$ = ListDataAutomationLibraryIngestionJobs$;
|
|
707
2236
|
exports.ListDataAutomationLibraryIngestionJobsCommand = ListDataAutomationLibraryIngestionJobsCommand;
|
|
2237
|
+
exports.ListDataAutomationLibraryIngestionJobsRequest$ = ListDataAutomationLibraryIngestionJobsRequest$;
|
|
2238
|
+
exports.ListDataAutomationLibraryIngestionJobsResponse$ = ListDataAutomationLibraryIngestionJobsResponse$;
|
|
2239
|
+
exports.ListDataAutomationProjects$ = ListDataAutomationProjects$;
|
|
708
2240
|
exports.ListDataAutomationProjectsCommand = ListDataAutomationProjectsCommand;
|
|
2241
|
+
exports.ListDataAutomationProjectsRequest$ = ListDataAutomationProjectsRequest$;
|
|
2242
|
+
exports.ListDataAutomationProjectsResponse$ = ListDataAutomationProjectsResponse$;
|
|
2243
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
709
2244
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2245
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2246
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2247
|
+
exports.ModalityProcessingConfiguration$ = ModalityProcessingConfiguration$;
|
|
2248
|
+
exports.ModalityRoutingConfiguration$ = ModalityRoutingConfiguration$;
|
|
2249
|
+
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
2250
|
+
exports.OutputConfiguration$ = OutputConfiguration$;
|
|
2251
|
+
exports.OverrideConfiguration$ = OverrideConfiguration$;
|
|
2252
|
+
exports.PIIEntitiesConfiguration$ = PIIEntitiesConfiguration$;
|
|
710
2253
|
exports.PIIEntityType = PIIEntityType;
|
|
711
2254
|
exports.PIIRedactionMaskMode = PIIRedactionMaskMode;
|
|
2255
|
+
exports.Phrase$ = Phrase$;
|
|
2256
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2257
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
712
2258
|
exports.ResourceOwner = ResourceOwner;
|
|
2259
|
+
exports.S3Object$ = S3Object$;
|
|
2260
|
+
exports.SensitiveDataConfiguration$ = SensitiveDataConfiguration$;
|
|
713
2261
|
exports.SensitiveDataDetectionMode = SensitiveDataDetectionMode;
|
|
714
2262
|
exports.SensitiveDataDetectionScopeType = SensitiveDataDetectionScopeType;
|
|
2263
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2264
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2265
|
+
exports.SpeakerLabelingConfiguration$ = SpeakerLabelingConfiguration$;
|
|
2266
|
+
exports.SplitterConfiguration$ = SplitterConfiguration$;
|
|
2267
|
+
exports.StandardOutputConfiguration$ = StandardOutputConfiguration$;
|
|
715
2268
|
exports.State = State;
|
|
2269
|
+
exports.Tag$ = Tag$;
|
|
2270
|
+
exports.TagResource$ = TagResource$;
|
|
716
2271
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2272
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2273
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2274
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2275
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2276
|
+
exports.TranscriptConfiguration$ = TranscriptConfiguration$;
|
|
717
2277
|
exports.Type = Type;
|
|
2278
|
+
exports.UntagResource$ = UntagResource$;
|
|
718
2279
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2280
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2281
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2282
|
+
exports.UpdateBlueprint$ = UpdateBlueprint$;
|
|
719
2283
|
exports.UpdateBlueprintCommand = UpdateBlueprintCommand;
|
|
2284
|
+
exports.UpdateBlueprintRequest$ = UpdateBlueprintRequest$;
|
|
2285
|
+
exports.UpdateBlueprintResponse$ = UpdateBlueprintResponse$;
|
|
2286
|
+
exports.UpdateDataAutomationLibrary$ = UpdateDataAutomationLibrary$;
|
|
720
2287
|
exports.UpdateDataAutomationLibraryCommand = UpdateDataAutomationLibraryCommand;
|
|
2288
|
+
exports.UpdateDataAutomationLibraryRequest$ = UpdateDataAutomationLibraryRequest$;
|
|
2289
|
+
exports.UpdateDataAutomationLibraryResponse$ = UpdateDataAutomationLibraryResponse$;
|
|
2290
|
+
exports.UpdateDataAutomationProject$ = UpdateDataAutomationProject$;
|
|
721
2291
|
exports.UpdateDataAutomationProjectCommand = UpdateDataAutomationProjectCommand;
|
|
2292
|
+
exports.UpdateDataAutomationProjectRequest$ = UpdateDataAutomationProjectRequest$;
|
|
2293
|
+
exports.UpdateDataAutomationProjectResponse$ = UpdateDataAutomationProjectResponse$;
|
|
2294
|
+
exports.UpsertEntityInfo$ = UpsertEntityInfo$;
|
|
2295
|
+
exports.ValidationException = ValidationException;
|
|
2296
|
+
exports.ValidationException$ = ValidationException$;
|
|
2297
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2298
|
+
exports.VideoBoundingBox$ = VideoBoundingBox$;
|
|
2299
|
+
exports.VideoExtractionCategory$ = VideoExtractionCategory$;
|
|
722
2300
|
exports.VideoExtractionCategoryType = VideoExtractionCategoryType;
|
|
2301
|
+
exports.VideoOverrideConfiguration$ = VideoOverrideConfiguration$;
|
|
2302
|
+
exports.VideoStandardExtraction$ = VideoStandardExtraction$;
|
|
2303
|
+
exports.VideoStandardGenerativeField$ = VideoStandardGenerativeField$;
|
|
723
2304
|
exports.VideoStandardGenerativeFieldType = VideoStandardGenerativeFieldType;
|
|
2305
|
+
exports.VideoStandardOutputConfiguration$ = VideoStandardOutputConfiguration$;
|
|
2306
|
+
exports.VocabularyEntity$ = VocabularyEntity$;
|
|
2307
|
+
exports.VocabularyEntityInfo$ = VocabularyEntityInfo$;
|
|
2308
|
+
exports.VocabularyEntitySummary$ = VocabularyEntitySummary$;
|
|
2309
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
724
2310
|
exports.paginateListBlueprints = paginateListBlueprints;
|
|
725
2311
|
exports.paginateListDataAutomationLibraries = paginateListDataAutomationLibraries;
|
|
726
2312
|
exports.paginateListDataAutomationLibraryEntities = paginateListDataAutomationLibraryEntities;
|