@aws-sdk/client-emr-containers 3.928.0 → 3.929.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 +1233 -1263
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/EMRContainersClient.js +2 -0
- package/dist-es/commands/CancelJobRunCommand.js +3 -9
- package/dist-es/commands/CreateJobTemplateCommand.js +3 -10
- package/dist-es/commands/CreateManagedEndpointCommand.js +3 -10
- package/dist-es/commands/CreateSecurityConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateVirtualClusterCommand.js +3 -9
- package/dist-es/commands/DeleteJobTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteManagedEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteVirtualClusterCommand.js +3 -9
- package/dist-es/commands/DescribeJobRunCommand.js +3 -10
- package/dist-es/commands/DescribeJobTemplateCommand.js +3 -10
- package/dist-es/commands/DescribeManagedEndpointCommand.js +3 -10
- package/dist-es/commands/DescribeSecurityConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeVirtualClusterCommand.js +3 -9
- package/dist-es/commands/GetManagedEndpointSessionCredentialsCommand.js +3 -10
- package/dist-es/commands/ListJobRunsCommand.js +3 -10
- package/dist-es/commands/ListJobTemplatesCommand.js +3 -10
- package/dist-es/commands/ListManagedEndpointsCommand.js +3 -10
- package/dist-es/commands/ListSecurityConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVirtualClustersCommand.js +3 -9
- package/dist-es/commands/StartJobRunCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -112
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1187 -0
- package/dist-types/EMRContainersClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -84
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +134 -0
- package/dist-types/ts3.4/EMRContainersClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +141 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -964
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -281
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class EMRContainersClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,12 +110,12 @@ class EMRContainersClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class EMRContainersServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let EMRContainersServiceException$1 = class EMRContainersServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, EMRContainersServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
120
|
const AllowAWSToRetainLogs = {
|
|
122
121
|
DISABLED: "DISABLED",
|
|
@@ -125,7 +124,7 @@ const AllowAWSToRetainLogs = {
|
|
|
125
124
|
const CertificateProviderType = {
|
|
126
125
|
PEM: "PEM",
|
|
127
126
|
};
|
|
128
|
-
class InternalServerException extends EMRContainersServiceException {
|
|
127
|
+
let InternalServerException$1 = class InternalServerException extends EMRContainersServiceException$1 {
|
|
129
128
|
name = "InternalServerException";
|
|
130
129
|
$fault = "server";
|
|
131
130
|
constructor(opts) {
|
|
@@ -136,8 +135,8 @@ class InternalServerException extends EMRContainersServiceException {
|
|
|
136
135
|
});
|
|
137
136
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
138
137
|
}
|
|
139
|
-
}
|
|
140
|
-
class ValidationException extends EMRContainersServiceException {
|
|
138
|
+
};
|
|
139
|
+
let ValidationException$1 = class ValidationException extends EMRContainersServiceException$1 {
|
|
141
140
|
name = "ValidationException";
|
|
142
141
|
$fault = "client";
|
|
143
142
|
constructor(opts) {
|
|
@@ -148,12 +147,12 @@ class ValidationException extends EMRContainersServiceException {
|
|
|
148
147
|
});
|
|
149
148
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
150
149
|
}
|
|
151
|
-
}
|
|
150
|
+
};
|
|
152
151
|
const TemplateParameterDataType = {
|
|
153
152
|
NUMBER: "NUMBER",
|
|
154
153
|
STRING: "STRING",
|
|
155
154
|
};
|
|
156
|
-
class ResourceNotFoundException extends EMRContainersServiceException {
|
|
155
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends EMRContainersServiceException$1 {
|
|
157
156
|
name = "ResourceNotFoundException";
|
|
158
157
|
$fault = "client";
|
|
159
158
|
constructor(opts) {
|
|
@@ -164,7 +163,7 @@ class ResourceNotFoundException extends EMRContainersServiceException {
|
|
|
164
163
|
});
|
|
165
164
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
166
165
|
}
|
|
167
|
-
}
|
|
166
|
+
};
|
|
168
167
|
const PersistentAppUI = {
|
|
169
168
|
DISABLED: "DISABLED",
|
|
170
169
|
ENABLED: "ENABLED",
|
|
@@ -180,7 +179,7 @@ exports.ContainerInfo = void 0;
|
|
|
180
179
|
const ContainerProviderType = {
|
|
181
180
|
EKS: "EKS",
|
|
182
181
|
};
|
|
183
|
-
class EKSRequestThrottledException extends EMRContainersServiceException {
|
|
182
|
+
let EKSRequestThrottledException$1 = class EKSRequestThrottledException extends EMRContainersServiceException$1 {
|
|
184
183
|
name = "EKSRequestThrottledException";
|
|
185
184
|
$fault = "client";
|
|
186
185
|
constructor(opts) {
|
|
@@ -191,7 +190,7 @@ class EKSRequestThrottledException extends EMRContainersServiceException {
|
|
|
191
190
|
});
|
|
192
191
|
Object.setPrototypeOf(this, EKSRequestThrottledException.prototype);
|
|
193
192
|
}
|
|
194
|
-
}
|
|
193
|
+
};
|
|
195
194
|
const FailureReason = {
|
|
196
195
|
CLUSTER_UNAVAILABLE: "CLUSTER_UNAVAILABLE",
|
|
197
196
|
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
@@ -228,7 +227,7 @@ exports.Credentials = void 0;
|
|
|
228
227
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
229
228
|
};
|
|
230
229
|
})(exports.Credentials || (exports.Credentials = {}));
|
|
231
|
-
class RequestThrottledException extends EMRContainersServiceException {
|
|
230
|
+
let RequestThrottledException$1 = class RequestThrottledException extends EMRContainersServiceException$1 {
|
|
232
231
|
name = "RequestThrottledException";
|
|
233
232
|
$fault = "client";
|
|
234
233
|
constructor(opts) {
|
|
@@ -239,1091 +238,1193 @@ class RequestThrottledException extends EMRContainersServiceException {
|
|
|
239
238
|
});
|
|
240
239
|
Object.setPrototypeOf(this, RequestThrottledException.prototype);
|
|
241
240
|
}
|
|
242
|
-
}
|
|
243
|
-
const SparkSqlJobDriverFilterSensitiveLog = (obj) => ({
|
|
244
|
-
...obj,
|
|
245
|
-
...(obj.entryPoint && { entryPoint: smithyClient.SENSITIVE_STRING }),
|
|
246
|
-
...(obj.sparkSqlParameters && { sparkSqlParameters: smithyClient.SENSITIVE_STRING }),
|
|
247
|
-
});
|
|
248
|
-
const SparkSubmitJobDriverFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
...(obj.entryPoint && { entryPoint: smithyClient.SENSITIVE_STRING }),
|
|
251
|
-
...(obj.entryPointArguments && { entryPointArguments: smithyClient.SENSITIVE_STRING }),
|
|
252
|
-
...(obj.sparkSubmitParameters && { sparkSubmitParameters: smithyClient.SENSITIVE_STRING }),
|
|
253
|
-
});
|
|
254
|
-
const JobDriverFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
...(obj.sparkSubmitJobDriver && {
|
|
257
|
-
sparkSubmitJobDriver: SparkSubmitJobDriverFilterSensitiveLog(obj.sparkSubmitJobDriver),
|
|
258
|
-
}),
|
|
259
|
-
...(obj.sparkSqlJobDriver && { sparkSqlJobDriver: SparkSqlJobDriverFilterSensitiveLog(obj.sparkSqlJobDriver) }),
|
|
260
|
-
});
|
|
261
|
-
const CredentialsFilterSensitiveLog = (obj) => {
|
|
262
|
-
if (obj.token !== undefined)
|
|
263
|
-
return { token: smithyClient.SENSITIVE_STRING };
|
|
264
|
-
if (obj.$unknown !== undefined)
|
|
265
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
266
241
|
};
|
|
267
|
-
const GetManagedEndpointSessionCredentialsResponseFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
...(obj.credentials && { credentials: CredentialsFilterSensitiveLog(obj.credentials) }),
|
|
270
|
-
});
|
|
271
|
-
const ConfigurationFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
...(obj.properties && { properties: smithyClient.SENSITIVE_STRING }),
|
|
274
|
-
...(obj.configurations && {
|
|
275
|
-
configurations: obj.configurations.map((item) => ConfigurationFilterSensitiveLog(item)),
|
|
276
|
-
}),
|
|
277
|
-
});
|
|
278
|
-
const ConfigurationOverridesFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
...(obj.applicationConfiguration && {
|
|
281
|
-
applicationConfiguration: obj.applicationConfiguration.map((item) => ConfigurationFilterSensitiveLog(item)),
|
|
282
|
-
}),
|
|
283
|
-
});
|
|
284
|
-
const ParametricConfigurationOverridesFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
...(obj.applicationConfiguration && {
|
|
287
|
-
applicationConfiguration: obj.applicationConfiguration.map((item) => ConfigurationFilterSensitiveLog(item)),
|
|
288
|
-
}),
|
|
289
|
-
});
|
|
290
|
-
const CreateManagedEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
...(obj.configurationOverrides && {
|
|
293
|
-
configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
294
|
-
}),
|
|
295
|
-
});
|
|
296
|
-
const EndpointFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
...(obj.configurationOverrides && {
|
|
299
|
-
configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
300
|
-
}),
|
|
301
|
-
});
|
|
302
|
-
const JobRunFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
...(obj.configurationOverrides && {
|
|
305
|
-
configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
306
|
-
}),
|
|
307
|
-
...(obj.jobDriver && { jobDriver: JobDriverFilterSensitiveLog(obj.jobDriver) }),
|
|
308
|
-
});
|
|
309
|
-
const JobTemplateDataFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
...(obj.configurationOverrides && {
|
|
312
|
-
configurationOverrides: ParametricConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
313
|
-
}),
|
|
314
|
-
...(obj.jobDriver && { jobDriver: JobDriverFilterSensitiveLog(obj.jobDriver) }),
|
|
315
|
-
});
|
|
316
|
-
const StartJobRunRequestFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
...(obj.jobDriver && { jobDriver: JobDriverFilterSensitiveLog(obj.jobDriver) }),
|
|
319
|
-
...(obj.configurationOverrides && {
|
|
320
|
-
configurationOverrides: ConfigurationOverridesFilterSensitiveLog(obj.configurationOverrides),
|
|
321
|
-
}),
|
|
322
|
-
});
|
|
323
|
-
const CreateJobTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
...(obj.jobTemplateData && { jobTemplateData: JobTemplateDataFilterSensitiveLog(obj.jobTemplateData) }),
|
|
326
|
-
});
|
|
327
|
-
const DescribeJobRunResponseFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
...(obj.jobRun && { jobRun: JobRunFilterSensitiveLog(obj.jobRun) }),
|
|
330
|
-
});
|
|
331
|
-
const DescribeManagedEndpointResponseFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
...(obj.endpoint && { endpoint: EndpointFilterSensitiveLog(obj.endpoint) }),
|
|
334
|
-
});
|
|
335
|
-
const JobTemplateFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
...(obj.jobTemplateData && { jobTemplateData: JobTemplateDataFilterSensitiveLog(obj.jobTemplateData) }),
|
|
338
|
-
});
|
|
339
|
-
const DescribeJobTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
...(obj.jobTemplate && { jobTemplate: JobTemplateFilterSensitiveLog(obj.jobTemplate) }),
|
|
342
|
-
});
|
|
343
|
-
const ListJobRunsResponseFilterSensitiveLog = (obj) => ({
|
|
344
|
-
...obj,
|
|
345
|
-
...(obj.jobRuns && { jobRuns: obj.jobRuns.map((item) => JobRunFilterSensitiveLog(item)) }),
|
|
346
|
-
});
|
|
347
|
-
const ListManagedEndpointsResponseFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
const ListJobTemplatesResponseFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
...(obj.templates && { templates: obj.templates.map((item) => JobTemplateFilterSensitiveLog(item)) }),
|
|
353
|
-
});
|
|
354
242
|
|
|
355
|
-
const
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
const
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
const
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
const
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
const
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
const
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
const
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
const
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
const
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
const
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
const
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
const
|
|
495
|
-
|
|
496
|
-
const headers = {};
|
|
497
|
-
b.bp("/securityconfigurations/{id}");
|
|
498
|
-
b.p("id", () => input.id, "{id}", false);
|
|
499
|
-
let body;
|
|
500
|
-
b.m("GET").h(headers).b(body);
|
|
501
|
-
return b.build();
|
|
502
|
-
};
|
|
503
|
-
const se_DescribeVirtualClusterCommand = async (input, context) => {
|
|
504
|
-
const b = core.requestBuilder(input, context);
|
|
505
|
-
const headers = {};
|
|
506
|
-
b.bp("/virtualclusters/{id}");
|
|
507
|
-
b.p("id", () => input.id, "{id}", false);
|
|
508
|
-
let body;
|
|
509
|
-
b.m("GET").h(headers).b(body);
|
|
510
|
-
return b.build();
|
|
511
|
-
};
|
|
512
|
-
const se_GetManagedEndpointSessionCredentialsCommand = async (input, context) => {
|
|
513
|
-
const b = core.requestBuilder(input, context);
|
|
514
|
-
const headers = {
|
|
515
|
-
"content-type": "application/json",
|
|
516
|
-
};
|
|
517
|
-
b.bp("/virtualclusters/{virtualClusterIdentifier}/endpoints/{endpointIdentifier}/credentials");
|
|
518
|
-
b.p("endpointIdentifier", () => input.endpointIdentifier, "{endpointIdentifier}", false);
|
|
519
|
-
b.p("virtualClusterIdentifier", () => input.virtualClusterIdentifier, "{virtualClusterIdentifier}", false);
|
|
520
|
-
let body;
|
|
521
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
522
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
523
|
-
credentialType: [],
|
|
524
|
-
durationInSeconds: [],
|
|
525
|
-
executionRoleArn: [],
|
|
526
|
-
logContext: [],
|
|
527
|
-
}));
|
|
528
|
-
b.m("POST").h(headers).b(body);
|
|
529
|
-
return b.build();
|
|
530
|
-
};
|
|
531
|
-
const se_ListJobRunsCommand = async (input, context) => {
|
|
532
|
-
const b = core.requestBuilder(input, context);
|
|
533
|
-
const headers = {};
|
|
534
|
-
b.bp("/virtualclusters/{virtualClusterId}/jobruns");
|
|
535
|
-
b.p("virtualClusterId", () => input.virtualClusterId, "{virtualClusterId}", false);
|
|
536
|
-
const query = smithyClient.map({
|
|
537
|
-
[_cB]: [() => input.createdBefore !== void 0, () => smithyClient.serializeDateTime(input[_cB]).toString()],
|
|
538
|
-
[_cA]: [() => input.createdAfter !== void 0, () => smithyClient.serializeDateTime(input[_cA]).toString()],
|
|
539
|
-
[_n]: [, input[_n]],
|
|
540
|
-
[_s]: [() => input.states !== void 0, () => input[_s] || []],
|
|
541
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
542
|
-
[_nT]: [, input[_nT]],
|
|
543
|
-
});
|
|
544
|
-
let body;
|
|
545
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
546
|
-
return b.build();
|
|
547
|
-
};
|
|
548
|
-
const se_ListJobTemplatesCommand = async (input, context) => {
|
|
549
|
-
const b = core.requestBuilder(input, context);
|
|
550
|
-
const headers = {};
|
|
551
|
-
b.bp("/jobtemplates");
|
|
552
|
-
const query = smithyClient.map({
|
|
553
|
-
[_cA]: [() => input.createdAfter !== void 0, () => smithyClient.serializeDateTime(input[_cA]).toString()],
|
|
554
|
-
[_cB]: [() => input.createdBefore !== void 0, () => smithyClient.serializeDateTime(input[_cB]).toString()],
|
|
555
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
556
|
-
[_nT]: [, input[_nT]],
|
|
557
|
-
});
|
|
558
|
-
let body;
|
|
559
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
560
|
-
return b.build();
|
|
561
|
-
};
|
|
562
|
-
const se_ListManagedEndpointsCommand = async (input, context) => {
|
|
563
|
-
const b = core.requestBuilder(input, context);
|
|
564
|
-
const headers = {};
|
|
565
|
-
b.bp("/virtualclusters/{virtualClusterId}/endpoints");
|
|
566
|
-
b.p("virtualClusterId", () => input.virtualClusterId, "{virtualClusterId}", false);
|
|
567
|
-
const query = smithyClient.map({
|
|
568
|
-
[_cB]: [() => input.createdBefore !== void 0, () => smithyClient.serializeDateTime(input[_cB]).toString()],
|
|
569
|
-
[_cA]: [() => input.createdAfter !== void 0, () => smithyClient.serializeDateTime(input[_cA]).toString()],
|
|
570
|
-
[_t]: [() => input.types !== void 0, () => input[_t] || []],
|
|
571
|
-
[_s]: [() => input.states !== void 0, () => input[_s] || []],
|
|
572
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
573
|
-
[_nT]: [, input[_nT]],
|
|
574
|
-
});
|
|
575
|
-
let body;
|
|
576
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
577
|
-
return b.build();
|
|
578
|
-
};
|
|
579
|
-
const se_ListSecurityConfigurationsCommand = async (input, context) => {
|
|
580
|
-
const b = core.requestBuilder(input, context);
|
|
581
|
-
const headers = {};
|
|
582
|
-
b.bp("/securityconfigurations");
|
|
583
|
-
const query = smithyClient.map({
|
|
584
|
-
[_cA]: [() => input.createdAfter !== void 0, () => smithyClient.serializeDateTime(input[_cA]).toString()],
|
|
585
|
-
[_cB]: [() => input.createdBefore !== void 0, () => smithyClient.serializeDateTime(input[_cB]).toString()],
|
|
586
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
587
|
-
[_nT]: [, input[_nT]],
|
|
588
|
-
});
|
|
589
|
-
let body;
|
|
590
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
591
|
-
return b.build();
|
|
592
|
-
};
|
|
593
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
594
|
-
const b = core.requestBuilder(input, context);
|
|
595
|
-
const headers = {};
|
|
596
|
-
b.bp("/tags/{resourceArn}");
|
|
597
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
598
|
-
let body;
|
|
599
|
-
b.m("GET").h(headers).b(body);
|
|
600
|
-
return b.build();
|
|
601
|
-
};
|
|
602
|
-
const se_ListVirtualClustersCommand = async (input, context) => {
|
|
603
|
-
const b = core.requestBuilder(input, context);
|
|
604
|
-
const headers = {};
|
|
605
|
-
b.bp("/virtualclusters");
|
|
606
|
-
const query = smithyClient.map({
|
|
607
|
-
[_cPI]: [, input[_cPI]],
|
|
608
|
-
[_cPT]: [, input[_cPT]],
|
|
609
|
-
[_cA]: [() => input.createdAfter !== void 0, () => smithyClient.serializeDateTime(input[_cA]).toString()],
|
|
610
|
-
[_cB]: [() => input.createdBefore !== void 0, () => smithyClient.serializeDateTime(input[_cB]).toString()],
|
|
611
|
-
[_s]: [() => input.states !== void 0, () => input[_s] || []],
|
|
612
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
613
|
-
[_nT]: [, input[_nT]],
|
|
614
|
-
[_eAEI]: [() => input.eksAccessEntryIntegrated !== void 0, () => input[_eAEI].toString()],
|
|
615
|
-
});
|
|
616
|
-
let body;
|
|
617
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
618
|
-
return b.build();
|
|
619
|
-
};
|
|
620
|
-
const se_StartJobRunCommand = async (input, context) => {
|
|
621
|
-
const b = core.requestBuilder(input, context);
|
|
622
|
-
const headers = {
|
|
623
|
-
"content-type": "application/json",
|
|
624
|
-
};
|
|
625
|
-
b.bp("/virtualclusters/{virtualClusterId}/jobruns");
|
|
626
|
-
b.p("virtualClusterId", () => input.virtualClusterId, "{virtualClusterId}", false);
|
|
627
|
-
let body;
|
|
628
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
629
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
630
|
-
configurationOverrides: (_) => se_ConfigurationOverrides(_),
|
|
631
|
-
executionRoleArn: [],
|
|
632
|
-
jobDriver: (_) => smithyClient._json(_),
|
|
633
|
-
jobTemplateId: [],
|
|
634
|
-
jobTemplateParameters: (_) => smithyClient._json(_),
|
|
635
|
-
name: [],
|
|
636
|
-
releaseLabel: [],
|
|
637
|
-
retryPolicyConfiguration: (_) => smithyClient._json(_),
|
|
638
|
-
tags: (_) => smithyClient._json(_),
|
|
639
|
-
}));
|
|
640
|
-
b.m("POST").h(headers).b(body);
|
|
641
|
-
return b.build();
|
|
642
|
-
};
|
|
643
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
644
|
-
const b = core.requestBuilder(input, context);
|
|
645
|
-
const headers = {
|
|
646
|
-
"content-type": "application/json",
|
|
647
|
-
};
|
|
648
|
-
b.bp("/tags/{resourceArn}");
|
|
649
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
650
|
-
let body;
|
|
651
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
652
|
-
tags: (_) => smithyClient._json(_),
|
|
653
|
-
}));
|
|
654
|
-
b.m("POST").h(headers).b(body);
|
|
655
|
-
return b.build();
|
|
656
|
-
};
|
|
657
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
658
|
-
const b = core.requestBuilder(input, context);
|
|
659
|
-
const headers = {};
|
|
660
|
-
b.bp("/tags/{resourceArn}");
|
|
661
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
662
|
-
const query = smithyClient.map({
|
|
663
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
664
|
-
});
|
|
665
|
-
let body;
|
|
666
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
667
|
-
return b.build();
|
|
668
|
-
};
|
|
669
|
-
const de_CancelJobRunCommand = async (output, context) => {
|
|
670
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
671
|
-
return de_CommandError(output, context);
|
|
672
|
-
}
|
|
673
|
-
const contents = smithyClient.map({
|
|
674
|
-
$metadata: deserializeMetadata(output),
|
|
675
|
-
});
|
|
676
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
677
|
-
const doc = smithyClient.take(data, {
|
|
678
|
-
id: smithyClient.expectString,
|
|
679
|
-
virtualClusterId: smithyClient.expectString,
|
|
680
|
-
});
|
|
681
|
-
Object.assign(contents, doc);
|
|
682
|
-
return contents;
|
|
683
|
-
};
|
|
684
|
-
const de_CreateJobTemplateCommand = async (output, context) => {
|
|
685
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
686
|
-
return de_CommandError(output, context);
|
|
687
|
-
}
|
|
688
|
-
const contents = smithyClient.map({
|
|
689
|
-
$metadata: deserializeMetadata(output),
|
|
690
|
-
});
|
|
691
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
692
|
-
const doc = smithyClient.take(data, {
|
|
693
|
-
arn: smithyClient.expectString,
|
|
694
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
695
|
-
id: smithyClient.expectString,
|
|
696
|
-
name: smithyClient.expectString,
|
|
697
|
-
});
|
|
698
|
-
Object.assign(contents, doc);
|
|
699
|
-
return contents;
|
|
700
|
-
};
|
|
701
|
-
const de_CreateManagedEndpointCommand = async (output, context) => {
|
|
702
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
703
|
-
return de_CommandError(output, context);
|
|
704
|
-
}
|
|
705
|
-
const contents = smithyClient.map({
|
|
706
|
-
$metadata: deserializeMetadata(output),
|
|
707
|
-
});
|
|
708
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
709
|
-
const doc = smithyClient.take(data, {
|
|
710
|
-
arn: smithyClient.expectString,
|
|
711
|
-
id: smithyClient.expectString,
|
|
712
|
-
name: smithyClient.expectString,
|
|
713
|
-
virtualClusterId: smithyClient.expectString,
|
|
714
|
-
});
|
|
715
|
-
Object.assign(contents, doc);
|
|
716
|
-
return contents;
|
|
717
|
-
};
|
|
718
|
-
const de_CreateSecurityConfigurationCommand = async (output, context) => {
|
|
719
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
720
|
-
return de_CommandError(output, context);
|
|
721
|
-
}
|
|
722
|
-
const contents = smithyClient.map({
|
|
723
|
-
$metadata: deserializeMetadata(output),
|
|
724
|
-
});
|
|
725
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
726
|
-
const doc = smithyClient.take(data, {
|
|
727
|
-
arn: smithyClient.expectString,
|
|
728
|
-
id: smithyClient.expectString,
|
|
729
|
-
name: smithyClient.expectString,
|
|
730
|
-
});
|
|
731
|
-
Object.assign(contents, doc);
|
|
732
|
-
return contents;
|
|
733
|
-
};
|
|
734
|
-
const de_CreateVirtualClusterCommand = async (output, context) => {
|
|
735
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
736
|
-
return de_CommandError(output, context);
|
|
737
|
-
}
|
|
738
|
-
const contents = smithyClient.map({
|
|
739
|
-
$metadata: deserializeMetadata(output),
|
|
740
|
-
});
|
|
741
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
742
|
-
const doc = smithyClient.take(data, {
|
|
743
|
-
arn: smithyClient.expectString,
|
|
744
|
-
id: smithyClient.expectString,
|
|
745
|
-
name: smithyClient.expectString,
|
|
746
|
-
});
|
|
747
|
-
Object.assign(contents, doc);
|
|
748
|
-
return contents;
|
|
749
|
-
};
|
|
750
|
-
const de_DeleteJobTemplateCommand = async (output, context) => {
|
|
751
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
752
|
-
return de_CommandError(output, context);
|
|
753
|
-
}
|
|
754
|
-
const contents = smithyClient.map({
|
|
755
|
-
$metadata: deserializeMetadata(output),
|
|
756
|
-
});
|
|
757
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
758
|
-
const doc = smithyClient.take(data, {
|
|
759
|
-
id: smithyClient.expectString,
|
|
760
|
-
});
|
|
761
|
-
Object.assign(contents, doc);
|
|
762
|
-
return contents;
|
|
763
|
-
};
|
|
764
|
-
const de_DeleteManagedEndpointCommand = async (output, context) => {
|
|
765
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
766
|
-
return de_CommandError(output, context);
|
|
767
|
-
}
|
|
768
|
-
const contents = smithyClient.map({
|
|
769
|
-
$metadata: deserializeMetadata(output),
|
|
770
|
-
});
|
|
771
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
772
|
-
const doc = smithyClient.take(data, {
|
|
773
|
-
id: smithyClient.expectString,
|
|
774
|
-
virtualClusterId: smithyClient.expectString,
|
|
775
|
-
});
|
|
776
|
-
Object.assign(contents, doc);
|
|
777
|
-
return contents;
|
|
778
|
-
};
|
|
779
|
-
const de_DeleteVirtualClusterCommand = async (output, context) => {
|
|
780
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
781
|
-
return de_CommandError(output, context);
|
|
782
|
-
}
|
|
783
|
-
const contents = smithyClient.map({
|
|
784
|
-
$metadata: deserializeMetadata(output),
|
|
785
|
-
});
|
|
786
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
787
|
-
const doc = smithyClient.take(data, {
|
|
788
|
-
id: smithyClient.expectString,
|
|
789
|
-
});
|
|
790
|
-
Object.assign(contents, doc);
|
|
791
|
-
return contents;
|
|
792
|
-
};
|
|
793
|
-
const de_DescribeJobRunCommand = async (output, context) => {
|
|
794
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
795
|
-
return de_CommandError(output, context);
|
|
796
|
-
}
|
|
797
|
-
const contents = smithyClient.map({
|
|
798
|
-
$metadata: deserializeMetadata(output),
|
|
799
|
-
});
|
|
800
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
801
|
-
const doc = smithyClient.take(data, {
|
|
802
|
-
jobRun: (_) => de_JobRun(_),
|
|
803
|
-
});
|
|
804
|
-
Object.assign(contents, doc);
|
|
805
|
-
return contents;
|
|
806
|
-
};
|
|
807
|
-
const de_DescribeJobTemplateCommand = async (output, context) => {
|
|
808
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
809
|
-
return de_CommandError(output, context);
|
|
810
|
-
}
|
|
811
|
-
const contents = smithyClient.map({
|
|
812
|
-
$metadata: deserializeMetadata(output),
|
|
813
|
-
});
|
|
814
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
815
|
-
const doc = smithyClient.take(data, {
|
|
816
|
-
jobTemplate: (_) => de_JobTemplate(_),
|
|
817
|
-
});
|
|
818
|
-
Object.assign(contents, doc);
|
|
819
|
-
return contents;
|
|
820
|
-
};
|
|
821
|
-
const de_DescribeManagedEndpointCommand = async (output, context) => {
|
|
822
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
823
|
-
return de_CommandError(output, context);
|
|
824
|
-
}
|
|
825
|
-
const contents = smithyClient.map({
|
|
826
|
-
$metadata: deserializeMetadata(output),
|
|
827
|
-
});
|
|
828
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
829
|
-
const doc = smithyClient.take(data, {
|
|
830
|
-
endpoint: (_) => de_Endpoint(_),
|
|
831
|
-
});
|
|
832
|
-
Object.assign(contents, doc);
|
|
833
|
-
return contents;
|
|
834
|
-
};
|
|
835
|
-
const de_DescribeSecurityConfigurationCommand = async (output, context) => {
|
|
836
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
837
|
-
return de_CommandError(output, context);
|
|
838
|
-
}
|
|
839
|
-
const contents = smithyClient.map({
|
|
840
|
-
$metadata: deserializeMetadata(output),
|
|
841
|
-
});
|
|
842
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
843
|
-
const doc = smithyClient.take(data, {
|
|
844
|
-
securityConfiguration: (_) => de_SecurityConfiguration(_),
|
|
845
|
-
});
|
|
846
|
-
Object.assign(contents, doc);
|
|
847
|
-
return contents;
|
|
848
|
-
};
|
|
849
|
-
const de_DescribeVirtualClusterCommand = async (output, context) => {
|
|
850
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
851
|
-
return de_CommandError(output, context);
|
|
852
|
-
}
|
|
853
|
-
const contents = smithyClient.map({
|
|
854
|
-
$metadata: deserializeMetadata(output),
|
|
855
|
-
});
|
|
856
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
857
|
-
const doc = smithyClient.take(data, {
|
|
858
|
-
virtualCluster: (_) => de_VirtualCluster(_),
|
|
859
|
-
});
|
|
860
|
-
Object.assign(contents, doc);
|
|
861
|
-
return contents;
|
|
862
|
-
};
|
|
863
|
-
const de_GetManagedEndpointSessionCredentialsCommand = async (output, context) => {
|
|
864
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
865
|
-
return de_CommandError(output, context);
|
|
866
|
-
}
|
|
867
|
-
const contents = smithyClient.map({
|
|
868
|
-
$metadata: deserializeMetadata(output),
|
|
869
|
-
});
|
|
870
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
871
|
-
const doc = smithyClient.take(data, {
|
|
872
|
-
credentials: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
873
|
-
expiresAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
874
|
-
id: smithyClient.expectString,
|
|
875
|
-
});
|
|
876
|
-
Object.assign(contents, doc);
|
|
877
|
-
return contents;
|
|
878
|
-
};
|
|
879
|
-
const de_ListJobRunsCommand = async (output, context) => {
|
|
880
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
881
|
-
return de_CommandError(output, context);
|
|
882
|
-
}
|
|
883
|
-
const contents = smithyClient.map({
|
|
884
|
-
$metadata: deserializeMetadata(output),
|
|
885
|
-
});
|
|
886
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
887
|
-
const doc = smithyClient.take(data, {
|
|
888
|
-
jobRuns: (_) => de_JobRuns(_),
|
|
889
|
-
nextToken: smithyClient.expectString,
|
|
890
|
-
});
|
|
891
|
-
Object.assign(contents, doc);
|
|
892
|
-
return contents;
|
|
893
|
-
};
|
|
894
|
-
const de_ListJobTemplatesCommand = async (output, context) => {
|
|
895
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
896
|
-
return de_CommandError(output, context);
|
|
897
|
-
}
|
|
898
|
-
const contents = smithyClient.map({
|
|
899
|
-
$metadata: deserializeMetadata(output),
|
|
900
|
-
});
|
|
901
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
902
|
-
const doc = smithyClient.take(data, {
|
|
903
|
-
nextToken: smithyClient.expectString,
|
|
904
|
-
templates: (_) => de_JobTemplates(_),
|
|
905
|
-
});
|
|
906
|
-
Object.assign(contents, doc);
|
|
907
|
-
return contents;
|
|
908
|
-
};
|
|
909
|
-
const de_ListManagedEndpointsCommand = async (output, context) => {
|
|
910
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
911
|
-
return de_CommandError(output, context);
|
|
912
|
-
}
|
|
913
|
-
const contents = smithyClient.map({
|
|
914
|
-
$metadata: deserializeMetadata(output),
|
|
915
|
-
});
|
|
916
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
917
|
-
const doc = smithyClient.take(data, {
|
|
918
|
-
endpoints: (_) => de_Endpoints(_),
|
|
919
|
-
nextToken: smithyClient.expectString,
|
|
920
|
-
});
|
|
921
|
-
Object.assign(contents, doc);
|
|
922
|
-
return contents;
|
|
923
|
-
};
|
|
924
|
-
const de_ListSecurityConfigurationsCommand = async (output, context) => {
|
|
925
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
926
|
-
return de_CommandError(output, context);
|
|
927
|
-
}
|
|
928
|
-
const contents = smithyClient.map({
|
|
929
|
-
$metadata: deserializeMetadata(output),
|
|
930
|
-
});
|
|
931
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
932
|
-
const doc = smithyClient.take(data, {
|
|
933
|
-
nextToken: smithyClient.expectString,
|
|
934
|
-
securityConfigurations: (_) => de_SecurityConfigurations(_),
|
|
935
|
-
});
|
|
936
|
-
Object.assign(contents, doc);
|
|
937
|
-
return contents;
|
|
938
|
-
};
|
|
939
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
940
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
941
|
-
return de_CommandError(output, context);
|
|
942
|
-
}
|
|
943
|
-
const contents = smithyClient.map({
|
|
944
|
-
$metadata: deserializeMetadata(output),
|
|
945
|
-
});
|
|
946
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
947
|
-
const doc = smithyClient.take(data, {
|
|
948
|
-
tags: smithyClient._json,
|
|
949
|
-
});
|
|
950
|
-
Object.assign(contents, doc);
|
|
951
|
-
return contents;
|
|
952
|
-
};
|
|
953
|
-
const de_ListVirtualClustersCommand = async (output, context) => {
|
|
954
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
955
|
-
return de_CommandError(output, context);
|
|
956
|
-
}
|
|
957
|
-
const contents = smithyClient.map({
|
|
958
|
-
$metadata: deserializeMetadata(output),
|
|
959
|
-
});
|
|
960
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
961
|
-
const doc = smithyClient.take(data, {
|
|
962
|
-
nextToken: smithyClient.expectString,
|
|
963
|
-
virtualClusters: (_) => de_VirtualClusters(_),
|
|
964
|
-
});
|
|
965
|
-
Object.assign(contents, doc);
|
|
966
|
-
return contents;
|
|
967
|
-
};
|
|
968
|
-
const de_StartJobRunCommand = async (output, context) => {
|
|
969
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
970
|
-
return de_CommandError(output, context);
|
|
971
|
-
}
|
|
972
|
-
const contents = smithyClient.map({
|
|
973
|
-
$metadata: deserializeMetadata(output),
|
|
974
|
-
});
|
|
975
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
976
|
-
const doc = smithyClient.take(data, {
|
|
977
|
-
arn: smithyClient.expectString,
|
|
978
|
-
id: smithyClient.expectString,
|
|
979
|
-
name: smithyClient.expectString,
|
|
980
|
-
virtualClusterId: smithyClient.expectString,
|
|
981
|
-
});
|
|
982
|
-
Object.assign(contents, doc);
|
|
983
|
-
return contents;
|
|
984
|
-
};
|
|
985
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
986
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
987
|
-
return de_CommandError(output, context);
|
|
988
|
-
}
|
|
989
|
-
const contents = smithyClient.map({
|
|
990
|
-
$metadata: deserializeMetadata(output),
|
|
991
|
-
});
|
|
992
|
-
await smithyClient.collectBody(output.body, context);
|
|
993
|
-
return contents;
|
|
994
|
-
};
|
|
995
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
996
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
997
|
-
return de_CommandError(output, context);
|
|
998
|
-
}
|
|
999
|
-
const contents = smithyClient.map({
|
|
1000
|
-
$metadata: deserializeMetadata(output),
|
|
1001
|
-
});
|
|
1002
|
-
await smithyClient.collectBody(output.body, context);
|
|
1003
|
-
return contents;
|
|
1004
|
-
};
|
|
1005
|
-
const de_CommandError = async (output, context) => {
|
|
1006
|
-
const parsedOutput = {
|
|
1007
|
-
...output,
|
|
1008
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1009
|
-
};
|
|
1010
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1011
|
-
switch (errorCode) {
|
|
1012
|
-
case "InternalServerException":
|
|
1013
|
-
case "com.amazonaws.emrcontainers#InternalServerException":
|
|
1014
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1015
|
-
case "ValidationException":
|
|
1016
|
-
case "com.amazonaws.emrcontainers#ValidationException":
|
|
1017
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1018
|
-
case "ResourceNotFoundException":
|
|
1019
|
-
case "com.amazonaws.emrcontainers#ResourceNotFoundException":
|
|
1020
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1021
|
-
case "EKSRequestThrottledException":
|
|
1022
|
-
case "com.amazonaws.emrcontainers#EKSRequestThrottledException":
|
|
1023
|
-
throw await de_EKSRequestThrottledExceptionRes(parsedOutput);
|
|
1024
|
-
case "RequestThrottledException":
|
|
1025
|
-
case "com.amazonaws.emrcontainers#RequestThrottledException":
|
|
1026
|
-
throw await de_RequestThrottledExceptionRes(parsedOutput);
|
|
1027
|
-
default:
|
|
1028
|
-
const parsedBody = parsedOutput.body;
|
|
1029
|
-
return throwDefaultError({
|
|
1030
|
-
output,
|
|
1031
|
-
parsedBody,
|
|
1032
|
-
errorCode,
|
|
1033
|
-
});
|
|
1034
|
-
}
|
|
1035
|
-
};
|
|
1036
|
-
const throwDefaultError = smithyClient.withBaseException(EMRContainersServiceException);
|
|
1037
|
-
const de_EKSRequestThrottledExceptionRes = async (parsedOutput, context) => {
|
|
1038
|
-
const contents = smithyClient.map({});
|
|
1039
|
-
const data = parsedOutput.body;
|
|
1040
|
-
const doc = smithyClient.take(data, {
|
|
1041
|
-
message: smithyClient.expectString,
|
|
1042
|
-
});
|
|
1043
|
-
Object.assign(contents, doc);
|
|
1044
|
-
const exception = new EKSRequestThrottledException({
|
|
1045
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1046
|
-
...contents,
|
|
1047
|
-
});
|
|
1048
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1049
|
-
};
|
|
1050
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1051
|
-
const contents = smithyClient.map({});
|
|
1052
|
-
const data = parsedOutput.body;
|
|
1053
|
-
const doc = smithyClient.take(data, {
|
|
1054
|
-
message: smithyClient.expectString,
|
|
1055
|
-
});
|
|
1056
|
-
Object.assign(contents, doc);
|
|
1057
|
-
const exception = new InternalServerException({
|
|
1058
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1059
|
-
...contents,
|
|
1060
|
-
});
|
|
1061
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1062
|
-
};
|
|
1063
|
-
const de_RequestThrottledExceptionRes = async (parsedOutput, context) => {
|
|
1064
|
-
const contents = smithyClient.map({});
|
|
1065
|
-
const data = parsedOutput.body;
|
|
1066
|
-
const doc = smithyClient.take(data, {
|
|
1067
|
-
message: smithyClient.expectString,
|
|
1068
|
-
});
|
|
1069
|
-
Object.assign(contents, doc);
|
|
1070
|
-
const exception = new RequestThrottledException({
|
|
1071
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1072
|
-
...contents,
|
|
1073
|
-
});
|
|
1074
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1075
|
-
};
|
|
1076
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1077
|
-
const contents = smithyClient.map({});
|
|
1078
|
-
const data = parsedOutput.body;
|
|
1079
|
-
const doc = smithyClient.take(data, {
|
|
1080
|
-
message: smithyClient.expectString,
|
|
1081
|
-
});
|
|
1082
|
-
Object.assign(contents, doc);
|
|
1083
|
-
const exception = new ResourceNotFoundException({
|
|
1084
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1085
|
-
...contents,
|
|
1086
|
-
});
|
|
1087
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1088
|
-
};
|
|
1089
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1090
|
-
const contents = smithyClient.map({});
|
|
1091
|
-
const data = parsedOutput.body;
|
|
1092
|
-
const doc = smithyClient.take(data, {
|
|
1093
|
-
message: smithyClient.expectString,
|
|
1094
|
-
});
|
|
1095
|
-
Object.assign(contents, doc);
|
|
1096
|
-
const exception = new ValidationException({
|
|
1097
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1098
|
-
...contents,
|
|
1099
|
-
});
|
|
1100
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1101
|
-
};
|
|
1102
|
-
const se_Configuration = (input, context) => {
|
|
1103
|
-
return smithyClient.take(input, {
|
|
1104
|
-
classification: [],
|
|
1105
|
-
configurations: (_) => se_ConfigurationList(_),
|
|
1106
|
-
properties: smithyClient._json,
|
|
1107
|
-
});
|
|
1108
|
-
};
|
|
1109
|
-
const se_ConfigurationList = (input, context) => {
|
|
1110
|
-
return input
|
|
1111
|
-
.filter((e) => e != null)
|
|
1112
|
-
.map((entry) => {
|
|
1113
|
-
return se_Configuration(entry);
|
|
1114
|
-
});
|
|
1115
|
-
};
|
|
1116
|
-
const se_ConfigurationOverrides = (input, context) => {
|
|
1117
|
-
return smithyClient.take(input, {
|
|
1118
|
-
applicationConfiguration: (_) => se_ConfigurationList(_),
|
|
1119
|
-
monitoringConfiguration: smithyClient._json,
|
|
1120
|
-
});
|
|
1121
|
-
};
|
|
1122
|
-
const se_JobTemplateData = (input, context) => {
|
|
1123
|
-
return smithyClient.take(input, {
|
|
1124
|
-
configurationOverrides: (_) => se_ParametricConfigurationOverrides(_),
|
|
1125
|
-
executionRoleArn: [],
|
|
1126
|
-
jobDriver: smithyClient._json,
|
|
1127
|
-
jobTags: smithyClient._json,
|
|
1128
|
-
parameterConfiguration: smithyClient._json,
|
|
1129
|
-
releaseLabel: [],
|
|
1130
|
-
});
|
|
1131
|
-
};
|
|
1132
|
-
const se_ParametricConfigurationOverrides = (input, context) => {
|
|
1133
|
-
return smithyClient.take(input, {
|
|
1134
|
-
applicationConfiguration: (_) => se_ConfigurationList(_),
|
|
1135
|
-
monitoringConfiguration: smithyClient._json,
|
|
1136
|
-
});
|
|
1137
|
-
};
|
|
1138
|
-
const de_Configuration = (output, context) => {
|
|
1139
|
-
return smithyClient.take(output, {
|
|
1140
|
-
classification: smithyClient.expectString,
|
|
1141
|
-
configurations: (_) => de_ConfigurationList(_),
|
|
1142
|
-
properties: smithyClient._json,
|
|
1143
|
-
});
|
|
1144
|
-
};
|
|
1145
|
-
const de_ConfigurationList = (output, context) => {
|
|
1146
|
-
const retVal = (output || [])
|
|
1147
|
-
.filter((e) => e != null)
|
|
1148
|
-
.map((entry) => {
|
|
1149
|
-
return de_Configuration(entry);
|
|
1150
|
-
});
|
|
1151
|
-
return retVal;
|
|
1152
|
-
};
|
|
1153
|
-
const de_ConfigurationOverrides = (output, context) => {
|
|
1154
|
-
return smithyClient.take(output, {
|
|
1155
|
-
applicationConfiguration: (_) => de_ConfigurationList(_),
|
|
1156
|
-
monitoringConfiguration: smithyClient._json,
|
|
1157
|
-
});
|
|
1158
|
-
};
|
|
1159
|
-
const de_Endpoint = (output, context) => {
|
|
1160
|
-
return smithyClient.take(output, {
|
|
1161
|
-
arn: smithyClient.expectString,
|
|
1162
|
-
certificateArn: smithyClient.expectString,
|
|
1163
|
-
certificateAuthority: smithyClient._json,
|
|
1164
|
-
configurationOverrides: (_) => de_ConfigurationOverrides(_),
|
|
1165
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1166
|
-
executionRoleArn: smithyClient.expectString,
|
|
1167
|
-
failureReason: smithyClient.expectString,
|
|
1168
|
-
id: smithyClient.expectString,
|
|
1169
|
-
name: smithyClient.expectString,
|
|
1170
|
-
releaseLabel: smithyClient.expectString,
|
|
1171
|
-
securityGroup: smithyClient.expectString,
|
|
1172
|
-
serverUrl: smithyClient.expectString,
|
|
1173
|
-
state: smithyClient.expectString,
|
|
1174
|
-
stateDetails: smithyClient.expectString,
|
|
1175
|
-
subnetIds: smithyClient._json,
|
|
1176
|
-
tags: smithyClient._json,
|
|
1177
|
-
type: smithyClient.expectString,
|
|
1178
|
-
virtualClusterId: smithyClient.expectString,
|
|
1179
|
-
});
|
|
1180
|
-
};
|
|
1181
|
-
const de_Endpoints = (output, context) => {
|
|
1182
|
-
const retVal = (output || [])
|
|
1183
|
-
.filter((e) => e != null)
|
|
1184
|
-
.map((entry) => {
|
|
1185
|
-
return de_Endpoint(entry);
|
|
1186
|
-
});
|
|
1187
|
-
return retVal;
|
|
1188
|
-
};
|
|
1189
|
-
const de_JobRun = (output, context) => {
|
|
1190
|
-
return smithyClient.take(output, {
|
|
1191
|
-
arn: smithyClient.expectString,
|
|
1192
|
-
clientToken: smithyClient.expectString,
|
|
1193
|
-
configurationOverrides: (_) => de_ConfigurationOverrides(_),
|
|
1194
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1195
|
-
createdBy: smithyClient.expectString,
|
|
1196
|
-
executionRoleArn: smithyClient.expectString,
|
|
1197
|
-
failureReason: smithyClient.expectString,
|
|
1198
|
-
finishedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1199
|
-
id: smithyClient.expectString,
|
|
1200
|
-
jobDriver: smithyClient._json,
|
|
1201
|
-
name: smithyClient.expectString,
|
|
1202
|
-
releaseLabel: smithyClient.expectString,
|
|
1203
|
-
retryPolicyConfiguration: smithyClient._json,
|
|
1204
|
-
retryPolicyExecution: smithyClient._json,
|
|
1205
|
-
state: smithyClient.expectString,
|
|
1206
|
-
stateDetails: smithyClient.expectString,
|
|
1207
|
-
tags: smithyClient._json,
|
|
1208
|
-
virtualClusterId: smithyClient.expectString,
|
|
1209
|
-
});
|
|
1210
|
-
};
|
|
1211
|
-
const de_JobRuns = (output, context) => {
|
|
1212
|
-
const retVal = (output || [])
|
|
1213
|
-
.filter((e) => e != null)
|
|
1214
|
-
.map((entry) => {
|
|
1215
|
-
return de_JobRun(entry);
|
|
1216
|
-
});
|
|
1217
|
-
return retVal;
|
|
1218
|
-
};
|
|
1219
|
-
const de_JobTemplate = (output, context) => {
|
|
1220
|
-
return smithyClient.take(output, {
|
|
1221
|
-
arn: smithyClient.expectString,
|
|
1222
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1223
|
-
createdBy: smithyClient.expectString,
|
|
1224
|
-
decryptionError: smithyClient.expectString,
|
|
1225
|
-
id: smithyClient.expectString,
|
|
1226
|
-
jobTemplateData: (_) => de_JobTemplateData(_),
|
|
1227
|
-
kmsKeyArn: smithyClient.expectString,
|
|
1228
|
-
name: smithyClient.expectString,
|
|
1229
|
-
tags: smithyClient._json,
|
|
1230
|
-
});
|
|
1231
|
-
};
|
|
1232
|
-
const de_JobTemplateData = (output, context) => {
|
|
1233
|
-
return smithyClient.take(output, {
|
|
1234
|
-
configurationOverrides: (_) => de_ParametricConfigurationOverrides(_),
|
|
1235
|
-
executionRoleArn: smithyClient.expectString,
|
|
1236
|
-
jobDriver: smithyClient._json,
|
|
1237
|
-
jobTags: smithyClient._json,
|
|
1238
|
-
parameterConfiguration: smithyClient._json,
|
|
1239
|
-
releaseLabel: smithyClient.expectString,
|
|
1240
|
-
});
|
|
1241
|
-
};
|
|
1242
|
-
const de_JobTemplates = (output, context) => {
|
|
1243
|
-
const retVal = (output || [])
|
|
1244
|
-
.filter((e) => e != null)
|
|
1245
|
-
.map((entry) => {
|
|
1246
|
-
return de_JobTemplate(entry);
|
|
1247
|
-
});
|
|
1248
|
-
return retVal;
|
|
1249
|
-
};
|
|
1250
|
-
const de_ParametricConfigurationOverrides = (output, context) => {
|
|
1251
|
-
return smithyClient.take(output, {
|
|
1252
|
-
applicationConfiguration: (_) => de_ConfigurationList(_),
|
|
1253
|
-
monitoringConfiguration: smithyClient._json,
|
|
1254
|
-
});
|
|
1255
|
-
};
|
|
1256
|
-
const de_SecurityConfiguration = (output, context) => {
|
|
1257
|
-
return smithyClient.take(output, {
|
|
1258
|
-
arn: smithyClient.expectString,
|
|
1259
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1260
|
-
createdBy: smithyClient.expectString,
|
|
1261
|
-
id: smithyClient.expectString,
|
|
1262
|
-
name: smithyClient.expectString,
|
|
1263
|
-
securityConfigurationData: smithyClient._json,
|
|
1264
|
-
tags: smithyClient._json,
|
|
1265
|
-
});
|
|
1266
|
-
};
|
|
1267
|
-
const de_SecurityConfigurations = (output, context) => {
|
|
1268
|
-
const retVal = (output || [])
|
|
1269
|
-
.filter((e) => e != null)
|
|
1270
|
-
.map((entry) => {
|
|
1271
|
-
return de_SecurityConfiguration(entry);
|
|
1272
|
-
});
|
|
1273
|
-
return retVal;
|
|
1274
|
-
};
|
|
1275
|
-
const de_VirtualCluster = (output, context) => {
|
|
1276
|
-
return smithyClient.take(output, {
|
|
1277
|
-
arn: smithyClient.expectString,
|
|
1278
|
-
containerProvider: smithyClient._json,
|
|
1279
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1280
|
-
id: smithyClient.expectString,
|
|
1281
|
-
name: smithyClient.expectString,
|
|
1282
|
-
securityConfigurationId: smithyClient.expectString,
|
|
1283
|
-
state: smithyClient.expectString,
|
|
1284
|
-
tags: smithyClient._json,
|
|
1285
|
-
});
|
|
1286
|
-
};
|
|
1287
|
-
const de_VirtualClusters = (output, context) => {
|
|
1288
|
-
const retVal = (output || [])
|
|
1289
|
-
.filter((e) => e != null)
|
|
1290
|
-
.map((entry) => {
|
|
1291
|
-
return de_VirtualCluster(entry);
|
|
1292
|
-
});
|
|
1293
|
-
return retVal;
|
|
1294
|
-
};
|
|
1295
|
-
const deserializeMetadata = (output) => ({
|
|
1296
|
-
httpStatusCode: output.statusCode,
|
|
1297
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1298
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1299
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1300
|
-
});
|
|
1301
|
-
const _cA = "createdAfter";
|
|
1302
|
-
const _cB = "createdBefore";
|
|
243
|
+
const _AC = "AuthorizationConfiguration";
|
|
244
|
+
const _C = "Certificate";
|
|
245
|
+
const _CI = "ContainerInfo";
|
|
246
|
+
const _CJR = "CancelJobRun";
|
|
247
|
+
const _CJRR = "CancelJobRunRequest";
|
|
248
|
+
const _CJRRa = "CancelJobRunResponse";
|
|
249
|
+
const _CJT = "CreateJobTemplate";
|
|
250
|
+
const _CJTR = "CreateJobTemplateRequest";
|
|
251
|
+
const _CJTRr = "CreateJobTemplateResponse";
|
|
252
|
+
const _CL = "ConfigurationList";
|
|
253
|
+
const _CLRC = "ContainerLogRotationConfiguration";
|
|
254
|
+
const _CME = "CreateManagedEndpoint";
|
|
255
|
+
const _CMER = "CreateManagedEndpointRequest";
|
|
256
|
+
const _CMERr = "CreateManagedEndpointResponse";
|
|
257
|
+
const _CO = "ConfigurationOverrides";
|
|
258
|
+
const _CP = "ContainerProvider";
|
|
259
|
+
const _CSC = "CreateSecurityConfiguration";
|
|
260
|
+
const _CSCR = "CreateSecurityConfigurationRequest";
|
|
261
|
+
const _CSCRr = "CreateSecurityConfigurationResponse";
|
|
262
|
+
const _CVC = "CreateVirtualCluster";
|
|
263
|
+
const _CVCR = "CreateVirtualClusterRequest";
|
|
264
|
+
const _CVCRr = "CreateVirtualClusterResponse";
|
|
265
|
+
const _CWMC = "CloudWatchMonitoringConfiguration";
|
|
266
|
+
const _Co = "Configuration";
|
|
267
|
+
const _Cr = "Credentials";
|
|
268
|
+
const _DJR = "DescribeJobRun";
|
|
269
|
+
const _DJRR = "DescribeJobRunRequest";
|
|
270
|
+
const _DJRRe = "DescribeJobRunResponse";
|
|
271
|
+
const _DJT = "DeleteJobTemplate";
|
|
272
|
+
const _DJTR = "DeleteJobTemplateRequest";
|
|
273
|
+
const _DJTRe = "DeleteJobTemplateResponse";
|
|
274
|
+
const _DJTRes = "DescribeJobTemplateRequest";
|
|
275
|
+
const _DJTResc = "DescribeJobTemplateResponse";
|
|
276
|
+
const _DJTe = "DescribeJobTemplate";
|
|
277
|
+
const _DME = "DeleteManagedEndpoint";
|
|
278
|
+
const _DMER = "DeleteManagedEndpointRequest";
|
|
279
|
+
const _DMERe = "DeleteManagedEndpointResponse";
|
|
280
|
+
const _DMERes = "DescribeManagedEndpointRequest";
|
|
281
|
+
const _DMEResc = "DescribeManagedEndpointResponse";
|
|
282
|
+
const _DMEe = "DescribeManagedEndpoint";
|
|
283
|
+
const _DSC = "DescribeSecurityConfiguration";
|
|
284
|
+
const _DSCR = "DescribeSecurityConfigurationRequest";
|
|
285
|
+
const _DSCRe = "DescribeSecurityConfigurationResponse";
|
|
286
|
+
const _DVC = "DeleteVirtualCluster";
|
|
287
|
+
const _DVCR = "DeleteVirtualClusterRequest";
|
|
288
|
+
const _DVCRe = "DeleteVirtualClusterResponse";
|
|
289
|
+
const _DVCRes = "DescribeVirtualClusterRequest";
|
|
290
|
+
const _DVCResc = "DescribeVirtualClusterResponse";
|
|
291
|
+
const _DVCe = "DescribeVirtualCluster";
|
|
292
|
+
const _E = "Endpoint";
|
|
293
|
+
const _EC = "EncryptionConfiguration";
|
|
294
|
+
const _EI = "EksInfo";
|
|
295
|
+
const _EKSRTE = "EKSRequestThrottledException";
|
|
296
|
+
const _EPA = "EntryPointArgument";
|
|
297
|
+
const _EPAn = "EntryPointArguments";
|
|
298
|
+
const _EPP = "EntryPointPath";
|
|
299
|
+
const _En = "Endpoints";
|
|
300
|
+
const _GMESC = "GetManagedEndpointSessionCredentials";
|
|
301
|
+
const _GMESCR = "GetManagedEndpointSessionCredentialsRequest";
|
|
302
|
+
const _GMESCRe = "GetManagedEndpointSessionCredentialsResponse";
|
|
303
|
+
const _ISE = "InternalServerException";
|
|
304
|
+
const _ITEC = "InTransitEncryptionConfiguration";
|
|
305
|
+
const _JD = "JobDriver";
|
|
306
|
+
const _JR = "JobRun";
|
|
307
|
+
const _JRo = "JobRuns";
|
|
308
|
+
const _JT = "JobTemplate";
|
|
309
|
+
const _JTD = "JobTemplateData";
|
|
310
|
+
const _JTo = "JobTemplates";
|
|
311
|
+
const _LFC = "LakeFormationConfiguration";
|
|
312
|
+
const _LJR = "ListJobRuns";
|
|
313
|
+
const _LJRR = "ListJobRunsRequest";
|
|
314
|
+
const _LJRRi = "ListJobRunsResponse";
|
|
315
|
+
const _LJT = "ListJobTemplates";
|
|
316
|
+
const _LJTR = "ListJobTemplatesRequest";
|
|
317
|
+
const _LJTRi = "ListJobTemplatesResponse";
|
|
318
|
+
const _LME = "ListManagedEndpoints";
|
|
319
|
+
const _LMER = "ListManagedEndpointsRequest";
|
|
320
|
+
const _LMERi = "ListManagedEndpointsResponse";
|
|
321
|
+
const _LSC = "ListSecurityConfigurations";
|
|
322
|
+
const _LSCR = "ListSecurityConfigurationsRequest";
|
|
323
|
+
const _LSCRi = "ListSecurityConfigurationsResponse";
|
|
324
|
+
const _LTFR = "ListTagsForResource";
|
|
325
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
326
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
327
|
+
const _LVC = "ListVirtualClusters";
|
|
328
|
+
const _LVCR = "ListVirtualClustersRequest";
|
|
329
|
+
const _LVCRi = "ListVirtualClustersResponse";
|
|
330
|
+
const _MC = "MonitoringConfiguration";
|
|
331
|
+
const _ML = "ManagedLogs";
|
|
332
|
+
const _PCO = "ParametricConfigurationOverrides";
|
|
333
|
+
const _PCWMC = "ParametricCloudWatchMonitoringConfiguration";
|
|
334
|
+
const _PMC = "ParametricMonitoringConfiguration";
|
|
335
|
+
const _PSMC = "ParametricS3MonitoringConfiguration";
|
|
336
|
+
const _RNFE = "ResourceNotFoundException";
|
|
337
|
+
const _RPC = "RetryPolicyConfiguration";
|
|
338
|
+
const _RPE = "RetryPolicyExecution";
|
|
339
|
+
const _RTE = "RequestThrottledException";
|
|
340
|
+
const _SC = "SecurityConfiguration";
|
|
341
|
+
const _SCD = "SecurityConfigurationData";
|
|
342
|
+
const _SCe = "SecurityConfigurations";
|
|
343
|
+
const _SJR = "StartJobRun";
|
|
344
|
+
const _SJRR = "StartJobRunRequest";
|
|
345
|
+
const _SJRRt = "StartJobRunResponse";
|
|
346
|
+
const _SMC = "S3MonitoringConfiguration";
|
|
347
|
+
const _SNI = "SecureNamespaceInfo";
|
|
348
|
+
const _SPM = "SensitivePropertiesMap";
|
|
349
|
+
const _SSJD = "SparkSqlJobDriver";
|
|
350
|
+
const _SSJDp = "SparkSubmitJobDriver";
|
|
351
|
+
const _SSP = "SparkSqlParameters";
|
|
352
|
+
const _SSPp = "SparkSubmitParameters";
|
|
353
|
+
const _T = "Token";
|
|
354
|
+
const _TLSCC = "TLSCertificateConfiguration";
|
|
355
|
+
const _TPC = "TemplateParameterConfiguration";
|
|
356
|
+
const _TPCM = "TemplateParameterConfigurationMap";
|
|
357
|
+
const _TR = "TagResource";
|
|
358
|
+
const _TRR = "TagResourceRequest";
|
|
359
|
+
const _TRRa = "TagResourceResponse";
|
|
360
|
+
const _UR = "UntagResource";
|
|
361
|
+
const _URR = "UntagResourceRequest";
|
|
362
|
+
const _URRn = "UntagResourceResponse";
|
|
363
|
+
const _VC = "VirtualCluster";
|
|
364
|
+
const _VCi = "VirtualClusters";
|
|
365
|
+
const _VE = "ValidationException";
|
|
366
|
+
const _a = "arn";
|
|
367
|
+
const _aAWSTRL = "allowAWSToRetainLogs";
|
|
368
|
+
const _aC = "applicationConfiguration";
|
|
369
|
+
const _aCu = "authorizationConfiguration";
|
|
370
|
+
const _aSTV = "authorizedSessionTagValue";
|
|
371
|
+
const _c = "classification";
|
|
372
|
+
const _cA = "certificateArn";
|
|
373
|
+
const _cAC = "currentAttemptCount";
|
|
374
|
+
const _cAe = "certificateAuthority";
|
|
375
|
+
const _cAr = "createdAt";
|
|
376
|
+
const _cAre = "createdAfter";
|
|
377
|
+
const _cB = "createdBy";
|
|
378
|
+
const _cBr = "createdBefore";
|
|
379
|
+
const _cD = "certificateData";
|
|
380
|
+
const _cI = "clusterId";
|
|
381
|
+
const _cLRC = "containerLogRotationConfiguration";
|
|
382
|
+
const _cO = "configurationOverrides";
|
|
383
|
+
const _cP = "containerProvider";
|
|
1303
384
|
const _cPI = "containerProviderId";
|
|
1304
385
|
const _cPT = "containerProviderType";
|
|
386
|
+
const _cPTe = "certificateProviderType";
|
|
387
|
+
const _cT = "clientToken";
|
|
388
|
+
const _cTr = "credentialType";
|
|
389
|
+
const _cWMC = "cloudWatchMonitoringConfiguration";
|
|
390
|
+
const _cl = "client";
|
|
391
|
+
const _co = "configurations";
|
|
392
|
+
const _cr = "credentials";
|
|
393
|
+
const _dE = "decryptionError";
|
|
394
|
+
const _dIS = "durationInSeconds";
|
|
395
|
+
const _dV = "defaultValue";
|
|
396
|
+
const _e = "endpoint";
|
|
397
|
+
const _eA = "expiresAt";
|
|
1305
398
|
const _eAEI = "eksAccessEntryIntegrated";
|
|
399
|
+
const _eC = "encryptionConfiguration";
|
|
400
|
+
const _eI = "endpointIdentifier";
|
|
401
|
+
const _eIk = "eksInfo";
|
|
402
|
+
const _eKA = "encryptionKeyArn";
|
|
403
|
+
const _eP = "entryPoint";
|
|
404
|
+
const _ePA = "entryPointArguments";
|
|
405
|
+
const _eRA = "executionRoleArn";
|
|
406
|
+
const _en = "endpoints";
|
|
407
|
+
const _er = "error";
|
|
408
|
+
const _fA = "finishedAt";
|
|
409
|
+
const _fR = "failureReason";
|
|
410
|
+
const _h = "http";
|
|
411
|
+
const _hE = "httpError";
|
|
412
|
+
const _hQ = "httpQuery";
|
|
413
|
+
const _i = "id";
|
|
414
|
+
const _iTEC = "inTransitEncryptionConfiguration";
|
|
415
|
+
const _in = "info";
|
|
416
|
+
const _jD = "jobDriver";
|
|
417
|
+
const _jR = "jobRun";
|
|
418
|
+
const _jRo = "jobRuns";
|
|
419
|
+
const _jT = "jobTemplate";
|
|
420
|
+
const _jTD = "jobTemplateData";
|
|
421
|
+
const _jTI = "jobTemplateId";
|
|
422
|
+
const _jTP = "jobTemplateParameters";
|
|
423
|
+
const _jTo = "jobTags";
|
|
424
|
+
const _kKA = "kmsKeyArn";
|
|
425
|
+
const _lC = "logContext";
|
|
426
|
+
const _lFC = "lakeFormationConfiguration";
|
|
427
|
+
const _lGN = "logGroupName";
|
|
428
|
+
const _lSNP = "logStreamNamePrefix";
|
|
429
|
+
const _lU = "logUri";
|
|
430
|
+
const _m = "message";
|
|
431
|
+
const _mA = "maxAttempts";
|
|
432
|
+
const _mC = "monitoringConfiguration";
|
|
433
|
+
const _mFTK = "maxFilesToKeep";
|
|
434
|
+
const _mL = "managedLogs";
|
|
1306
435
|
const _mR = "maxResults";
|
|
1307
436
|
const _n = "name";
|
|
437
|
+
const _nL = "nodeLabel";
|
|
1308
438
|
const _nT = "nextToken";
|
|
1309
|
-
const
|
|
1310
|
-
const
|
|
439
|
+
const _na = "namespace";
|
|
440
|
+
const _p = "properties";
|
|
441
|
+
const _pAUI = "persistentAppUI";
|
|
442
|
+
const _pC = "parameterConfiguration";
|
|
443
|
+
const _pCSA = "publicCertificateSecretArn";
|
|
444
|
+
const _pCSAr = "privateCertificateSecretArn";
|
|
445
|
+
const _qERA = "queryEngineRoleArn";
|
|
446
|
+
const _rA = "resourceArn";
|
|
447
|
+
const _rL = "releaseLabel";
|
|
448
|
+
const _rPC = "retryPolicyConfiguration";
|
|
449
|
+
const _rPE = "retryPolicyExecution";
|
|
450
|
+
const _rS = "rotationSize";
|
|
451
|
+
const _s = "state";
|
|
452
|
+
const _sC = "securityConfiguration";
|
|
453
|
+
const _sCD = "securityConfigurationData";
|
|
454
|
+
const _sCI = "securityConfigurationId";
|
|
455
|
+
const _sCe = "securityConfigurations";
|
|
456
|
+
const _sD = "stateDetails";
|
|
457
|
+
const _sG = "securityGroup";
|
|
458
|
+
const _sI = "subnetIds";
|
|
459
|
+
const _sMC = "s3MonitoringConfiguration";
|
|
460
|
+
const _sNI = "secureNamespaceInfo";
|
|
461
|
+
const _sSJD = "sparkSubmitJobDriver";
|
|
462
|
+
const _sSJDp = "sparkSqlJobDriver";
|
|
463
|
+
const _sSP = "sparkSqlParameters";
|
|
464
|
+
const _sSPp = "sparkSubmitParameters";
|
|
465
|
+
const _sU = "serverUrl";
|
|
466
|
+
const _se = "server";
|
|
467
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.emrcontainers";
|
|
468
|
+
const _st = "states";
|
|
469
|
+
const _t = "type";
|
|
470
|
+
const _tCC = "tlsCertificateConfiguration";
|
|
1311
471
|
const _tK = "tagKeys";
|
|
472
|
+
const _ta = "tags";
|
|
473
|
+
const _te = "templates";
|
|
474
|
+
const _to = "token";
|
|
475
|
+
const _ty = "types";
|
|
476
|
+
const _vC = "virtualCluster";
|
|
477
|
+
const _vCI = "virtualClusterId";
|
|
478
|
+
const _vCIi = "virtualClusterIdentifier";
|
|
479
|
+
const _vCi = "virtualClusters";
|
|
480
|
+
const n0 = "com.amazonaws.emrcontainers";
|
|
481
|
+
var EntryPointArgument = [0, n0, _EPA, 8, 0];
|
|
482
|
+
var EntryPointPath = [0, n0, _EPP, 8, 0];
|
|
483
|
+
var SparkSqlParameters = [0, n0, _SSP, 8, 0];
|
|
484
|
+
var SparkSubmitParameters = [0, n0, _SSPp, 8, 0];
|
|
485
|
+
var Token = [0, n0, _T, 8, 0];
|
|
486
|
+
var AuthorizationConfiguration = [
|
|
487
|
+
3,
|
|
488
|
+
n0,
|
|
489
|
+
_AC,
|
|
490
|
+
0,
|
|
491
|
+
[_lFC, _eC],
|
|
492
|
+
[() => LakeFormationConfiguration, () => EncryptionConfiguration],
|
|
493
|
+
];
|
|
494
|
+
var CancelJobRunRequest = [
|
|
495
|
+
3,
|
|
496
|
+
n0,
|
|
497
|
+
_CJRR,
|
|
498
|
+
0,
|
|
499
|
+
[_i, _vCI],
|
|
500
|
+
[
|
|
501
|
+
[0, 1],
|
|
502
|
+
[0, 1],
|
|
503
|
+
],
|
|
504
|
+
];
|
|
505
|
+
var CancelJobRunResponse = [3, n0, _CJRRa, 0, [_i, _vCI], [0, 0]];
|
|
506
|
+
var Certificate = [3, n0, _C, 0, [_cA, _cD], [0, 0]];
|
|
507
|
+
var CloudWatchMonitoringConfiguration = [3, n0, _CWMC, 0, [_lGN, _lSNP], [0, 0]];
|
|
508
|
+
var Configuration = [
|
|
509
|
+
3,
|
|
510
|
+
n0,
|
|
511
|
+
_Co,
|
|
512
|
+
0,
|
|
513
|
+
[_c, _p, _co],
|
|
514
|
+
[0, [() => SensitivePropertiesMap, 0], [() => ConfigurationList, 0]],
|
|
515
|
+
];
|
|
516
|
+
var ConfigurationOverrides = [
|
|
517
|
+
3,
|
|
518
|
+
n0,
|
|
519
|
+
_CO,
|
|
520
|
+
0,
|
|
521
|
+
[_aC, _mC],
|
|
522
|
+
[[() => ConfigurationList, 0], () => MonitoringConfiguration],
|
|
523
|
+
];
|
|
524
|
+
var ContainerLogRotationConfiguration = [3, n0, _CLRC, 0, [_rS, _mFTK], [0, 1]];
|
|
525
|
+
var ContainerProvider = [3, n0, _CP, 0, [_t, _i, _in], [0, 0, () => ContainerInfo]];
|
|
526
|
+
var CreateJobTemplateRequest = [
|
|
527
|
+
3,
|
|
528
|
+
n0,
|
|
529
|
+
_CJTR,
|
|
530
|
+
0,
|
|
531
|
+
[_n, _cT, _jTD, _ta, _kKA],
|
|
532
|
+
[0, [0, 4], [() => JobTemplateData, 0], 128 | 0, 0],
|
|
533
|
+
];
|
|
534
|
+
var CreateJobTemplateResponse = [3, n0, _CJTRr, 0, [_i, _n, _a, _cAr], [0, 0, 0, 5]];
|
|
535
|
+
var CreateManagedEndpointRequest = [
|
|
536
|
+
3,
|
|
537
|
+
n0,
|
|
538
|
+
_CMER,
|
|
539
|
+
0,
|
|
540
|
+
[_n, _vCI, _t, _rL, _eRA, _cA, _cO, _cT, _ta],
|
|
541
|
+
[0, [0, 1], 0, 0, 0, 0, [() => ConfigurationOverrides, 0], [0, 4], 128 | 0],
|
|
542
|
+
];
|
|
543
|
+
var CreateManagedEndpointResponse = [3, n0, _CMERr, 0, [_i, _n, _a, _vCI], [0, 0, 0, 0]];
|
|
544
|
+
var CreateSecurityConfigurationRequest = [
|
|
545
|
+
3,
|
|
546
|
+
n0,
|
|
547
|
+
_CSCR,
|
|
548
|
+
0,
|
|
549
|
+
[_cT, _n, _cP, _sCD, _ta],
|
|
550
|
+
[[0, 4], 0, () => ContainerProvider, () => SecurityConfigurationData, 128 | 0],
|
|
551
|
+
];
|
|
552
|
+
var CreateSecurityConfigurationResponse = [3, n0, _CSCRr, 0, [_i, _n, _a], [0, 0, 0]];
|
|
553
|
+
var CreateVirtualClusterRequest = [
|
|
554
|
+
3,
|
|
555
|
+
n0,
|
|
556
|
+
_CVCR,
|
|
557
|
+
0,
|
|
558
|
+
[_n, _cP, _cT, _ta, _sCI],
|
|
559
|
+
[0, () => ContainerProvider, [0, 4], 128 | 0, 0],
|
|
560
|
+
];
|
|
561
|
+
var CreateVirtualClusterResponse = [3, n0, _CVCRr, 0, [_i, _n, _a], [0, 0, 0]];
|
|
562
|
+
var DeleteJobTemplateRequest = [3, n0, _DJTR, 0, [_i], [[0, 1]]];
|
|
563
|
+
var DeleteJobTemplateResponse = [3, n0, _DJTRe, 0, [_i], [0]];
|
|
564
|
+
var DeleteManagedEndpointRequest = [
|
|
565
|
+
3,
|
|
566
|
+
n0,
|
|
567
|
+
_DMER,
|
|
568
|
+
0,
|
|
569
|
+
[_i, _vCI],
|
|
570
|
+
[
|
|
571
|
+
[0, 1],
|
|
572
|
+
[0, 1],
|
|
573
|
+
],
|
|
574
|
+
];
|
|
575
|
+
var DeleteManagedEndpointResponse = [3, n0, _DMERe, 0, [_i, _vCI], [0, 0]];
|
|
576
|
+
var DeleteVirtualClusterRequest = [3, n0, _DVCR, 0, [_i], [[0, 1]]];
|
|
577
|
+
var DeleteVirtualClusterResponse = [3, n0, _DVCRe, 0, [_i], [0]];
|
|
578
|
+
var DescribeJobRunRequest = [
|
|
579
|
+
3,
|
|
580
|
+
n0,
|
|
581
|
+
_DJRR,
|
|
582
|
+
0,
|
|
583
|
+
[_i, _vCI],
|
|
584
|
+
[
|
|
585
|
+
[0, 1],
|
|
586
|
+
[0, 1],
|
|
587
|
+
],
|
|
588
|
+
];
|
|
589
|
+
var DescribeJobRunResponse = [3, n0, _DJRRe, 0, [_jR], [[() => JobRun, 0]]];
|
|
590
|
+
var DescribeJobTemplateRequest = [3, n0, _DJTRes, 0, [_i], [[0, 1]]];
|
|
591
|
+
var DescribeJobTemplateResponse = [3, n0, _DJTResc, 0, [_jT], [[() => JobTemplate, 0]]];
|
|
592
|
+
var DescribeManagedEndpointRequest = [
|
|
593
|
+
3,
|
|
594
|
+
n0,
|
|
595
|
+
_DMERes,
|
|
596
|
+
0,
|
|
597
|
+
[_i, _vCI],
|
|
598
|
+
[
|
|
599
|
+
[0, 1],
|
|
600
|
+
[0, 1],
|
|
601
|
+
],
|
|
602
|
+
];
|
|
603
|
+
var DescribeManagedEndpointResponse = [3, n0, _DMEResc, 0, [_e], [[() => Endpoint, 0]]];
|
|
604
|
+
var DescribeSecurityConfigurationRequest = [3, n0, _DSCR, 0, [_i], [[0, 1]]];
|
|
605
|
+
var DescribeSecurityConfigurationResponse = [
|
|
606
|
+
3,
|
|
607
|
+
n0,
|
|
608
|
+
_DSCRe,
|
|
609
|
+
0,
|
|
610
|
+
[_sC],
|
|
611
|
+
[() => SecurityConfiguration],
|
|
612
|
+
];
|
|
613
|
+
var DescribeVirtualClusterRequest = [3, n0, _DVCRes, 0, [_i], [[0, 1]]];
|
|
614
|
+
var DescribeVirtualClusterResponse = [3, n0, _DVCResc, 0, [_vC], [() => VirtualCluster]];
|
|
615
|
+
var EksInfo = [3, n0, _EI, 0, [_na, _nL], [0, 0]];
|
|
616
|
+
var EKSRequestThrottledException = [
|
|
617
|
+
-3,
|
|
618
|
+
n0,
|
|
619
|
+
_EKSRTE,
|
|
620
|
+
{
|
|
621
|
+
[_er]: _cl,
|
|
622
|
+
[_hE]: 429,
|
|
623
|
+
},
|
|
624
|
+
[_m],
|
|
625
|
+
[0],
|
|
626
|
+
];
|
|
627
|
+
schema.TypeRegistry.for(n0).registerError(EKSRequestThrottledException, EKSRequestThrottledException$1);
|
|
628
|
+
var EncryptionConfiguration = [
|
|
629
|
+
3,
|
|
630
|
+
n0,
|
|
631
|
+
_EC,
|
|
632
|
+
0,
|
|
633
|
+
[_iTEC],
|
|
634
|
+
[() => InTransitEncryptionConfiguration],
|
|
635
|
+
];
|
|
636
|
+
var Endpoint = [
|
|
637
|
+
3,
|
|
638
|
+
n0,
|
|
639
|
+
_E,
|
|
640
|
+
0,
|
|
641
|
+
[_i, _n, _a, _vCI, _t, _s, _rL, _eRA, _cA, _cAe, _cO, _sU, _cAr, _sG, _sI, _sD, _fR, _ta],
|
|
642
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => Certificate, [() => ConfigurationOverrides, 0], 0, 5, 0, 64 | 0, 0, 0, 128 | 0],
|
|
643
|
+
];
|
|
644
|
+
var GetManagedEndpointSessionCredentialsRequest = [
|
|
645
|
+
3,
|
|
646
|
+
n0,
|
|
647
|
+
_GMESCR,
|
|
648
|
+
0,
|
|
649
|
+
[_eI, _vCIi, _eRA, _cTr, _dIS, _lC, _cT],
|
|
650
|
+
[[0, 1], [0, 1], 0, 0, 1, 0, [0, 4]],
|
|
651
|
+
];
|
|
652
|
+
var GetManagedEndpointSessionCredentialsResponse = [
|
|
653
|
+
3,
|
|
654
|
+
n0,
|
|
655
|
+
_GMESCRe,
|
|
656
|
+
0,
|
|
657
|
+
[_i, _cr, _eA],
|
|
658
|
+
[0, [() => Credentials, 0], 5],
|
|
659
|
+
];
|
|
660
|
+
var InternalServerException = [
|
|
661
|
+
-3,
|
|
662
|
+
n0,
|
|
663
|
+
_ISE,
|
|
664
|
+
{
|
|
665
|
+
[_er]: _se,
|
|
666
|
+
[_hE]: 500,
|
|
667
|
+
},
|
|
668
|
+
[_m],
|
|
669
|
+
[0],
|
|
670
|
+
];
|
|
671
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
672
|
+
var InTransitEncryptionConfiguration = [
|
|
673
|
+
3,
|
|
674
|
+
n0,
|
|
675
|
+
_ITEC,
|
|
676
|
+
0,
|
|
677
|
+
[_tCC],
|
|
678
|
+
[() => TLSCertificateConfiguration],
|
|
679
|
+
];
|
|
680
|
+
var JobDriver = [
|
|
681
|
+
3,
|
|
682
|
+
n0,
|
|
683
|
+
_JD,
|
|
684
|
+
0,
|
|
685
|
+
[_sSJD, _sSJDp],
|
|
686
|
+
[
|
|
687
|
+
[() => SparkSubmitJobDriver, 0],
|
|
688
|
+
[() => SparkSqlJobDriver, 0],
|
|
689
|
+
],
|
|
690
|
+
];
|
|
691
|
+
var JobRun = [
|
|
692
|
+
3,
|
|
693
|
+
n0,
|
|
694
|
+
_JR,
|
|
695
|
+
0,
|
|
696
|
+
[_i, _n, _vCI, _a, _s, _cT, _eRA, _rL, _cO, _jD, _cAr, _cB, _fA, _sD, _fR, _ta, _rPC, _rPE],
|
|
697
|
+
[
|
|
698
|
+
0,
|
|
699
|
+
0,
|
|
700
|
+
0,
|
|
701
|
+
0,
|
|
702
|
+
0,
|
|
703
|
+
0,
|
|
704
|
+
0,
|
|
705
|
+
0,
|
|
706
|
+
[() => ConfigurationOverrides, 0],
|
|
707
|
+
[() => JobDriver, 0],
|
|
708
|
+
5,
|
|
709
|
+
0,
|
|
710
|
+
5,
|
|
711
|
+
0,
|
|
712
|
+
0,
|
|
713
|
+
128 | 0,
|
|
714
|
+
() => RetryPolicyConfiguration,
|
|
715
|
+
() => RetryPolicyExecution,
|
|
716
|
+
],
|
|
717
|
+
];
|
|
718
|
+
var JobTemplate = [
|
|
719
|
+
3,
|
|
720
|
+
n0,
|
|
721
|
+
_JT,
|
|
722
|
+
0,
|
|
723
|
+
[_n, _i, _a, _cAr, _cB, _ta, _jTD, _kKA, _dE],
|
|
724
|
+
[0, 0, 0, 5, 0, 128 | 0, [() => JobTemplateData, 0], 0, 0],
|
|
725
|
+
];
|
|
726
|
+
var JobTemplateData = [
|
|
727
|
+
3,
|
|
728
|
+
n0,
|
|
729
|
+
_JTD,
|
|
730
|
+
0,
|
|
731
|
+
[_eRA, _rL, _cO, _jD, _pC, _jTo],
|
|
732
|
+
[
|
|
733
|
+
0,
|
|
734
|
+
0,
|
|
735
|
+
[() => ParametricConfigurationOverrides, 0],
|
|
736
|
+
[() => JobDriver, 0],
|
|
737
|
+
() => TemplateParameterConfigurationMap,
|
|
738
|
+
128 | 0,
|
|
739
|
+
],
|
|
740
|
+
];
|
|
741
|
+
var LakeFormationConfiguration = [
|
|
742
|
+
3,
|
|
743
|
+
n0,
|
|
744
|
+
_LFC,
|
|
745
|
+
0,
|
|
746
|
+
[_aSTV, _sNI, _qERA],
|
|
747
|
+
[0, () => SecureNamespaceInfo, 0],
|
|
748
|
+
];
|
|
749
|
+
var ListJobRunsRequest = [
|
|
750
|
+
3,
|
|
751
|
+
n0,
|
|
752
|
+
_LJRR,
|
|
753
|
+
0,
|
|
754
|
+
[_vCI, _cBr, _cAre, _n, _st, _mR, _nT],
|
|
755
|
+
[
|
|
756
|
+
[0, 1],
|
|
757
|
+
[
|
|
758
|
+
5,
|
|
759
|
+
{
|
|
760
|
+
[_hQ]: _cBr,
|
|
761
|
+
},
|
|
762
|
+
],
|
|
763
|
+
[
|
|
764
|
+
5,
|
|
765
|
+
{
|
|
766
|
+
[_hQ]: _cAre,
|
|
767
|
+
},
|
|
768
|
+
],
|
|
769
|
+
[
|
|
770
|
+
0,
|
|
771
|
+
{
|
|
772
|
+
[_hQ]: _n,
|
|
773
|
+
},
|
|
774
|
+
],
|
|
775
|
+
[
|
|
776
|
+
64 | 0,
|
|
777
|
+
{
|
|
778
|
+
[_hQ]: _st,
|
|
779
|
+
},
|
|
780
|
+
],
|
|
781
|
+
[
|
|
782
|
+
1,
|
|
783
|
+
{
|
|
784
|
+
[_hQ]: _mR,
|
|
785
|
+
},
|
|
786
|
+
],
|
|
787
|
+
[
|
|
788
|
+
0,
|
|
789
|
+
{
|
|
790
|
+
[_hQ]: _nT,
|
|
791
|
+
},
|
|
792
|
+
],
|
|
793
|
+
],
|
|
794
|
+
];
|
|
795
|
+
var ListJobRunsResponse = [3, n0, _LJRRi, 0, [_jRo, _nT], [[() => JobRuns, 0], 0]];
|
|
796
|
+
var ListJobTemplatesRequest = [
|
|
797
|
+
3,
|
|
798
|
+
n0,
|
|
799
|
+
_LJTR,
|
|
800
|
+
0,
|
|
801
|
+
[_cAre, _cBr, _mR, _nT],
|
|
802
|
+
[
|
|
803
|
+
[
|
|
804
|
+
5,
|
|
805
|
+
{
|
|
806
|
+
[_hQ]: _cAre,
|
|
807
|
+
},
|
|
808
|
+
],
|
|
809
|
+
[
|
|
810
|
+
5,
|
|
811
|
+
{
|
|
812
|
+
[_hQ]: _cBr,
|
|
813
|
+
},
|
|
814
|
+
],
|
|
815
|
+
[
|
|
816
|
+
1,
|
|
817
|
+
{
|
|
818
|
+
[_hQ]: _mR,
|
|
819
|
+
},
|
|
820
|
+
],
|
|
821
|
+
[
|
|
822
|
+
0,
|
|
823
|
+
{
|
|
824
|
+
[_hQ]: _nT,
|
|
825
|
+
},
|
|
826
|
+
],
|
|
827
|
+
],
|
|
828
|
+
];
|
|
829
|
+
var ListJobTemplatesResponse = [
|
|
830
|
+
3,
|
|
831
|
+
n0,
|
|
832
|
+
_LJTRi,
|
|
833
|
+
0,
|
|
834
|
+
[_te, _nT],
|
|
835
|
+
[[() => JobTemplates, 0], 0],
|
|
836
|
+
];
|
|
837
|
+
var ListManagedEndpointsRequest = [
|
|
838
|
+
3,
|
|
839
|
+
n0,
|
|
840
|
+
_LMER,
|
|
841
|
+
0,
|
|
842
|
+
[_vCI, _cBr, _cAre, _ty, _st, _mR, _nT],
|
|
843
|
+
[
|
|
844
|
+
[0, 1],
|
|
845
|
+
[
|
|
846
|
+
5,
|
|
847
|
+
{
|
|
848
|
+
[_hQ]: _cBr,
|
|
849
|
+
},
|
|
850
|
+
],
|
|
851
|
+
[
|
|
852
|
+
5,
|
|
853
|
+
{
|
|
854
|
+
[_hQ]: _cAre,
|
|
855
|
+
},
|
|
856
|
+
],
|
|
857
|
+
[
|
|
858
|
+
64 | 0,
|
|
859
|
+
{
|
|
860
|
+
[_hQ]: _ty,
|
|
861
|
+
},
|
|
862
|
+
],
|
|
863
|
+
[
|
|
864
|
+
64 | 0,
|
|
865
|
+
{
|
|
866
|
+
[_hQ]: _st,
|
|
867
|
+
},
|
|
868
|
+
],
|
|
869
|
+
[
|
|
870
|
+
1,
|
|
871
|
+
{
|
|
872
|
+
[_hQ]: _mR,
|
|
873
|
+
},
|
|
874
|
+
],
|
|
875
|
+
[
|
|
876
|
+
0,
|
|
877
|
+
{
|
|
878
|
+
[_hQ]: _nT,
|
|
879
|
+
},
|
|
880
|
+
],
|
|
881
|
+
],
|
|
882
|
+
];
|
|
883
|
+
var ListManagedEndpointsResponse = [
|
|
884
|
+
3,
|
|
885
|
+
n0,
|
|
886
|
+
_LMERi,
|
|
887
|
+
0,
|
|
888
|
+
[_en, _nT],
|
|
889
|
+
[[() => Endpoints, 0], 0],
|
|
890
|
+
];
|
|
891
|
+
var ListSecurityConfigurationsRequest = [
|
|
892
|
+
3,
|
|
893
|
+
n0,
|
|
894
|
+
_LSCR,
|
|
895
|
+
0,
|
|
896
|
+
[_cAre, _cBr, _mR, _nT],
|
|
897
|
+
[
|
|
898
|
+
[
|
|
899
|
+
5,
|
|
900
|
+
{
|
|
901
|
+
[_hQ]: _cAre,
|
|
902
|
+
},
|
|
903
|
+
],
|
|
904
|
+
[
|
|
905
|
+
5,
|
|
906
|
+
{
|
|
907
|
+
[_hQ]: _cBr,
|
|
908
|
+
},
|
|
909
|
+
],
|
|
910
|
+
[
|
|
911
|
+
1,
|
|
912
|
+
{
|
|
913
|
+
[_hQ]: _mR,
|
|
914
|
+
},
|
|
915
|
+
],
|
|
916
|
+
[
|
|
917
|
+
0,
|
|
918
|
+
{
|
|
919
|
+
[_hQ]: _nT,
|
|
920
|
+
},
|
|
921
|
+
],
|
|
922
|
+
],
|
|
923
|
+
];
|
|
924
|
+
var ListSecurityConfigurationsResponse = [
|
|
925
|
+
3,
|
|
926
|
+
n0,
|
|
927
|
+
_LSCRi,
|
|
928
|
+
0,
|
|
929
|
+
[_sCe, _nT],
|
|
930
|
+
[() => SecurityConfigurations, 0],
|
|
931
|
+
];
|
|
932
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
933
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
934
|
+
var ListVirtualClustersRequest = [
|
|
935
|
+
3,
|
|
936
|
+
n0,
|
|
937
|
+
_LVCR,
|
|
938
|
+
0,
|
|
939
|
+
[_cPI, _cPT, _cAre, _cBr, _st, _mR, _nT, _eAEI],
|
|
940
|
+
[
|
|
941
|
+
[
|
|
942
|
+
0,
|
|
943
|
+
{
|
|
944
|
+
[_hQ]: _cPI,
|
|
945
|
+
},
|
|
946
|
+
],
|
|
947
|
+
[
|
|
948
|
+
0,
|
|
949
|
+
{
|
|
950
|
+
[_hQ]: _cPT,
|
|
951
|
+
},
|
|
952
|
+
],
|
|
953
|
+
[
|
|
954
|
+
5,
|
|
955
|
+
{
|
|
956
|
+
[_hQ]: _cAre,
|
|
957
|
+
},
|
|
958
|
+
],
|
|
959
|
+
[
|
|
960
|
+
5,
|
|
961
|
+
{
|
|
962
|
+
[_hQ]: _cBr,
|
|
963
|
+
},
|
|
964
|
+
],
|
|
965
|
+
[
|
|
966
|
+
64 | 0,
|
|
967
|
+
{
|
|
968
|
+
[_hQ]: _st,
|
|
969
|
+
},
|
|
970
|
+
],
|
|
971
|
+
[
|
|
972
|
+
1,
|
|
973
|
+
{
|
|
974
|
+
[_hQ]: _mR,
|
|
975
|
+
},
|
|
976
|
+
],
|
|
977
|
+
[
|
|
978
|
+
0,
|
|
979
|
+
{
|
|
980
|
+
[_hQ]: _nT,
|
|
981
|
+
},
|
|
982
|
+
],
|
|
983
|
+
[
|
|
984
|
+
2,
|
|
985
|
+
{
|
|
986
|
+
[_hQ]: _eAEI,
|
|
987
|
+
},
|
|
988
|
+
],
|
|
989
|
+
],
|
|
990
|
+
];
|
|
991
|
+
var ListVirtualClustersResponse = [
|
|
992
|
+
3,
|
|
993
|
+
n0,
|
|
994
|
+
_LVCRi,
|
|
995
|
+
0,
|
|
996
|
+
[_vCi, _nT],
|
|
997
|
+
[() => VirtualClusters, 0],
|
|
998
|
+
];
|
|
999
|
+
var ManagedLogs = [3, n0, _ML, 0, [_aAWSTRL, _eKA], [0, 0]];
|
|
1000
|
+
var MonitoringConfiguration = [
|
|
1001
|
+
3,
|
|
1002
|
+
n0,
|
|
1003
|
+
_MC,
|
|
1004
|
+
0,
|
|
1005
|
+
[_mL, _pAUI, _cWMC, _sMC, _cLRC],
|
|
1006
|
+
[
|
|
1007
|
+
() => ManagedLogs,
|
|
1008
|
+
0,
|
|
1009
|
+
() => CloudWatchMonitoringConfiguration,
|
|
1010
|
+
() => S3MonitoringConfiguration,
|
|
1011
|
+
() => ContainerLogRotationConfiguration,
|
|
1012
|
+
],
|
|
1013
|
+
];
|
|
1014
|
+
var ParametricCloudWatchMonitoringConfiguration = [
|
|
1015
|
+
3,
|
|
1016
|
+
n0,
|
|
1017
|
+
_PCWMC,
|
|
1018
|
+
0,
|
|
1019
|
+
[_lGN, _lSNP],
|
|
1020
|
+
[0, 0],
|
|
1021
|
+
];
|
|
1022
|
+
var ParametricConfigurationOverrides = [
|
|
1023
|
+
3,
|
|
1024
|
+
n0,
|
|
1025
|
+
_PCO,
|
|
1026
|
+
0,
|
|
1027
|
+
[_aC, _mC],
|
|
1028
|
+
[[() => ConfigurationList, 0], () => ParametricMonitoringConfiguration],
|
|
1029
|
+
];
|
|
1030
|
+
var ParametricMonitoringConfiguration = [
|
|
1031
|
+
3,
|
|
1032
|
+
n0,
|
|
1033
|
+
_PMC,
|
|
1034
|
+
0,
|
|
1035
|
+
[_pAUI, _cWMC, _sMC],
|
|
1036
|
+
[0, () => ParametricCloudWatchMonitoringConfiguration, () => ParametricS3MonitoringConfiguration],
|
|
1037
|
+
];
|
|
1038
|
+
var ParametricS3MonitoringConfiguration = [3, n0, _PSMC, 0, [_lU], [0]];
|
|
1039
|
+
var RequestThrottledException = [
|
|
1040
|
+
-3,
|
|
1041
|
+
n0,
|
|
1042
|
+
_RTE,
|
|
1043
|
+
{
|
|
1044
|
+
[_er]: _cl,
|
|
1045
|
+
[_hE]: 400,
|
|
1046
|
+
},
|
|
1047
|
+
[_m],
|
|
1048
|
+
[0],
|
|
1049
|
+
];
|
|
1050
|
+
schema.TypeRegistry.for(n0).registerError(RequestThrottledException, RequestThrottledException$1);
|
|
1051
|
+
var ResourceNotFoundException = [
|
|
1052
|
+
-3,
|
|
1053
|
+
n0,
|
|
1054
|
+
_RNFE,
|
|
1055
|
+
{
|
|
1056
|
+
[_er]: _cl,
|
|
1057
|
+
[_hE]: 400,
|
|
1058
|
+
},
|
|
1059
|
+
[_m],
|
|
1060
|
+
[0],
|
|
1061
|
+
];
|
|
1062
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1063
|
+
var RetryPolicyConfiguration = [3, n0, _RPC, 0, [_mA], [1]];
|
|
1064
|
+
var RetryPolicyExecution = [3, n0, _RPE, 0, [_cAC], [1]];
|
|
1065
|
+
var S3MonitoringConfiguration = [3, n0, _SMC, 0, [_lU], [0]];
|
|
1066
|
+
var SecureNamespaceInfo = [3, n0, _SNI, 0, [_cI, _na], [0, 0]];
|
|
1067
|
+
var SecurityConfiguration = [
|
|
1068
|
+
3,
|
|
1069
|
+
n0,
|
|
1070
|
+
_SC,
|
|
1071
|
+
0,
|
|
1072
|
+
[_i, _n, _a, _cAr, _cB, _sCD, _ta],
|
|
1073
|
+
[0, 0, 0, 5, 0, () => SecurityConfigurationData, 128 | 0],
|
|
1074
|
+
];
|
|
1075
|
+
var SecurityConfigurationData = [
|
|
1076
|
+
3,
|
|
1077
|
+
n0,
|
|
1078
|
+
_SCD,
|
|
1079
|
+
0,
|
|
1080
|
+
[_aCu],
|
|
1081
|
+
[() => AuthorizationConfiguration],
|
|
1082
|
+
];
|
|
1083
|
+
var SparkSqlJobDriver = [
|
|
1084
|
+
3,
|
|
1085
|
+
n0,
|
|
1086
|
+
_SSJD,
|
|
1087
|
+
0,
|
|
1088
|
+
[_eP, _sSP],
|
|
1089
|
+
[
|
|
1090
|
+
[() => EntryPointPath, 0],
|
|
1091
|
+
[() => SparkSqlParameters, 0],
|
|
1092
|
+
],
|
|
1093
|
+
];
|
|
1094
|
+
var SparkSubmitJobDriver = [
|
|
1095
|
+
3,
|
|
1096
|
+
n0,
|
|
1097
|
+
_SSJDp,
|
|
1098
|
+
0,
|
|
1099
|
+
[_eP, _ePA, _sSPp],
|
|
1100
|
+
[
|
|
1101
|
+
[() => EntryPointPath, 0],
|
|
1102
|
+
[() => EntryPointArguments, 0],
|
|
1103
|
+
[() => SparkSubmitParameters, 0],
|
|
1104
|
+
],
|
|
1105
|
+
];
|
|
1106
|
+
var StartJobRunRequest = [
|
|
1107
|
+
3,
|
|
1108
|
+
n0,
|
|
1109
|
+
_SJRR,
|
|
1110
|
+
0,
|
|
1111
|
+
[_n, _vCI, _cT, _eRA, _rL, _jD, _cO, _ta, _jTI, _jTP, _rPC],
|
|
1112
|
+
[
|
|
1113
|
+
0,
|
|
1114
|
+
[0, 1],
|
|
1115
|
+
[0, 4],
|
|
1116
|
+
0,
|
|
1117
|
+
0,
|
|
1118
|
+
[() => JobDriver, 0],
|
|
1119
|
+
[() => ConfigurationOverrides, 0],
|
|
1120
|
+
128 | 0,
|
|
1121
|
+
0,
|
|
1122
|
+
128 | 0,
|
|
1123
|
+
() => RetryPolicyConfiguration,
|
|
1124
|
+
],
|
|
1125
|
+
];
|
|
1126
|
+
var StartJobRunResponse = [3, n0, _SJRRt, 0, [_i, _n, _a, _vCI], [0, 0, 0, 0]];
|
|
1127
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
1128
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1129
|
+
var TemplateParameterConfiguration = [3, n0, _TPC, 0, [_t, _dV], [0, 0]];
|
|
1130
|
+
var TLSCertificateConfiguration = [3, n0, _TLSCC, 0, [_cPTe, _pCSA, _pCSAr], [0, 0, 0]];
|
|
1131
|
+
var UntagResourceRequest = [
|
|
1132
|
+
3,
|
|
1133
|
+
n0,
|
|
1134
|
+
_URR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_rA, _tK],
|
|
1137
|
+
[
|
|
1138
|
+
[0, 1],
|
|
1139
|
+
[
|
|
1140
|
+
64 | 0,
|
|
1141
|
+
{
|
|
1142
|
+
[_hQ]: _tK,
|
|
1143
|
+
},
|
|
1144
|
+
],
|
|
1145
|
+
],
|
|
1146
|
+
];
|
|
1147
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1148
|
+
var ValidationException = [
|
|
1149
|
+
-3,
|
|
1150
|
+
n0,
|
|
1151
|
+
_VE,
|
|
1152
|
+
{
|
|
1153
|
+
[_er]: _cl,
|
|
1154
|
+
[_hE]: 400,
|
|
1155
|
+
},
|
|
1156
|
+
[_m],
|
|
1157
|
+
[0],
|
|
1158
|
+
];
|
|
1159
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1160
|
+
var VirtualCluster = [
|
|
1161
|
+
3,
|
|
1162
|
+
n0,
|
|
1163
|
+
_VC,
|
|
1164
|
+
0,
|
|
1165
|
+
[_i, _n, _a, _s, _cP, _cAr, _ta, _sCI],
|
|
1166
|
+
[0, 0, 0, 0, () => ContainerProvider, 5, 128 | 0, 0],
|
|
1167
|
+
];
|
|
1168
|
+
var EMRContainersServiceException = [-3, _sm, "EMRContainersServiceException", 0, [], []];
|
|
1169
|
+
schema.TypeRegistry.for(_sm).registerError(EMRContainersServiceException, EMRContainersServiceException$1);
|
|
1170
|
+
var ConfigurationList = [1, n0, _CL, 0, [() => Configuration, 0]];
|
|
1171
|
+
var Endpoints = [1, n0, _En, 0, [() => Endpoint, 0]];
|
|
1172
|
+
var EntryPointArguments = [1, n0, _EPAn, 0, [() => EntryPointArgument, 0]];
|
|
1173
|
+
var JobRuns = [1, n0, _JRo, 0, [() => JobRun, 0]];
|
|
1174
|
+
var JobTemplates = [1, n0, _JTo, 0, [() => JobTemplate, 0]];
|
|
1175
|
+
var SecurityConfigurations = [1, n0, _SCe, 0, () => SecurityConfiguration];
|
|
1176
|
+
var VirtualClusters = [1, n0, _VCi, 0, () => VirtualCluster];
|
|
1177
|
+
var SensitivePropertiesMap = [2, n0, _SPM, 8, 0, 0];
|
|
1178
|
+
var TemplateParameterConfigurationMap = [
|
|
1179
|
+
2,
|
|
1180
|
+
n0,
|
|
1181
|
+
_TPCM,
|
|
1182
|
+
0,
|
|
1183
|
+
0,
|
|
1184
|
+
() => TemplateParameterConfiguration,
|
|
1185
|
+
];
|
|
1186
|
+
var ContainerInfo = [3, n0, _CI, 0, [_eIk], [() => EksInfo]];
|
|
1187
|
+
var Credentials = [3, n0, _Cr, 0, [_to], [[() => Token, 0]]];
|
|
1188
|
+
var CancelJobRun = [
|
|
1189
|
+
9,
|
|
1190
|
+
n0,
|
|
1191
|
+
_CJR,
|
|
1192
|
+
{
|
|
1193
|
+
[_h]: ["DELETE", "/virtualclusters/{virtualClusterId}/jobruns/{id}", 200],
|
|
1194
|
+
},
|
|
1195
|
+
() => CancelJobRunRequest,
|
|
1196
|
+
() => CancelJobRunResponse,
|
|
1197
|
+
];
|
|
1198
|
+
var CreateJobTemplate = [
|
|
1199
|
+
9,
|
|
1200
|
+
n0,
|
|
1201
|
+
_CJT,
|
|
1202
|
+
{
|
|
1203
|
+
[_h]: ["POST", "/jobtemplates", 200],
|
|
1204
|
+
},
|
|
1205
|
+
() => CreateJobTemplateRequest,
|
|
1206
|
+
() => CreateJobTemplateResponse,
|
|
1207
|
+
];
|
|
1208
|
+
var CreateManagedEndpoint = [
|
|
1209
|
+
9,
|
|
1210
|
+
n0,
|
|
1211
|
+
_CME,
|
|
1212
|
+
{
|
|
1213
|
+
[_h]: ["POST", "/virtualclusters/{virtualClusterId}/endpoints", 200],
|
|
1214
|
+
},
|
|
1215
|
+
() => CreateManagedEndpointRequest,
|
|
1216
|
+
() => CreateManagedEndpointResponse,
|
|
1217
|
+
];
|
|
1218
|
+
var CreateSecurityConfiguration = [
|
|
1219
|
+
9,
|
|
1220
|
+
n0,
|
|
1221
|
+
_CSC,
|
|
1222
|
+
{
|
|
1223
|
+
[_h]: ["POST", "/securityconfigurations", 200],
|
|
1224
|
+
},
|
|
1225
|
+
() => CreateSecurityConfigurationRequest,
|
|
1226
|
+
() => CreateSecurityConfigurationResponse,
|
|
1227
|
+
];
|
|
1228
|
+
var CreateVirtualCluster = [
|
|
1229
|
+
9,
|
|
1230
|
+
n0,
|
|
1231
|
+
_CVC,
|
|
1232
|
+
{
|
|
1233
|
+
[_h]: ["POST", "/virtualclusters", 200],
|
|
1234
|
+
},
|
|
1235
|
+
() => CreateVirtualClusterRequest,
|
|
1236
|
+
() => CreateVirtualClusterResponse,
|
|
1237
|
+
];
|
|
1238
|
+
var DeleteJobTemplate = [
|
|
1239
|
+
9,
|
|
1240
|
+
n0,
|
|
1241
|
+
_DJT,
|
|
1242
|
+
{
|
|
1243
|
+
[_h]: ["DELETE", "/jobtemplates/{id}", 200],
|
|
1244
|
+
},
|
|
1245
|
+
() => DeleteJobTemplateRequest,
|
|
1246
|
+
() => DeleteJobTemplateResponse,
|
|
1247
|
+
];
|
|
1248
|
+
var DeleteManagedEndpoint = [
|
|
1249
|
+
9,
|
|
1250
|
+
n0,
|
|
1251
|
+
_DME,
|
|
1252
|
+
{
|
|
1253
|
+
[_h]: ["DELETE", "/virtualclusters/{virtualClusterId}/endpoints/{id}", 200],
|
|
1254
|
+
},
|
|
1255
|
+
() => DeleteManagedEndpointRequest,
|
|
1256
|
+
() => DeleteManagedEndpointResponse,
|
|
1257
|
+
];
|
|
1258
|
+
var DeleteVirtualCluster = [
|
|
1259
|
+
9,
|
|
1260
|
+
n0,
|
|
1261
|
+
_DVC,
|
|
1262
|
+
{
|
|
1263
|
+
[_h]: ["DELETE", "/virtualclusters/{id}", 200],
|
|
1264
|
+
},
|
|
1265
|
+
() => DeleteVirtualClusterRequest,
|
|
1266
|
+
() => DeleteVirtualClusterResponse,
|
|
1267
|
+
];
|
|
1268
|
+
var DescribeJobRun = [
|
|
1269
|
+
9,
|
|
1270
|
+
n0,
|
|
1271
|
+
_DJR,
|
|
1272
|
+
{
|
|
1273
|
+
[_h]: ["GET", "/virtualclusters/{virtualClusterId}/jobruns/{id}", 200],
|
|
1274
|
+
},
|
|
1275
|
+
() => DescribeJobRunRequest,
|
|
1276
|
+
() => DescribeJobRunResponse,
|
|
1277
|
+
];
|
|
1278
|
+
var DescribeJobTemplate = [
|
|
1279
|
+
9,
|
|
1280
|
+
n0,
|
|
1281
|
+
_DJTe,
|
|
1282
|
+
{
|
|
1283
|
+
[_h]: ["GET", "/jobtemplates/{id}", 200],
|
|
1284
|
+
},
|
|
1285
|
+
() => DescribeJobTemplateRequest,
|
|
1286
|
+
() => DescribeJobTemplateResponse,
|
|
1287
|
+
];
|
|
1288
|
+
var DescribeManagedEndpoint = [
|
|
1289
|
+
9,
|
|
1290
|
+
n0,
|
|
1291
|
+
_DMEe,
|
|
1292
|
+
{
|
|
1293
|
+
[_h]: ["GET", "/virtualclusters/{virtualClusterId}/endpoints/{id}", 200],
|
|
1294
|
+
},
|
|
1295
|
+
() => DescribeManagedEndpointRequest,
|
|
1296
|
+
() => DescribeManagedEndpointResponse,
|
|
1297
|
+
];
|
|
1298
|
+
var DescribeSecurityConfiguration = [
|
|
1299
|
+
9,
|
|
1300
|
+
n0,
|
|
1301
|
+
_DSC,
|
|
1302
|
+
{
|
|
1303
|
+
[_h]: ["GET", "/securityconfigurations/{id}", 200],
|
|
1304
|
+
},
|
|
1305
|
+
() => DescribeSecurityConfigurationRequest,
|
|
1306
|
+
() => DescribeSecurityConfigurationResponse,
|
|
1307
|
+
];
|
|
1308
|
+
var DescribeVirtualCluster = [
|
|
1309
|
+
9,
|
|
1310
|
+
n0,
|
|
1311
|
+
_DVCe,
|
|
1312
|
+
{
|
|
1313
|
+
[_h]: ["GET", "/virtualclusters/{id}", 200],
|
|
1314
|
+
},
|
|
1315
|
+
() => DescribeVirtualClusterRequest,
|
|
1316
|
+
() => DescribeVirtualClusterResponse,
|
|
1317
|
+
];
|
|
1318
|
+
var GetManagedEndpointSessionCredentials = [
|
|
1319
|
+
9,
|
|
1320
|
+
n0,
|
|
1321
|
+
_GMESC,
|
|
1322
|
+
{
|
|
1323
|
+
[_h]: ["POST", "/virtualclusters/{virtualClusterIdentifier}/endpoints/{endpointIdentifier}/credentials", 200],
|
|
1324
|
+
},
|
|
1325
|
+
() => GetManagedEndpointSessionCredentialsRequest,
|
|
1326
|
+
() => GetManagedEndpointSessionCredentialsResponse,
|
|
1327
|
+
];
|
|
1328
|
+
var ListJobRuns = [
|
|
1329
|
+
9,
|
|
1330
|
+
n0,
|
|
1331
|
+
_LJR,
|
|
1332
|
+
{
|
|
1333
|
+
[_h]: ["GET", "/virtualclusters/{virtualClusterId}/jobruns", 200],
|
|
1334
|
+
},
|
|
1335
|
+
() => ListJobRunsRequest,
|
|
1336
|
+
() => ListJobRunsResponse,
|
|
1337
|
+
];
|
|
1338
|
+
var ListJobTemplates = [
|
|
1339
|
+
9,
|
|
1340
|
+
n0,
|
|
1341
|
+
_LJT,
|
|
1342
|
+
{
|
|
1343
|
+
[_h]: ["GET", "/jobtemplates", 200],
|
|
1344
|
+
},
|
|
1345
|
+
() => ListJobTemplatesRequest,
|
|
1346
|
+
() => ListJobTemplatesResponse,
|
|
1347
|
+
];
|
|
1348
|
+
var ListManagedEndpoints = [
|
|
1349
|
+
9,
|
|
1350
|
+
n0,
|
|
1351
|
+
_LME,
|
|
1352
|
+
{
|
|
1353
|
+
[_h]: ["GET", "/virtualclusters/{virtualClusterId}/endpoints", 200],
|
|
1354
|
+
},
|
|
1355
|
+
() => ListManagedEndpointsRequest,
|
|
1356
|
+
() => ListManagedEndpointsResponse,
|
|
1357
|
+
];
|
|
1358
|
+
var ListSecurityConfigurations = [
|
|
1359
|
+
9,
|
|
1360
|
+
n0,
|
|
1361
|
+
_LSC,
|
|
1362
|
+
{
|
|
1363
|
+
[_h]: ["GET", "/securityconfigurations", 200],
|
|
1364
|
+
},
|
|
1365
|
+
() => ListSecurityConfigurationsRequest,
|
|
1366
|
+
() => ListSecurityConfigurationsResponse,
|
|
1367
|
+
];
|
|
1368
|
+
var ListTagsForResource = [
|
|
1369
|
+
9,
|
|
1370
|
+
n0,
|
|
1371
|
+
_LTFR,
|
|
1372
|
+
{
|
|
1373
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1374
|
+
},
|
|
1375
|
+
() => ListTagsForResourceRequest,
|
|
1376
|
+
() => ListTagsForResourceResponse,
|
|
1377
|
+
];
|
|
1378
|
+
var ListVirtualClusters = [
|
|
1379
|
+
9,
|
|
1380
|
+
n0,
|
|
1381
|
+
_LVC,
|
|
1382
|
+
{
|
|
1383
|
+
[_h]: ["GET", "/virtualclusters", 200],
|
|
1384
|
+
},
|
|
1385
|
+
() => ListVirtualClustersRequest,
|
|
1386
|
+
() => ListVirtualClustersResponse,
|
|
1387
|
+
];
|
|
1388
|
+
var StartJobRun = [
|
|
1389
|
+
9,
|
|
1390
|
+
n0,
|
|
1391
|
+
_SJR,
|
|
1392
|
+
{
|
|
1393
|
+
[_h]: ["POST", "/virtualclusters/{virtualClusterId}/jobruns", 200],
|
|
1394
|
+
},
|
|
1395
|
+
() => StartJobRunRequest,
|
|
1396
|
+
() => StartJobRunResponse,
|
|
1397
|
+
];
|
|
1398
|
+
var TagResource = [
|
|
1399
|
+
9,
|
|
1400
|
+
n0,
|
|
1401
|
+
_TR,
|
|
1402
|
+
{
|
|
1403
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1404
|
+
},
|
|
1405
|
+
() => TagResourceRequest,
|
|
1406
|
+
() => TagResourceResponse,
|
|
1407
|
+
];
|
|
1408
|
+
var UntagResource = [
|
|
1409
|
+
9,
|
|
1410
|
+
n0,
|
|
1411
|
+
_UR,
|
|
1412
|
+
{
|
|
1413
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1414
|
+
},
|
|
1415
|
+
() => UntagResourceRequest,
|
|
1416
|
+
() => UntagResourceResponse,
|
|
1417
|
+
];
|
|
1312
1418
|
|
|
1313
1419
|
class CancelJobRunCommand extends smithyClient.Command
|
|
1314
1420
|
.classBuilder()
|
|
1315
1421
|
.ep(commonParams)
|
|
1316
1422
|
.m(function (Command, cs, config, o) {
|
|
1317
|
-
return [
|
|
1318
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1319
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1320
|
-
];
|
|
1423
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1321
1424
|
})
|
|
1322
1425
|
.s("AwsChicagoWebService", "CancelJobRun", {})
|
|
1323
1426
|
.n("EMRContainersClient", "CancelJobRunCommand")
|
|
1324
|
-
.
|
|
1325
|
-
.ser(se_CancelJobRunCommand)
|
|
1326
|
-
.de(de_CancelJobRunCommand)
|
|
1427
|
+
.sc(CancelJobRun)
|
|
1327
1428
|
.build() {
|
|
1328
1429
|
}
|
|
1329
1430
|
|
|
@@ -1331,16 +1432,11 @@ class CreateJobTemplateCommand extends smithyClient.Command
|
|
|
1331
1432
|
.classBuilder()
|
|
1332
1433
|
.ep(commonParams)
|
|
1333
1434
|
.m(function (Command, cs, config, o) {
|
|
1334
|
-
return [
|
|
1335
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1336
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1337
|
-
];
|
|
1435
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1338
1436
|
})
|
|
1339
1437
|
.s("AwsChicagoWebService", "CreateJobTemplate", {})
|
|
1340
1438
|
.n("EMRContainersClient", "CreateJobTemplateCommand")
|
|
1341
|
-
.
|
|
1342
|
-
.ser(se_CreateJobTemplateCommand)
|
|
1343
|
-
.de(de_CreateJobTemplateCommand)
|
|
1439
|
+
.sc(CreateJobTemplate)
|
|
1344
1440
|
.build() {
|
|
1345
1441
|
}
|
|
1346
1442
|
|
|
@@ -1348,16 +1444,11 @@ class CreateManagedEndpointCommand extends smithyClient.Command
|
|
|
1348
1444
|
.classBuilder()
|
|
1349
1445
|
.ep(commonParams)
|
|
1350
1446
|
.m(function (Command, cs, config, o) {
|
|
1351
|
-
return [
|
|
1352
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1353
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1354
|
-
];
|
|
1447
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1355
1448
|
})
|
|
1356
1449
|
.s("AwsChicagoWebService", "CreateManagedEndpoint", {})
|
|
1357
1450
|
.n("EMRContainersClient", "CreateManagedEndpointCommand")
|
|
1358
|
-
.
|
|
1359
|
-
.ser(se_CreateManagedEndpointCommand)
|
|
1360
|
-
.de(de_CreateManagedEndpointCommand)
|
|
1451
|
+
.sc(CreateManagedEndpoint)
|
|
1361
1452
|
.build() {
|
|
1362
1453
|
}
|
|
1363
1454
|
|
|
@@ -1365,16 +1456,11 @@ class CreateSecurityConfigurationCommand extends smithyClient.Command
|
|
|
1365
1456
|
.classBuilder()
|
|
1366
1457
|
.ep(commonParams)
|
|
1367
1458
|
.m(function (Command, cs, config, o) {
|
|
1368
|
-
return [
|
|
1369
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1370
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1371
|
-
];
|
|
1459
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1372
1460
|
})
|
|
1373
1461
|
.s("AwsChicagoWebService", "CreateSecurityConfiguration", {})
|
|
1374
1462
|
.n("EMRContainersClient", "CreateSecurityConfigurationCommand")
|
|
1375
|
-
.
|
|
1376
|
-
.ser(se_CreateSecurityConfigurationCommand)
|
|
1377
|
-
.de(de_CreateSecurityConfigurationCommand)
|
|
1463
|
+
.sc(CreateSecurityConfiguration)
|
|
1378
1464
|
.build() {
|
|
1379
1465
|
}
|
|
1380
1466
|
|
|
@@ -1382,16 +1468,11 @@ class CreateVirtualClusterCommand extends smithyClient.Command
|
|
|
1382
1468
|
.classBuilder()
|
|
1383
1469
|
.ep(commonParams)
|
|
1384
1470
|
.m(function (Command, cs, config, o) {
|
|
1385
|
-
return [
|
|
1386
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1387
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1388
|
-
];
|
|
1471
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1389
1472
|
})
|
|
1390
1473
|
.s("AwsChicagoWebService", "CreateVirtualCluster", {})
|
|
1391
1474
|
.n("EMRContainersClient", "CreateVirtualClusterCommand")
|
|
1392
|
-
.
|
|
1393
|
-
.ser(se_CreateVirtualClusterCommand)
|
|
1394
|
-
.de(de_CreateVirtualClusterCommand)
|
|
1475
|
+
.sc(CreateVirtualCluster)
|
|
1395
1476
|
.build() {
|
|
1396
1477
|
}
|
|
1397
1478
|
|
|
@@ -1399,16 +1480,11 @@ class DeleteJobTemplateCommand extends smithyClient.Command
|
|
|
1399
1480
|
.classBuilder()
|
|
1400
1481
|
.ep(commonParams)
|
|
1401
1482
|
.m(function (Command, cs, config, o) {
|
|
1402
|
-
return [
|
|
1403
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1404
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1405
|
-
];
|
|
1483
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1406
1484
|
})
|
|
1407
1485
|
.s("AwsChicagoWebService", "DeleteJobTemplate", {})
|
|
1408
1486
|
.n("EMRContainersClient", "DeleteJobTemplateCommand")
|
|
1409
|
-
.
|
|
1410
|
-
.ser(se_DeleteJobTemplateCommand)
|
|
1411
|
-
.de(de_DeleteJobTemplateCommand)
|
|
1487
|
+
.sc(DeleteJobTemplate)
|
|
1412
1488
|
.build() {
|
|
1413
1489
|
}
|
|
1414
1490
|
|
|
@@ -1416,16 +1492,11 @@ class DeleteManagedEndpointCommand extends smithyClient.Command
|
|
|
1416
1492
|
.classBuilder()
|
|
1417
1493
|
.ep(commonParams)
|
|
1418
1494
|
.m(function (Command, cs, config, o) {
|
|
1419
|
-
return [
|
|
1420
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1421
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1422
|
-
];
|
|
1495
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1423
1496
|
})
|
|
1424
1497
|
.s("AwsChicagoWebService", "DeleteManagedEndpoint", {})
|
|
1425
1498
|
.n("EMRContainersClient", "DeleteManagedEndpointCommand")
|
|
1426
|
-
.
|
|
1427
|
-
.ser(se_DeleteManagedEndpointCommand)
|
|
1428
|
-
.de(de_DeleteManagedEndpointCommand)
|
|
1499
|
+
.sc(DeleteManagedEndpoint)
|
|
1429
1500
|
.build() {
|
|
1430
1501
|
}
|
|
1431
1502
|
|
|
@@ -1433,16 +1504,11 @@ class DeleteVirtualClusterCommand extends smithyClient.Command
|
|
|
1433
1504
|
.classBuilder()
|
|
1434
1505
|
.ep(commonParams)
|
|
1435
1506
|
.m(function (Command, cs, config, o) {
|
|
1436
|
-
return [
|
|
1437
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1438
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1439
|
-
];
|
|
1507
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1440
1508
|
})
|
|
1441
1509
|
.s("AwsChicagoWebService", "DeleteVirtualCluster", {})
|
|
1442
1510
|
.n("EMRContainersClient", "DeleteVirtualClusterCommand")
|
|
1443
|
-
.
|
|
1444
|
-
.ser(se_DeleteVirtualClusterCommand)
|
|
1445
|
-
.de(de_DeleteVirtualClusterCommand)
|
|
1511
|
+
.sc(DeleteVirtualCluster)
|
|
1446
1512
|
.build() {
|
|
1447
1513
|
}
|
|
1448
1514
|
|
|
@@ -1450,16 +1516,11 @@ class DescribeJobRunCommand extends smithyClient.Command
|
|
|
1450
1516
|
.classBuilder()
|
|
1451
1517
|
.ep(commonParams)
|
|
1452
1518
|
.m(function (Command, cs, config, o) {
|
|
1453
|
-
return [
|
|
1454
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1455
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1456
|
-
];
|
|
1519
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1457
1520
|
})
|
|
1458
1521
|
.s("AwsChicagoWebService", "DescribeJobRun", {})
|
|
1459
1522
|
.n("EMRContainersClient", "DescribeJobRunCommand")
|
|
1460
|
-
.
|
|
1461
|
-
.ser(se_DescribeJobRunCommand)
|
|
1462
|
-
.de(de_DescribeJobRunCommand)
|
|
1523
|
+
.sc(DescribeJobRun)
|
|
1463
1524
|
.build() {
|
|
1464
1525
|
}
|
|
1465
1526
|
|
|
@@ -1467,16 +1528,11 @@ class DescribeJobTemplateCommand extends smithyClient.Command
|
|
|
1467
1528
|
.classBuilder()
|
|
1468
1529
|
.ep(commonParams)
|
|
1469
1530
|
.m(function (Command, cs, config, o) {
|
|
1470
|
-
return [
|
|
1471
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1472
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1473
|
-
];
|
|
1531
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1474
1532
|
})
|
|
1475
1533
|
.s("AwsChicagoWebService", "DescribeJobTemplate", {})
|
|
1476
1534
|
.n("EMRContainersClient", "DescribeJobTemplateCommand")
|
|
1477
|
-
.
|
|
1478
|
-
.ser(se_DescribeJobTemplateCommand)
|
|
1479
|
-
.de(de_DescribeJobTemplateCommand)
|
|
1535
|
+
.sc(DescribeJobTemplate)
|
|
1480
1536
|
.build() {
|
|
1481
1537
|
}
|
|
1482
1538
|
|
|
@@ -1484,16 +1540,11 @@ class DescribeManagedEndpointCommand extends smithyClient.Command
|
|
|
1484
1540
|
.classBuilder()
|
|
1485
1541
|
.ep(commonParams)
|
|
1486
1542
|
.m(function (Command, cs, config, o) {
|
|
1487
|
-
return [
|
|
1488
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1489
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1490
|
-
];
|
|
1543
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1491
1544
|
})
|
|
1492
1545
|
.s("AwsChicagoWebService", "DescribeManagedEndpoint", {})
|
|
1493
1546
|
.n("EMRContainersClient", "DescribeManagedEndpointCommand")
|
|
1494
|
-
.
|
|
1495
|
-
.ser(se_DescribeManagedEndpointCommand)
|
|
1496
|
-
.de(de_DescribeManagedEndpointCommand)
|
|
1547
|
+
.sc(DescribeManagedEndpoint)
|
|
1497
1548
|
.build() {
|
|
1498
1549
|
}
|
|
1499
1550
|
|
|
@@ -1501,16 +1552,11 @@ class DescribeSecurityConfigurationCommand extends smithyClient.Command
|
|
|
1501
1552
|
.classBuilder()
|
|
1502
1553
|
.ep(commonParams)
|
|
1503
1554
|
.m(function (Command, cs, config, o) {
|
|
1504
|
-
return [
|
|
1505
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1506
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1507
|
-
];
|
|
1555
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1508
1556
|
})
|
|
1509
1557
|
.s("AwsChicagoWebService", "DescribeSecurityConfiguration", {})
|
|
1510
1558
|
.n("EMRContainersClient", "DescribeSecurityConfigurationCommand")
|
|
1511
|
-
.
|
|
1512
|
-
.ser(se_DescribeSecurityConfigurationCommand)
|
|
1513
|
-
.de(de_DescribeSecurityConfigurationCommand)
|
|
1559
|
+
.sc(DescribeSecurityConfiguration)
|
|
1514
1560
|
.build() {
|
|
1515
1561
|
}
|
|
1516
1562
|
|
|
@@ -1518,16 +1564,11 @@ class DescribeVirtualClusterCommand extends smithyClient.Command
|
|
|
1518
1564
|
.classBuilder()
|
|
1519
1565
|
.ep(commonParams)
|
|
1520
1566
|
.m(function (Command, cs, config, o) {
|
|
1521
|
-
return [
|
|
1522
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1523
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1524
|
-
];
|
|
1567
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1525
1568
|
})
|
|
1526
1569
|
.s("AwsChicagoWebService", "DescribeVirtualCluster", {})
|
|
1527
1570
|
.n("EMRContainersClient", "DescribeVirtualClusterCommand")
|
|
1528
|
-
.
|
|
1529
|
-
.ser(se_DescribeVirtualClusterCommand)
|
|
1530
|
-
.de(de_DescribeVirtualClusterCommand)
|
|
1571
|
+
.sc(DescribeVirtualCluster)
|
|
1531
1572
|
.build() {
|
|
1532
1573
|
}
|
|
1533
1574
|
|
|
@@ -1535,16 +1576,11 @@ class GetManagedEndpointSessionCredentialsCommand extends smithyClient.Command
|
|
|
1535
1576
|
.classBuilder()
|
|
1536
1577
|
.ep(commonParams)
|
|
1537
1578
|
.m(function (Command, cs, config, o) {
|
|
1538
|
-
return [
|
|
1539
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1540
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1541
|
-
];
|
|
1579
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1542
1580
|
})
|
|
1543
1581
|
.s("AwsChicagoWebService", "GetManagedEndpointSessionCredentials", {})
|
|
1544
1582
|
.n("EMRContainersClient", "GetManagedEndpointSessionCredentialsCommand")
|
|
1545
|
-
.
|
|
1546
|
-
.ser(se_GetManagedEndpointSessionCredentialsCommand)
|
|
1547
|
-
.de(de_GetManagedEndpointSessionCredentialsCommand)
|
|
1583
|
+
.sc(GetManagedEndpointSessionCredentials)
|
|
1548
1584
|
.build() {
|
|
1549
1585
|
}
|
|
1550
1586
|
|
|
@@ -1552,16 +1588,11 @@ class ListJobRunsCommand extends smithyClient.Command
|
|
|
1552
1588
|
.classBuilder()
|
|
1553
1589
|
.ep(commonParams)
|
|
1554
1590
|
.m(function (Command, cs, config, o) {
|
|
1555
|
-
return [
|
|
1556
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1557
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1558
|
-
];
|
|
1591
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1559
1592
|
})
|
|
1560
1593
|
.s("AwsChicagoWebService", "ListJobRuns", {})
|
|
1561
1594
|
.n("EMRContainersClient", "ListJobRunsCommand")
|
|
1562
|
-
.
|
|
1563
|
-
.ser(se_ListJobRunsCommand)
|
|
1564
|
-
.de(de_ListJobRunsCommand)
|
|
1595
|
+
.sc(ListJobRuns)
|
|
1565
1596
|
.build() {
|
|
1566
1597
|
}
|
|
1567
1598
|
|
|
@@ -1569,16 +1600,11 @@ class ListJobTemplatesCommand extends smithyClient.Command
|
|
|
1569
1600
|
.classBuilder()
|
|
1570
1601
|
.ep(commonParams)
|
|
1571
1602
|
.m(function (Command, cs, config, o) {
|
|
1572
|
-
return [
|
|
1573
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1574
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1575
|
-
];
|
|
1603
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1576
1604
|
})
|
|
1577
1605
|
.s("AwsChicagoWebService", "ListJobTemplates", {})
|
|
1578
1606
|
.n("EMRContainersClient", "ListJobTemplatesCommand")
|
|
1579
|
-
.
|
|
1580
|
-
.ser(se_ListJobTemplatesCommand)
|
|
1581
|
-
.de(de_ListJobTemplatesCommand)
|
|
1607
|
+
.sc(ListJobTemplates)
|
|
1582
1608
|
.build() {
|
|
1583
1609
|
}
|
|
1584
1610
|
|
|
@@ -1586,16 +1612,11 @@ class ListManagedEndpointsCommand extends smithyClient.Command
|
|
|
1586
1612
|
.classBuilder()
|
|
1587
1613
|
.ep(commonParams)
|
|
1588
1614
|
.m(function (Command, cs, config, o) {
|
|
1589
|
-
return [
|
|
1590
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1591
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1592
|
-
];
|
|
1615
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1593
1616
|
})
|
|
1594
1617
|
.s("AwsChicagoWebService", "ListManagedEndpoints", {})
|
|
1595
1618
|
.n("EMRContainersClient", "ListManagedEndpointsCommand")
|
|
1596
|
-
.
|
|
1597
|
-
.ser(se_ListManagedEndpointsCommand)
|
|
1598
|
-
.de(de_ListManagedEndpointsCommand)
|
|
1619
|
+
.sc(ListManagedEndpoints)
|
|
1599
1620
|
.build() {
|
|
1600
1621
|
}
|
|
1601
1622
|
|
|
@@ -1603,16 +1624,11 @@ class ListSecurityConfigurationsCommand extends smithyClient.Command
|
|
|
1603
1624
|
.classBuilder()
|
|
1604
1625
|
.ep(commonParams)
|
|
1605
1626
|
.m(function (Command, cs, config, o) {
|
|
1606
|
-
return [
|
|
1607
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1608
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1609
|
-
];
|
|
1627
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1610
1628
|
})
|
|
1611
1629
|
.s("AwsChicagoWebService", "ListSecurityConfigurations", {})
|
|
1612
1630
|
.n("EMRContainersClient", "ListSecurityConfigurationsCommand")
|
|
1613
|
-
.
|
|
1614
|
-
.ser(se_ListSecurityConfigurationsCommand)
|
|
1615
|
-
.de(de_ListSecurityConfigurationsCommand)
|
|
1631
|
+
.sc(ListSecurityConfigurations)
|
|
1616
1632
|
.build() {
|
|
1617
1633
|
}
|
|
1618
1634
|
|
|
@@ -1620,16 +1636,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1620
1636
|
.classBuilder()
|
|
1621
1637
|
.ep(commonParams)
|
|
1622
1638
|
.m(function (Command, cs, config, o) {
|
|
1623
|
-
return [
|
|
1624
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1625
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1626
|
-
];
|
|
1639
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1627
1640
|
})
|
|
1628
1641
|
.s("AwsChicagoWebService", "ListTagsForResource", {})
|
|
1629
1642
|
.n("EMRContainersClient", "ListTagsForResourceCommand")
|
|
1630
|
-
.
|
|
1631
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1632
|
-
.de(de_ListTagsForResourceCommand)
|
|
1643
|
+
.sc(ListTagsForResource)
|
|
1633
1644
|
.build() {
|
|
1634
1645
|
}
|
|
1635
1646
|
|
|
@@ -1637,16 +1648,11 @@ class ListVirtualClustersCommand extends smithyClient.Command
|
|
|
1637
1648
|
.classBuilder()
|
|
1638
1649
|
.ep(commonParams)
|
|
1639
1650
|
.m(function (Command, cs, config, o) {
|
|
1640
|
-
return [
|
|
1641
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1642
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1643
|
-
];
|
|
1651
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1644
1652
|
})
|
|
1645
1653
|
.s("AwsChicagoWebService", "ListVirtualClusters", {})
|
|
1646
1654
|
.n("EMRContainersClient", "ListVirtualClustersCommand")
|
|
1647
|
-
.
|
|
1648
|
-
.ser(se_ListVirtualClustersCommand)
|
|
1649
|
-
.de(de_ListVirtualClustersCommand)
|
|
1655
|
+
.sc(ListVirtualClusters)
|
|
1650
1656
|
.build() {
|
|
1651
1657
|
}
|
|
1652
1658
|
|
|
@@ -1654,16 +1660,11 @@ class StartJobRunCommand extends smithyClient.Command
|
|
|
1654
1660
|
.classBuilder()
|
|
1655
1661
|
.ep(commonParams)
|
|
1656
1662
|
.m(function (Command, cs, config, o) {
|
|
1657
|
-
return [
|
|
1658
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1659
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1660
|
-
];
|
|
1663
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1661
1664
|
})
|
|
1662
1665
|
.s("AwsChicagoWebService", "StartJobRun", {})
|
|
1663
1666
|
.n("EMRContainersClient", "StartJobRunCommand")
|
|
1664
|
-
.
|
|
1665
|
-
.ser(se_StartJobRunCommand)
|
|
1666
|
-
.de(de_StartJobRunCommand)
|
|
1667
|
+
.sc(StartJobRun)
|
|
1667
1668
|
.build() {
|
|
1668
1669
|
}
|
|
1669
1670
|
|
|
@@ -1671,16 +1672,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1671
1672
|
.classBuilder()
|
|
1672
1673
|
.ep(commonParams)
|
|
1673
1674
|
.m(function (Command, cs, config, o) {
|
|
1674
|
-
return [
|
|
1675
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1676
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1677
|
-
];
|
|
1675
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1678
1676
|
})
|
|
1679
1677
|
.s("AwsChicagoWebService", "TagResource", {})
|
|
1680
1678
|
.n("EMRContainersClient", "TagResourceCommand")
|
|
1681
|
-
.
|
|
1682
|
-
.ser(se_TagResourceCommand)
|
|
1683
|
-
.de(de_TagResourceCommand)
|
|
1679
|
+
.sc(TagResource)
|
|
1684
1680
|
.build() {
|
|
1685
1681
|
}
|
|
1686
1682
|
|
|
@@ -1688,16 +1684,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1688
1684
|
.classBuilder()
|
|
1689
1685
|
.ep(commonParams)
|
|
1690
1686
|
.m(function (Command, cs, config, o) {
|
|
1691
|
-
return [
|
|
1692
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1693
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1694
|
-
];
|
|
1687
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1695
1688
|
})
|
|
1696
1689
|
.s("AwsChicagoWebService", "UntagResource", {})
|
|
1697
1690
|
.n("EMRContainersClient", "UntagResourceCommand")
|
|
1698
|
-
.
|
|
1699
|
-
.ser(se_UntagResourceCommand)
|
|
1700
|
-
.de(de_UntagResourceCommand)
|
|
1691
|
+
.sc(UntagResource)
|
|
1701
1692
|
.build() {
|
|
1702
1693
|
}
|
|
1703
1694
|
|
|
@@ -1751,63 +1742,42 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1751
1742
|
exports.AllowAWSToRetainLogs = AllowAWSToRetainLogs;
|
|
1752
1743
|
exports.CancelJobRunCommand = CancelJobRunCommand;
|
|
1753
1744
|
exports.CertificateProviderType = CertificateProviderType;
|
|
1754
|
-
exports.ConfigurationFilterSensitiveLog = ConfigurationFilterSensitiveLog;
|
|
1755
|
-
exports.ConfigurationOverridesFilterSensitiveLog = ConfigurationOverridesFilterSensitiveLog;
|
|
1756
1745
|
exports.ContainerProviderType = ContainerProviderType;
|
|
1757
1746
|
exports.CreateJobTemplateCommand = CreateJobTemplateCommand;
|
|
1758
|
-
exports.CreateJobTemplateRequestFilterSensitiveLog = CreateJobTemplateRequestFilterSensitiveLog;
|
|
1759
1747
|
exports.CreateManagedEndpointCommand = CreateManagedEndpointCommand;
|
|
1760
|
-
exports.CreateManagedEndpointRequestFilterSensitiveLog = CreateManagedEndpointRequestFilterSensitiveLog;
|
|
1761
1748
|
exports.CreateSecurityConfigurationCommand = CreateSecurityConfigurationCommand;
|
|
1762
1749
|
exports.CreateVirtualClusterCommand = CreateVirtualClusterCommand;
|
|
1763
|
-
exports.CredentialsFilterSensitiveLog = CredentialsFilterSensitiveLog;
|
|
1764
1750
|
exports.DeleteJobTemplateCommand = DeleteJobTemplateCommand;
|
|
1765
1751
|
exports.DeleteManagedEndpointCommand = DeleteManagedEndpointCommand;
|
|
1766
1752
|
exports.DeleteVirtualClusterCommand = DeleteVirtualClusterCommand;
|
|
1767
1753
|
exports.DescribeJobRunCommand = DescribeJobRunCommand;
|
|
1768
|
-
exports.DescribeJobRunResponseFilterSensitiveLog = DescribeJobRunResponseFilterSensitiveLog;
|
|
1769
1754
|
exports.DescribeJobTemplateCommand = DescribeJobTemplateCommand;
|
|
1770
|
-
exports.DescribeJobTemplateResponseFilterSensitiveLog = DescribeJobTemplateResponseFilterSensitiveLog;
|
|
1771
1755
|
exports.DescribeManagedEndpointCommand = DescribeManagedEndpointCommand;
|
|
1772
|
-
exports.DescribeManagedEndpointResponseFilterSensitiveLog = DescribeManagedEndpointResponseFilterSensitiveLog;
|
|
1773
1756
|
exports.DescribeSecurityConfigurationCommand = DescribeSecurityConfigurationCommand;
|
|
1774
1757
|
exports.DescribeVirtualClusterCommand = DescribeVirtualClusterCommand;
|
|
1775
|
-
exports.EKSRequestThrottledException = EKSRequestThrottledException;
|
|
1758
|
+
exports.EKSRequestThrottledException = EKSRequestThrottledException$1;
|
|
1776
1759
|
exports.EMRContainers = EMRContainers;
|
|
1777
1760
|
exports.EMRContainersClient = EMRContainersClient;
|
|
1778
|
-
exports.EMRContainersServiceException = EMRContainersServiceException;
|
|
1779
|
-
exports.EndpointFilterSensitiveLog = EndpointFilterSensitiveLog;
|
|
1761
|
+
exports.EMRContainersServiceException = EMRContainersServiceException$1;
|
|
1780
1762
|
exports.EndpointState = EndpointState;
|
|
1781
1763
|
exports.FailureReason = FailureReason;
|
|
1782
1764
|
exports.GetManagedEndpointSessionCredentialsCommand = GetManagedEndpointSessionCredentialsCommand;
|
|
1783
|
-
exports.
|
|
1784
|
-
exports.InternalServerException = InternalServerException;
|
|
1785
|
-
exports.JobDriverFilterSensitiveLog = JobDriverFilterSensitiveLog;
|
|
1786
|
-
exports.JobRunFilterSensitiveLog = JobRunFilterSensitiveLog;
|
|
1765
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1787
1766
|
exports.JobRunState = JobRunState;
|
|
1788
|
-
exports.JobTemplateDataFilterSensitiveLog = JobTemplateDataFilterSensitiveLog;
|
|
1789
|
-
exports.JobTemplateFilterSensitiveLog = JobTemplateFilterSensitiveLog;
|
|
1790
1767
|
exports.ListJobRunsCommand = ListJobRunsCommand;
|
|
1791
|
-
exports.ListJobRunsResponseFilterSensitiveLog = ListJobRunsResponseFilterSensitiveLog;
|
|
1792
1768
|
exports.ListJobTemplatesCommand = ListJobTemplatesCommand;
|
|
1793
|
-
exports.ListJobTemplatesResponseFilterSensitiveLog = ListJobTemplatesResponseFilterSensitiveLog;
|
|
1794
1769
|
exports.ListManagedEndpointsCommand = ListManagedEndpointsCommand;
|
|
1795
|
-
exports.ListManagedEndpointsResponseFilterSensitiveLog = ListManagedEndpointsResponseFilterSensitiveLog;
|
|
1796
1770
|
exports.ListSecurityConfigurationsCommand = ListSecurityConfigurationsCommand;
|
|
1797
1771
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1798
1772
|
exports.ListVirtualClustersCommand = ListVirtualClustersCommand;
|
|
1799
|
-
exports.ParametricConfigurationOverridesFilterSensitiveLog = ParametricConfigurationOverridesFilterSensitiveLog;
|
|
1800
1773
|
exports.PersistentAppUI = PersistentAppUI;
|
|
1801
|
-
exports.RequestThrottledException = RequestThrottledException;
|
|
1802
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1803
|
-
exports.SparkSqlJobDriverFilterSensitiveLog = SparkSqlJobDriverFilterSensitiveLog;
|
|
1804
|
-
exports.SparkSubmitJobDriverFilterSensitiveLog = SparkSubmitJobDriverFilterSensitiveLog;
|
|
1774
|
+
exports.RequestThrottledException = RequestThrottledException$1;
|
|
1775
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1805
1776
|
exports.StartJobRunCommand = StartJobRunCommand;
|
|
1806
|
-
exports.StartJobRunRequestFilterSensitiveLog = StartJobRunRequestFilterSensitiveLog;
|
|
1807
1777
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1808
1778
|
exports.TemplateParameterDataType = TemplateParameterDataType;
|
|
1809
1779
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1810
|
-
exports.ValidationException = ValidationException;
|
|
1780
|
+
exports.ValidationException = ValidationException$1;
|
|
1811
1781
|
exports.VirtualClusterState = VirtualClusterState;
|
|
1812
1782
|
exports.paginateListJobRuns = paginateListJobRuns;
|
|
1813
1783
|
exports.paginateListJobTemplates = paginateListJobTemplates;
|