@aws-sdk/client-emr-containers 3.952.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +362 -252
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelJobRunCommand.js +2 -2
- package/dist-es/commands/CreateJobTemplateCommand.js +2 -2
- package/dist-es/commands/CreateManagedEndpointCommand.js +2 -2
- package/dist-es/commands/CreateSecurityConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateVirtualClusterCommand.js +2 -2
- package/dist-es/commands/DeleteJobTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteManagedEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteVirtualClusterCommand.js +2 -2
- package/dist-es/commands/DescribeJobRunCommand.js +2 -2
- package/dist-es/commands/DescribeJobTemplateCommand.js +2 -2
- package/dist-es/commands/DescribeManagedEndpointCommand.js +2 -2
- package/dist-es/commands/DescribeSecurityConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeVirtualClusterCommand.js +2 -2
- package/dist-es/commands/GetManagedEndpointSessionCredentialsCommand.js +2 -2
- package/dist-es/commands/ListJobRunsCommand.js +2 -2
- package/dist-es/commands/ListJobTemplatesCommand.js +2 -2
- package/dist-es/commands/ListManagedEndpointsCommand.js +2 -2
- package/dist-es/commands/ListSecurityConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVirtualClustersCommand.js +2 -2
- package/dist-es/commands/StartJobRunCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +227 -227
- package/dist-types/EMRContainersClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +111 -133
- package/dist-types/ts3.4/EMRContainersClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -135
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class EMRContainersClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class EMRContainersServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, EMRContainersServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class InternalServerException extends EMRContainersServiceException {
|
|
121
121
|
name = "InternalServerException";
|
|
122
122
|
$fault = "server";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let InternalServerException$1 = class InternalServerException extends EMRContain
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class ValidationException extends EMRContainersServiceException {
|
|
133
133
|
name = "ValidationException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let ValidationException$1 = class ValidationException extends EMRContainersServi
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class ResourceNotFoundException extends EMRContainersServiceException {
|
|
145
145
|
name = "ResourceNotFoundException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends EMRCon
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class EKSRequestThrottledException extends EMRContainersServiceException {
|
|
157
157
|
name = "EKSRequestThrottledException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ let EKSRequestThrottledException$1 = class EKSRequestThrottledException extends
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, EKSRequestThrottledException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class RequestThrottledException extends EMRContainersServiceException {
|
|
169
169
|
name = "RequestThrottledException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,7 +176,7 @@ let RequestThrottledException$1 = class RequestThrottledException extends EMRCon
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, RequestThrottledException.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
179
|
+
}
|
|
180
180
|
|
|
181
181
|
const _AC = "AuthorizationConfiguration";
|
|
182
182
|
const _C = "Certificate";
|
|
@@ -421,15 +421,15 @@ var EntryPointPath = [0, n0, _EPP, 8, 0];
|
|
|
421
421
|
var SparkSqlParameters = [0, n0, _SSP, 8, 0];
|
|
422
422
|
var SparkSubmitParameters = [0, n0, _SSPp, 8, 0];
|
|
423
423
|
var Token = [0, n0, _T, 8, 0];
|
|
424
|
-
var AuthorizationConfiguration = [
|
|
424
|
+
var AuthorizationConfiguration$ = [
|
|
425
425
|
3,
|
|
426
426
|
n0,
|
|
427
427
|
_AC,
|
|
428
428
|
0,
|
|
429
429
|
[_lFC, _eC],
|
|
430
|
-
[() => LakeFormationConfiguration
|
|
430
|
+
[() => LakeFormationConfiguration$, () => EncryptionConfiguration$],
|
|
431
431
|
];
|
|
432
|
-
var CancelJobRunRequest = [
|
|
432
|
+
var CancelJobRunRequest$ = [
|
|
433
433
|
3,
|
|
434
434
|
n0,
|
|
435
435
|
_CJRR,
|
|
@@ -440,10 +440,10 @@ var CancelJobRunRequest = [
|
|
|
440
440
|
[0, 1],
|
|
441
441
|
],
|
|
442
442
|
];
|
|
443
|
-
var CancelJobRunResponse = [3, n0, _CJRRa, 0, [_i, _vCI], [0, 0]];
|
|
444
|
-
var Certificate = [3, n0, _C, 0, [_cA, _cD], [0, 0]];
|
|
445
|
-
var CloudWatchMonitoringConfiguration = [3, n0, _CWMC, 0, [_lGN, _lSNP], [0, 0]];
|
|
446
|
-
var Configuration = [
|
|
443
|
+
var CancelJobRunResponse$ = [3, n0, _CJRRa, 0, [_i, _vCI], [0, 0]];
|
|
444
|
+
var Certificate$ = [3, n0, _C, 0, [_cA, _cD], [0, 0]];
|
|
445
|
+
var CloudWatchMonitoringConfiguration$ = [3, n0, _CWMC, 0, [_lGN, _lSNP], [0, 0]];
|
|
446
|
+
var Configuration$ = [
|
|
447
447
|
3,
|
|
448
448
|
n0,
|
|
449
449
|
_Co,
|
|
@@ -451,55 +451,55 @@ var Configuration = [
|
|
|
451
451
|
[_c, _p, _co],
|
|
452
452
|
[0, [() => SensitivePropertiesMap, 0], [() => ConfigurationList, 0]],
|
|
453
453
|
];
|
|
454
|
-
var ConfigurationOverrides = [
|
|
454
|
+
var ConfigurationOverrides$ = [
|
|
455
455
|
3,
|
|
456
456
|
n0,
|
|
457
457
|
_CO,
|
|
458
458
|
0,
|
|
459
459
|
[_aC, _mC],
|
|
460
|
-
[[() => ConfigurationList, 0], () => MonitoringConfiguration],
|
|
460
|
+
[[() => ConfigurationList, 0], () => MonitoringConfiguration$],
|
|
461
461
|
];
|
|
462
|
-
var ContainerLogRotationConfiguration = [3, n0, _CLRC, 0, [_rS, _mFTK], [0, 1]];
|
|
463
|
-
var ContainerProvider = [3, n0, _CP, 0, [_t, _i, _in], [0, 0, () => ContainerInfo]];
|
|
464
|
-
var CreateJobTemplateRequest = [
|
|
462
|
+
var ContainerLogRotationConfiguration$ = [3, n0, _CLRC, 0, [_rS, _mFTK], [0, 1]];
|
|
463
|
+
var ContainerProvider$ = [3, n0, _CP, 0, [_t, _i, _in], [0, 0, () => ContainerInfo$]];
|
|
464
|
+
var CreateJobTemplateRequest$ = [
|
|
465
465
|
3,
|
|
466
466
|
n0,
|
|
467
467
|
_CJTR,
|
|
468
468
|
0,
|
|
469
469
|
[_n, _cT, _jTD, _ta, _kKA],
|
|
470
|
-
[0, [0, 4], [() => JobTemplateData
|
|
470
|
+
[0, [0, 4], [() => JobTemplateData$, 0], 128 | 0, 0],
|
|
471
471
|
];
|
|
472
|
-
var CreateJobTemplateResponse = [3, n0, _CJTRr, 0, [_i, _n, _a, _cAr], [0, 0, 0, 5]];
|
|
473
|
-
var CreateManagedEndpointRequest = [
|
|
472
|
+
var CreateJobTemplateResponse$ = [3, n0, _CJTRr, 0, [_i, _n, _a, _cAr], [0, 0, 0, 5]];
|
|
473
|
+
var CreateManagedEndpointRequest$ = [
|
|
474
474
|
3,
|
|
475
475
|
n0,
|
|
476
476
|
_CMER,
|
|
477
477
|
0,
|
|
478
478
|
[_n, _vCI, _t, _rL, _eRA, _cA, _cO, _cT, _ta],
|
|
479
|
-
[0, [0, 1], 0, 0, 0, 0, [() => ConfigurationOverrides
|
|
479
|
+
[0, [0, 1], 0, 0, 0, 0, [() => ConfigurationOverrides$, 0], [0, 4], 128 | 0],
|
|
480
480
|
];
|
|
481
|
-
var CreateManagedEndpointResponse = [3, n0, _CMERr, 0, [_i, _n, _a, _vCI], [0, 0, 0, 0]];
|
|
482
|
-
var CreateSecurityConfigurationRequest = [
|
|
481
|
+
var CreateManagedEndpointResponse$ = [3, n0, _CMERr, 0, [_i, _n, _a, _vCI], [0, 0, 0, 0]];
|
|
482
|
+
var CreateSecurityConfigurationRequest$ = [
|
|
483
483
|
3,
|
|
484
484
|
n0,
|
|
485
485
|
_CSCR,
|
|
486
486
|
0,
|
|
487
487
|
[_cT, _n, _cP, _sCD, _ta],
|
|
488
|
-
[[0, 4], 0, () => ContainerProvider
|
|
488
|
+
[[0, 4], 0, () => ContainerProvider$, () => SecurityConfigurationData$, 128 | 0],
|
|
489
489
|
];
|
|
490
|
-
var CreateSecurityConfigurationResponse = [3, n0, _CSCRr, 0, [_i, _n, _a], [0, 0, 0]];
|
|
491
|
-
var CreateVirtualClusterRequest = [
|
|
490
|
+
var CreateSecurityConfigurationResponse$ = [3, n0, _CSCRr, 0, [_i, _n, _a], [0, 0, 0]];
|
|
491
|
+
var CreateVirtualClusterRequest$ = [
|
|
492
492
|
3,
|
|
493
493
|
n0,
|
|
494
494
|
_CVCR,
|
|
495
495
|
0,
|
|
496
496
|
[_n, _cP, _cT, _ta, _sCI],
|
|
497
|
-
[0, () => ContainerProvider
|
|
497
|
+
[0, () => ContainerProvider$, [0, 4], 128 | 0, 0],
|
|
498
498
|
];
|
|
499
|
-
var CreateVirtualClusterResponse = [3, n0, _CVCRr, 0, [_i, _n, _a], [0, 0, 0]];
|
|
500
|
-
var DeleteJobTemplateRequest = [3, n0, _DJTR, 0, [_i], [[0, 1]]];
|
|
501
|
-
var DeleteJobTemplateResponse = [3, n0, _DJTRe, 0, [_i], [0]];
|
|
502
|
-
var DeleteManagedEndpointRequest = [
|
|
499
|
+
var CreateVirtualClusterResponse$ = [3, n0, _CVCRr, 0, [_i, _n, _a], [0, 0, 0]];
|
|
500
|
+
var DeleteJobTemplateRequest$ = [3, n0, _DJTR, 0, [_i], [[0, 1]]];
|
|
501
|
+
var DeleteJobTemplateResponse$ = [3, n0, _DJTRe, 0, [_i], [0]];
|
|
502
|
+
var DeleteManagedEndpointRequest$ = [
|
|
503
503
|
3,
|
|
504
504
|
n0,
|
|
505
505
|
_DMER,
|
|
@@ -510,10 +510,10 @@ var DeleteManagedEndpointRequest = [
|
|
|
510
510
|
[0, 1],
|
|
511
511
|
],
|
|
512
512
|
];
|
|
513
|
-
var DeleteManagedEndpointResponse = [3, n0, _DMERe, 0, [_i, _vCI], [0, 0]];
|
|
514
|
-
var DeleteVirtualClusterRequest = [3, n0, _DVCR, 0, [_i], [[0, 1]]];
|
|
515
|
-
var DeleteVirtualClusterResponse = [3, n0, _DVCRe, 0, [_i], [0]];
|
|
516
|
-
var DescribeJobRunRequest = [
|
|
513
|
+
var DeleteManagedEndpointResponse$ = [3, n0, _DMERe, 0, [_i, _vCI], [0, 0]];
|
|
514
|
+
var DeleteVirtualClusterRequest$ = [3, n0, _DVCR, 0, [_i], [[0, 1]]];
|
|
515
|
+
var DeleteVirtualClusterResponse$ = [3, n0, _DVCRe, 0, [_i], [0]];
|
|
516
|
+
var DescribeJobRunRequest$ = [
|
|
517
517
|
3,
|
|
518
518
|
n0,
|
|
519
519
|
_DJRR,
|
|
@@ -524,10 +524,10 @@ var DescribeJobRunRequest = [
|
|
|
524
524
|
[0, 1],
|
|
525
525
|
],
|
|
526
526
|
];
|
|
527
|
-
var DescribeJobRunResponse = [3, n0, _DJRRe, 0, [_jR], [[() => JobRun
|
|
528
|
-
var DescribeJobTemplateRequest = [3, n0, _DJTRes, 0, [_i], [[0, 1]]];
|
|
529
|
-
var DescribeJobTemplateResponse = [3, n0, _DJTResc, 0, [_jT], [[() => JobTemplate
|
|
530
|
-
var DescribeManagedEndpointRequest = [
|
|
527
|
+
var DescribeJobRunResponse$ = [3, n0, _DJRRe, 0, [_jR], [[() => JobRun$, 0]]];
|
|
528
|
+
var DescribeJobTemplateRequest$ = [3, n0, _DJTRes, 0, [_i], [[0, 1]]];
|
|
529
|
+
var DescribeJobTemplateResponse$ = [3, n0, _DJTResc, 0, [_jT], [[() => JobTemplate$, 0]]];
|
|
530
|
+
var DescribeManagedEndpointRequest$ = [
|
|
531
531
|
3,
|
|
532
532
|
n0,
|
|
533
533
|
_DMERes,
|
|
@@ -538,38 +538,45 @@ var DescribeManagedEndpointRequest = [
|
|
|
538
538
|
[0, 1],
|
|
539
539
|
],
|
|
540
540
|
];
|
|
541
|
-
var DescribeManagedEndpointResponse = [3, n0, _DMEResc, 0, [_e], [[() => Endpoint
|
|
542
|
-
var DescribeSecurityConfigurationRequest = [3, n0, _DSCR, 0, [_i], [[0, 1]]];
|
|
543
|
-
var DescribeSecurityConfigurationResponse = [
|
|
541
|
+
var DescribeManagedEndpointResponse$ = [3, n0, _DMEResc, 0, [_e], [[() => Endpoint$, 0]]];
|
|
542
|
+
var DescribeSecurityConfigurationRequest$ = [3, n0, _DSCR, 0, [_i], [[0, 1]]];
|
|
543
|
+
var DescribeSecurityConfigurationResponse$ = [
|
|
544
544
|
3,
|
|
545
545
|
n0,
|
|
546
546
|
_DSCRe,
|
|
547
547
|
0,
|
|
548
548
|
[_sC],
|
|
549
|
-
[() => SecurityConfiguration],
|
|
550
|
-
];
|
|
551
|
-
var DescribeVirtualClusterRequest = [3, n0, _DVCRes, 0, [_i], [[0, 1]]];
|
|
552
|
-
var DescribeVirtualClusterResponse = [
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
549
|
+
[() => SecurityConfiguration$],
|
|
550
|
+
];
|
|
551
|
+
var DescribeVirtualClusterRequest$ = [3, n0, _DVCRes, 0, [_i], [[0, 1]]];
|
|
552
|
+
var DescribeVirtualClusterResponse$ = [
|
|
553
|
+
3,
|
|
554
|
+
n0,
|
|
555
|
+
_DVCResc,
|
|
556
|
+
0,
|
|
557
|
+
[_vC],
|
|
558
|
+
[() => VirtualCluster$],
|
|
559
|
+
];
|
|
560
|
+
var EksInfo$ = [3, n0, _EI, 0, [_na, _nL], [0, 0]];
|
|
561
|
+
var EKSRequestThrottledException$ = [-3, n0, _EKSRTE, { [_er]: _cl, [_hE]: 429 }, [_m], [0]];
|
|
562
|
+
schema.TypeRegistry.for(n0).registerError(EKSRequestThrottledException$, EKSRequestThrottledException);
|
|
563
|
+
var EncryptionConfiguration$ = [
|
|
557
564
|
3,
|
|
558
565
|
n0,
|
|
559
566
|
_EC,
|
|
560
567
|
0,
|
|
561
568
|
[_iTEC],
|
|
562
|
-
[() => InTransitEncryptionConfiguration],
|
|
569
|
+
[() => InTransitEncryptionConfiguration$],
|
|
563
570
|
];
|
|
564
|
-
var Endpoint = [
|
|
571
|
+
var Endpoint$ = [
|
|
565
572
|
3,
|
|
566
573
|
n0,
|
|
567
574
|
_E,
|
|
568
575
|
0,
|
|
569
576
|
[_i, _n, _a, _vCI, _t, _s, _rL, _eRA, _cA, _cAe, _cO, _sU, _cAr, _sG, _sI, _sD, _fR, _ta],
|
|
570
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => Certificate
|
|
577
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => Certificate$, [() => ConfigurationOverrides$, 0], 0, 5, 0, 64 | 0, 0, 0, 128 | 0],
|
|
571
578
|
];
|
|
572
|
-
var GetManagedEndpointSessionCredentialsRequest = [
|
|
579
|
+
var GetManagedEndpointSessionCredentialsRequest$ = [
|
|
573
580
|
3,
|
|
574
581
|
n0,
|
|
575
582
|
_GMESCR,
|
|
@@ -577,36 +584,36 @@ var GetManagedEndpointSessionCredentialsRequest = [
|
|
|
577
584
|
[_eI, _vCIi, _eRA, _cTr, _dIS, _lC, _cT],
|
|
578
585
|
[[0, 1], [0, 1], 0, 0, 1, 0, [0, 4]],
|
|
579
586
|
];
|
|
580
|
-
var GetManagedEndpointSessionCredentialsResponse = [
|
|
587
|
+
var GetManagedEndpointSessionCredentialsResponse$ = [
|
|
581
588
|
3,
|
|
582
589
|
n0,
|
|
583
590
|
_GMESCRe,
|
|
584
591
|
0,
|
|
585
592
|
[_i, _cr, _eA],
|
|
586
|
-
[0, [() => Credentials
|
|
593
|
+
[0, [() => Credentials$, 0], 5],
|
|
587
594
|
];
|
|
588
|
-
var InternalServerException = [-3, n0, _ISE, { [_er]: _se, [_hE]: 500 }, [_m], [0]];
|
|
589
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
590
|
-
var InTransitEncryptionConfiguration = [
|
|
595
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_er]: _se, [_hE]: 500 }, [_m], [0]];
|
|
596
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
597
|
+
var InTransitEncryptionConfiguration$ = [
|
|
591
598
|
3,
|
|
592
599
|
n0,
|
|
593
600
|
_ITEC,
|
|
594
601
|
0,
|
|
595
602
|
[_tCC],
|
|
596
|
-
[() => TLSCertificateConfiguration],
|
|
603
|
+
[() => TLSCertificateConfiguration$],
|
|
597
604
|
];
|
|
598
|
-
var JobDriver = [
|
|
605
|
+
var JobDriver$ = [
|
|
599
606
|
3,
|
|
600
607
|
n0,
|
|
601
608
|
_JD,
|
|
602
609
|
0,
|
|
603
610
|
[_sSJD, _sSJDp],
|
|
604
611
|
[
|
|
605
|
-
[() => SparkSubmitJobDriver
|
|
606
|
-
[() => SparkSqlJobDriver
|
|
612
|
+
[() => SparkSubmitJobDriver$, 0],
|
|
613
|
+
[() => SparkSqlJobDriver$, 0],
|
|
607
614
|
],
|
|
608
615
|
];
|
|
609
|
-
var JobRun = [
|
|
616
|
+
var JobRun$ = [
|
|
610
617
|
3,
|
|
611
618
|
n0,
|
|
612
619
|
_JR,
|
|
@@ -621,27 +628,27 @@ var JobRun = [
|
|
|
621
628
|
0,
|
|
622
629
|
0,
|
|
623
630
|
0,
|
|
624
|
-
[() => ConfigurationOverrides
|
|
625
|
-
[() => JobDriver
|
|
631
|
+
[() => ConfigurationOverrides$, 0],
|
|
632
|
+
[() => JobDriver$, 0],
|
|
626
633
|
5,
|
|
627
634
|
0,
|
|
628
635
|
5,
|
|
629
636
|
0,
|
|
630
637
|
0,
|
|
631
638
|
128 | 0,
|
|
632
|
-
() => RetryPolicyConfiguration
|
|
633
|
-
() => RetryPolicyExecution
|
|
639
|
+
() => RetryPolicyConfiguration$,
|
|
640
|
+
() => RetryPolicyExecution$,
|
|
634
641
|
],
|
|
635
642
|
];
|
|
636
|
-
var JobTemplate = [
|
|
643
|
+
var JobTemplate$ = [
|
|
637
644
|
3,
|
|
638
645
|
n0,
|
|
639
646
|
_JT,
|
|
640
647
|
0,
|
|
641
648
|
[_n, _i, _a, _cAr, _cB, _ta, _jTD, _kKA, _dE],
|
|
642
|
-
[0, 0, 0, 5, 0, 128 | 0, [() => JobTemplateData
|
|
649
|
+
[0, 0, 0, 5, 0, 128 | 0, [() => JobTemplateData$, 0], 0, 0],
|
|
643
650
|
];
|
|
644
|
-
var JobTemplateData = [
|
|
651
|
+
var JobTemplateData$ = [
|
|
645
652
|
3,
|
|
646
653
|
n0,
|
|
647
654
|
_JTD,
|
|
@@ -650,21 +657,21 @@ var JobTemplateData = [
|
|
|
650
657
|
[
|
|
651
658
|
0,
|
|
652
659
|
0,
|
|
653
|
-
[() => ParametricConfigurationOverrides
|
|
654
|
-
[() => JobDriver
|
|
660
|
+
[() => ParametricConfigurationOverrides$, 0],
|
|
661
|
+
[() => JobDriver$, 0],
|
|
655
662
|
() => TemplateParameterConfigurationMap,
|
|
656
663
|
128 | 0,
|
|
657
664
|
],
|
|
658
665
|
];
|
|
659
|
-
var LakeFormationConfiguration = [
|
|
666
|
+
var LakeFormationConfiguration$ = [
|
|
660
667
|
3,
|
|
661
668
|
n0,
|
|
662
669
|
_LFC,
|
|
663
670
|
0,
|
|
664
671
|
[_aSTV, _sNI, _qERA],
|
|
665
|
-
[0, () => SecureNamespaceInfo
|
|
672
|
+
[0, () => SecureNamespaceInfo$, 0],
|
|
666
673
|
];
|
|
667
|
-
var ListJobRunsRequest = [
|
|
674
|
+
var ListJobRunsRequest$ = [
|
|
668
675
|
3,
|
|
669
676
|
n0,
|
|
670
677
|
_LJRR,
|
|
@@ -680,8 +687,8 @@ var ListJobRunsRequest = [
|
|
|
680
687
|
[0, { [_hQ]: _nT }],
|
|
681
688
|
],
|
|
682
689
|
];
|
|
683
|
-
var ListJobRunsResponse = [3, n0, _LJRRi, 0, [_jRo, _nT], [[() => JobRuns, 0], 0]];
|
|
684
|
-
var ListJobTemplatesRequest = [
|
|
690
|
+
var ListJobRunsResponse$ = [3, n0, _LJRRi, 0, [_jRo, _nT], [[() => JobRuns, 0], 0]];
|
|
691
|
+
var ListJobTemplatesRequest$ = [
|
|
685
692
|
3,
|
|
686
693
|
n0,
|
|
687
694
|
_LJTR,
|
|
@@ -694,7 +701,7 @@ var ListJobTemplatesRequest = [
|
|
|
694
701
|
[0, { [_hQ]: _nT }],
|
|
695
702
|
],
|
|
696
703
|
];
|
|
697
|
-
var ListJobTemplatesResponse = [
|
|
704
|
+
var ListJobTemplatesResponse$ = [
|
|
698
705
|
3,
|
|
699
706
|
n0,
|
|
700
707
|
_LJTRi,
|
|
@@ -702,7 +709,7 @@ var ListJobTemplatesResponse = [
|
|
|
702
709
|
[_te, _nT],
|
|
703
710
|
[[() => JobTemplates, 0], 0],
|
|
704
711
|
];
|
|
705
|
-
var ListManagedEndpointsRequest = [
|
|
712
|
+
var ListManagedEndpointsRequest$ = [
|
|
706
713
|
3,
|
|
707
714
|
n0,
|
|
708
715
|
_LMER,
|
|
@@ -718,7 +725,7 @@ var ListManagedEndpointsRequest = [
|
|
|
718
725
|
[0, { [_hQ]: _nT }],
|
|
719
726
|
],
|
|
720
727
|
];
|
|
721
|
-
var ListManagedEndpointsResponse = [
|
|
728
|
+
var ListManagedEndpointsResponse$ = [
|
|
722
729
|
3,
|
|
723
730
|
n0,
|
|
724
731
|
_LMERi,
|
|
@@ -726,7 +733,7 @@ var ListManagedEndpointsResponse = [
|
|
|
726
733
|
[_en, _nT],
|
|
727
734
|
[[() => Endpoints, 0], 0],
|
|
728
735
|
];
|
|
729
|
-
var ListSecurityConfigurationsRequest = [
|
|
736
|
+
var ListSecurityConfigurationsRequest$ = [
|
|
730
737
|
3,
|
|
731
738
|
n0,
|
|
732
739
|
_LSCR,
|
|
@@ -739,7 +746,7 @@ var ListSecurityConfigurationsRequest = [
|
|
|
739
746
|
[0, { [_hQ]: _nT }],
|
|
740
747
|
],
|
|
741
748
|
];
|
|
742
|
-
var ListSecurityConfigurationsResponse = [
|
|
749
|
+
var ListSecurityConfigurationsResponse$ = [
|
|
743
750
|
3,
|
|
744
751
|
n0,
|
|
745
752
|
_LSCRi,
|
|
@@ -747,9 +754,9 @@ var ListSecurityConfigurationsResponse = [
|
|
|
747
754
|
[_sCe, _nT],
|
|
748
755
|
[() => SecurityConfigurations, 0],
|
|
749
756
|
];
|
|
750
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
751
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
752
|
-
var ListVirtualClustersRequest = [
|
|
757
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
758
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
759
|
+
var ListVirtualClustersRequest$ = [
|
|
753
760
|
3,
|
|
754
761
|
n0,
|
|
755
762
|
_LVCR,
|
|
@@ -766,7 +773,7 @@ var ListVirtualClustersRequest = [
|
|
|
766
773
|
[2, { [_hQ]: _eAEI }],
|
|
767
774
|
],
|
|
768
775
|
];
|
|
769
|
-
var ListVirtualClustersResponse = [
|
|
776
|
+
var ListVirtualClustersResponse$ = [
|
|
770
777
|
3,
|
|
771
778
|
n0,
|
|
772
779
|
_LVCRi,
|
|
@@ -774,22 +781,22 @@ var ListVirtualClustersResponse = [
|
|
|
774
781
|
[_vCi, _nT],
|
|
775
782
|
[() => VirtualClusters, 0],
|
|
776
783
|
];
|
|
777
|
-
var ManagedLogs = [3, n0, _ML, 0, [_aAWSTRL, _eKA], [0, 0]];
|
|
778
|
-
var MonitoringConfiguration = [
|
|
784
|
+
var ManagedLogs$ = [3, n0, _ML, 0, [_aAWSTRL, _eKA], [0, 0]];
|
|
785
|
+
var MonitoringConfiguration$ = [
|
|
779
786
|
3,
|
|
780
787
|
n0,
|
|
781
788
|
_MC,
|
|
782
789
|
0,
|
|
783
790
|
[_mL, _pAUI, _cWMC, _sMC, _cLRC],
|
|
784
791
|
[
|
|
785
|
-
() => ManagedLogs
|
|
792
|
+
() => ManagedLogs$,
|
|
786
793
|
0,
|
|
787
|
-
() => CloudWatchMonitoringConfiguration
|
|
788
|
-
() => S3MonitoringConfiguration
|
|
789
|
-
() => ContainerLogRotationConfiguration
|
|
794
|
+
() => CloudWatchMonitoringConfiguration$,
|
|
795
|
+
() => S3MonitoringConfiguration$,
|
|
796
|
+
() => ContainerLogRotationConfiguration$,
|
|
790
797
|
],
|
|
791
798
|
];
|
|
792
|
-
var ParametricCloudWatchMonitoringConfiguration = [
|
|
799
|
+
var ParametricCloudWatchMonitoringConfiguration$ = [
|
|
793
800
|
3,
|
|
794
801
|
n0,
|
|
795
802
|
_PCWMC,
|
|
@@ -797,48 +804,48 @@ var ParametricCloudWatchMonitoringConfiguration = [
|
|
|
797
804
|
[_lGN, _lSNP],
|
|
798
805
|
[0, 0],
|
|
799
806
|
];
|
|
800
|
-
var ParametricConfigurationOverrides = [
|
|
807
|
+
var ParametricConfigurationOverrides$ = [
|
|
801
808
|
3,
|
|
802
809
|
n0,
|
|
803
810
|
_PCO,
|
|
804
811
|
0,
|
|
805
812
|
[_aC, _mC],
|
|
806
|
-
[[() => ConfigurationList, 0], () => ParametricMonitoringConfiguration],
|
|
813
|
+
[[() => ConfigurationList, 0], () => ParametricMonitoringConfiguration$],
|
|
807
814
|
];
|
|
808
|
-
var ParametricMonitoringConfiguration = [
|
|
815
|
+
var ParametricMonitoringConfiguration$ = [
|
|
809
816
|
3,
|
|
810
817
|
n0,
|
|
811
818
|
_PMC,
|
|
812
819
|
0,
|
|
813
820
|
[_pAUI, _cWMC, _sMC],
|
|
814
|
-
[0, () => ParametricCloudWatchMonitoringConfiguration
|
|
815
|
-
];
|
|
816
|
-
var ParametricS3MonitoringConfiguration = [3, n0, _PSMC, 0, [_lU], [0]];
|
|
817
|
-
var RequestThrottledException = [-3, n0, _RTE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
|
|
818
|
-
schema.TypeRegistry.for(n0).registerError(RequestThrottledException
|
|
819
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
|
|
820
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
821
|
-
var RetryPolicyConfiguration = [3, n0, _RPC, 0, [_mA], [1]];
|
|
822
|
-
var RetryPolicyExecution = [3, n0, _RPE, 0, [_cAC], [1]];
|
|
823
|
-
var S3MonitoringConfiguration = [3, n0, _SMC, 0, [_lU], [0]];
|
|
824
|
-
var SecureNamespaceInfo = [3, n0, _SNI, 0, [_cI, _na], [0, 0]];
|
|
825
|
-
var SecurityConfiguration = [
|
|
821
|
+
[0, () => ParametricCloudWatchMonitoringConfiguration$, () => ParametricS3MonitoringConfiguration$],
|
|
822
|
+
];
|
|
823
|
+
var ParametricS3MonitoringConfiguration$ = [3, n0, _PSMC, 0, [_lU], [0]];
|
|
824
|
+
var RequestThrottledException$ = [-3, n0, _RTE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
|
|
825
|
+
schema.TypeRegistry.for(n0).registerError(RequestThrottledException$, RequestThrottledException);
|
|
826
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
|
|
827
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
828
|
+
var RetryPolicyConfiguration$ = [3, n0, _RPC, 0, [_mA], [1]];
|
|
829
|
+
var RetryPolicyExecution$ = [3, n0, _RPE, 0, [_cAC], [1]];
|
|
830
|
+
var S3MonitoringConfiguration$ = [3, n0, _SMC, 0, [_lU], [0]];
|
|
831
|
+
var SecureNamespaceInfo$ = [3, n0, _SNI, 0, [_cI, _na], [0, 0]];
|
|
832
|
+
var SecurityConfiguration$ = [
|
|
826
833
|
3,
|
|
827
834
|
n0,
|
|
828
835
|
_SC,
|
|
829
836
|
0,
|
|
830
837
|
[_i, _n, _a, _cAr, _cB, _sCD, _ta],
|
|
831
|
-
[0, 0, 0, 5, 0, () => SecurityConfigurationData
|
|
838
|
+
[0, 0, 0, 5, 0, () => SecurityConfigurationData$, 128 | 0],
|
|
832
839
|
];
|
|
833
|
-
var SecurityConfigurationData = [
|
|
840
|
+
var SecurityConfigurationData$ = [
|
|
834
841
|
3,
|
|
835
842
|
n0,
|
|
836
843
|
_SCD,
|
|
837
844
|
0,
|
|
838
845
|
[_aCu],
|
|
839
|
-
[() => AuthorizationConfiguration],
|
|
846
|
+
[() => AuthorizationConfiguration$],
|
|
840
847
|
];
|
|
841
|
-
var SparkSqlJobDriver = [
|
|
848
|
+
var SparkSqlJobDriver$ = [
|
|
842
849
|
3,
|
|
843
850
|
n0,
|
|
844
851
|
_SSJD,
|
|
@@ -849,7 +856,7 @@ var SparkSqlJobDriver = [
|
|
|
849
856
|
[() => SparkSqlParameters, 0],
|
|
850
857
|
],
|
|
851
858
|
];
|
|
852
|
-
var SparkSubmitJobDriver = [
|
|
859
|
+
var SparkSubmitJobDriver$ = [
|
|
853
860
|
3,
|
|
854
861
|
n0,
|
|
855
862
|
_SSJDp,
|
|
@@ -861,7 +868,7 @@ var SparkSubmitJobDriver = [
|
|
|
861
868
|
[() => SparkSubmitParameters, 0],
|
|
862
869
|
],
|
|
863
870
|
];
|
|
864
|
-
var StartJobRunRequest = [
|
|
871
|
+
var StartJobRunRequest$ = [
|
|
865
872
|
3,
|
|
866
873
|
n0,
|
|
867
874
|
_SJRR,
|
|
@@ -873,20 +880,20 @@ var StartJobRunRequest = [
|
|
|
873
880
|
[0, 4],
|
|
874
881
|
0,
|
|
875
882
|
0,
|
|
876
|
-
[() => JobDriver
|
|
877
|
-
[() => ConfigurationOverrides
|
|
883
|
+
[() => JobDriver$, 0],
|
|
884
|
+
[() => ConfigurationOverrides$, 0],
|
|
878
885
|
128 | 0,
|
|
879
886
|
0,
|
|
880
887
|
128 | 0,
|
|
881
|
-
() => RetryPolicyConfiguration
|
|
888
|
+
() => RetryPolicyConfiguration$,
|
|
882
889
|
],
|
|
883
890
|
];
|
|
884
|
-
var StartJobRunResponse = [3, n0, _SJRRt, 0, [_i, _n, _a, _vCI], [0, 0, 0, 0]];
|
|
885
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
886
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
887
|
-
var TemplateParameterConfiguration = [3, n0, _TPC, 0, [_t, _dV], [0, 0]];
|
|
888
|
-
var TLSCertificateConfiguration = [3, n0, _TLSCC, 0, [_cPTe, _pCSA, _pCSAr], [0, 0, 0]];
|
|
889
|
-
var UntagResourceRequest = [
|
|
891
|
+
var StartJobRunResponse$ = [3, n0, _SJRRt, 0, [_i, _n, _a, _vCI], [0, 0, 0, 0]];
|
|
892
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
893
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
894
|
+
var TemplateParameterConfiguration$ = [3, n0, _TPC, 0, [_t, _dV], [0, 0]];
|
|
895
|
+
var TLSCertificateConfiguration$ = [3, n0, _TLSCC, 0, [_cPTe, _pCSA, _pCSAr], [0, 0, 0]];
|
|
896
|
+
var UntagResourceRequest$ = [
|
|
890
897
|
3,
|
|
891
898
|
n0,
|
|
892
899
|
_URR,
|
|
@@ -897,220 +904,213 @@ var UntagResourceRequest = [
|
|
|
897
904
|
[64 | 0, { [_hQ]: _tK }],
|
|
898
905
|
],
|
|
899
906
|
];
|
|
900
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
901
|
-
var ValidationException = [-3, n0, _VE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
|
|
902
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
903
|
-
var VirtualCluster = [
|
|
907
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
908
|
+
var ValidationException$ = [-3, n0, _VE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
|
|
909
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
910
|
+
var VirtualCluster$ = [
|
|
904
911
|
3,
|
|
905
912
|
n0,
|
|
906
913
|
_VC,
|
|
907
914
|
0,
|
|
908
915
|
[_i, _n, _a, _s, _cP, _cAr, _ta, _sCI],
|
|
909
|
-
[0, 0, 0, 0, () => ContainerProvider
|
|
916
|
+
[0, 0, 0, 0, () => ContainerProvider$, 5, 128 | 0, 0],
|
|
910
917
|
];
|
|
911
|
-
var EMRContainersServiceException = [-3, _sm, "EMRContainersServiceException", 0, [], []];
|
|
912
|
-
schema.TypeRegistry.for(_sm).registerError(EMRContainersServiceException
|
|
913
|
-
var ConfigurationList = [1, n0, _CL, 0, [() => Configuration
|
|
914
|
-
var Endpoints = [1, n0, _En, 0, [() => Endpoint
|
|
918
|
+
var EMRContainersServiceException$ = [-3, _sm, "EMRContainersServiceException", 0, [], []];
|
|
919
|
+
schema.TypeRegistry.for(_sm).registerError(EMRContainersServiceException$, EMRContainersServiceException);
|
|
920
|
+
var ConfigurationList = [1, n0, _CL, 0, [() => Configuration$, 0]];
|
|
921
|
+
var Endpoints = [1, n0, _En, 0, [() => Endpoint$, 0]];
|
|
915
922
|
var EntryPointArguments = [1, n0, _EPAn, 0, [() => EntryPointArgument, 0]];
|
|
916
|
-
var JobRuns = [1, n0, _JRo, 0, [() => JobRun
|
|
917
|
-
var JobTemplates = [1, n0, _JTo, 0, [() => JobTemplate
|
|
918
|
-
var SecurityConfigurations = [1, n0, _SCe, 0, () => SecurityConfiguration];
|
|
919
|
-
var VirtualClusters = [1, n0, _VCi, 0, () => VirtualCluster];
|
|
923
|
+
var JobRuns = [1, n0, _JRo, 0, [() => JobRun$, 0]];
|
|
924
|
+
var JobTemplates = [1, n0, _JTo, 0, [() => JobTemplate$, 0]];
|
|
925
|
+
var SecurityConfigurations = [1, n0, _SCe, 0, () => SecurityConfiguration$];
|
|
926
|
+
var VirtualClusters = [1, n0, _VCi, 0, () => VirtualCluster$];
|
|
920
927
|
var SensitivePropertiesMap = [2, n0, _SPM, 8, 0, 0];
|
|
921
|
-
var TemplateParameterConfigurationMap = [
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
0,
|
|
926
|
-
0,
|
|
927
|
-
() => TemplateParameterConfiguration,
|
|
928
|
-
];
|
|
929
|
-
var ContainerInfo = [3, n0, _CI, 0, [_eIk], [() => EksInfo]];
|
|
930
|
-
var Credentials = [3, n0, _Cr, 0, [_to], [[() => Token, 0]]];
|
|
931
|
-
var CancelJobRun = [
|
|
928
|
+
var TemplateParameterConfigurationMap = [2, n0, _TPCM, 0, 0, () => TemplateParameterConfiguration$];
|
|
929
|
+
var ContainerInfo$ = [3, n0, _CI, 0, [_eIk], [() => EksInfo$]];
|
|
930
|
+
var Credentials$ = [3, n0, _Cr, 0, [_to], [[() => Token, 0]]];
|
|
931
|
+
var CancelJobRun$ = [
|
|
932
932
|
9,
|
|
933
933
|
n0,
|
|
934
934
|
_CJR,
|
|
935
935
|
{ [_h]: ["DELETE", "/virtualclusters/{virtualClusterId}/jobruns/{id}", 200] },
|
|
936
|
-
() => CancelJobRunRequest
|
|
937
|
-
() => CancelJobRunResponse
|
|
936
|
+
() => CancelJobRunRequest$,
|
|
937
|
+
() => CancelJobRunResponse$,
|
|
938
938
|
];
|
|
939
|
-
var CreateJobTemplate = [
|
|
939
|
+
var CreateJobTemplate$ = [
|
|
940
940
|
9,
|
|
941
941
|
n0,
|
|
942
942
|
_CJT,
|
|
943
943
|
{ [_h]: ["POST", "/jobtemplates", 200] },
|
|
944
|
-
() => CreateJobTemplateRequest
|
|
945
|
-
() => CreateJobTemplateResponse
|
|
944
|
+
() => CreateJobTemplateRequest$,
|
|
945
|
+
() => CreateJobTemplateResponse$,
|
|
946
946
|
];
|
|
947
|
-
var CreateManagedEndpoint = [
|
|
947
|
+
var CreateManagedEndpoint$ = [
|
|
948
948
|
9,
|
|
949
949
|
n0,
|
|
950
950
|
_CME,
|
|
951
951
|
{ [_h]: ["POST", "/virtualclusters/{virtualClusterId}/endpoints", 200] },
|
|
952
|
-
() => CreateManagedEndpointRequest
|
|
953
|
-
() => CreateManagedEndpointResponse
|
|
952
|
+
() => CreateManagedEndpointRequest$,
|
|
953
|
+
() => CreateManagedEndpointResponse$,
|
|
954
954
|
];
|
|
955
|
-
var CreateSecurityConfiguration = [
|
|
955
|
+
var CreateSecurityConfiguration$ = [
|
|
956
956
|
9,
|
|
957
957
|
n0,
|
|
958
958
|
_CSC,
|
|
959
959
|
{ [_h]: ["POST", "/securityconfigurations", 200] },
|
|
960
|
-
() => CreateSecurityConfigurationRequest
|
|
961
|
-
() => CreateSecurityConfigurationResponse
|
|
960
|
+
() => CreateSecurityConfigurationRequest$,
|
|
961
|
+
() => CreateSecurityConfigurationResponse$,
|
|
962
962
|
];
|
|
963
|
-
var CreateVirtualCluster = [
|
|
963
|
+
var CreateVirtualCluster$ = [
|
|
964
964
|
9,
|
|
965
965
|
n0,
|
|
966
966
|
_CVC,
|
|
967
967
|
{ [_h]: ["POST", "/virtualclusters", 200] },
|
|
968
|
-
() => CreateVirtualClusterRequest
|
|
969
|
-
() => CreateVirtualClusterResponse
|
|
968
|
+
() => CreateVirtualClusterRequest$,
|
|
969
|
+
() => CreateVirtualClusterResponse$,
|
|
970
970
|
];
|
|
971
|
-
var DeleteJobTemplate = [
|
|
971
|
+
var DeleteJobTemplate$ = [
|
|
972
972
|
9,
|
|
973
973
|
n0,
|
|
974
974
|
_DJT,
|
|
975
975
|
{ [_h]: ["DELETE", "/jobtemplates/{id}", 200] },
|
|
976
|
-
() => DeleteJobTemplateRequest
|
|
977
|
-
() => DeleteJobTemplateResponse
|
|
976
|
+
() => DeleteJobTemplateRequest$,
|
|
977
|
+
() => DeleteJobTemplateResponse$,
|
|
978
978
|
];
|
|
979
|
-
var DeleteManagedEndpoint = [
|
|
979
|
+
var DeleteManagedEndpoint$ = [
|
|
980
980
|
9,
|
|
981
981
|
n0,
|
|
982
982
|
_DME,
|
|
983
983
|
{ [_h]: ["DELETE", "/virtualclusters/{virtualClusterId}/endpoints/{id}", 200] },
|
|
984
|
-
() => DeleteManagedEndpointRequest
|
|
985
|
-
() => DeleteManagedEndpointResponse
|
|
984
|
+
() => DeleteManagedEndpointRequest$,
|
|
985
|
+
() => DeleteManagedEndpointResponse$,
|
|
986
986
|
];
|
|
987
|
-
var DeleteVirtualCluster = [
|
|
987
|
+
var DeleteVirtualCluster$ = [
|
|
988
988
|
9,
|
|
989
989
|
n0,
|
|
990
990
|
_DVC,
|
|
991
991
|
{ [_h]: ["DELETE", "/virtualclusters/{id}", 200] },
|
|
992
|
-
() => DeleteVirtualClusterRequest
|
|
993
|
-
() => DeleteVirtualClusterResponse
|
|
992
|
+
() => DeleteVirtualClusterRequest$,
|
|
993
|
+
() => DeleteVirtualClusterResponse$,
|
|
994
994
|
];
|
|
995
|
-
var DescribeJobRun = [
|
|
995
|
+
var DescribeJobRun$ = [
|
|
996
996
|
9,
|
|
997
997
|
n0,
|
|
998
998
|
_DJR,
|
|
999
999
|
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/jobruns/{id}", 200] },
|
|
1000
|
-
() => DescribeJobRunRequest
|
|
1001
|
-
() => DescribeJobRunResponse
|
|
1000
|
+
() => DescribeJobRunRequest$,
|
|
1001
|
+
() => DescribeJobRunResponse$,
|
|
1002
1002
|
];
|
|
1003
|
-
var DescribeJobTemplate = [
|
|
1003
|
+
var DescribeJobTemplate$ = [
|
|
1004
1004
|
9,
|
|
1005
1005
|
n0,
|
|
1006
1006
|
_DJTe,
|
|
1007
1007
|
{ [_h]: ["GET", "/jobtemplates/{id}", 200] },
|
|
1008
|
-
() => DescribeJobTemplateRequest
|
|
1009
|
-
() => DescribeJobTemplateResponse
|
|
1008
|
+
() => DescribeJobTemplateRequest$,
|
|
1009
|
+
() => DescribeJobTemplateResponse$,
|
|
1010
1010
|
];
|
|
1011
|
-
var DescribeManagedEndpoint = [
|
|
1011
|
+
var DescribeManagedEndpoint$ = [
|
|
1012
1012
|
9,
|
|
1013
1013
|
n0,
|
|
1014
1014
|
_DMEe,
|
|
1015
1015
|
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/endpoints/{id}", 200] },
|
|
1016
|
-
() => DescribeManagedEndpointRequest
|
|
1017
|
-
() => DescribeManagedEndpointResponse
|
|
1016
|
+
() => DescribeManagedEndpointRequest$,
|
|
1017
|
+
() => DescribeManagedEndpointResponse$,
|
|
1018
1018
|
];
|
|
1019
|
-
var DescribeSecurityConfiguration = [
|
|
1019
|
+
var DescribeSecurityConfiguration$ = [
|
|
1020
1020
|
9,
|
|
1021
1021
|
n0,
|
|
1022
1022
|
_DSC,
|
|
1023
1023
|
{ [_h]: ["GET", "/securityconfigurations/{id}", 200] },
|
|
1024
|
-
() => DescribeSecurityConfigurationRequest
|
|
1025
|
-
() => DescribeSecurityConfigurationResponse
|
|
1024
|
+
() => DescribeSecurityConfigurationRequest$,
|
|
1025
|
+
() => DescribeSecurityConfigurationResponse$,
|
|
1026
1026
|
];
|
|
1027
|
-
var DescribeVirtualCluster = [
|
|
1027
|
+
var DescribeVirtualCluster$ = [
|
|
1028
1028
|
9,
|
|
1029
1029
|
n0,
|
|
1030
1030
|
_DVCe,
|
|
1031
1031
|
{ [_h]: ["GET", "/virtualclusters/{id}", 200] },
|
|
1032
|
-
() => DescribeVirtualClusterRequest
|
|
1033
|
-
() => DescribeVirtualClusterResponse
|
|
1032
|
+
() => DescribeVirtualClusterRequest$,
|
|
1033
|
+
() => DescribeVirtualClusterResponse$,
|
|
1034
1034
|
];
|
|
1035
|
-
var GetManagedEndpointSessionCredentials = [
|
|
1035
|
+
var GetManagedEndpointSessionCredentials$ = [
|
|
1036
1036
|
9,
|
|
1037
1037
|
n0,
|
|
1038
1038
|
_GMESC,
|
|
1039
1039
|
{ [_h]: ["POST", "/virtualclusters/{virtualClusterIdentifier}/endpoints/{endpointIdentifier}/credentials", 200] },
|
|
1040
|
-
() => GetManagedEndpointSessionCredentialsRequest
|
|
1041
|
-
() => GetManagedEndpointSessionCredentialsResponse
|
|
1040
|
+
() => GetManagedEndpointSessionCredentialsRequest$,
|
|
1041
|
+
() => GetManagedEndpointSessionCredentialsResponse$,
|
|
1042
1042
|
];
|
|
1043
|
-
var ListJobRuns = [
|
|
1043
|
+
var ListJobRuns$ = [
|
|
1044
1044
|
9,
|
|
1045
1045
|
n0,
|
|
1046
1046
|
_LJR,
|
|
1047
1047
|
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/jobruns", 200] },
|
|
1048
|
-
() => ListJobRunsRequest
|
|
1049
|
-
() => ListJobRunsResponse
|
|
1048
|
+
() => ListJobRunsRequest$,
|
|
1049
|
+
() => ListJobRunsResponse$,
|
|
1050
1050
|
];
|
|
1051
|
-
var ListJobTemplates = [
|
|
1051
|
+
var ListJobTemplates$ = [
|
|
1052
1052
|
9,
|
|
1053
1053
|
n0,
|
|
1054
1054
|
_LJT,
|
|
1055
1055
|
{ [_h]: ["GET", "/jobtemplates", 200] },
|
|
1056
|
-
() => ListJobTemplatesRequest
|
|
1057
|
-
() => ListJobTemplatesResponse
|
|
1056
|
+
() => ListJobTemplatesRequest$,
|
|
1057
|
+
() => ListJobTemplatesResponse$,
|
|
1058
1058
|
];
|
|
1059
|
-
var ListManagedEndpoints = [
|
|
1059
|
+
var ListManagedEndpoints$ = [
|
|
1060
1060
|
9,
|
|
1061
1061
|
n0,
|
|
1062
1062
|
_LME,
|
|
1063
1063
|
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/endpoints", 200] },
|
|
1064
|
-
() => ListManagedEndpointsRequest
|
|
1065
|
-
() => ListManagedEndpointsResponse
|
|
1064
|
+
() => ListManagedEndpointsRequest$,
|
|
1065
|
+
() => ListManagedEndpointsResponse$,
|
|
1066
1066
|
];
|
|
1067
|
-
var ListSecurityConfigurations = [
|
|
1067
|
+
var ListSecurityConfigurations$ = [
|
|
1068
1068
|
9,
|
|
1069
1069
|
n0,
|
|
1070
1070
|
_LSC,
|
|
1071
1071
|
{ [_h]: ["GET", "/securityconfigurations", 200] },
|
|
1072
|
-
() => ListSecurityConfigurationsRequest
|
|
1073
|
-
() => ListSecurityConfigurationsResponse
|
|
1072
|
+
() => ListSecurityConfigurationsRequest$,
|
|
1073
|
+
() => ListSecurityConfigurationsResponse$,
|
|
1074
1074
|
];
|
|
1075
|
-
var ListTagsForResource = [
|
|
1075
|
+
var ListTagsForResource$ = [
|
|
1076
1076
|
9,
|
|
1077
1077
|
n0,
|
|
1078
1078
|
_LTFR,
|
|
1079
1079
|
{ [_h]: ["GET", "/tags/{resourceArn}", 200] },
|
|
1080
|
-
() => ListTagsForResourceRequest
|
|
1081
|
-
() => ListTagsForResourceResponse
|
|
1080
|
+
() => ListTagsForResourceRequest$,
|
|
1081
|
+
() => ListTagsForResourceResponse$,
|
|
1082
1082
|
];
|
|
1083
|
-
var ListVirtualClusters = [
|
|
1083
|
+
var ListVirtualClusters$ = [
|
|
1084
1084
|
9,
|
|
1085
1085
|
n0,
|
|
1086
1086
|
_LVC,
|
|
1087
1087
|
{ [_h]: ["GET", "/virtualclusters", 200] },
|
|
1088
|
-
() => ListVirtualClustersRequest
|
|
1089
|
-
() => ListVirtualClustersResponse
|
|
1088
|
+
() => ListVirtualClustersRequest$,
|
|
1089
|
+
() => ListVirtualClustersResponse$,
|
|
1090
1090
|
];
|
|
1091
|
-
var StartJobRun = [
|
|
1091
|
+
var StartJobRun$ = [
|
|
1092
1092
|
9,
|
|
1093
1093
|
n0,
|
|
1094
1094
|
_SJR,
|
|
1095
1095
|
{ [_h]: ["POST", "/virtualclusters/{virtualClusterId}/jobruns", 200] },
|
|
1096
|
-
() => StartJobRunRequest
|
|
1097
|
-
() => StartJobRunResponse
|
|
1096
|
+
() => StartJobRunRequest$,
|
|
1097
|
+
() => StartJobRunResponse$,
|
|
1098
1098
|
];
|
|
1099
|
-
var TagResource = [
|
|
1099
|
+
var TagResource$ = [
|
|
1100
1100
|
9,
|
|
1101
1101
|
n0,
|
|
1102
1102
|
_TR,
|
|
1103
1103
|
{ [_h]: ["POST", "/tags/{resourceArn}", 200] },
|
|
1104
|
-
() => TagResourceRequest
|
|
1105
|
-
() => TagResourceResponse
|
|
1104
|
+
() => TagResourceRequest$,
|
|
1105
|
+
() => TagResourceResponse$,
|
|
1106
1106
|
];
|
|
1107
|
-
var UntagResource = [
|
|
1107
|
+
var UntagResource$ = [
|
|
1108
1108
|
9,
|
|
1109
1109
|
n0,
|
|
1110
1110
|
_UR,
|
|
1111
1111
|
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
|
|
1112
|
-
() => UntagResourceRequest
|
|
1113
|
-
() => UntagResourceResponse
|
|
1112
|
+
() => UntagResourceRequest$,
|
|
1113
|
+
() => UntagResourceResponse$,
|
|
1114
1114
|
];
|
|
1115
1115
|
|
|
1116
1116
|
class CancelJobRunCommand extends smithyClient.Command
|
|
@@ -1121,7 +1121,7 @@ class CancelJobRunCommand extends smithyClient.Command
|
|
|
1121
1121
|
})
|
|
1122
1122
|
.s("AwsChicagoWebService", "CancelJobRun", {})
|
|
1123
1123
|
.n("EMRContainersClient", "CancelJobRunCommand")
|
|
1124
|
-
.sc(CancelJobRun)
|
|
1124
|
+
.sc(CancelJobRun$)
|
|
1125
1125
|
.build() {
|
|
1126
1126
|
}
|
|
1127
1127
|
|
|
@@ -1133,7 +1133,7 @@ class CreateJobTemplateCommand extends smithyClient.Command
|
|
|
1133
1133
|
})
|
|
1134
1134
|
.s("AwsChicagoWebService", "CreateJobTemplate", {})
|
|
1135
1135
|
.n("EMRContainersClient", "CreateJobTemplateCommand")
|
|
1136
|
-
.sc(CreateJobTemplate)
|
|
1136
|
+
.sc(CreateJobTemplate$)
|
|
1137
1137
|
.build() {
|
|
1138
1138
|
}
|
|
1139
1139
|
|
|
@@ -1145,7 +1145,7 @@ class CreateManagedEndpointCommand extends smithyClient.Command
|
|
|
1145
1145
|
})
|
|
1146
1146
|
.s("AwsChicagoWebService", "CreateManagedEndpoint", {})
|
|
1147
1147
|
.n("EMRContainersClient", "CreateManagedEndpointCommand")
|
|
1148
|
-
.sc(CreateManagedEndpoint)
|
|
1148
|
+
.sc(CreateManagedEndpoint$)
|
|
1149
1149
|
.build() {
|
|
1150
1150
|
}
|
|
1151
1151
|
|
|
@@ -1157,7 +1157,7 @@ class CreateSecurityConfigurationCommand extends smithyClient.Command
|
|
|
1157
1157
|
})
|
|
1158
1158
|
.s("AwsChicagoWebService", "CreateSecurityConfiguration", {})
|
|
1159
1159
|
.n("EMRContainersClient", "CreateSecurityConfigurationCommand")
|
|
1160
|
-
.sc(CreateSecurityConfiguration)
|
|
1160
|
+
.sc(CreateSecurityConfiguration$)
|
|
1161
1161
|
.build() {
|
|
1162
1162
|
}
|
|
1163
1163
|
|
|
@@ -1169,7 +1169,7 @@ class CreateVirtualClusterCommand extends smithyClient.Command
|
|
|
1169
1169
|
})
|
|
1170
1170
|
.s("AwsChicagoWebService", "CreateVirtualCluster", {})
|
|
1171
1171
|
.n("EMRContainersClient", "CreateVirtualClusterCommand")
|
|
1172
|
-
.sc(CreateVirtualCluster)
|
|
1172
|
+
.sc(CreateVirtualCluster$)
|
|
1173
1173
|
.build() {
|
|
1174
1174
|
}
|
|
1175
1175
|
|
|
@@ -1181,7 +1181,7 @@ class DeleteJobTemplateCommand extends smithyClient.Command
|
|
|
1181
1181
|
})
|
|
1182
1182
|
.s("AwsChicagoWebService", "DeleteJobTemplate", {})
|
|
1183
1183
|
.n("EMRContainersClient", "DeleteJobTemplateCommand")
|
|
1184
|
-
.sc(DeleteJobTemplate)
|
|
1184
|
+
.sc(DeleteJobTemplate$)
|
|
1185
1185
|
.build() {
|
|
1186
1186
|
}
|
|
1187
1187
|
|
|
@@ -1193,7 +1193,7 @@ class DeleteManagedEndpointCommand extends smithyClient.Command
|
|
|
1193
1193
|
})
|
|
1194
1194
|
.s("AwsChicagoWebService", "DeleteManagedEndpoint", {})
|
|
1195
1195
|
.n("EMRContainersClient", "DeleteManagedEndpointCommand")
|
|
1196
|
-
.sc(DeleteManagedEndpoint)
|
|
1196
|
+
.sc(DeleteManagedEndpoint$)
|
|
1197
1197
|
.build() {
|
|
1198
1198
|
}
|
|
1199
1199
|
|
|
@@ -1205,7 +1205,7 @@ class DeleteVirtualClusterCommand extends smithyClient.Command
|
|
|
1205
1205
|
})
|
|
1206
1206
|
.s("AwsChicagoWebService", "DeleteVirtualCluster", {})
|
|
1207
1207
|
.n("EMRContainersClient", "DeleteVirtualClusterCommand")
|
|
1208
|
-
.sc(DeleteVirtualCluster)
|
|
1208
|
+
.sc(DeleteVirtualCluster$)
|
|
1209
1209
|
.build() {
|
|
1210
1210
|
}
|
|
1211
1211
|
|
|
@@ -1217,7 +1217,7 @@ class DescribeJobRunCommand extends smithyClient.Command
|
|
|
1217
1217
|
})
|
|
1218
1218
|
.s("AwsChicagoWebService", "DescribeJobRun", {})
|
|
1219
1219
|
.n("EMRContainersClient", "DescribeJobRunCommand")
|
|
1220
|
-
.sc(DescribeJobRun)
|
|
1220
|
+
.sc(DescribeJobRun$)
|
|
1221
1221
|
.build() {
|
|
1222
1222
|
}
|
|
1223
1223
|
|
|
@@ -1229,7 +1229,7 @@ class DescribeJobTemplateCommand extends smithyClient.Command
|
|
|
1229
1229
|
})
|
|
1230
1230
|
.s("AwsChicagoWebService", "DescribeJobTemplate", {})
|
|
1231
1231
|
.n("EMRContainersClient", "DescribeJobTemplateCommand")
|
|
1232
|
-
.sc(DescribeJobTemplate)
|
|
1232
|
+
.sc(DescribeJobTemplate$)
|
|
1233
1233
|
.build() {
|
|
1234
1234
|
}
|
|
1235
1235
|
|
|
@@ -1241,7 +1241,7 @@ class DescribeManagedEndpointCommand extends smithyClient.Command
|
|
|
1241
1241
|
})
|
|
1242
1242
|
.s("AwsChicagoWebService", "DescribeManagedEndpoint", {})
|
|
1243
1243
|
.n("EMRContainersClient", "DescribeManagedEndpointCommand")
|
|
1244
|
-
.sc(DescribeManagedEndpoint)
|
|
1244
|
+
.sc(DescribeManagedEndpoint$)
|
|
1245
1245
|
.build() {
|
|
1246
1246
|
}
|
|
1247
1247
|
|
|
@@ -1253,7 +1253,7 @@ class DescribeSecurityConfigurationCommand extends smithyClient.Command
|
|
|
1253
1253
|
})
|
|
1254
1254
|
.s("AwsChicagoWebService", "DescribeSecurityConfiguration", {})
|
|
1255
1255
|
.n("EMRContainersClient", "DescribeSecurityConfigurationCommand")
|
|
1256
|
-
.sc(DescribeSecurityConfiguration)
|
|
1256
|
+
.sc(DescribeSecurityConfiguration$)
|
|
1257
1257
|
.build() {
|
|
1258
1258
|
}
|
|
1259
1259
|
|
|
@@ -1265,7 +1265,7 @@ class DescribeVirtualClusterCommand extends smithyClient.Command
|
|
|
1265
1265
|
})
|
|
1266
1266
|
.s("AwsChicagoWebService", "DescribeVirtualCluster", {})
|
|
1267
1267
|
.n("EMRContainersClient", "DescribeVirtualClusterCommand")
|
|
1268
|
-
.sc(DescribeVirtualCluster)
|
|
1268
|
+
.sc(DescribeVirtualCluster$)
|
|
1269
1269
|
.build() {
|
|
1270
1270
|
}
|
|
1271
1271
|
|
|
@@ -1277,7 +1277,7 @@ class GetManagedEndpointSessionCredentialsCommand extends smithyClient.Command
|
|
|
1277
1277
|
})
|
|
1278
1278
|
.s("AwsChicagoWebService", "GetManagedEndpointSessionCredentials", {})
|
|
1279
1279
|
.n("EMRContainersClient", "GetManagedEndpointSessionCredentialsCommand")
|
|
1280
|
-
.sc(GetManagedEndpointSessionCredentials)
|
|
1280
|
+
.sc(GetManagedEndpointSessionCredentials$)
|
|
1281
1281
|
.build() {
|
|
1282
1282
|
}
|
|
1283
1283
|
|
|
@@ -1289,7 +1289,7 @@ class ListJobRunsCommand extends smithyClient.Command
|
|
|
1289
1289
|
})
|
|
1290
1290
|
.s("AwsChicagoWebService", "ListJobRuns", {})
|
|
1291
1291
|
.n("EMRContainersClient", "ListJobRunsCommand")
|
|
1292
|
-
.sc(ListJobRuns)
|
|
1292
|
+
.sc(ListJobRuns$)
|
|
1293
1293
|
.build() {
|
|
1294
1294
|
}
|
|
1295
1295
|
|
|
@@ -1301,7 +1301,7 @@ class ListJobTemplatesCommand extends smithyClient.Command
|
|
|
1301
1301
|
})
|
|
1302
1302
|
.s("AwsChicagoWebService", "ListJobTemplates", {})
|
|
1303
1303
|
.n("EMRContainersClient", "ListJobTemplatesCommand")
|
|
1304
|
-
.sc(ListJobTemplates)
|
|
1304
|
+
.sc(ListJobTemplates$)
|
|
1305
1305
|
.build() {
|
|
1306
1306
|
}
|
|
1307
1307
|
|
|
@@ -1313,7 +1313,7 @@ class ListManagedEndpointsCommand extends smithyClient.Command
|
|
|
1313
1313
|
})
|
|
1314
1314
|
.s("AwsChicagoWebService", "ListManagedEndpoints", {})
|
|
1315
1315
|
.n("EMRContainersClient", "ListManagedEndpointsCommand")
|
|
1316
|
-
.sc(ListManagedEndpoints)
|
|
1316
|
+
.sc(ListManagedEndpoints$)
|
|
1317
1317
|
.build() {
|
|
1318
1318
|
}
|
|
1319
1319
|
|
|
@@ -1325,7 +1325,7 @@ class ListSecurityConfigurationsCommand extends smithyClient.Command
|
|
|
1325
1325
|
})
|
|
1326
1326
|
.s("AwsChicagoWebService", "ListSecurityConfigurations", {})
|
|
1327
1327
|
.n("EMRContainersClient", "ListSecurityConfigurationsCommand")
|
|
1328
|
-
.sc(ListSecurityConfigurations)
|
|
1328
|
+
.sc(ListSecurityConfigurations$)
|
|
1329
1329
|
.build() {
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
@@ -1337,7 +1337,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1337
1337
|
})
|
|
1338
1338
|
.s("AwsChicagoWebService", "ListTagsForResource", {})
|
|
1339
1339
|
.n("EMRContainersClient", "ListTagsForResourceCommand")
|
|
1340
|
-
.sc(ListTagsForResource)
|
|
1340
|
+
.sc(ListTagsForResource$)
|
|
1341
1341
|
.build() {
|
|
1342
1342
|
}
|
|
1343
1343
|
|
|
@@ -1349,7 +1349,7 @@ class ListVirtualClustersCommand extends smithyClient.Command
|
|
|
1349
1349
|
})
|
|
1350
1350
|
.s("AwsChicagoWebService", "ListVirtualClusters", {})
|
|
1351
1351
|
.n("EMRContainersClient", "ListVirtualClustersCommand")
|
|
1352
|
-
.sc(ListVirtualClusters)
|
|
1352
|
+
.sc(ListVirtualClusters$)
|
|
1353
1353
|
.build() {
|
|
1354
1354
|
}
|
|
1355
1355
|
|
|
@@ -1361,7 +1361,7 @@ class StartJobRunCommand extends smithyClient.Command
|
|
|
1361
1361
|
})
|
|
1362
1362
|
.s("AwsChicagoWebService", "StartJobRun", {})
|
|
1363
1363
|
.n("EMRContainersClient", "StartJobRunCommand")
|
|
1364
|
-
.sc(StartJobRun)
|
|
1364
|
+
.sc(StartJobRun$)
|
|
1365
1365
|
.build() {
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
@@ -1373,7 +1373,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1373
1373
|
})
|
|
1374
1374
|
.s("AwsChicagoWebService", "TagResource", {})
|
|
1375
1375
|
.n("EMRContainersClient", "TagResourceCommand")
|
|
1376
|
-
.sc(TagResource)
|
|
1376
|
+
.sc(TagResource$)
|
|
1377
1377
|
.build() {
|
|
1378
1378
|
}
|
|
1379
1379
|
|
|
@@ -1385,7 +1385,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1385
1385
|
})
|
|
1386
1386
|
.s("AwsChicagoWebService", "UntagResource", {})
|
|
1387
1387
|
.n("EMRContainersClient", "UntagResourceCommand")
|
|
1388
|
-
.sc(UntagResource)
|
|
1388
|
+
.sc(UntagResource$)
|
|
1389
1389
|
.build() {
|
|
1390
1390
|
}
|
|
1391
1391
|
|
|
@@ -1484,44 +1484,154 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1484
1484
|
get: function () { return smithyClient.Client; }
|
|
1485
1485
|
});
|
|
1486
1486
|
exports.AllowAWSToRetainLogs = AllowAWSToRetainLogs;
|
|
1487
|
+
exports.AuthorizationConfiguration$ = AuthorizationConfiguration$;
|
|
1488
|
+
exports.CancelJobRun$ = CancelJobRun$;
|
|
1487
1489
|
exports.CancelJobRunCommand = CancelJobRunCommand;
|
|
1490
|
+
exports.CancelJobRunRequest$ = CancelJobRunRequest$;
|
|
1491
|
+
exports.CancelJobRunResponse$ = CancelJobRunResponse$;
|
|
1492
|
+
exports.Certificate$ = Certificate$;
|
|
1488
1493
|
exports.CertificateProviderType = CertificateProviderType;
|
|
1494
|
+
exports.CloudWatchMonitoringConfiguration$ = CloudWatchMonitoringConfiguration$;
|
|
1495
|
+
exports.Configuration$ = Configuration$;
|
|
1496
|
+
exports.ConfigurationOverrides$ = ConfigurationOverrides$;
|
|
1497
|
+
exports.ContainerInfo$ = ContainerInfo$;
|
|
1498
|
+
exports.ContainerLogRotationConfiguration$ = ContainerLogRotationConfiguration$;
|
|
1499
|
+
exports.ContainerProvider$ = ContainerProvider$;
|
|
1489
1500
|
exports.ContainerProviderType = ContainerProviderType;
|
|
1501
|
+
exports.CreateJobTemplate$ = CreateJobTemplate$;
|
|
1490
1502
|
exports.CreateJobTemplateCommand = CreateJobTemplateCommand;
|
|
1503
|
+
exports.CreateJobTemplateRequest$ = CreateJobTemplateRequest$;
|
|
1504
|
+
exports.CreateJobTemplateResponse$ = CreateJobTemplateResponse$;
|
|
1505
|
+
exports.CreateManagedEndpoint$ = CreateManagedEndpoint$;
|
|
1491
1506
|
exports.CreateManagedEndpointCommand = CreateManagedEndpointCommand;
|
|
1507
|
+
exports.CreateManagedEndpointRequest$ = CreateManagedEndpointRequest$;
|
|
1508
|
+
exports.CreateManagedEndpointResponse$ = CreateManagedEndpointResponse$;
|
|
1509
|
+
exports.CreateSecurityConfiguration$ = CreateSecurityConfiguration$;
|
|
1492
1510
|
exports.CreateSecurityConfigurationCommand = CreateSecurityConfigurationCommand;
|
|
1511
|
+
exports.CreateSecurityConfigurationRequest$ = CreateSecurityConfigurationRequest$;
|
|
1512
|
+
exports.CreateSecurityConfigurationResponse$ = CreateSecurityConfigurationResponse$;
|
|
1513
|
+
exports.CreateVirtualCluster$ = CreateVirtualCluster$;
|
|
1493
1514
|
exports.CreateVirtualClusterCommand = CreateVirtualClusterCommand;
|
|
1515
|
+
exports.CreateVirtualClusterRequest$ = CreateVirtualClusterRequest$;
|
|
1516
|
+
exports.CreateVirtualClusterResponse$ = CreateVirtualClusterResponse$;
|
|
1517
|
+
exports.Credentials$ = Credentials$;
|
|
1518
|
+
exports.DeleteJobTemplate$ = DeleteJobTemplate$;
|
|
1494
1519
|
exports.DeleteJobTemplateCommand = DeleteJobTemplateCommand;
|
|
1520
|
+
exports.DeleteJobTemplateRequest$ = DeleteJobTemplateRequest$;
|
|
1521
|
+
exports.DeleteJobTemplateResponse$ = DeleteJobTemplateResponse$;
|
|
1522
|
+
exports.DeleteManagedEndpoint$ = DeleteManagedEndpoint$;
|
|
1495
1523
|
exports.DeleteManagedEndpointCommand = DeleteManagedEndpointCommand;
|
|
1524
|
+
exports.DeleteManagedEndpointRequest$ = DeleteManagedEndpointRequest$;
|
|
1525
|
+
exports.DeleteManagedEndpointResponse$ = DeleteManagedEndpointResponse$;
|
|
1526
|
+
exports.DeleteVirtualCluster$ = DeleteVirtualCluster$;
|
|
1496
1527
|
exports.DeleteVirtualClusterCommand = DeleteVirtualClusterCommand;
|
|
1528
|
+
exports.DeleteVirtualClusterRequest$ = DeleteVirtualClusterRequest$;
|
|
1529
|
+
exports.DeleteVirtualClusterResponse$ = DeleteVirtualClusterResponse$;
|
|
1530
|
+
exports.DescribeJobRun$ = DescribeJobRun$;
|
|
1497
1531
|
exports.DescribeJobRunCommand = DescribeJobRunCommand;
|
|
1532
|
+
exports.DescribeJobRunRequest$ = DescribeJobRunRequest$;
|
|
1533
|
+
exports.DescribeJobRunResponse$ = DescribeJobRunResponse$;
|
|
1534
|
+
exports.DescribeJobTemplate$ = DescribeJobTemplate$;
|
|
1498
1535
|
exports.DescribeJobTemplateCommand = DescribeJobTemplateCommand;
|
|
1536
|
+
exports.DescribeJobTemplateRequest$ = DescribeJobTemplateRequest$;
|
|
1537
|
+
exports.DescribeJobTemplateResponse$ = DescribeJobTemplateResponse$;
|
|
1538
|
+
exports.DescribeManagedEndpoint$ = DescribeManagedEndpoint$;
|
|
1499
1539
|
exports.DescribeManagedEndpointCommand = DescribeManagedEndpointCommand;
|
|
1540
|
+
exports.DescribeManagedEndpointRequest$ = DescribeManagedEndpointRequest$;
|
|
1541
|
+
exports.DescribeManagedEndpointResponse$ = DescribeManagedEndpointResponse$;
|
|
1542
|
+
exports.DescribeSecurityConfiguration$ = DescribeSecurityConfiguration$;
|
|
1500
1543
|
exports.DescribeSecurityConfigurationCommand = DescribeSecurityConfigurationCommand;
|
|
1544
|
+
exports.DescribeSecurityConfigurationRequest$ = DescribeSecurityConfigurationRequest$;
|
|
1545
|
+
exports.DescribeSecurityConfigurationResponse$ = DescribeSecurityConfigurationResponse$;
|
|
1546
|
+
exports.DescribeVirtualCluster$ = DescribeVirtualCluster$;
|
|
1501
1547
|
exports.DescribeVirtualClusterCommand = DescribeVirtualClusterCommand;
|
|
1502
|
-
exports.
|
|
1548
|
+
exports.DescribeVirtualClusterRequest$ = DescribeVirtualClusterRequest$;
|
|
1549
|
+
exports.DescribeVirtualClusterResponse$ = DescribeVirtualClusterResponse$;
|
|
1550
|
+
exports.EKSRequestThrottledException = EKSRequestThrottledException;
|
|
1551
|
+
exports.EKSRequestThrottledException$ = EKSRequestThrottledException$;
|
|
1503
1552
|
exports.EMRContainers = EMRContainers;
|
|
1504
1553
|
exports.EMRContainersClient = EMRContainersClient;
|
|
1505
|
-
exports.EMRContainersServiceException = EMRContainersServiceException
|
|
1554
|
+
exports.EMRContainersServiceException = EMRContainersServiceException;
|
|
1555
|
+
exports.EMRContainersServiceException$ = EMRContainersServiceException$;
|
|
1556
|
+
exports.EksInfo$ = EksInfo$;
|
|
1557
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
1558
|
+
exports.Endpoint$ = Endpoint$;
|
|
1506
1559
|
exports.EndpointState = EndpointState;
|
|
1507
1560
|
exports.FailureReason = FailureReason;
|
|
1561
|
+
exports.GetManagedEndpointSessionCredentials$ = GetManagedEndpointSessionCredentials$;
|
|
1508
1562
|
exports.GetManagedEndpointSessionCredentialsCommand = GetManagedEndpointSessionCredentialsCommand;
|
|
1509
|
-
exports.
|
|
1563
|
+
exports.GetManagedEndpointSessionCredentialsRequest$ = GetManagedEndpointSessionCredentialsRequest$;
|
|
1564
|
+
exports.GetManagedEndpointSessionCredentialsResponse$ = GetManagedEndpointSessionCredentialsResponse$;
|
|
1565
|
+
exports.InTransitEncryptionConfiguration$ = InTransitEncryptionConfiguration$;
|
|
1566
|
+
exports.InternalServerException = InternalServerException;
|
|
1567
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1568
|
+
exports.JobDriver$ = JobDriver$;
|
|
1569
|
+
exports.JobRun$ = JobRun$;
|
|
1510
1570
|
exports.JobRunState = JobRunState;
|
|
1571
|
+
exports.JobTemplate$ = JobTemplate$;
|
|
1572
|
+
exports.JobTemplateData$ = JobTemplateData$;
|
|
1573
|
+
exports.LakeFormationConfiguration$ = LakeFormationConfiguration$;
|
|
1574
|
+
exports.ListJobRuns$ = ListJobRuns$;
|
|
1511
1575
|
exports.ListJobRunsCommand = ListJobRunsCommand;
|
|
1576
|
+
exports.ListJobRunsRequest$ = ListJobRunsRequest$;
|
|
1577
|
+
exports.ListJobRunsResponse$ = ListJobRunsResponse$;
|
|
1578
|
+
exports.ListJobTemplates$ = ListJobTemplates$;
|
|
1512
1579
|
exports.ListJobTemplatesCommand = ListJobTemplatesCommand;
|
|
1580
|
+
exports.ListJobTemplatesRequest$ = ListJobTemplatesRequest$;
|
|
1581
|
+
exports.ListJobTemplatesResponse$ = ListJobTemplatesResponse$;
|
|
1582
|
+
exports.ListManagedEndpoints$ = ListManagedEndpoints$;
|
|
1513
1583
|
exports.ListManagedEndpointsCommand = ListManagedEndpointsCommand;
|
|
1584
|
+
exports.ListManagedEndpointsRequest$ = ListManagedEndpointsRequest$;
|
|
1585
|
+
exports.ListManagedEndpointsResponse$ = ListManagedEndpointsResponse$;
|
|
1586
|
+
exports.ListSecurityConfigurations$ = ListSecurityConfigurations$;
|
|
1514
1587
|
exports.ListSecurityConfigurationsCommand = ListSecurityConfigurationsCommand;
|
|
1588
|
+
exports.ListSecurityConfigurationsRequest$ = ListSecurityConfigurationsRequest$;
|
|
1589
|
+
exports.ListSecurityConfigurationsResponse$ = ListSecurityConfigurationsResponse$;
|
|
1590
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1515
1591
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1592
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1593
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1594
|
+
exports.ListVirtualClusters$ = ListVirtualClusters$;
|
|
1516
1595
|
exports.ListVirtualClustersCommand = ListVirtualClustersCommand;
|
|
1596
|
+
exports.ListVirtualClustersRequest$ = ListVirtualClustersRequest$;
|
|
1597
|
+
exports.ListVirtualClustersResponse$ = ListVirtualClustersResponse$;
|
|
1598
|
+
exports.ManagedLogs$ = ManagedLogs$;
|
|
1599
|
+
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
1600
|
+
exports.ParametricCloudWatchMonitoringConfiguration$ = ParametricCloudWatchMonitoringConfiguration$;
|
|
1601
|
+
exports.ParametricConfigurationOverrides$ = ParametricConfigurationOverrides$;
|
|
1602
|
+
exports.ParametricMonitoringConfiguration$ = ParametricMonitoringConfiguration$;
|
|
1603
|
+
exports.ParametricS3MonitoringConfiguration$ = ParametricS3MonitoringConfiguration$;
|
|
1517
1604
|
exports.PersistentAppUI = PersistentAppUI;
|
|
1518
|
-
exports.RequestThrottledException = RequestThrottledException
|
|
1519
|
-
exports.
|
|
1605
|
+
exports.RequestThrottledException = RequestThrottledException;
|
|
1606
|
+
exports.RequestThrottledException$ = RequestThrottledException$;
|
|
1607
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1608
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1609
|
+
exports.RetryPolicyConfiguration$ = RetryPolicyConfiguration$;
|
|
1610
|
+
exports.RetryPolicyExecution$ = RetryPolicyExecution$;
|
|
1611
|
+
exports.S3MonitoringConfiguration$ = S3MonitoringConfiguration$;
|
|
1612
|
+
exports.SecureNamespaceInfo$ = SecureNamespaceInfo$;
|
|
1613
|
+
exports.SecurityConfiguration$ = SecurityConfiguration$;
|
|
1614
|
+
exports.SecurityConfigurationData$ = SecurityConfigurationData$;
|
|
1615
|
+
exports.SparkSqlJobDriver$ = SparkSqlJobDriver$;
|
|
1616
|
+
exports.SparkSubmitJobDriver$ = SparkSubmitJobDriver$;
|
|
1617
|
+
exports.StartJobRun$ = StartJobRun$;
|
|
1520
1618
|
exports.StartJobRunCommand = StartJobRunCommand;
|
|
1619
|
+
exports.StartJobRunRequest$ = StartJobRunRequest$;
|
|
1620
|
+
exports.StartJobRunResponse$ = StartJobRunResponse$;
|
|
1621
|
+
exports.TLSCertificateConfiguration$ = TLSCertificateConfiguration$;
|
|
1622
|
+
exports.TagResource$ = TagResource$;
|
|
1521
1623
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1624
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1625
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1626
|
+
exports.TemplateParameterConfiguration$ = TemplateParameterConfiguration$;
|
|
1522
1627
|
exports.TemplateParameterDataType = TemplateParameterDataType;
|
|
1628
|
+
exports.UntagResource$ = UntagResource$;
|
|
1523
1629
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1524
|
-
exports.
|
|
1630
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1631
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1632
|
+
exports.ValidationException = ValidationException;
|
|
1633
|
+
exports.ValidationException$ = ValidationException$;
|
|
1634
|
+
exports.VirtualCluster$ = VirtualCluster$;
|
|
1525
1635
|
exports.VirtualClusterState = VirtualClusterState;
|
|
1526
1636
|
exports.paginateListJobRuns = paginateListJobRuns;
|
|
1527
1637
|
exports.paginateListJobTemplates = paginateListJobTemplates;
|