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