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