@aws-sdk/client-databrew 3.1075.0 → 3.1077.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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
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, getOmitRetryHeadersPlugin, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultDataBrewHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { BatchDeleteRecipeVersion$, CreateDataset$, CreateProfileJob$, CreateProject$, CreateRecipe$, CreateRecipeJob$, CreateRuleset$, CreateSchedule$, DeleteDataset$, DeleteJob$, DeleteProject$, DeleteRecipeVersion$, DeleteRuleset$, DeleteSchedule$, DescribeDataset$, DescribeJob$, DescribeJobRun$, DescribeProject$, DescribeRecipe$, DescribeRuleset$, DescribeSchedule$, ListDatasets$, ListJobRuns$, ListJobs$, ListProjects$, ListRecipes$, ListRecipeVersions$, ListRulesets$, ListSchedules$, ListTagsForResource$, PublishRecipe$, SendProjectSessionAction$, StartJobRun$, StartProjectSession$, StopJobRun$, TagResource$, UntagResource$, UpdateDataset$, UpdateProfileJob$, UpdateProject$, UpdateRecipe$, UpdateRecipeJob$, UpdateRuleset$, UpdateSchedule$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { DataBrewServiceException } = require("./models/DataBrewServiceException");
18
- exports.DataBrewServiceException = DataBrewServiceException;
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, getOmitRetryHeadersPlugin, 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, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultDataBrewHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "databrew",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultDataBrewHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1498 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const l = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [l]: "Endpoint" }, h = { [l]: d }, i = { [l]: "Region" }, j = {}, k = [i];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, k],
81
+ ["aws.partition", k, d],
82
+ [e, [{ [l]: "UseFIPS" }, b]],
83
+ [e, [{ [l]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
86
+ ["stringEquals", [i, "us-gov-west-1"]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [g, j],
93
+ ["https://databrew-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", j],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://databrew.us-gov-west-1.amazonaws.com", j],
96
+ ["https://databrew-fips.{Region}.{PartitionResult#dnsSuffix}", j],
97
+ [a, "FIPS is enabled but this partition does not support FIPS"],
98
+ ["https://databrew.{Region}.{PartitionResult#dualStackDnsSuffix}", j],
99
+ [a, "DualStack is enabled but this partition does not support DualStack"],
100
+ ["https://databrew.{Region}.{PartitionResult#dnsSuffix}", j],
101
+ [a, "Invalid Configuration: Missing Region"]
102
+ ]
103
+ };
104
+ const root = 2;
105
+ const r = 100_000_000;
106
+ const nodes = new Int32Array([
107
+ -1, 1, -1,
108
+ 0, 13, 3,
109
+ 1, 4, r + 12,
110
+ 2, 5, r + 12,
111
+ 3, 8, 6,
112
+ 4, 7, r + 11,
113
+ 5, r + 9, r + 10,
114
+ 4, 11, 9,
115
+ 6, 10, r + 8,
116
+ 7, r + 6, r + 7,
117
+ 5, 12, r + 5,
118
+ 6, r + 4, r + 5,
119
+ 3, r + 1, 14,
120
+ 4, r + 2, r + 3,
121
+ ]);
122
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
123
+
124
+ const cache = new EndpointCache({
125
+ size: 50,
126
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
127
+ });
128
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
129
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
130
+ endpointParams: endpointParams,
131
+ logger: context.logger,
132
+ }));
133
+ };
134
+ customEndpointFunctions.aws = awsEndpointFunctions;
135
+
136
+ class DataBrewServiceException extends ServiceException {
137
+ constructor(options) {
138
+ super(options);
139
+ Object.setPrototypeOf(this, DataBrewServiceException.prototype);
140
+ }
141
+ }
142
+
143
+ class AccessDeniedException extends DataBrewServiceException {
144
+ name = "AccessDeniedException";
145
+ $fault = "client";
146
+ Message;
147
+ constructor(opts) {
148
+ super({
149
+ name: "AccessDeniedException",
150
+ $fault: "client",
151
+ ...opts,
152
+ });
153
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
154
+ this.Message = opts.Message;
155
+ }
156
+ }
157
+ class ConflictException extends DataBrewServiceException {
158
+ name = "ConflictException";
159
+ $fault = "client";
160
+ Message;
161
+ constructor(opts) {
162
+ super({
163
+ name: "ConflictException",
164
+ $fault: "client",
165
+ ...opts,
166
+ });
167
+ Object.setPrototypeOf(this, ConflictException.prototype);
168
+ this.Message = opts.Message;
169
+ }
170
+ }
171
+ class ResourceNotFoundException extends DataBrewServiceException {
172
+ name = "ResourceNotFoundException";
173
+ $fault = "client";
174
+ Message;
175
+ constructor(opts) {
176
+ super({
177
+ name: "ResourceNotFoundException",
178
+ $fault: "client",
179
+ ...opts,
180
+ });
181
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
182
+ this.Message = opts.Message;
183
+ }
184
+ }
185
+ class ValidationException extends DataBrewServiceException {
186
+ name = "ValidationException";
187
+ $fault = "client";
188
+ Message;
189
+ constructor(opts) {
190
+ super({
191
+ name: "ValidationException",
192
+ $fault: "client",
193
+ ...opts,
194
+ });
195
+ Object.setPrototypeOf(this, ValidationException.prototype);
196
+ this.Message = opts.Message;
197
+ }
198
+ }
199
+ class ServiceQuotaExceededException extends DataBrewServiceException {
200
+ name = "ServiceQuotaExceededException";
201
+ $fault = "client";
202
+ Message;
203
+ constructor(opts) {
204
+ super({
205
+ name: "ServiceQuotaExceededException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
210
+ this.Message = opts.Message;
211
+ }
212
+ }
213
+ class InternalServerException extends DataBrewServiceException {
214
+ name = "InternalServerException";
215
+ $fault = "server";
216
+ Message;
217
+ constructor(opts) {
218
+ super({
219
+ name: "InternalServerException",
220
+ $fault: "server",
221
+ ...opts,
222
+ });
223
+ Object.setPrototypeOf(this, InternalServerException.prototype);
224
+ this.Message = opts.Message;
225
+ }
226
+ }
227
+
228
+ const _A = "Attempt";
229
+ const _AC = "AssumeControl";
230
+ const _ADE = "AccessDeniedException";
231
+ const _AI = "AccountId";
232
+ const _AIc = "ActionId";
233
+ const _AS = "AllowedStatistics";
234
+ const _ASL = "AllowedStatisticList";
235
+ const _Ac = "Action";
236
+ const _An = "Analytics";
237
+ const _B = "Bucket";
238
+ const _BDRV = "BatchDeleteRecipeVersion";
239
+ const _BDRVR = "BatchDeleteRecipeVersionRequest";
240
+ const _BDRVRa = "BatchDeleteRecipeVersionResponse";
241
+ const _BO = "BucketOwner";
242
+ const _C = "Condition";
243
+ const _CB = "CreatedBy";
244
+ const _CC = "CreateColumn";
245
+ const _CD = "CreateDate";
246
+ const _CDR = "CreateDatasetRequest";
247
+ const _CDRr = "CreateDatasetResponse";
248
+ const _CDr = "CreateDataset";
249
+ const _CE = "ConflictException";
250
+ const _CEL = "ConditionExpressionList";
251
+ const _CEh = "CheckExpression";
252
+ const _CEo = "ConditionExpression";
253
+ const _CEon = "ConditionExpressions";
254
+ const _CEr = "CronExpression";
255
+ const _CF = "CompressionFormat";
256
+ const _CI = "CatalogId";
257
+ const _CO = "CsvOptions";
258
+ const _COO = "CsvOutputOptions";
259
+ const _COo = "CompletedOn";
260
+ const _CP = "CreateProject";
261
+ const _CPJ = "CreateProfileJob";
262
+ const _CPJR = "CreateProfileJobRequest";
263
+ const _CPJRr = "CreateProfileJobResponse";
264
+ const _CPR = "CreateProjectRequest";
265
+ const _CPRr = "CreateProjectResponse";
266
+ const _CR = "ColumnRange";
267
+ const _CRJ = "CreateRecipeJob";
268
+ const _CRJR = "CreateRecipeJobRequest";
269
+ const _CRJRr = "CreateRecipeJobResponse";
270
+ const _CRR = "CreateRecipeRequest";
271
+ const _CRRr = "CreateRecipeResponse";
272
+ const _CRRre = "CreateRulesetRequest";
273
+ const _CRRrea = "CreateRulesetResponse";
274
+ const _CRr = "CreateRecipe";
275
+ const _CRre = "CreateRuleset";
276
+ const _CS = "ColumnSelector";
277
+ const _CSC = "ColumnStatisticsConfiguration";
278
+ const _CSCL = "ColumnStatisticsConfigurationList";
279
+ const _CSCo = "ColumnStatisticsConfigurations";
280
+ const _CSI = "ClientSessionId";
281
+ const _CSL = "ColumnSelectorList";
282
+ const _CSR = "CreateScheduleRequest";
283
+ const _CSRr = "CreateScheduleResponse";
284
+ const _CSo = "ColumnSelectors";
285
+ const _CSr = "CreateSchedule";
286
+ const _Co = "Configuration";
287
+ const _Cs = "Csv";
288
+ const _D = "Description";
289
+ const _DCID = "DataCatalogInputDefinition";
290
+ const _DCO = "DataCatalogOutputs";
291
+ const _DCOL = "DataCatalogOutputList";
292
+ const _DCOa = "DataCatalogOutput";
293
+ const _DD = "DeleteDataset";
294
+ const _DDR = "DeleteDatasetRequest";
295
+ const _DDRe = "DeleteDatasetResponse";
296
+ const _DDRes = "DescribeDatasetRequest";
297
+ const _DDResc = "DescribeDatasetResponse";
298
+ const _DDe = "DescribeDataset";
299
+ const _DID = "DatabaseInputDefinition";
300
+ const _DJ = "DeleteJob";
301
+ const _DJR = "DeleteJobRequest";
302
+ const _DJRR = "DescribeJobRunRequest";
303
+ const _DJRRe = "DescribeJobRunResponse";
304
+ const _DJRe = "DeleteJobResponse";
305
+ const _DJRes = "DescribeJobRequest";
306
+ const _DJResc = "DescribeJobResponse";
307
+ const _DJRescr = "DescribeJobRun";
308
+ const _DJe = "DescribeJob";
309
+ const _DL = "DatasetList";
310
+ const _DN = "DatasetName";
311
+ const _DNa = "DatabaseName";
312
+ const _DO = "DatabaseOutputs";
313
+ const _DOL = "DatabaseOutputList";
314
+ const _DOM = "DatabaseOutputMode";
315
+ const _DOa = "DatabaseOutput";
316
+ const _DOat = "DatabaseOptions";
317
+ const _DOate = "DatetimeOptions";
318
+ const _DP = "DatasetParameter";
319
+ const _DPR = "DeleteProjectRequest";
320
+ const _DPRe = "DeleteProjectResponse";
321
+ const _DPRes = "DescribeProjectRequest";
322
+ const _DPResc = "DescribeProjectResponse";
323
+ const _DPe = "DeleteProject";
324
+ const _DPes = "DescribeProject";
325
+ const _DR = "DeleteRuleset";
326
+ const _DRR = "DeleteRulesetRequest";
327
+ const _DRRe = "DeleteRulesetResponse";
328
+ const _DRRes = "DescribeRecipeRequest";
329
+ const _DRResc = "DescribeRecipeResponse";
330
+ const _DRRescr = "DescribeRulesetRequest";
331
+ const _DRRescri = "DescribeRulesetResponse";
332
+ const _DRV = "DeleteRecipeVersion";
333
+ const _DRVR = "DeleteRecipeVersionRequest";
334
+ const _DRVRe = "DeleteRecipeVersionResponse";
335
+ const _DRe = "DescribeRecipe";
336
+ const _DRes = "DescribeRuleset";
337
+ const _DS = "DeleteSchedule";
338
+ const _DSC = "DatasetStatisticsConfiguration";
339
+ const _DSR = "DeleteScheduleRequest";
340
+ const _DSRe = "DeleteScheduleResponse";
341
+ const _DSRes = "DescribeScheduleRequest";
342
+ const _DSResc = "DescribeScheduleResponse";
343
+ const _DSe = "DescribeSchedule";
344
+ const _DTN = "DatabaseTableName";
345
+ const _DTOO = "DatabaseTableOutputOptions";
346
+ const _Da = "Dataset";
347
+ const _Dat = "Datasets";
348
+ const _De = "Delimiter";
349
+ const _Di = "Disabled";
350
+ const _E = "Errors";
351
+ const _EC = "ErrorCode";
352
+ const _EDC = "EntityDetectorConfiguration";
353
+ const _EKA = "EncryptionKeyArn";
354
+ const _EM = "EncryptionMode";
355
+ const _EMr = "ErrorMessage";
356
+ const _EO = "ExcelOptions";
357
+ const _ET = "ExecutionTime";
358
+ const _ETn = "EntityTypes";
359
+ const _Ex = "Expression";
360
+ const _Exc = "Excel";
361
+ const _F = "Format";
362
+ const _FE = "FilterExpression";
363
+ const _FL = "FilesLimit";
364
+ const _FO = "FormatOptions";
365
+ const _Fi = "Filter";
366
+ const _GCN = "GlueConnectionName";
367
+ const _HC = "HiddenColumns";
368
+ const _HR = "HeaderRow";
369
+ const _I = "Input";
370
+ const _IS = "IncludedStatistics";
371
+ const _ISE = "InternalServerException";
372
+ const _J = "Json";
373
+ const _JL = "JobList";
374
+ const _JN = "JobNames";
375
+ const _JNo = "JobName";
376
+ const _JO = "JsonOptions";
377
+ const _JR = "JobRun";
378
+ const _JRL = "JobRunList";
379
+ const _JRo = "JobRuns";
380
+ const _JS = "JobSample";
381
+ const _Jo = "Job";
382
+ const _Job = "Jobs";
383
+ const _K = "Key";
384
+ const _L = "Location";
385
+ const _LC = "LocaleCode";
386
+ const _LD = "ListDatasets";
387
+ const _LDR = "ListDatasetsRequest";
388
+ const _LDRi = "ListDatasetsResponse";
389
+ const _LGN = "LogGroupName";
390
+ const _LJ = "ListJobs";
391
+ const _LJR = "ListJobsRequest";
392
+ const _LJRR = "ListJobRunsRequest";
393
+ const _LJRRi = "ListJobRunsResponse";
394
+ const _LJRi = "ListJobsResponse";
395
+ const _LJRis = "ListJobRuns";
396
+ const _LMB = "LastModifiedBy";
397
+ const _LMD = "LastModifiedDate";
398
+ const _LMDC = "LastModifiedDateCondition";
399
+ const _LP = "ListProjects";
400
+ const _LPR = "ListProjectsRequest";
401
+ const _LPRi = "ListProjectsResponse";
402
+ const _LR = "ListRecipes";
403
+ const _LRR = "ListRecipesRequest";
404
+ const _LRRi = "ListRecipesResponse";
405
+ const _LRRis = "ListRulesetsRequest";
406
+ const _LRRist = "ListRulesetsResponse";
407
+ const _LRV = "ListRecipeVersions";
408
+ const _LRVR = "ListRecipeVersionsRequest";
409
+ const _LRVRi = "ListRecipeVersionsResponse";
410
+ const _LRi = "ListRulesets";
411
+ const _LS = "LogSubscription";
412
+ const _LSR = "ListSchedulesRequest";
413
+ const _LSRi = "ListSchedulesResponse";
414
+ const _LSi = "ListSchedules";
415
+ const _LTFR = "ListTagsForResource";
416
+ const _LTFRR = "ListTagsForResourceRequest";
417
+ const _LTFRRi = "ListTagsForResourceResponse";
418
+ const _M = "Message";
419
+ const _MC = "MaxCapacity";
420
+ const _MF = "MaxFiles";
421
+ const _ML = "MultiLine";
422
+ const _MOF = "MaxOutputFiles";
423
+ const _MR = "MaxRetries";
424
+ const _MRa = "MaxResults";
425
+ const _Me = "Metadata";
426
+ const _Mo = "Mode";
427
+ const _N = "Name";
428
+ const _NT = "NextToken";
429
+ const _O = "Outputs";
430
+ const _OB = "OpenedBy";
431
+ const _OBr = "OrderedBy";
432
+ const _OD = "OpenDate";
433
+ const _OFO = "OutputFormatOptions";
434
+ const _OL = "OutputLocation";
435
+ const _OLu = "OutputList";
436
+ const _Op = "Operation";
437
+ const _Or = "Order";
438
+ const _Ou = "Output";
439
+ const _Ov = "Overwrite";
440
+ const _Ove = "Overrides";
441
+ const _P = "Projects";
442
+ const _PB = "PublishedBy";
443
+ const _PC = "ProfileConfiguration";
444
+ const _PCa = "PartitionColumns";
445
+ const _PCr = "ProfileColumns";
446
+ const _PD = "PublishedDate";
447
+ const _PL = "ProjectList";
448
+ const _PN = "ProjectName";
449
+ const _PO = "PathOptions";
450
+ const _PPM = "PathParametersMap";
451
+ const _PR = "PublishRecipe";
452
+ const _PRR = "PublishRecipeRequest";
453
+ const _PRRu = "PublishRecipeResponse";
454
+ const _Pa = "Parameters";
455
+ const _Pr = "Project";
456
+ const _Pre = "Preview";
457
+ const _QS = "QueryString";
458
+ const _R = "Regex";
459
+ const _RA = "RoleArn";
460
+ const _RAe = "ResourceArn";
461
+ const _RAec = "RecipeAction";
462
+ const _RAu = "RulesetArn";
463
+ const _RC = "RuleCount";
464
+ const _REL = "RecipeErrorList";
465
+ const _RI = "RunId";
466
+ const _RIL = "RulesetItemList";
467
+ const _RIu = "RulesetItem";
468
+ const _RL = "RecipeList";
469
+ const _RLu = "RuleList";
470
+ const _RN = "RecipeName";
471
+ const _RNFE = "ResourceNotFoundException";
472
+ const _RR = "RecipeReference";
473
+ const _RRo = "RowRange";
474
+ const _RS = "RecipeStep";
475
+ const _RSL = "RecipeStepList";
476
+ const _RV = "RecipeVersions";
477
+ const _RVED = "RecipeVersionErrorDetail";
478
+ const _RVe = "RecipeVersion";
479
+ const _Re = "Recipes";
480
+ const _Rec = "Recipe";
481
+ const _Res = "Result";
482
+ const _Ru = "Rules";
483
+ const _Rul = "Rulesets";
484
+ const _Rule = "Rule";
485
+ const _S = "Statistics";
486
+ const _SA = "SourceArn";
487
+ const _SB = "StartedBy";
488
+ const _SC = "StatisticsConfiguration";
489
+ const _SCI = "StartColumnIndex";
490
+ const _SI = "SheetIndexes";
491
+ const _SID = "S3InputDefinition";
492
+ const _SIt = "StepIndex";
493
+ const _SJR = "StartJobRun";
494
+ const _SJRR = "StartJobRunRequest";
495
+ const _SJRRt = "StartJobRunResponse";
496
+ const _SJRRto = "StopJobRunRequest";
497
+ const _SJRRtop = "StopJobRunResponse";
498
+ const _SJRt = "StopJobRun";
499
+ const _SL = "S3Location";
500
+ const _SLc = "ScheduleList";
501
+ const _SM = "SubstitutionMap";
502
+ const _SN = "SheetNames";
503
+ const _SO = "S3Options";
504
+ const _SOL = "StatisticOverrideList";
505
+ const _SOt = "StartedOn";
506
+ const _SOta = "StatisticOverride";
507
+ const _SPS = "StartProjectSession";
508
+ const _SPSA = "SendProjectSessionAction";
509
+ const _SPSAR = "SendProjectSessionActionRequest";
510
+ const _SPSARe = "SendProjectSessionActionResponse";
511
+ const _SPSR = "StartProjectSessionRequest";
512
+ const _SPSRt = "StartProjectSessionResponse";
513
+ const _SQEE = "ServiceQuotaExceededException";
514
+ const _SRI = "StartRowIndex";
515
+ const _SS = "SessionStatus";
516
+ const _STOO = "S3TableOutputOptions";
517
+ const _Sa = "Sample";
518
+ const _Sc = "Schedules";
519
+ const _Sch = "Schedule";
520
+ const _Se = "Selectors";
521
+ const _Si = "Size";
522
+ const _So = "Source";
523
+ const _St = "Steps";
524
+ const _Sta = "State";
525
+ const _Stat = "Statistic";
526
+ const _T = "Tags";
527
+ const _TA = "TargetArn";
528
+ const _TC = "TargetColumn";
529
+ const _TD = "TempDirectory";
530
+ const _TK = "TagKeys";
531
+ const _TN = "TableName";
532
+ const _TO = "TimezoneOffset";
533
+ const _TR = "TagResource";
534
+ const _TRR = "TagResourceRequest";
535
+ const _TRRa = "TagResourceResponse";
536
+ const _Th = "Threshold";
537
+ const _Ti = "Timeout";
538
+ const _Ty = "Type";
539
+ const _U = "Unit";
540
+ const _UD = "UpdateDataset";
541
+ const _UDR = "UpdateDatasetRequest";
542
+ const _UDRp = "UpdateDatasetResponse";
543
+ const _UP = "UpdateProject";
544
+ const _UPJ = "UpdateProfileJob";
545
+ const _UPJR = "UpdateProfileJobRequest";
546
+ const _UPJRp = "UpdateProfileJobResponse";
547
+ const _UPR = "UpdateProjectRequest";
548
+ const _UPRp = "UpdateProjectResponse";
549
+ const _UR = "UntagResource";
550
+ const _URJ = "UpdateRecipeJob";
551
+ const _URJR = "UpdateRecipeJobRequest";
552
+ const _URJRp = "UpdateRecipeJobResponse";
553
+ const _URR = "UntagResourceRequest";
554
+ const _URRn = "UntagResourceResponse";
555
+ const _URRp = "UpdateRecipeRequest";
556
+ const _URRpd = "UpdateRecipeResponse";
557
+ const _URRpda = "UpdateRulesetRequest";
558
+ const _URRpdat = "UpdateRulesetResponse";
559
+ const _URp = "UpdateRecipe";
560
+ const _URpd = "UpdateRuleset";
561
+ const _US = "UpdateSchedule";
562
+ const _USR = "UpdateScheduleRequest";
563
+ const _USRp = "UpdateScheduleResponse";
564
+ const _V = "Value";
565
+ const _VC = "ValidationConfigurations";
566
+ const _VCL = "ValidationConfigurationList";
567
+ const _VCa = "ValidationConfiguration";
568
+ const _VE = "ValidationException";
569
+ const _VF = "ViewFrame";
570
+ const _VM = "ValuesMap";
571
+ const _VMa = "ValidationMode";
572
+ const _c = "client";
573
+ const _dN = "datasetName";
574
+ const _e = "error";
575
+ const _h = "http";
576
+ const _hE = "httpError";
577
+ const _hQ = "httpQuery";
578
+ const _jN = "jobName";
579
+ const _mR = "maxResults";
580
+ const _n = "name";
581
+ const _nT = "nextToken";
582
+ const _pN = "projectName";
583
+ const _rV = "recipeVersion";
584
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.databrew";
585
+ const _se = "server";
586
+ const _tA = "targetArn";
587
+ const _tK = "tagKeys";
588
+ const n0 = "com.amazonaws.databrew";
589
+ const _s_registry = TypeRegistry.for(_s);
590
+ var DataBrewServiceException$ = [-3, _s, "DataBrewServiceException", 0, [], []];
591
+ _s_registry.registerError(DataBrewServiceException$, DataBrewServiceException);
592
+ const n0_registry = TypeRegistry.for(n0);
593
+ var AccessDeniedException$ = [-3, n0, _ADE,
594
+ { [_e]: _c, [_hE]: 403 },
595
+ [_M],
596
+ [0]
597
+ ];
598
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
599
+ var ConflictException$ = [-3, n0, _CE,
600
+ { [_e]: _c, [_hE]: 409 },
601
+ [_M],
602
+ [0]
603
+ ];
604
+ n0_registry.registerError(ConflictException$, ConflictException);
605
+ var InternalServerException$ = [-3, n0, _ISE,
606
+ { [_e]: _se, [_hE]: 500 },
607
+ [_M],
608
+ [0]
609
+ ];
610
+ n0_registry.registerError(InternalServerException$, InternalServerException);
611
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
612
+ { [_e]: _c, [_hE]: 404 },
613
+ [_M],
614
+ [0]
615
+ ];
616
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
617
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
618
+ { [_e]: _c, [_hE]: 402 },
619
+ [_M],
620
+ [0]
621
+ ];
622
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
623
+ var ValidationException$ = [-3, n0, _VE,
624
+ { [_e]: _c, [_hE]: 400 },
625
+ [_M],
626
+ [0]
627
+ ];
628
+ n0_registry.registerError(ValidationException$, ValidationException);
629
+ const errorTypeRegistries = [
630
+ _s_registry,
631
+ n0_registry,
632
+ ];
633
+ var ClientSessionId = [0, n0, _CSI, 8, 0];
634
+ var AllowedStatistics$ = [3, n0, _AS,
635
+ 0,
636
+ [_S],
637
+ [64 | 0], 1
638
+ ];
639
+ var BatchDeleteRecipeVersionRequest$ = [3, n0, _BDRVR,
640
+ 0,
641
+ [_N, _RV],
642
+ [[0, 1], 64 | 0], 2
643
+ ];
644
+ var BatchDeleteRecipeVersionResponse$ = [3, n0, _BDRVRa,
645
+ 0,
646
+ [_N, _E],
647
+ [0, () => RecipeErrorList], 1
648
+ ];
649
+ var ColumnSelector$ = [3, n0, _CS,
650
+ 0,
651
+ [_R, _N],
652
+ [0, 0]
653
+ ];
654
+ var ColumnStatisticsConfiguration$ = [3, n0, _CSC,
655
+ 0,
656
+ [_S, _Se],
657
+ [() => StatisticsConfiguration$, () => ColumnSelectorList], 1
658
+ ];
659
+ var ConditionExpression$ = [3, n0, _CEo,
660
+ 0,
661
+ [_C, _TC, _V],
662
+ [0, 0, 0], 2
663
+ ];
664
+ var CreateDatasetRequest$ = [3, n0, _CDR,
665
+ 0,
666
+ [_N, _I, _F, _FO, _PO, _T],
667
+ [0, () => Input$, 0, () => FormatOptions$, () => PathOptions$, 128 | 0], 2
668
+ ];
669
+ var CreateDatasetResponse$ = [3, n0, _CDRr,
670
+ 0,
671
+ [_N],
672
+ [0], 1
673
+ ];
674
+ var CreateProfileJobRequest$ = [3, n0, _CPJR,
675
+ 0,
676
+ [_DN, _N, _OL, _RA, _EKA, _EM, _LS, _MC, _MR, _Co, _VC, _T, _Ti, _JS],
677
+ [0, 0, () => S3Location$, 0, 0, 0, 0, 1, 1, () => ProfileConfiguration$, () => ValidationConfigurationList, 128 | 0, 1, () => JobSample$], 4
678
+ ];
679
+ var CreateProfileJobResponse$ = [3, n0, _CPJRr,
680
+ 0,
681
+ [_N],
682
+ [0], 1
683
+ ];
684
+ var CreateProjectRequest$ = [3, n0, _CPR,
685
+ 0,
686
+ [_DN, _N, _RN, _RA, _Sa, _T],
687
+ [0, 0, 0, 0, () => Sample$, 128 | 0], 4
688
+ ];
689
+ var CreateProjectResponse$ = [3, n0, _CPRr,
690
+ 0,
691
+ [_N],
692
+ [0], 1
693
+ ];
694
+ var CreateRecipeJobRequest$ = [3, n0, _CRJR,
695
+ 0,
696
+ [_N, _RA, _DN, _EKA, _EM, _LS, _MC, _MR, _O, _DCO, _DO, _PN, _RR, _T, _Ti],
697
+ [0, 0, 0, 0, 0, 0, 1, 1, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, 0, () => RecipeReference$, 128 | 0, 1], 2
698
+ ];
699
+ var CreateRecipeJobResponse$ = [3, n0, _CRJRr,
700
+ 0,
701
+ [_N],
702
+ [0], 1
703
+ ];
704
+ var CreateRecipeRequest$ = [3, n0, _CRR,
705
+ 0,
706
+ [_N, _St, _D, _T],
707
+ [0, () => RecipeStepList, 0, 128 | 0], 2
708
+ ];
709
+ var CreateRecipeResponse$ = [3, n0, _CRRr,
710
+ 0,
711
+ [_N],
712
+ [0], 1
713
+ ];
714
+ var CreateRulesetRequest$ = [3, n0, _CRRre,
715
+ 0,
716
+ [_N, _TA, _Ru, _D, _T],
717
+ [0, 0, () => RuleList, 0, 128 | 0], 3
718
+ ];
719
+ var CreateRulesetResponse$ = [3, n0, _CRRrea,
720
+ 0,
721
+ [_N],
722
+ [0], 1
723
+ ];
724
+ var CreateScheduleRequest$ = [3, n0, _CSR,
725
+ 0,
726
+ [_CEr, _N, _JN, _T],
727
+ [0, 0, 64 | 0, 128 | 0], 2
728
+ ];
729
+ var CreateScheduleResponse$ = [3, n0, _CSRr,
730
+ 0,
731
+ [_N],
732
+ [0], 1
733
+ ];
734
+ var CsvOptions$ = [3, n0, _CO,
735
+ 0,
736
+ [_De, _HR],
737
+ [0, 2]
738
+ ];
739
+ var CsvOutputOptions$ = [3, n0, _COO,
740
+ 0,
741
+ [_De],
742
+ [0]
743
+ ];
744
+ var DatabaseInputDefinition$ = [3, n0, _DID,
745
+ 0,
746
+ [_GCN, _DTN, _TD, _QS],
747
+ [0, 0, () => S3Location$, 0], 1
748
+ ];
749
+ var DatabaseOutput$ = [3, n0, _DOa,
750
+ 0,
751
+ [_GCN, _DOat, _DOM],
752
+ [0, () => DatabaseTableOutputOptions$, 0], 2
753
+ ];
754
+ var DatabaseTableOutputOptions$ = [3, n0, _DTOO,
755
+ 0,
756
+ [_TN, _TD],
757
+ [0, () => S3Location$], 1
758
+ ];
759
+ var DataCatalogInputDefinition$ = [3, n0, _DCID,
760
+ 0,
761
+ [_DNa, _TN, _CI, _TD],
762
+ [0, 0, 0, () => S3Location$], 2
763
+ ];
764
+ var DataCatalogOutput$ = [3, n0, _DCOa,
765
+ 0,
766
+ [_DNa, _TN, _CI, _SO, _DOat, _Ov],
767
+ [0, 0, 0, () => S3TableOutputOptions$, () => DatabaseTableOutputOptions$, 2], 2
768
+ ];
769
+ var Dataset$ = [3, n0, _Da,
770
+ 0,
771
+ [_N, _I, _AI, _CB, _CD, _F, _FO, _LMD, _LMB, _So, _PO, _T, _RAe],
772
+ [0, () => Input$, 0, 0, 4, 0, () => FormatOptions$, 4, 0, 0, () => PathOptions$, 128 | 0, 0], 2
773
+ ];
774
+ var DatasetParameter$ = [3, n0, _DP,
775
+ 0,
776
+ [_N, _Ty, _DOate, _CC, _Fi],
777
+ [0, 0, () => DatetimeOptions$, 2, () => FilterExpression$], 2
778
+ ];
779
+ var DatetimeOptions$ = [3, n0, _DOate,
780
+ 0,
781
+ [_F, _TO, _LC],
782
+ [0, 0, 0], 1
783
+ ];
784
+ var DeleteDatasetRequest$ = [3, n0, _DDR,
785
+ 0,
786
+ [_N],
787
+ [[0, 1]], 1
788
+ ];
789
+ var DeleteDatasetResponse$ = [3, n0, _DDRe,
790
+ 0,
791
+ [_N],
792
+ [0], 1
793
+ ];
794
+ var DeleteJobRequest$ = [3, n0, _DJR,
795
+ 0,
796
+ [_N],
797
+ [[0, 1]], 1
798
+ ];
799
+ var DeleteJobResponse$ = [3, n0, _DJRe,
800
+ 0,
801
+ [_N],
802
+ [0], 1
803
+ ];
804
+ var DeleteProjectRequest$ = [3, n0, _DPR,
805
+ 0,
806
+ [_N],
807
+ [[0, 1]], 1
808
+ ];
809
+ var DeleteProjectResponse$ = [3, n0, _DPRe,
810
+ 0,
811
+ [_N],
812
+ [0], 1
813
+ ];
814
+ var DeleteRecipeVersionRequest$ = [3, n0, _DRVR,
815
+ 0,
816
+ [_N, _RVe],
817
+ [[0, 1], [0, 1]], 2
818
+ ];
819
+ var DeleteRecipeVersionResponse$ = [3, n0, _DRVRe,
820
+ 0,
821
+ [_N, _RVe],
822
+ [0, 0], 2
823
+ ];
824
+ var DeleteRulesetRequest$ = [3, n0, _DRR,
825
+ 0,
826
+ [_N],
827
+ [[0, 1]], 1
828
+ ];
829
+ var DeleteRulesetResponse$ = [3, n0, _DRRe,
830
+ 0,
831
+ [_N],
832
+ [0], 1
833
+ ];
834
+ var DeleteScheduleRequest$ = [3, n0, _DSR,
835
+ 0,
836
+ [_N],
837
+ [[0, 1]], 1
838
+ ];
839
+ var DeleteScheduleResponse$ = [3, n0, _DSRe,
840
+ 0,
841
+ [_N],
842
+ [0], 1
843
+ ];
844
+ var DescribeDatasetRequest$ = [3, n0, _DDRes,
845
+ 0,
846
+ [_N],
847
+ [[0, 1]], 1
848
+ ];
849
+ var DescribeDatasetResponse$ = [3, n0, _DDResc,
850
+ 0,
851
+ [_N, _I, _CB, _CD, _F, _FO, _LMD, _LMB, _So, _PO, _T, _RAe],
852
+ [0, () => Input$, 0, 4, 0, () => FormatOptions$, 4, 0, 0, () => PathOptions$, 128 | 0, 0], 2
853
+ ];
854
+ var DescribeJobRequest$ = [3, n0, _DJRes,
855
+ 0,
856
+ [_N],
857
+ [[0, 1]], 1
858
+ ];
859
+ var DescribeJobResponse$ = [3, n0, _DJResc,
860
+ 0,
861
+ [_N, _CD, _CB, _DN, _EKA, _EM, _Ty, _LMB, _LMD, _LS, _MC, _MR, _O, _DCO, _DO, _PN, _PC, _VC, _RR, _RAe, _RA, _T, _Ti, _JS],
862
+ [0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, 0, () => ProfileConfiguration$, () => ValidationConfigurationList, () => RecipeReference$, 0, 0, 128 | 0, 1, () => JobSample$], 1
863
+ ];
864
+ var DescribeJobRunRequest$ = [3, n0, _DJRR,
865
+ 0,
866
+ [_N, _RI],
867
+ [[0, 1], [0, 1]], 2
868
+ ];
869
+ var DescribeJobRunResponse$ = [3, n0, _DJRRe,
870
+ 0,
871
+ [_JNo, _A, _COo, _DN, _EMr, _ET, _PC, _VC, _RI, _Sta, _LS, _LGN, _O, _DCO, _DO, _RR, _SB, _SOt, _JS],
872
+ [0, 1, 4, 0, 0, 1, () => ProfileConfiguration$, () => ValidationConfigurationList, 0, 0, 0, 0, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, () => RecipeReference$, 0, 4, () => JobSample$], 1
873
+ ];
874
+ var DescribeProjectRequest$ = [3, n0, _DPRes,
875
+ 0,
876
+ [_N],
877
+ [[0, 1]], 1
878
+ ];
879
+ var DescribeProjectResponse$ = [3, n0, _DPResc,
880
+ 0,
881
+ [_N, _CD, _CB, _DN, _LMD, _LMB, _RN, _RAe, _Sa, _RA, _T, _SS, _OB, _OD],
882
+ [0, 4, 0, 0, 4, 0, 0, 0, () => Sample$, 0, 128 | 0, 0, 0, 4], 1
883
+ ];
884
+ var DescribeRecipeRequest$ = [3, n0, _DRRes,
885
+ 0,
886
+ [_N, _RVe],
887
+ [[0, 1], [0, { [_hQ]: _rV }]], 1
888
+ ];
889
+ var DescribeRecipeResponse$ = [3, n0, _DRResc,
890
+ 0,
891
+ [_N, _CB, _CD, _LMB, _LMD, _PN, _PB, _PD, _D, _St, _T, _RAe, _RVe],
892
+ [0, 0, 4, 0, 4, 0, 0, 4, 0, () => RecipeStepList, 128 | 0, 0, 0], 1
893
+ ];
894
+ var DescribeRulesetRequest$ = [3, n0, _DRRescr,
895
+ 0,
896
+ [_N],
897
+ [[0, 1]], 1
898
+ ];
899
+ var DescribeRulesetResponse$ = [3, n0, _DRRescri,
900
+ 0,
901
+ [_N, _D, _TA, _Ru, _CD, _CB, _LMB, _LMD, _RAe, _T],
902
+ [0, 0, 0, () => RuleList, 4, 0, 0, 4, 0, 128 | 0], 1
903
+ ];
904
+ var DescribeScheduleRequest$ = [3, n0, _DSRes,
905
+ 0,
906
+ [_N],
907
+ [[0, 1]], 1
908
+ ];
909
+ var DescribeScheduleResponse$ = [3, n0, _DSResc,
910
+ 0,
911
+ [_N, _CD, _CB, _JN, _LMB, _LMD, _RAe, _CEr, _T],
912
+ [0, 4, 0, 64 | 0, 0, 4, 0, 0, 128 | 0], 1
913
+ ];
914
+ var EntityDetectorConfiguration$ = [3, n0, _EDC,
915
+ 0,
916
+ [_ETn, _AS],
917
+ [64 | 0, () => AllowedStatisticList], 1
918
+ ];
919
+ var ExcelOptions$ = [3, n0, _EO,
920
+ 0,
921
+ [_SN, _SI, _HR],
922
+ [64 | 0, 64 | 1, 2]
923
+ ];
924
+ var FilesLimit$ = [3, n0, _FL,
925
+ 0,
926
+ [_MF, _OBr, _Or],
927
+ [1, 0, 0], 1
928
+ ];
929
+ var FilterExpression$ = [3, n0, _FE,
930
+ 0,
931
+ [_Ex, _VM],
932
+ [0, 128 | 0], 2
933
+ ];
934
+ var FormatOptions$ = [3, n0, _FO,
935
+ 0,
936
+ [_J, _Exc, _Cs],
937
+ [() => JsonOptions$, () => ExcelOptions$, () => CsvOptions$]
938
+ ];
939
+ var Input$ = [3, n0, _I,
940
+ 0,
941
+ [_SID, _DCID, _DID, _Me],
942
+ [() => S3Location$, () => DataCatalogInputDefinition$, () => DatabaseInputDefinition$, () => Metadata$]
943
+ ];
944
+ var Job$ = [3, n0, _Jo,
945
+ 0,
946
+ [_N, _AI, _CB, _CD, _DN, _EKA, _EM, _Ty, _LMB, _LMD, _LS, _MC, _MR, _O, _DCO, _DO, _PN, _RR, _RAe, _RA, _Ti, _T, _JS, _VC],
947
+ [0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 1, 1, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, 0, () => RecipeReference$, 0, 0, 1, 128 | 0, () => JobSample$, () => ValidationConfigurationList], 1
948
+ ];
949
+ var JobRun$ = [3, n0, _JR,
950
+ 0,
951
+ [_A, _COo, _DN, _EMr, _ET, _JNo, _RI, _Sta, _LS, _LGN, _O, _DCO, _DO, _RR, _SB, _SOt, _JS, _VC],
952
+ [1, 4, 0, 0, 1, 0, 0, 0, 0, 0, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, () => RecipeReference$, 0, 4, () => JobSample$, () => ValidationConfigurationList]
953
+ ];
954
+ var JobSample$ = [3, n0, _JS,
955
+ 0,
956
+ [_Mo, _Si],
957
+ [0, 1]
958
+ ];
959
+ var JsonOptions$ = [3, n0, _JO,
960
+ 0,
961
+ [_ML],
962
+ [2]
963
+ ];
964
+ var ListDatasetsRequest$ = [3, n0, _LDR,
965
+ 0,
966
+ [_MRa, _NT],
967
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
968
+ ];
969
+ var ListDatasetsResponse$ = [3, n0, _LDRi,
970
+ 0,
971
+ [_Dat, _NT],
972
+ [() => DatasetList, 0], 1
973
+ ];
974
+ var ListJobRunsRequest$ = [3, n0, _LJRR,
975
+ 0,
976
+ [_N, _MRa, _NT],
977
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
978
+ ];
979
+ var ListJobRunsResponse$ = [3, n0, _LJRRi,
980
+ 0,
981
+ [_JRo, _NT],
982
+ [() => JobRunList, 0], 1
983
+ ];
984
+ var ListJobsRequest$ = [3, n0, _LJR,
985
+ 0,
986
+ [_DN, _MRa, _NT, _PN],
987
+ [[0, { [_hQ]: _dN }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _pN }]]
988
+ ];
989
+ var ListJobsResponse$ = [3, n0, _LJRi,
990
+ 0,
991
+ [_Job, _NT],
992
+ [() => JobList, 0], 1
993
+ ];
994
+ var ListProjectsRequest$ = [3, n0, _LPR,
995
+ 0,
996
+ [_NT, _MRa],
997
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
998
+ ];
999
+ var ListProjectsResponse$ = [3, n0, _LPRi,
1000
+ 0,
1001
+ [_P, _NT],
1002
+ [() => ProjectList, 0], 1
1003
+ ];
1004
+ var ListRecipesRequest$ = [3, n0, _LRR,
1005
+ 0,
1006
+ [_MRa, _NT, _RVe],
1007
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _rV }]]
1008
+ ];
1009
+ var ListRecipesResponse$ = [3, n0, _LRRi,
1010
+ 0,
1011
+ [_Re, _NT],
1012
+ [() => RecipeList, 0], 1
1013
+ ];
1014
+ var ListRecipeVersionsRequest$ = [3, n0, _LRVR,
1015
+ 0,
1016
+ [_N, _MRa, _NT],
1017
+ [[0, { [_hQ]: _n }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1018
+ ];
1019
+ var ListRecipeVersionsResponse$ = [3, n0, _LRVRi,
1020
+ 0,
1021
+ [_Re, _NT],
1022
+ [() => RecipeList, 0], 1
1023
+ ];
1024
+ var ListRulesetsRequest$ = [3, n0, _LRRis,
1025
+ 0,
1026
+ [_TA, _MRa, _NT],
1027
+ [[0, { [_hQ]: _tA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1028
+ ];
1029
+ var ListRulesetsResponse$ = [3, n0, _LRRist,
1030
+ 0,
1031
+ [_Rul, _NT],
1032
+ [() => RulesetItemList, 0], 1
1033
+ ];
1034
+ var ListSchedulesRequest$ = [3, n0, _LSR,
1035
+ 0,
1036
+ [_JNo, _MRa, _NT],
1037
+ [[0, { [_hQ]: _jN }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1038
+ ];
1039
+ var ListSchedulesResponse$ = [3, n0, _LSRi,
1040
+ 0,
1041
+ [_Sc, _NT],
1042
+ [() => ScheduleList, 0], 1
1043
+ ];
1044
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1045
+ 0,
1046
+ [_RAe],
1047
+ [[0, 1]], 1
1048
+ ];
1049
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1050
+ 0,
1051
+ [_T],
1052
+ [128 | 0]
1053
+ ];
1054
+ var Metadata$ = [3, n0, _Me,
1055
+ 0,
1056
+ [_SA],
1057
+ [0]
1058
+ ];
1059
+ var Output$ = [3, n0, _Ou,
1060
+ 0,
1061
+ [_L, _CF, _F, _PCa, _Ov, _FO, _MOF],
1062
+ [() => S3Location$, 0, 0, 64 | 0, 2, () => OutputFormatOptions$, 1], 1
1063
+ ];
1064
+ var OutputFormatOptions$ = [3, n0, _OFO,
1065
+ 0,
1066
+ [_Cs],
1067
+ [() => CsvOutputOptions$]
1068
+ ];
1069
+ var PathOptions$ = [3, n0, _PO,
1070
+ 0,
1071
+ [_LMDC, _FL, _Pa],
1072
+ [() => FilterExpression$, () => FilesLimit$, () => PathParametersMap]
1073
+ ];
1074
+ var ProfileConfiguration$ = [3, n0, _PC,
1075
+ 0,
1076
+ [_DSC, _PCr, _CSCo, _EDC],
1077
+ [() => StatisticsConfiguration$, () => ColumnSelectorList, () => ColumnStatisticsConfigurationList, () => EntityDetectorConfiguration$]
1078
+ ];
1079
+ var Project$ = [3, n0, _Pr,
1080
+ 0,
1081
+ [_N, _RN, _AI, _CD, _CB, _DN, _LMD, _LMB, _RAe, _Sa, _T, _RA, _OB, _OD],
1082
+ [0, 0, 0, 4, 0, 0, 4, 0, 0, () => Sample$, 128 | 0, 0, 0, 4], 2
1083
+ ];
1084
+ var PublishRecipeRequest$ = [3, n0, _PRR,
1085
+ 0,
1086
+ [_N, _D],
1087
+ [[0, 1], 0], 1
1088
+ ];
1089
+ var PublishRecipeResponse$ = [3, n0, _PRRu,
1090
+ 0,
1091
+ [_N],
1092
+ [0], 1
1093
+ ];
1094
+ var Recipe$ = [3, n0, _Rec,
1095
+ 0,
1096
+ [_N, _CB, _CD, _LMB, _LMD, _PN, _PB, _PD, _D, _RAe, _St, _T, _RVe],
1097
+ [0, 0, 4, 0, 4, 0, 0, 4, 0, 0, () => RecipeStepList, 128 | 0, 0], 1
1098
+ ];
1099
+ var RecipeAction$ = [3, n0, _RAec,
1100
+ 0,
1101
+ [_Op, _Pa],
1102
+ [0, 128 | 0], 1
1103
+ ];
1104
+ var RecipeReference$ = [3, n0, _RR,
1105
+ 0,
1106
+ [_N, _RVe],
1107
+ [0, 0], 1
1108
+ ];
1109
+ var RecipeStep$ = [3, n0, _RS,
1110
+ 0,
1111
+ [_Ac, _CEon],
1112
+ [() => RecipeAction$, () => ConditionExpressionList], 1
1113
+ ];
1114
+ var RecipeVersionErrorDetail$ = [3, n0, _RVED,
1115
+ 0,
1116
+ [_EC, _EMr, _RVe],
1117
+ [0, 0, 0]
1118
+ ];
1119
+ var Rule$ = [3, n0, _Rule,
1120
+ 0,
1121
+ [_N, _CEh, _Di, _SM, _Th, _CSo],
1122
+ [0, 0, 2, 128 | 0, () => Threshold$, () => ColumnSelectorList], 2
1123
+ ];
1124
+ var RulesetItem$ = [3, n0, _RIu,
1125
+ 0,
1126
+ [_N, _TA, _AI, _CB, _CD, _D, _LMB, _LMD, _RAe, _RC, _T],
1127
+ [0, 0, 0, 0, 4, 0, 0, 4, 0, 1, 128 | 0], 2
1128
+ ];
1129
+ var S3Location$ = [3, n0, _SL,
1130
+ 0,
1131
+ [_B, _K, _BO],
1132
+ [0, 0, 0], 1
1133
+ ];
1134
+ var S3TableOutputOptions$ = [3, n0, _STOO,
1135
+ 0,
1136
+ [_L],
1137
+ [() => S3Location$], 1
1138
+ ];
1139
+ var Sample$ = [3, n0, _Sa,
1140
+ 0,
1141
+ [_Ty, _Si],
1142
+ [0, 1], 1
1143
+ ];
1144
+ var Schedule$ = [3, n0, _Sch,
1145
+ 0,
1146
+ [_N, _AI, _CB, _CD, _JN, _LMB, _LMD, _RAe, _CEr, _T],
1147
+ [0, 0, 0, 4, 64 | 0, 0, 4, 0, 0, 128 | 0], 1
1148
+ ];
1149
+ var SendProjectSessionActionRequest$ = [3, n0, _SPSAR,
1150
+ 0,
1151
+ [_N, _Pre, _RS, _SIt, _CSI, _VF],
1152
+ [[0, 1], 2, () => RecipeStep$, 1, [() => ClientSessionId, 0], () => ViewFrame$], 1
1153
+ ];
1154
+ var SendProjectSessionActionResponse$ = [3, n0, _SPSARe,
1155
+ 0,
1156
+ [_N, _Res, _AIc],
1157
+ [0, 0, 1], 1
1158
+ ];
1159
+ var StartJobRunRequest$ = [3, n0, _SJRR,
1160
+ 0,
1161
+ [_N],
1162
+ [[0, 1]], 1
1163
+ ];
1164
+ var StartJobRunResponse$ = [3, n0, _SJRRt,
1165
+ 0,
1166
+ [_RI],
1167
+ [0], 1
1168
+ ];
1169
+ var StartProjectSessionRequest$ = [3, n0, _SPSR,
1170
+ 0,
1171
+ [_N, _AC],
1172
+ [[0, 1], 2], 1
1173
+ ];
1174
+ var StartProjectSessionResponse$ = [3, n0, _SPSRt,
1175
+ 0,
1176
+ [_N, _CSI],
1177
+ [0, [() => ClientSessionId, 0]], 1
1178
+ ];
1179
+ var StatisticOverride$ = [3, n0, _SOta,
1180
+ 0,
1181
+ [_Stat, _Pa],
1182
+ [0, 128 | 0], 2
1183
+ ];
1184
+ var StatisticsConfiguration$ = [3, n0, _SC,
1185
+ 0,
1186
+ [_IS, _Ove],
1187
+ [64 | 0, () => StatisticOverrideList]
1188
+ ];
1189
+ var StopJobRunRequest$ = [3, n0, _SJRRto,
1190
+ 0,
1191
+ [_N, _RI],
1192
+ [[0, 1], [0, 1]], 2
1193
+ ];
1194
+ var StopJobRunResponse$ = [3, n0, _SJRRtop,
1195
+ 0,
1196
+ [_RI],
1197
+ [0], 1
1198
+ ];
1199
+ var TagResourceRequest$ = [3, n0, _TRR,
1200
+ 0,
1201
+ [_RAe, _T],
1202
+ [[0, 1], 128 | 0], 2
1203
+ ];
1204
+ var TagResourceResponse$ = [3, n0, _TRRa,
1205
+ 0,
1206
+ [],
1207
+ []
1208
+ ];
1209
+ var Threshold$ = [3, n0, _Th,
1210
+ 0,
1211
+ [_V, _Ty, _U],
1212
+ [1, 0, 0], 1
1213
+ ];
1214
+ var UntagResourceRequest$ = [3, n0, _URR,
1215
+ 0,
1216
+ [_RAe, _TK],
1217
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1218
+ ];
1219
+ var UntagResourceResponse$ = [3, n0, _URRn,
1220
+ 0,
1221
+ [],
1222
+ []
1223
+ ];
1224
+ var UpdateDatasetRequest$ = [3, n0, _UDR,
1225
+ 0,
1226
+ [_N, _I, _F, _FO, _PO],
1227
+ [[0, 1], () => Input$, 0, () => FormatOptions$, () => PathOptions$], 2
1228
+ ];
1229
+ var UpdateDatasetResponse$ = [3, n0, _UDRp,
1230
+ 0,
1231
+ [_N],
1232
+ [0], 1
1233
+ ];
1234
+ var UpdateProfileJobRequest$ = [3, n0, _UPJR,
1235
+ 0,
1236
+ [_N, _OL, _RA, _Co, _EKA, _EM, _LS, _MC, _MR, _VC, _Ti, _JS],
1237
+ [[0, 1], () => S3Location$, 0, () => ProfileConfiguration$, 0, 0, 0, 1, 1, () => ValidationConfigurationList, 1, () => JobSample$], 3
1238
+ ];
1239
+ var UpdateProfileJobResponse$ = [3, n0, _UPJRp,
1240
+ 0,
1241
+ [_N],
1242
+ [0], 1
1243
+ ];
1244
+ var UpdateProjectRequest$ = [3, n0, _UPR,
1245
+ 0,
1246
+ [_RA, _N, _Sa],
1247
+ [0, [0, 1], () => Sample$], 2
1248
+ ];
1249
+ var UpdateProjectResponse$ = [3, n0, _UPRp,
1250
+ 0,
1251
+ [_N, _LMD],
1252
+ [0, 4], 1
1253
+ ];
1254
+ var UpdateRecipeJobRequest$ = [3, n0, _URJR,
1255
+ 0,
1256
+ [_N, _RA, _EKA, _EM, _LS, _MC, _MR, _O, _DCO, _DO, _Ti],
1257
+ [[0, 1], 0, 0, 0, 0, 1, 1, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, 1], 2
1258
+ ];
1259
+ var UpdateRecipeJobResponse$ = [3, n0, _URJRp,
1260
+ 0,
1261
+ [_N],
1262
+ [0], 1
1263
+ ];
1264
+ var UpdateRecipeRequest$ = [3, n0, _URRp,
1265
+ 0,
1266
+ [_N, _D, _St],
1267
+ [[0, 1], 0, () => RecipeStepList], 1
1268
+ ];
1269
+ var UpdateRecipeResponse$ = [3, n0, _URRpd,
1270
+ 0,
1271
+ [_N],
1272
+ [0], 1
1273
+ ];
1274
+ var UpdateRulesetRequest$ = [3, n0, _URRpda,
1275
+ 0,
1276
+ [_N, _Ru, _D],
1277
+ [[0, 1], () => RuleList, 0], 2
1278
+ ];
1279
+ var UpdateRulesetResponse$ = [3, n0, _URRpdat,
1280
+ 0,
1281
+ [_N],
1282
+ [0], 1
1283
+ ];
1284
+ var UpdateScheduleRequest$ = [3, n0, _USR,
1285
+ 0,
1286
+ [_CEr, _N, _JN],
1287
+ [0, [0, 1], 64 | 0], 2
1288
+ ];
1289
+ var UpdateScheduleResponse$ = [3, n0, _USRp,
1290
+ 0,
1291
+ [_N],
1292
+ [0], 1
1293
+ ];
1294
+ var ValidationConfiguration$ = [3, n0, _VCa,
1295
+ 0,
1296
+ [_RAu, _VMa],
1297
+ [0, 0], 1
1298
+ ];
1299
+ var ViewFrame$ = [3, n0, _VF,
1300
+ 0,
1301
+ [_SCI, _CR, _HC, _SRI, _RRo, _An],
1302
+ [1, 1, 64 | 0, 1, 1, 0], 1
1303
+ ];
1304
+ var AllowedStatisticList = [1, n0, _ASL,
1305
+ 0, () => AllowedStatistics$
1306
+ ];
1307
+ var ColumnSelectorList = [1, n0, _CSL,
1308
+ 0, () => ColumnSelector$
1309
+ ];
1310
+ var ColumnStatisticsConfigurationList = [1, n0, _CSCL,
1311
+ 0, () => ColumnStatisticsConfiguration$
1312
+ ];
1313
+ var ConditionExpressionList = [1, n0, _CEL,
1314
+ 0, () => ConditionExpression$
1315
+ ];
1316
+ var DatabaseOutputList = [1, n0, _DOL,
1317
+ 0, () => DatabaseOutput$
1318
+ ];
1319
+ var DataCatalogOutputList = [1, n0, _DCOL,
1320
+ 0, () => DataCatalogOutput$
1321
+ ];
1322
+ var DatasetList = [1, n0, _DL,
1323
+ 0, () => Dataset$
1324
+ ];
1325
+ var JobList = [1, n0, _JL,
1326
+ 0, () => Job$
1327
+ ];
1328
+ var JobRunList = [1, n0, _JRL,
1329
+ 0, () => JobRun$
1330
+ ];
1331
+ var OutputList = [1, n0, _OLu,
1332
+ 0, () => Output$
1333
+ ];
1334
+ var ProjectList = [1, n0, _PL,
1335
+ 0, () => Project$
1336
+ ];
1337
+ var RecipeErrorList = [1, n0, _REL,
1338
+ 0, () => RecipeVersionErrorDetail$
1339
+ ];
1340
+ var RecipeList = [1, n0, _RL,
1341
+ 0, () => Recipe$
1342
+ ];
1343
+ var RecipeStepList = [1, n0, _RSL,
1344
+ 0, () => RecipeStep$
1345
+ ];
1346
+ var RuleList = [1, n0, _RLu,
1347
+ 0, () => Rule$
1348
+ ];
1349
+ var RulesetItemList = [1, n0, _RIL,
1350
+ 0, () => RulesetItem$
1351
+ ];
1352
+ var ScheduleList = [1, n0, _SLc,
1353
+ 0, () => Schedule$
1354
+ ];
1355
+ var StatisticOverrideList = [1, n0, _SOL,
1356
+ 0, () => StatisticOverride$
1357
+ ];
1358
+ var ValidationConfigurationList = [1, n0, _VCL,
1359
+ 0, () => ValidationConfiguration$
1360
+ ];
1361
+ var PathParametersMap = [2, n0, _PPM,
1362
+ 0, 0, () => DatasetParameter$
1363
+ ];
1364
+ var BatchDeleteRecipeVersion$ = [9, n0, _BDRV,
1365
+ { [_h]: ["POST", "/recipes/{Name}/batchDeleteRecipeVersion", 200] }, () => BatchDeleteRecipeVersionRequest$, () => BatchDeleteRecipeVersionResponse$
1366
+ ];
1367
+ var CreateDataset$ = [9, n0, _CDr,
1368
+ { [_h]: ["POST", "/datasets", 200] }, () => CreateDatasetRequest$, () => CreateDatasetResponse$
1369
+ ];
1370
+ var CreateProfileJob$ = [9, n0, _CPJ,
1371
+ { [_h]: ["POST", "/profileJobs", 200] }, () => CreateProfileJobRequest$, () => CreateProfileJobResponse$
1372
+ ];
1373
+ var CreateProject$ = [9, n0, _CP,
1374
+ { [_h]: ["POST", "/projects", 200] }, () => CreateProjectRequest$, () => CreateProjectResponse$
1375
+ ];
1376
+ var CreateRecipe$ = [9, n0, _CRr,
1377
+ { [_h]: ["POST", "/recipes", 200] }, () => CreateRecipeRequest$, () => CreateRecipeResponse$
1378
+ ];
1379
+ var CreateRecipeJob$ = [9, n0, _CRJ,
1380
+ { [_h]: ["POST", "/recipeJobs", 200] }, () => CreateRecipeJobRequest$, () => CreateRecipeJobResponse$
1381
+ ];
1382
+ var CreateRuleset$ = [9, n0, _CRre,
1383
+ { [_h]: ["POST", "/rulesets", 200] }, () => CreateRulesetRequest$, () => CreateRulesetResponse$
1384
+ ];
1385
+ var CreateSchedule$ = [9, n0, _CSr,
1386
+ { [_h]: ["POST", "/schedules", 200] }, () => CreateScheduleRequest$, () => CreateScheduleResponse$
1387
+ ];
1388
+ var DeleteDataset$ = [9, n0, _DD,
1389
+ { [_h]: ["DELETE", "/datasets/{Name}", 200] }, () => DeleteDatasetRequest$, () => DeleteDatasetResponse$
1390
+ ];
1391
+ var DeleteJob$ = [9, n0, _DJ,
1392
+ { [_h]: ["DELETE", "/jobs/{Name}", 200] }, () => DeleteJobRequest$, () => DeleteJobResponse$
1393
+ ];
1394
+ var DeleteProject$ = [9, n0, _DPe,
1395
+ { [_h]: ["DELETE", "/projects/{Name}", 200] }, () => DeleteProjectRequest$, () => DeleteProjectResponse$
1396
+ ];
1397
+ var DeleteRecipeVersion$ = [9, n0, _DRV,
1398
+ { [_h]: ["DELETE", "/recipes/{Name}/recipeVersion/{RecipeVersion}", 200] }, () => DeleteRecipeVersionRequest$, () => DeleteRecipeVersionResponse$
1399
+ ];
1400
+ var DeleteRuleset$ = [9, n0, _DR,
1401
+ { [_h]: ["DELETE", "/rulesets/{Name}", 200] }, () => DeleteRulesetRequest$, () => DeleteRulesetResponse$
1402
+ ];
1403
+ var DeleteSchedule$ = [9, n0, _DS,
1404
+ { [_h]: ["DELETE", "/schedules/{Name}", 200] }, () => DeleteScheduleRequest$, () => DeleteScheduleResponse$
1405
+ ];
1406
+ var DescribeDataset$ = [9, n0, _DDe,
1407
+ { [_h]: ["GET", "/datasets/{Name}", 200] }, () => DescribeDatasetRequest$, () => DescribeDatasetResponse$
1408
+ ];
1409
+ var DescribeJob$ = [9, n0, _DJe,
1410
+ { [_h]: ["GET", "/jobs/{Name}", 200] }, () => DescribeJobRequest$, () => DescribeJobResponse$
1411
+ ];
1412
+ var DescribeJobRun$ = [9, n0, _DJRescr,
1413
+ { [_h]: ["GET", "/jobs/{Name}/jobRun/{RunId}", 200] }, () => DescribeJobRunRequest$, () => DescribeJobRunResponse$
1414
+ ];
1415
+ var DescribeProject$ = [9, n0, _DPes,
1416
+ { [_h]: ["GET", "/projects/{Name}", 200] }, () => DescribeProjectRequest$, () => DescribeProjectResponse$
1417
+ ];
1418
+ var DescribeRecipe$ = [9, n0, _DRe,
1419
+ { [_h]: ["GET", "/recipes/{Name}", 200] }, () => DescribeRecipeRequest$, () => DescribeRecipeResponse$
1420
+ ];
1421
+ var DescribeRuleset$ = [9, n0, _DRes,
1422
+ { [_h]: ["GET", "/rulesets/{Name}", 200] }, () => DescribeRulesetRequest$, () => DescribeRulesetResponse$
1423
+ ];
1424
+ var DescribeSchedule$ = [9, n0, _DSe,
1425
+ { [_h]: ["GET", "/schedules/{Name}", 200] }, () => DescribeScheduleRequest$, () => DescribeScheduleResponse$
1426
+ ];
1427
+ var ListDatasets$ = [9, n0, _LD,
1428
+ { [_h]: ["GET", "/datasets", 200] }, () => ListDatasetsRequest$, () => ListDatasetsResponse$
1429
+ ];
1430
+ var ListJobRuns$ = [9, n0, _LJRis,
1431
+ { [_h]: ["GET", "/jobs/{Name}/jobRuns", 200] }, () => ListJobRunsRequest$, () => ListJobRunsResponse$
1432
+ ];
1433
+ var ListJobs$ = [9, n0, _LJ,
1434
+ { [_h]: ["GET", "/jobs", 200] }, () => ListJobsRequest$, () => ListJobsResponse$
1435
+ ];
1436
+ var ListProjects$ = [9, n0, _LP,
1437
+ { [_h]: ["GET", "/projects", 200] }, () => ListProjectsRequest$, () => ListProjectsResponse$
1438
+ ];
1439
+ var ListRecipes$ = [9, n0, _LR,
1440
+ { [_h]: ["GET", "/recipes", 200] }, () => ListRecipesRequest$, () => ListRecipesResponse$
1441
+ ];
1442
+ var ListRecipeVersions$ = [9, n0, _LRV,
1443
+ { [_h]: ["GET", "/recipeVersions", 200] }, () => ListRecipeVersionsRequest$, () => ListRecipeVersionsResponse$
1444
+ ];
1445
+ var ListRulesets$ = [9, n0, _LRi,
1446
+ { [_h]: ["GET", "/rulesets", 200] }, () => ListRulesetsRequest$, () => ListRulesetsResponse$
1447
+ ];
1448
+ var ListSchedules$ = [9, n0, _LSi,
1449
+ { [_h]: ["GET", "/schedules", 200] }, () => ListSchedulesRequest$, () => ListSchedulesResponse$
1450
+ ];
1451
+ var ListTagsForResource$ = [9, n0, _LTFR,
1452
+ { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1453
+ ];
1454
+ var PublishRecipe$ = [9, n0, _PR,
1455
+ { [_h]: ["POST", "/recipes/{Name}/publishRecipe", 200] }, () => PublishRecipeRequest$, () => PublishRecipeResponse$
1456
+ ];
1457
+ var SendProjectSessionAction$ = [9, n0, _SPSA,
1458
+ { [_h]: ["PUT", "/projects/{Name}/sendProjectSessionAction", 200] }, () => SendProjectSessionActionRequest$, () => SendProjectSessionActionResponse$
1459
+ ];
1460
+ var StartJobRun$ = [9, n0, _SJR,
1461
+ { [_h]: ["POST", "/jobs/{Name}/startJobRun", 200] }, () => StartJobRunRequest$, () => StartJobRunResponse$
1462
+ ];
1463
+ var StartProjectSession$ = [9, n0, _SPS,
1464
+ { [_h]: ["PUT", "/projects/{Name}/startProjectSession", 200] }, () => StartProjectSessionRequest$, () => StartProjectSessionResponse$
1465
+ ];
1466
+ var StopJobRun$ = [9, n0, _SJRt,
1467
+ { [_h]: ["POST", "/jobs/{Name}/jobRun/{RunId}/stopJobRun", 200] }, () => StopJobRunRequest$, () => StopJobRunResponse$
1468
+ ];
1469
+ var TagResource$ = [9, n0, _TR,
1470
+ { [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1471
+ ];
1472
+ var UntagResource$ = [9, n0, _UR,
1473
+ { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1474
+ ];
1475
+ var UpdateDataset$ = [9, n0, _UD,
1476
+ { [_h]: ["PUT", "/datasets/{Name}", 200] }, () => UpdateDatasetRequest$, () => UpdateDatasetResponse$
1477
+ ];
1478
+ var UpdateProfileJob$ = [9, n0, _UPJ,
1479
+ { [_h]: ["PUT", "/profileJobs/{Name}", 200] }, () => UpdateProfileJobRequest$, () => UpdateProfileJobResponse$
1480
+ ];
1481
+ var UpdateProject$ = [9, n0, _UP,
1482
+ { [_h]: ["PUT", "/projects/{Name}", 200] }, () => UpdateProjectRequest$, () => UpdateProjectResponse$
1483
+ ];
1484
+ var UpdateRecipe$ = [9, n0, _URp,
1485
+ { [_h]: ["PUT", "/recipes/{Name}", 200] }, () => UpdateRecipeRequest$, () => UpdateRecipeResponse$
1486
+ ];
1487
+ var UpdateRecipeJob$ = [9, n0, _URJ,
1488
+ { [_h]: ["PUT", "/recipeJobs/{Name}", 200] }, () => UpdateRecipeJobRequest$, () => UpdateRecipeJobResponse$
1489
+ ];
1490
+ var UpdateRuleset$ = [9, n0, _URpd,
1491
+ { [_h]: ["PUT", "/rulesets/{Name}", 200] }, () => UpdateRulesetRequest$, () => UpdateRulesetResponse$
1492
+ ];
1493
+ var UpdateSchedule$ = [9, n0, _US,
1494
+ { [_h]: ["PUT", "/schedules/{Name}", 200] }, () => UpdateScheduleRequest$, () => UpdateScheduleResponse$
1495
+ ];
1496
+
1497
+ const getRuntimeConfig$1 = (config) => {
1498
+ return {
1499
+ apiVersion: "2017-07-25",
1500
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1501
+ base64Encoder: config?.base64Encoder ?? toBase64,
1502
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1503
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1504
+ extensions: config?.extensions ?? [],
1505
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDataBrewHttpAuthSchemeProvider,
1506
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1507
+ {
1508
+ schemeId: "aws.auth#sigv4",
1509
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1510
+ signer: new AwsSdkSigV4Signer(),
1511
+ },
1512
+ ],
1513
+ logger: config?.logger ?? new NoOpLogger(),
1514
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1515
+ protocolSettings: config?.protocolSettings ?? {
1516
+ defaultNamespace: "com.amazonaws.databrew",
1517
+ errorTypeRegistries,
1518
+ version: "2017-07-25",
1519
+ serviceTarget: "AWSGlueDataBrew",
1520
+ },
1521
+ serviceId: config?.serviceId ?? "DataBrew",
1522
+ sha256: config?.sha256 ?? Sha256,
1523
+ urlParser: config?.urlParser ?? parseUrl,
1524
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1525
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1526
+ };
1527
+ };
1528
+
1529
+ const getRuntimeConfig = (config) => {
1530
+ emitWarningIfUnsupportedVersion(process.version);
1531
+ const defaultsMode = resolveDefaultsModeConfig(config);
1532
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1533
+ const clientSharedValues = getRuntimeConfig$1(config);
1534
+ emitWarningIfUnsupportedVersion$1(process.version);
1535
+ const loaderConfig = {
1536
+ profile: config?.profile,
1537
+ logger: clientSharedValues.logger,
1538
+ };
1539
+ return {
1540
+ ...clientSharedValues,
1541
+ ...config,
1542
+ runtime: "node",
1543
+ defaultsMode,
1544
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1545
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1546
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1547
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1548
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1549
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1550
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1551
+ retryMode: config?.retryMode ??
1552
+ loadConfig({
1553
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1554
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1555
+ }, config),
1556
+ streamCollector: config?.streamCollector ?? streamCollector,
1557
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1558
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1559
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1560
+ };
1561
+ };
1562
+
34
1563
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1564
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1565
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -824,71 +2353,264 @@ const SessionStatus = {
824
2353
  UPDATING: "UPDATING",
825
2354
  };
826
2355
 
2356
+ exports.AccessDeniedException = AccessDeniedException;
2357
+ exports.AccessDeniedException$ = AccessDeniedException$;
2358
+ exports.AllowedStatistics$ = AllowedStatistics$;
827
2359
  exports.AnalyticsMode = AnalyticsMode;
2360
+ exports.BatchDeleteRecipeVersion$ = BatchDeleteRecipeVersion$;
828
2361
  exports.BatchDeleteRecipeVersionCommand = BatchDeleteRecipeVersionCommand;
2362
+ exports.BatchDeleteRecipeVersionRequest$ = BatchDeleteRecipeVersionRequest$;
2363
+ exports.BatchDeleteRecipeVersionResponse$ = BatchDeleteRecipeVersionResponse$;
2364
+ exports.ColumnSelector$ = ColumnSelector$;
2365
+ exports.ColumnStatisticsConfiguration$ = ColumnStatisticsConfiguration$;
829
2366
  exports.CompressionFormat = CompressionFormat;
2367
+ exports.ConditionExpression$ = ConditionExpression$;
2368
+ exports.ConflictException = ConflictException;
2369
+ exports.ConflictException$ = ConflictException$;
2370
+ exports.CreateDataset$ = CreateDataset$;
830
2371
  exports.CreateDatasetCommand = CreateDatasetCommand;
2372
+ exports.CreateDatasetRequest$ = CreateDatasetRequest$;
2373
+ exports.CreateDatasetResponse$ = CreateDatasetResponse$;
2374
+ exports.CreateProfileJob$ = CreateProfileJob$;
831
2375
  exports.CreateProfileJobCommand = CreateProfileJobCommand;
2376
+ exports.CreateProfileJobRequest$ = CreateProfileJobRequest$;
2377
+ exports.CreateProfileJobResponse$ = CreateProfileJobResponse$;
2378
+ exports.CreateProject$ = CreateProject$;
832
2379
  exports.CreateProjectCommand = CreateProjectCommand;
2380
+ exports.CreateProjectRequest$ = CreateProjectRequest$;
2381
+ exports.CreateProjectResponse$ = CreateProjectResponse$;
2382
+ exports.CreateRecipe$ = CreateRecipe$;
833
2383
  exports.CreateRecipeCommand = CreateRecipeCommand;
2384
+ exports.CreateRecipeJob$ = CreateRecipeJob$;
834
2385
  exports.CreateRecipeJobCommand = CreateRecipeJobCommand;
2386
+ exports.CreateRecipeJobRequest$ = CreateRecipeJobRequest$;
2387
+ exports.CreateRecipeJobResponse$ = CreateRecipeJobResponse$;
2388
+ exports.CreateRecipeRequest$ = CreateRecipeRequest$;
2389
+ exports.CreateRecipeResponse$ = CreateRecipeResponse$;
2390
+ exports.CreateRuleset$ = CreateRuleset$;
835
2391
  exports.CreateRulesetCommand = CreateRulesetCommand;
2392
+ exports.CreateRulesetRequest$ = CreateRulesetRequest$;
2393
+ exports.CreateRulesetResponse$ = CreateRulesetResponse$;
2394
+ exports.CreateSchedule$ = CreateSchedule$;
836
2395
  exports.CreateScheduleCommand = CreateScheduleCommand;
2396
+ exports.CreateScheduleRequest$ = CreateScheduleRequest$;
2397
+ exports.CreateScheduleResponse$ = CreateScheduleResponse$;
2398
+ exports.CsvOptions$ = CsvOptions$;
2399
+ exports.CsvOutputOptions$ = CsvOutputOptions$;
837
2400
  exports.DataBrew = DataBrew;
838
2401
  exports.DataBrewClient = DataBrewClient;
2402
+ exports.DataBrewServiceException = DataBrewServiceException;
2403
+ exports.DataBrewServiceException$ = DataBrewServiceException$;
2404
+ exports.DataCatalogInputDefinition$ = DataCatalogInputDefinition$;
2405
+ exports.DataCatalogOutput$ = DataCatalogOutput$;
2406
+ exports.DatabaseInputDefinition$ = DatabaseInputDefinition$;
2407
+ exports.DatabaseOutput$ = DatabaseOutput$;
839
2408
  exports.DatabaseOutputMode = DatabaseOutputMode;
2409
+ exports.DatabaseTableOutputOptions$ = DatabaseTableOutputOptions$;
2410
+ exports.Dataset$ = Dataset$;
2411
+ exports.DatasetParameter$ = DatasetParameter$;
2412
+ exports.DatetimeOptions$ = DatetimeOptions$;
2413
+ exports.DeleteDataset$ = DeleteDataset$;
840
2414
  exports.DeleteDatasetCommand = DeleteDatasetCommand;
2415
+ exports.DeleteDatasetRequest$ = DeleteDatasetRequest$;
2416
+ exports.DeleteDatasetResponse$ = DeleteDatasetResponse$;
2417
+ exports.DeleteJob$ = DeleteJob$;
841
2418
  exports.DeleteJobCommand = DeleteJobCommand;
2419
+ exports.DeleteJobRequest$ = DeleteJobRequest$;
2420
+ exports.DeleteJobResponse$ = DeleteJobResponse$;
2421
+ exports.DeleteProject$ = DeleteProject$;
842
2422
  exports.DeleteProjectCommand = DeleteProjectCommand;
2423
+ exports.DeleteProjectRequest$ = DeleteProjectRequest$;
2424
+ exports.DeleteProjectResponse$ = DeleteProjectResponse$;
2425
+ exports.DeleteRecipeVersion$ = DeleteRecipeVersion$;
843
2426
  exports.DeleteRecipeVersionCommand = DeleteRecipeVersionCommand;
2427
+ exports.DeleteRecipeVersionRequest$ = DeleteRecipeVersionRequest$;
2428
+ exports.DeleteRecipeVersionResponse$ = DeleteRecipeVersionResponse$;
2429
+ exports.DeleteRuleset$ = DeleteRuleset$;
844
2430
  exports.DeleteRulesetCommand = DeleteRulesetCommand;
2431
+ exports.DeleteRulesetRequest$ = DeleteRulesetRequest$;
2432
+ exports.DeleteRulesetResponse$ = DeleteRulesetResponse$;
2433
+ exports.DeleteSchedule$ = DeleteSchedule$;
845
2434
  exports.DeleteScheduleCommand = DeleteScheduleCommand;
2435
+ exports.DeleteScheduleRequest$ = DeleteScheduleRequest$;
2436
+ exports.DeleteScheduleResponse$ = DeleteScheduleResponse$;
2437
+ exports.DescribeDataset$ = DescribeDataset$;
846
2438
  exports.DescribeDatasetCommand = DescribeDatasetCommand;
2439
+ exports.DescribeDatasetRequest$ = DescribeDatasetRequest$;
2440
+ exports.DescribeDatasetResponse$ = DescribeDatasetResponse$;
2441
+ exports.DescribeJob$ = DescribeJob$;
847
2442
  exports.DescribeJobCommand = DescribeJobCommand;
2443
+ exports.DescribeJobRequest$ = DescribeJobRequest$;
2444
+ exports.DescribeJobResponse$ = DescribeJobResponse$;
2445
+ exports.DescribeJobRun$ = DescribeJobRun$;
848
2446
  exports.DescribeJobRunCommand = DescribeJobRunCommand;
2447
+ exports.DescribeJobRunRequest$ = DescribeJobRunRequest$;
2448
+ exports.DescribeJobRunResponse$ = DescribeJobRunResponse$;
2449
+ exports.DescribeProject$ = DescribeProject$;
849
2450
  exports.DescribeProjectCommand = DescribeProjectCommand;
2451
+ exports.DescribeProjectRequest$ = DescribeProjectRequest$;
2452
+ exports.DescribeProjectResponse$ = DescribeProjectResponse$;
2453
+ exports.DescribeRecipe$ = DescribeRecipe$;
850
2454
  exports.DescribeRecipeCommand = DescribeRecipeCommand;
2455
+ exports.DescribeRecipeRequest$ = DescribeRecipeRequest$;
2456
+ exports.DescribeRecipeResponse$ = DescribeRecipeResponse$;
2457
+ exports.DescribeRuleset$ = DescribeRuleset$;
851
2458
  exports.DescribeRulesetCommand = DescribeRulesetCommand;
2459
+ exports.DescribeRulesetRequest$ = DescribeRulesetRequest$;
2460
+ exports.DescribeRulesetResponse$ = DescribeRulesetResponse$;
2461
+ exports.DescribeSchedule$ = DescribeSchedule$;
852
2462
  exports.DescribeScheduleCommand = DescribeScheduleCommand;
2463
+ exports.DescribeScheduleRequest$ = DescribeScheduleRequest$;
2464
+ exports.DescribeScheduleResponse$ = DescribeScheduleResponse$;
853
2465
  exports.EncryptionMode = EncryptionMode;
2466
+ exports.EntityDetectorConfiguration$ = EntityDetectorConfiguration$;
2467
+ exports.ExcelOptions$ = ExcelOptions$;
2468
+ exports.FilesLimit$ = FilesLimit$;
2469
+ exports.FilterExpression$ = FilterExpression$;
2470
+ exports.FormatOptions$ = FormatOptions$;
2471
+ exports.Input$ = Input$;
854
2472
  exports.InputFormat = InputFormat;
2473
+ exports.InternalServerException = InternalServerException;
2474
+ exports.InternalServerException$ = InternalServerException$;
2475
+ exports.Job$ = Job$;
2476
+ exports.JobRun$ = JobRun$;
855
2477
  exports.JobRunState = JobRunState;
2478
+ exports.JobSample$ = JobSample$;
856
2479
  exports.JobType = JobType;
2480
+ exports.JsonOptions$ = JsonOptions$;
2481
+ exports.ListDatasets$ = ListDatasets$;
857
2482
  exports.ListDatasetsCommand = ListDatasetsCommand;
2483
+ exports.ListDatasetsRequest$ = ListDatasetsRequest$;
2484
+ exports.ListDatasetsResponse$ = ListDatasetsResponse$;
2485
+ exports.ListJobRuns$ = ListJobRuns$;
858
2486
  exports.ListJobRunsCommand = ListJobRunsCommand;
2487
+ exports.ListJobRunsRequest$ = ListJobRunsRequest$;
2488
+ exports.ListJobRunsResponse$ = ListJobRunsResponse$;
2489
+ exports.ListJobs$ = ListJobs$;
859
2490
  exports.ListJobsCommand = ListJobsCommand;
2491
+ exports.ListJobsRequest$ = ListJobsRequest$;
2492
+ exports.ListJobsResponse$ = ListJobsResponse$;
2493
+ exports.ListProjects$ = ListProjects$;
860
2494
  exports.ListProjectsCommand = ListProjectsCommand;
2495
+ exports.ListProjectsRequest$ = ListProjectsRequest$;
2496
+ exports.ListProjectsResponse$ = ListProjectsResponse$;
2497
+ exports.ListRecipeVersions$ = ListRecipeVersions$;
861
2498
  exports.ListRecipeVersionsCommand = ListRecipeVersionsCommand;
2499
+ exports.ListRecipeVersionsRequest$ = ListRecipeVersionsRequest$;
2500
+ exports.ListRecipeVersionsResponse$ = ListRecipeVersionsResponse$;
2501
+ exports.ListRecipes$ = ListRecipes$;
862
2502
  exports.ListRecipesCommand = ListRecipesCommand;
2503
+ exports.ListRecipesRequest$ = ListRecipesRequest$;
2504
+ exports.ListRecipesResponse$ = ListRecipesResponse$;
2505
+ exports.ListRulesets$ = ListRulesets$;
863
2506
  exports.ListRulesetsCommand = ListRulesetsCommand;
2507
+ exports.ListRulesetsRequest$ = ListRulesetsRequest$;
2508
+ exports.ListRulesetsResponse$ = ListRulesetsResponse$;
2509
+ exports.ListSchedules$ = ListSchedules$;
864
2510
  exports.ListSchedulesCommand = ListSchedulesCommand;
2511
+ exports.ListSchedulesRequest$ = ListSchedulesRequest$;
2512
+ exports.ListSchedulesResponse$ = ListSchedulesResponse$;
2513
+ exports.ListTagsForResource$ = ListTagsForResource$;
865
2514
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2515
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2516
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
866
2517
  exports.LogSubscription = LogSubscription;
2518
+ exports.Metadata$ = Metadata$;
867
2519
  exports.Order = Order;
868
2520
  exports.OrderedBy = OrderedBy;
2521
+ exports.Output$ = Output$;
869
2522
  exports.OutputFormat = OutputFormat;
2523
+ exports.OutputFormatOptions$ = OutputFormatOptions$;
870
2524
  exports.ParameterType = ParameterType;
2525
+ exports.PathOptions$ = PathOptions$;
2526
+ exports.ProfileConfiguration$ = ProfileConfiguration$;
2527
+ exports.Project$ = Project$;
2528
+ exports.PublishRecipe$ = PublishRecipe$;
871
2529
  exports.PublishRecipeCommand = PublishRecipeCommand;
2530
+ exports.PublishRecipeRequest$ = PublishRecipeRequest$;
2531
+ exports.PublishRecipeResponse$ = PublishRecipeResponse$;
2532
+ exports.Recipe$ = Recipe$;
2533
+ exports.RecipeAction$ = RecipeAction$;
2534
+ exports.RecipeReference$ = RecipeReference$;
2535
+ exports.RecipeStep$ = RecipeStep$;
2536
+ exports.RecipeVersionErrorDetail$ = RecipeVersionErrorDetail$;
2537
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2538
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2539
+ exports.Rule$ = Rule$;
2540
+ exports.RulesetItem$ = RulesetItem$;
2541
+ exports.S3Location$ = S3Location$;
2542
+ exports.S3TableOutputOptions$ = S3TableOutputOptions$;
2543
+ exports.Sample$ = Sample$;
872
2544
  exports.SampleMode = SampleMode;
873
2545
  exports.SampleType = SampleType;
2546
+ exports.Schedule$ = Schedule$;
2547
+ exports.SendProjectSessionAction$ = SendProjectSessionAction$;
874
2548
  exports.SendProjectSessionActionCommand = SendProjectSessionActionCommand;
2549
+ exports.SendProjectSessionActionRequest$ = SendProjectSessionActionRequest$;
2550
+ exports.SendProjectSessionActionResponse$ = SendProjectSessionActionResponse$;
2551
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2552
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
875
2553
  exports.SessionStatus = SessionStatus;
876
2554
  exports.Source = Source;
2555
+ exports.StartJobRun$ = StartJobRun$;
877
2556
  exports.StartJobRunCommand = StartJobRunCommand;
2557
+ exports.StartJobRunRequest$ = StartJobRunRequest$;
2558
+ exports.StartJobRunResponse$ = StartJobRunResponse$;
2559
+ exports.StartProjectSession$ = StartProjectSession$;
878
2560
  exports.StartProjectSessionCommand = StartProjectSessionCommand;
2561
+ exports.StartProjectSessionRequest$ = StartProjectSessionRequest$;
2562
+ exports.StartProjectSessionResponse$ = StartProjectSessionResponse$;
2563
+ exports.StatisticOverride$ = StatisticOverride$;
2564
+ exports.StatisticsConfiguration$ = StatisticsConfiguration$;
2565
+ exports.StopJobRun$ = StopJobRun$;
879
2566
  exports.StopJobRunCommand = StopJobRunCommand;
2567
+ exports.StopJobRunRequest$ = StopJobRunRequest$;
2568
+ exports.StopJobRunResponse$ = StopJobRunResponse$;
2569
+ exports.TagResource$ = TagResource$;
880
2570
  exports.TagResourceCommand = TagResourceCommand;
2571
+ exports.TagResourceRequest$ = TagResourceRequest$;
2572
+ exports.TagResourceResponse$ = TagResourceResponse$;
2573
+ exports.Threshold$ = Threshold$;
881
2574
  exports.ThresholdType = ThresholdType;
882
2575
  exports.ThresholdUnit = ThresholdUnit;
2576
+ exports.UntagResource$ = UntagResource$;
883
2577
  exports.UntagResourceCommand = UntagResourceCommand;
2578
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2579
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2580
+ exports.UpdateDataset$ = UpdateDataset$;
884
2581
  exports.UpdateDatasetCommand = UpdateDatasetCommand;
2582
+ exports.UpdateDatasetRequest$ = UpdateDatasetRequest$;
2583
+ exports.UpdateDatasetResponse$ = UpdateDatasetResponse$;
2584
+ exports.UpdateProfileJob$ = UpdateProfileJob$;
885
2585
  exports.UpdateProfileJobCommand = UpdateProfileJobCommand;
2586
+ exports.UpdateProfileJobRequest$ = UpdateProfileJobRequest$;
2587
+ exports.UpdateProfileJobResponse$ = UpdateProfileJobResponse$;
2588
+ exports.UpdateProject$ = UpdateProject$;
886
2589
  exports.UpdateProjectCommand = UpdateProjectCommand;
2590
+ exports.UpdateProjectRequest$ = UpdateProjectRequest$;
2591
+ exports.UpdateProjectResponse$ = UpdateProjectResponse$;
2592
+ exports.UpdateRecipe$ = UpdateRecipe$;
887
2593
  exports.UpdateRecipeCommand = UpdateRecipeCommand;
2594
+ exports.UpdateRecipeJob$ = UpdateRecipeJob$;
888
2595
  exports.UpdateRecipeJobCommand = UpdateRecipeJobCommand;
2596
+ exports.UpdateRecipeJobRequest$ = UpdateRecipeJobRequest$;
2597
+ exports.UpdateRecipeJobResponse$ = UpdateRecipeJobResponse$;
2598
+ exports.UpdateRecipeRequest$ = UpdateRecipeRequest$;
2599
+ exports.UpdateRecipeResponse$ = UpdateRecipeResponse$;
2600
+ exports.UpdateRuleset$ = UpdateRuleset$;
889
2601
  exports.UpdateRulesetCommand = UpdateRulesetCommand;
2602
+ exports.UpdateRulesetRequest$ = UpdateRulesetRequest$;
2603
+ exports.UpdateRulesetResponse$ = UpdateRulesetResponse$;
2604
+ exports.UpdateSchedule$ = UpdateSchedule$;
890
2605
  exports.UpdateScheduleCommand = UpdateScheduleCommand;
2606
+ exports.UpdateScheduleRequest$ = UpdateScheduleRequest$;
2607
+ exports.UpdateScheduleResponse$ = UpdateScheduleResponse$;
2608
+ exports.ValidationConfiguration$ = ValidationConfiguration$;
2609
+ exports.ValidationException = ValidationException;
2610
+ exports.ValidationException$ = ValidationException$;
891
2611
  exports.ValidationMode = ValidationMode;
2612
+ exports.ViewFrame$ = ViewFrame$;
2613
+ exports.errorTypeRegistries = errorTypeRegistries;
892
2614
  exports.paginateListDatasets = paginateListDatasets;
893
2615
  exports.paginateListJobRuns = paginateListJobRuns;
894
2616
  exports.paginateListJobs = paginateListJobs;