@aws-sdk/client-mwaa 3.952.0 → 3.954.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 +195 -140
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateCliTokenCommand.js +2 -2
- package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-es/commands/CreateWebLoginTokenCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetEnvironmentCommand.js +2 -2
- package/dist-es/commands/InvokeRestApiCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PublishMetricsCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.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 +119 -119
- package/dist-types/MWAAClient.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 +56 -68
- package/dist-types/ts3.4/MWAAClient.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 +55 -70
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class MWAAClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class MWAAServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, MWAAServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends MWAAServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends MWAAServiceExc
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class ResourceNotFoundException extends MWAAServiceException {
|
|
135
135
|
name = "ResourceNotFoundException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
constructor(opts) {
|
|
@@ -142,8 +142,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends MWAASe
|
|
|
142
142
|
});
|
|
143
143
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
144
144
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
145
|
+
}
|
|
146
|
+
class InternalServerException extends MWAAServiceException {
|
|
147
147
|
name = "InternalServerException";
|
|
148
148
|
$fault = "server";
|
|
149
149
|
constructor(opts) {
|
|
@@ -154,8 +154,8 @@ let InternalServerException$1 = class InternalServerException extends MWAAServic
|
|
|
154
154
|
});
|
|
155
155
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
156
156
|
}
|
|
157
|
-
}
|
|
158
|
-
|
|
157
|
+
}
|
|
158
|
+
class ValidationException extends MWAAServiceException {
|
|
159
159
|
name = "ValidationException";
|
|
160
160
|
$fault = "client";
|
|
161
161
|
constructor(opts) {
|
|
@@ -166,8 +166,8 @@ let ValidationException$1 = class ValidationException extends MWAAServiceExcepti
|
|
|
166
166
|
});
|
|
167
167
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
168
168
|
}
|
|
169
|
-
}
|
|
170
|
-
|
|
169
|
+
}
|
|
170
|
+
class RestApiClientException extends MWAAServiceException {
|
|
171
171
|
name = "RestApiClientException";
|
|
172
172
|
$fault = "client";
|
|
173
173
|
RestApiStatusCode;
|
|
@@ -182,8 +182,8 @@ let RestApiClientException$1 = class RestApiClientException extends MWAAServiceE
|
|
|
182
182
|
this.RestApiStatusCode = opts.RestApiStatusCode;
|
|
183
183
|
this.RestApiResponse = opts.RestApiResponse;
|
|
184
184
|
}
|
|
185
|
-
}
|
|
186
|
-
|
|
185
|
+
}
|
|
186
|
+
class RestApiServerException extends MWAAServiceException {
|
|
187
187
|
name = "RestApiServerException";
|
|
188
188
|
$fault = "client";
|
|
189
189
|
RestApiStatusCode;
|
|
@@ -198,7 +198,7 @@ let RestApiServerException$1 = class RestApiServerException extends MWAAServiceE
|
|
|
198
198
|
this.RestApiStatusCode = opts.RestApiStatusCode;
|
|
199
199
|
this.RestApiResponse = opts.RestApiResponse;
|
|
200
200
|
}
|
|
201
|
-
}
|
|
201
|
+
}
|
|
202
202
|
|
|
203
203
|
const _A = "Arn";
|
|
204
204
|
const _ACO = "AirflowConfigurationOptions";
|
|
@@ -346,11 +346,11 @@ var ConfigValue = [0, n0, _CV, 8, 0];
|
|
|
346
346
|
var RestApiRequestBody = [0, n0, _RARB, 8, 15];
|
|
347
347
|
var RestApiResponse = [0, n0, _RAR, 8, 15];
|
|
348
348
|
var Token = [0, n0, _T, 8, 0];
|
|
349
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
350
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
351
|
-
var CreateCliTokenRequest = [3, n0, _CCTR, 0, [_N], [[0, 1]]];
|
|
352
|
-
var CreateCliTokenResponse = [3, n0, _CCTRr, 0, [_CT, _WSH], [[() => Token, 0], 0]];
|
|
353
|
-
var CreateEnvironmentInput = [
|
|
349
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
350
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
351
|
+
var CreateCliTokenRequest$ = [3, n0, _CCTR, 0, [_N], [[0, 1]]];
|
|
352
|
+
var CreateCliTokenResponse$ = [3, n0, _CCTRr, 0, [_CT, _WSH], [[() => Token, 0], 0]];
|
|
353
|
+
var CreateEnvironmentInput$ = [
|
|
354
354
|
3,
|
|
355
355
|
n0,
|
|
356
356
|
_CEI,
|
|
@@ -387,7 +387,7 @@ var CreateEnvironmentInput = [
|
|
|
387
387
|
0,
|
|
388
388
|
0,
|
|
389
389
|
0,
|
|
390
|
-
() => NetworkConfiguration
|
|
390
|
+
() => NetworkConfiguration$,
|
|
391
391
|
0,
|
|
392
392
|
0,
|
|
393
393
|
0,
|
|
@@ -399,7 +399,7 @@ var CreateEnvironmentInput = [
|
|
|
399
399
|
1,
|
|
400
400
|
0,
|
|
401
401
|
0,
|
|
402
|
-
() => LoggingConfigurationInput
|
|
402
|
+
() => LoggingConfigurationInput$,
|
|
403
403
|
0,
|
|
404
404
|
128 | 0,
|
|
405
405
|
0,
|
|
@@ -410,9 +410,9 @@ var CreateEnvironmentInput = [
|
|
|
410
410
|
1,
|
|
411
411
|
],
|
|
412
412
|
];
|
|
413
|
-
var CreateEnvironmentOutput = [3, n0, _CEO, 0, [_A], [0]];
|
|
414
|
-
var CreateWebLoginTokenRequest = [3, n0, _CWLTR, 0, [_N], [[0, 1]]];
|
|
415
|
-
var CreateWebLoginTokenResponse = [
|
|
413
|
+
var CreateEnvironmentOutput$ = [3, n0, _CEO, 0, [_A], [0]];
|
|
414
|
+
var CreateWebLoginTokenRequest$ = [3, n0, _CWLTR, 0, [_N], [[0, 1]]];
|
|
415
|
+
var CreateWebLoginTokenResponse$ = [
|
|
416
416
|
3,
|
|
417
417
|
n0,
|
|
418
418
|
_CWLTRr,
|
|
@@ -420,10 +420,10 @@ var CreateWebLoginTokenResponse = [
|
|
|
420
420
|
[_WT, _WSH, _II, _AI],
|
|
421
421
|
[[() => Token, 0], 0, 0, 0],
|
|
422
422
|
];
|
|
423
|
-
var DeleteEnvironmentInput = [3, n0, _DEI, 0, [_N], [[0, 1]]];
|
|
424
|
-
var DeleteEnvironmentOutput = [3, n0, _DEO, 0, [], []];
|
|
425
|
-
var Dimension = [3, n0, _D, 0, [_N, _V], [0, 0]];
|
|
426
|
-
var Environment = [
|
|
423
|
+
var DeleteEnvironmentInput$ = [3, n0, _DEI, 0, [_N], [[0, 1]]];
|
|
424
|
+
var DeleteEnvironmentOutput$ = [3, n0, _DEO, 0, [], []];
|
|
425
|
+
var Dimension$ = [3, n0, _D, 0, [_N, _V], [0, 0]];
|
|
426
|
+
var Environment$ = [
|
|
427
427
|
3,
|
|
428
428
|
n0,
|
|
429
429
|
_E,
|
|
@@ -485,9 +485,9 @@ var Environment = [
|
|
|
485
485
|
[() => AirflowConfigurationOptions, 0],
|
|
486
486
|
0,
|
|
487
487
|
1,
|
|
488
|
-
() => NetworkConfiguration
|
|
489
|
-
() => LoggingConfiguration
|
|
490
|
-
() => LastUpdate
|
|
488
|
+
() => NetworkConfiguration$,
|
|
489
|
+
() => LoggingConfiguration$,
|
|
490
|
+
() => LastUpdate$,
|
|
491
491
|
0,
|
|
492
492
|
128 | 0,
|
|
493
493
|
0,
|
|
@@ -501,11 +501,11 @@ var Environment = [
|
|
|
501
501
|
1,
|
|
502
502
|
],
|
|
503
503
|
];
|
|
504
|
-
var GetEnvironmentInput = [3, n0, _GEI, 0, [_N], [[0, 1]]];
|
|
505
|
-
var GetEnvironmentOutput = [3, n0, _GEO, 0, [_E], [[() => Environment
|
|
506
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
|
|
507
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
508
|
-
var InvokeRestApiRequest = [
|
|
504
|
+
var GetEnvironmentInput$ = [3, n0, _GEI, 0, [_N], [[0, 1]]];
|
|
505
|
+
var GetEnvironmentOutput$ = [3, n0, _GEO, 0, [_E], [[() => Environment$, 0]]];
|
|
506
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
|
|
507
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
508
|
+
var InvokeRestApiRequest$ = [
|
|
509
509
|
3,
|
|
510
510
|
n0,
|
|
511
511
|
_IRAR,
|
|
@@ -513,7 +513,7 @@ var InvokeRestApiRequest = [
|
|
|
513
513
|
[_N, _P, _Me, _QP, _B],
|
|
514
514
|
[[0, 1], 0, 0, 15, [() => RestApiRequestBody, 0]],
|
|
515
515
|
];
|
|
516
|
-
var InvokeRestApiResponse = [
|
|
516
|
+
var InvokeRestApiResponse$ = [
|
|
517
517
|
3,
|
|
518
518
|
n0,
|
|
519
519
|
_IRARn,
|
|
@@ -521,15 +521,15 @@ var InvokeRestApiResponse = [
|
|
|
521
521
|
[_RASC, _RAR],
|
|
522
522
|
[1, [() => RestApiResponse, 0]],
|
|
523
523
|
];
|
|
524
|
-
var LastUpdate = [
|
|
524
|
+
var LastUpdate$ = [
|
|
525
525
|
3,
|
|
526
526
|
n0,
|
|
527
527
|
_LU,
|
|
528
528
|
0,
|
|
529
529
|
[_St, _CA, _Er, _So, _WRS],
|
|
530
|
-
[0, 4, () => UpdateError
|
|
530
|
+
[0, 4, () => UpdateError$, 0, 0],
|
|
531
531
|
];
|
|
532
|
-
var ListEnvironmentsInput = [
|
|
532
|
+
var ListEnvironmentsInput$ = [
|
|
533
533
|
3,
|
|
534
534
|
n0,
|
|
535
535
|
_LEI,
|
|
@@ -540,53 +540,53 @@ var ListEnvironmentsInput = [
|
|
|
540
540
|
[1, { [_hQ]: _MR }],
|
|
541
541
|
],
|
|
542
542
|
];
|
|
543
|
-
var ListEnvironmentsOutput = [3, n0, _LEO, 0, [_En, _NT], [64 | 0, 0]];
|
|
544
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RA], [[0, 1]]];
|
|
545
|
-
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_Ta], [128 | 0]];
|
|
546
|
-
var LoggingConfiguration = [
|
|
543
|
+
var ListEnvironmentsOutput$ = [3, n0, _LEO, 0, [_En, _NT], [64 | 0, 0]];
|
|
544
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_RA], [[0, 1]]];
|
|
545
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_Ta], [128 | 0]];
|
|
546
|
+
var LoggingConfiguration$ = [
|
|
547
547
|
3,
|
|
548
548
|
n0,
|
|
549
549
|
_LC,
|
|
550
550
|
0,
|
|
551
551
|
[_DPL, _SL, _WL, _WLo, _TL],
|
|
552
552
|
[
|
|
553
|
-
() => ModuleLoggingConfiguration
|
|
554
|
-
() => ModuleLoggingConfiguration
|
|
555
|
-
() => ModuleLoggingConfiguration
|
|
556
|
-
() => ModuleLoggingConfiguration
|
|
557
|
-
() => ModuleLoggingConfiguration
|
|
553
|
+
() => ModuleLoggingConfiguration$,
|
|
554
|
+
() => ModuleLoggingConfiguration$,
|
|
555
|
+
() => ModuleLoggingConfiguration$,
|
|
556
|
+
() => ModuleLoggingConfiguration$,
|
|
557
|
+
() => ModuleLoggingConfiguration$,
|
|
558
558
|
],
|
|
559
559
|
];
|
|
560
|
-
var LoggingConfigurationInput = [
|
|
560
|
+
var LoggingConfigurationInput$ = [
|
|
561
561
|
3,
|
|
562
562
|
n0,
|
|
563
563
|
_LCI,
|
|
564
564
|
0,
|
|
565
565
|
[_DPL, _SL, _WL, _WLo, _TL],
|
|
566
566
|
[
|
|
567
|
-
() => ModuleLoggingConfigurationInput
|
|
568
|
-
() => ModuleLoggingConfigurationInput
|
|
569
|
-
() => ModuleLoggingConfigurationInput
|
|
570
|
-
() => ModuleLoggingConfigurationInput
|
|
571
|
-
() => ModuleLoggingConfigurationInput
|
|
567
|
+
() => ModuleLoggingConfigurationInput$,
|
|
568
|
+
() => ModuleLoggingConfigurationInput$,
|
|
569
|
+
() => ModuleLoggingConfigurationInput$,
|
|
570
|
+
() => ModuleLoggingConfigurationInput$,
|
|
571
|
+
() => ModuleLoggingConfigurationInput$,
|
|
572
572
|
],
|
|
573
573
|
];
|
|
574
|
-
var MetricDatum = [
|
|
574
|
+
var MetricDatum$ = [
|
|
575
575
|
3,
|
|
576
576
|
n0,
|
|
577
577
|
_MD,
|
|
578
578
|
0,
|
|
579
579
|
[_MN, _Ti, _Di, _V, _U, _SV],
|
|
580
|
-
[0, 4, () => Dimensions, 1, 0, () => StatisticSet],
|
|
580
|
+
[0, 4, () => Dimensions, 1, 0, () => StatisticSet$],
|
|
581
581
|
];
|
|
582
|
-
var ModuleLoggingConfiguration = [3, n0, _MLC, 0, [_Ena, _LL, _CWLGA], [2, 0, 0]];
|
|
583
|
-
var ModuleLoggingConfigurationInput = [3, n0, _MLCI, 0, [_Ena, _LL], [2, 0]];
|
|
584
|
-
var NetworkConfiguration = [3, n0, _NC, 0, [_SI, _SGI], [64 | 0, 64 | 0]];
|
|
585
|
-
var PublishMetricsInput = [3, n0, _PMI, 0, [_EN, _MDe], [[0, 1], () => MetricData]];
|
|
586
|
-
var PublishMetricsOutput = [3, n0, _PMO, 0, [], []];
|
|
587
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
588
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
589
|
-
var RestApiClientException = [
|
|
582
|
+
var ModuleLoggingConfiguration$ = [3, n0, _MLC, 0, [_Ena, _LL, _CWLGA], [2, 0, 0]];
|
|
583
|
+
var ModuleLoggingConfigurationInput$ = [3, n0, _MLCI, 0, [_Ena, _LL], [2, 0]];
|
|
584
|
+
var NetworkConfiguration$ = [3, n0, _NC, 0, [_SI, _SGI], [64 | 0, 64 | 0]];
|
|
585
|
+
var PublishMetricsInput$ = [3, n0, _PMI, 0, [_EN, _MDe], [[0, 1], () => MetricData]];
|
|
586
|
+
var PublishMetricsOutput$ = [3, n0, _PMO, 0, [], []];
|
|
587
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
588
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
589
|
+
var RestApiClientException$ = [
|
|
590
590
|
-3,
|
|
591
591
|
n0,
|
|
592
592
|
_RACE,
|
|
@@ -594,8 +594,8 @@ var RestApiClientException = [
|
|
|
594
594
|
[_RASC, _RAR],
|
|
595
595
|
[1, [() => RestApiResponse, 0]],
|
|
596
596
|
];
|
|
597
|
-
schema.TypeRegistry.for(n0).registerError(RestApiClientException
|
|
598
|
-
var RestApiServerException = [
|
|
597
|
+
schema.TypeRegistry.for(n0).registerError(RestApiClientException$, RestApiClientException);
|
|
598
|
+
var RestApiServerException$ = [
|
|
599
599
|
-3,
|
|
600
600
|
n0,
|
|
601
601
|
_RASE,
|
|
@@ -603,11 +603,11 @@ var RestApiServerException = [
|
|
|
603
603
|
[_RASC, _RAR],
|
|
604
604
|
[1, [() => RestApiResponse, 0]],
|
|
605
605
|
];
|
|
606
|
-
schema.TypeRegistry.for(n0).registerError(RestApiServerException
|
|
607
|
-
var StatisticSet = [3, n0, _SS, 0, [_SC, _Su, _Mi, _Ma], [1, 1, 1, 1]];
|
|
608
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
609
|
-
var TagResourceOutput = [3, n0, _TRO, 0, [], []];
|
|
610
|
-
var UntagResourceInput = [
|
|
606
|
+
schema.TypeRegistry.for(n0).registerError(RestApiServerException$, RestApiServerException);
|
|
607
|
+
var StatisticSet$ = [3, n0, _SS, 0, [_SC, _Su, _Mi, _Ma], [1, 1, 1, 1]];
|
|
608
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
609
|
+
var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
|
|
610
|
+
var UntagResourceInput$ = [
|
|
611
611
|
3,
|
|
612
612
|
n0,
|
|
613
613
|
_URI,
|
|
@@ -618,8 +618,8 @@ var UntagResourceInput = [
|
|
|
618
618
|
[64 | 0, { [_hQ]: _tK }],
|
|
619
619
|
],
|
|
620
620
|
];
|
|
621
|
-
var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
622
|
-
var UpdateEnvironmentInput = [
|
|
621
|
+
var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
|
|
622
|
+
var UpdateEnvironmentInput$ = [
|
|
623
623
|
3,
|
|
624
624
|
n0,
|
|
625
625
|
_UEI,
|
|
@@ -656,13 +656,13 @@ var UpdateEnvironmentInput = [
|
|
|
656
656
|
0,
|
|
657
657
|
0,
|
|
658
658
|
0,
|
|
659
|
-
() => LoggingConfigurationInput
|
|
659
|
+
() => LoggingConfigurationInput$,
|
|
660
660
|
1,
|
|
661
661
|
1,
|
|
662
662
|
1,
|
|
663
663
|
1,
|
|
664
664
|
0,
|
|
665
|
-
() => UpdateNetworkConfigurationInput
|
|
665
|
+
() => UpdateNetworkConfigurationInput$,
|
|
666
666
|
0,
|
|
667
667
|
0,
|
|
668
668
|
0,
|
|
@@ -675,111 +675,111 @@ var UpdateEnvironmentInput = [
|
|
|
675
675
|
0,
|
|
676
676
|
],
|
|
677
677
|
];
|
|
678
|
-
var UpdateEnvironmentOutput = [3, n0, _UEO, 0, [_A], [0]];
|
|
679
|
-
var UpdateError = [3, n0, _UE, 0, [_ECr, _EMr], [0, 0]];
|
|
680
|
-
var UpdateNetworkConfigurationInput = [3, n0, _UNCI, 0, [_SGI], [64 | 0]];
|
|
681
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
682
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
683
|
-
var MWAAServiceException = [-3, _sm, "MWAAServiceException", 0, [], []];
|
|
684
|
-
schema.TypeRegistry.for(_sm).registerError(MWAAServiceException
|
|
685
|
-
var Dimensions = [1, n0, _Di, 0, () => Dimension];
|
|
686
|
-
var MetricData = [1, n0, _MDe, 0, () => MetricDatum];
|
|
678
|
+
var UpdateEnvironmentOutput$ = [3, n0, _UEO, 0, [_A], [0]];
|
|
679
|
+
var UpdateError$ = [3, n0, _UE, 0, [_ECr, _EMr], [0, 0]];
|
|
680
|
+
var UpdateNetworkConfigurationInput$ = [3, n0, _UNCI, 0, [_SGI], [64 | 0]];
|
|
681
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
682
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
683
|
+
var MWAAServiceException$ = [-3, _sm, "MWAAServiceException", 0, [], []];
|
|
684
|
+
schema.TypeRegistry.for(_sm).registerError(MWAAServiceException$, MWAAServiceException);
|
|
685
|
+
var Dimensions = [1, n0, _Di, 0, () => Dimension$];
|
|
686
|
+
var MetricData = [1, n0, _MDe, 0, () => MetricDatum$];
|
|
687
687
|
var AirflowConfigurationOptions = [2, n0, _ACO, 8, [0, 0], [() => ConfigValue, 0]];
|
|
688
|
-
var CreateCliToken = [
|
|
688
|
+
var CreateCliToken$ = [
|
|
689
689
|
9,
|
|
690
690
|
n0,
|
|
691
691
|
_CCT,
|
|
692
692
|
{ [_h]: ["POST", "/clitoken/{Name}", 200], [_en]: ["env."] },
|
|
693
|
-
() => CreateCliTokenRequest
|
|
694
|
-
() => CreateCliTokenResponse
|
|
693
|
+
() => CreateCliTokenRequest$,
|
|
694
|
+
() => CreateCliTokenResponse$,
|
|
695
695
|
];
|
|
696
|
-
var CreateEnvironment = [
|
|
696
|
+
var CreateEnvironment$ = [
|
|
697
697
|
9,
|
|
698
698
|
n0,
|
|
699
699
|
_CE,
|
|
700
700
|
{ [_h]: ["PUT", "/environments/{Name}", 200], [_en]: ["api."] },
|
|
701
|
-
() => CreateEnvironmentInput
|
|
702
|
-
() => CreateEnvironmentOutput
|
|
701
|
+
() => CreateEnvironmentInput$,
|
|
702
|
+
() => CreateEnvironmentOutput$,
|
|
703
703
|
];
|
|
704
|
-
var CreateWebLoginToken = [
|
|
704
|
+
var CreateWebLoginToken$ = [
|
|
705
705
|
9,
|
|
706
706
|
n0,
|
|
707
707
|
_CWLT,
|
|
708
708
|
{ [_h]: ["POST", "/webtoken/{Name}", 200], [_en]: ["env."] },
|
|
709
|
-
() => CreateWebLoginTokenRequest
|
|
710
|
-
() => CreateWebLoginTokenResponse
|
|
709
|
+
() => CreateWebLoginTokenRequest$,
|
|
710
|
+
() => CreateWebLoginTokenResponse$,
|
|
711
711
|
];
|
|
712
|
-
var DeleteEnvironment = [
|
|
712
|
+
var DeleteEnvironment$ = [
|
|
713
713
|
9,
|
|
714
714
|
n0,
|
|
715
715
|
_DE,
|
|
716
716
|
{ [_h]: ["DELETE", "/environments/{Name}", 200], [_en]: ["api."] },
|
|
717
|
-
() => DeleteEnvironmentInput
|
|
718
|
-
() => DeleteEnvironmentOutput
|
|
717
|
+
() => DeleteEnvironmentInput$,
|
|
718
|
+
() => DeleteEnvironmentOutput$,
|
|
719
719
|
];
|
|
720
|
-
var GetEnvironment = [
|
|
720
|
+
var GetEnvironment$ = [
|
|
721
721
|
9,
|
|
722
722
|
n0,
|
|
723
723
|
_GE,
|
|
724
724
|
{ [_h]: ["GET", "/environments/{Name}", 200], [_en]: ["api."] },
|
|
725
|
-
() => GetEnvironmentInput
|
|
726
|
-
() => GetEnvironmentOutput
|
|
725
|
+
() => GetEnvironmentInput$,
|
|
726
|
+
() => GetEnvironmentOutput$,
|
|
727
727
|
];
|
|
728
|
-
var InvokeRestApi = [
|
|
728
|
+
var InvokeRestApi$ = [
|
|
729
729
|
9,
|
|
730
730
|
n0,
|
|
731
731
|
_IRA,
|
|
732
732
|
{ [_h]: ["POST", "/restapi/{Name}", 200], [_en]: ["env."] },
|
|
733
|
-
() => InvokeRestApiRequest
|
|
734
|
-
() => InvokeRestApiResponse
|
|
733
|
+
() => InvokeRestApiRequest$,
|
|
734
|
+
() => InvokeRestApiResponse$,
|
|
735
735
|
];
|
|
736
|
-
var ListEnvironments = [
|
|
736
|
+
var ListEnvironments$ = [
|
|
737
737
|
9,
|
|
738
738
|
n0,
|
|
739
739
|
_LE,
|
|
740
740
|
{ [_h]: ["GET", "/environments", 200], [_en]: ["api."] },
|
|
741
|
-
() => ListEnvironmentsInput
|
|
742
|
-
() => ListEnvironmentsOutput
|
|
741
|
+
() => ListEnvironmentsInput$,
|
|
742
|
+
() => ListEnvironmentsOutput$,
|
|
743
743
|
];
|
|
744
|
-
var ListTagsForResource = [
|
|
744
|
+
var ListTagsForResource$ = [
|
|
745
745
|
9,
|
|
746
746
|
n0,
|
|
747
747
|
_LTFR,
|
|
748
748
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200], [_en]: ["api."] },
|
|
749
|
-
() => ListTagsForResourceInput
|
|
750
|
-
() => ListTagsForResourceOutput
|
|
749
|
+
() => ListTagsForResourceInput$,
|
|
750
|
+
() => ListTagsForResourceOutput$,
|
|
751
751
|
];
|
|
752
|
-
var PublishMetrics = [
|
|
752
|
+
var PublishMetrics$ = [
|
|
753
753
|
9,
|
|
754
754
|
n0,
|
|
755
755
|
_PM,
|
|
756
756
|
{ [_h]: ["POST", "/metrics/environments/{EnvironmentName}", 200], [_en]: ["ops."] },
|
|
757
|
-
() => PublishMetricsInput
|
|
758
|
-
() => PublishMetricsOutput
|
|
757
|
+
() => PublishMetricsInput$,
|
|
758
|
+
() => PublishMetricsOutput$,
|
|
759
759
|
];
|
|
760
|
-
var TagResource = [
|
|
760
|
+
var TagResource$ = [
|
|
761
761
|
9,
|
|
762
762
|
n0,
|
|
763
763
|
_TR,
|
|
764
764
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 200], [_en]: ["api."] },
|
|
765
|
-
() => TagResourceInput
|
|
766
|
-
() => TagResourceOutput
|
|
765
|
+
() => TagResourceInput$,
|
|
766
|
+
() => TagResourceOutput$,
|
|
767
767
|
];
|
|
768
|
-
var UntagResource = [
|
|
768
|
+
var UntagResource$ = [
|
|
769
769
|
9,
|
|
770
770
|
n0,
|
|
771
771
|
_UR,
|
|
772
772
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200], [_en]: ["api."] },
|
|
773
|
-
() => UntagResourceInput
|
|
774
|
-
() => UntagResourceOutput
|
|
773
|
+
() => UntagResourceInput$,
|
|
774
|
+
() => UntagResourceOutput$,
|
|
775
775
|
];
|
|
776
|
-
var UpdateEnvironment = [
|
|
776
|
+
var UpdateEnvironment$ = [
|
|
777
777
|
9,
|
|
778
778
|
n0,
|
|
779
779
|
_UEp,
|
|
780
780
|
{ [_h]: ["PATCH", "/environments/{Name}", 200], [_en]: ["api."] },
|
|
781
|
-
() => UpdateEnvironmentInput
|
|
782
|
-
() => UpdateEnvironmentOutput
|
|
781
|
+
() => UpdateEnvironmentInput$,
|
|
782
|
+
() => UpdateEnvironmentOutput$,
|
|
783
783
|
];
|
|
784
784
|
|
|
785
785
|
class CreateCliTokenCommand extends smithyClient.Command
|
|
@@ -790,7 +790,7 @@ class CreateCliTokenCommand extends smithyClient.Command
|
|
|
790
790
|
})
|
|
791
791
|
.s("AmazonMWAA", "CreateCliToken", {})
|
|
792
792
|
.n("MWAAClient", "CreateCliTokenCommand")
|
|
793
|
-
.sc(CreateCliToken)
|
|
793
|
+
.sc(CreateCliToken$)
|
|
794
794
|
.build() {
|
|
795
795
|
}
|
|
796
796
|
|
|
@@ -802,7 +802,7 @@ class CreateEnvironmentCommand extends smithyClient.Command
|
|
|
802
802
|
})
|
|
803
803
|
.s("AmazonMWAA", "CreateEnvironment", {})
|
|
804
804
|
.n("MWAAClient", "CreateEnvironmentCommand")
|
|
805
|
-
.sc(CreateEnvironment)
|
|
805
|
+
.sc(CreateEnvironment$)
|
|
806
806
|
.build() {
|
|
807
807
|
}
|
|
808
808
|
|
|
@@ -814,7 +814,7 @@ class CreateWebLoginTokenCommand extends smithyClient.Command
|
|
|
814
814
|
})
|
|
815
815
|
.s("AmazonMWAA", "CreateWebLoginToken", {})
|
|
816
816
|
.n("MWAAClient", "CreateWebLoginTokenCommand")
|
|
817
|
-
.sc(CreateWebLoginToken)
|
|
817
|
+
.sc(CreateWebLoginToken$)
|
|
818
818
|
.build() {
|
|
819
819
|
}
|
|
820
820
|
|
|
@@ -826,7 +826,7 @@ class DeleteEnvironmentCommand extends smithyClient.Command
|
|
|
826
826
|
})
|
|
827
827
|
.s("AmazonMWAA", "DeleteEnvironment", {})
|
|
828
828
|
.n("MWAAClient", "DeleteEnvironmentCommand")
|
|
829
|
-
.sc(DeleteEnvironment)
|
|
829
|
+
.sc(DeleteEnvironment$)
|
|
830
830
|
.build() {
|
|
831
831
|
}
|
|
832
832
|
|
|
@@ -838,7 +838,7 @@ class GetEnvironmentCommand extends smithyClient.Command
|
|
|
838
838
|
})
|
|
839
839
|
.s("AmazonMWAA", "GetEnvironment", {})
|
|
840
840
|
.n("MWAAClient", "GetEnvironmentCommand")
|
|
841
|
-
.sc(GetEnvironment)
|
|
841
|
+
.sc(GetEnvironment$)
|
|
842
842
|
.build() {
|
|
843
843
|
}
|
|
844
844
|
|
|
@@ -850,7 +850,7 @@ class InvokeRestApiCommand extends smithyClient.Command
|
|
|
850
850
|
})
|
|
851
851
|
.s("AmazonMWAA", "InvokeRestApi", {})
|
|
852
852
|
.n("MWAAClient", "InvokeRestApiCommand")
|
|
853
|
-
.sc(InvokeRestApi)
|
|
853
|
+
.sc(InvokeRestApi$)
|
|
854
854
|
.build() {
|
|
855
855
|
}
|
|
856
856
|
|
|
@@ -862,7 +862,7 @@ class ListEnvironmentsCommand extends smithyClient.Command
|
|
|
862
862
|
})
|
|
863
863
|
.s("AmazonMWAA", "ListEnvironments", {})
|
|
864
864
|
.n("MWAAClient", "ListEnvironmentsCommand")
|
|
865
|
-
.sc(ListEnvironments)
|
|
865
|
+
.sc(ListEnvironments$)
|
|
866
866
|
.build() {
|
|
867
867
|
}
|
|
868
868
|
|
|
@@ -874,7 +874,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
874
874
|
})
|
|
875
875
|
.s("AmazonMWAA", "ListTagsForResource", {})
|
|
876
876
|
.n("MWAAClient", "ListTagsForResourceCommand")
|
|
877
|
-
.sc(ListTagsForResource)
|
|
877
|
+
.sc(ListTagsForResource$)
|
|
878
878
|
.build() {
|
|
879
879
|
}
|
|
880
880
|
|
|
@@ -886,7 +886,7 @@ class PublishMetricsCommand extends smithyClient.Command
|
|
|
886
886
|
})
|
|
887
887
|
.s("AmazonMWAA", "PublishMetrics", {})
|
|
888
888
|
.n("MWAAClient", "PublishMetricsCommand")
|
|
889
|
-
.sc(PublishMetrics)
|
|
889
|
+
.sc(PublishMetrics$)
|
|
890
890
|
.build() {
|
|
891
891
|
}
|
|
892
892
|
|
|
@@ -898,7 +898,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
898
898
|
})
|
|
899
899
|
.s("AmazonMWAA", "TagResource", {})
|
|
900
900
|
.n("MWAAClient", "TagResourceCommand")
|
|
901
|
-
.sc(TagResource)
|
|
901
|
+
.sc(TagResource$)
|
|
902
902
|
.build() {
|
|
903
903
|
}
|
|
904
904
|
|
|
@@ -910,7 +910,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
910
910
|
})
|
|
911
911
|
.s("AmazonMWAA", "UntagResource", {})
|
|
912
912
|
.n("MWAAClient", "UntagResourceCommand")
|
|
913
|
-
.sc(UntagResource)
|
|
913
|
+
.sc(UntagResource$)
|
|
914
914
|
.build() {
|
|
915
915
|
}
|
|
916
916
|
|
|
@@ -922,7 +922,7 @@ class UpdateEnvironmentCommand extends smithyClient.Command
|
|
|
922
922
|
})
|
|
923
923
|
.s("AmazonMWAA", "UpdateEnvironment", {})
|
|
924
924
|
.n("MWAAClient", "UpdateEnvironmentCommand")
|
|
925
|
-
.sc(UpdateEnvironment)
|
|
925
|
+
.sc(UpdateEnvironment$)
|
|
926
926
|
.build() {
|
|
927
927
|
}
|
|
928
928
|
|
|
@@ -1029,33 +1029,88 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1029
1029
|
enumerable: true,
|
|
1030
1030
|
get: function () { return smithyClient.Client; }
|
|
1031
1031
|
});
|
|
1032
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1032
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1033
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1034
|
+
exports.CreateCliToken$ = CreateCliToken$;
|
|
1033
1035
|
exports.CreateCliTokenCommand = CreateCliTokenCommand;
|
|
1036
|
+
exports.CreateCliTokenRequest$ = CreateCliTokenRequest$;
|
|
1037
|
+
exports.CreateCliTokenResponse$ = CreateCliTokenResponse$;
|
|
1038
|
+
exports.CreateEnvironment$ = CreateEnvironment$;
|
|
1034
1039
|
exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
|
|
1040
|
+
exports.CreateEnvironmentInput$ = CreateEnvironmentInput$;
|
|
1041
|
+
exports.CreateEnvironmentOutput$ = CreateEnvironmentOutput$;
|
|
1042
|
+
exports.CreateWebLoginToken$ = CreateWebLoginToken$;
|
|
1035
1043
|
exports.CreateWebLoginTokenCommand = CreateWebLoginTokenCommand;
|
|
1044
|
+
exports.CreateWebLoginTokenRequest$ = CreateWebLoginTokenRequest$;
|
|
1045
|
+
exports.CreateWebLoginTokenResponse$ = CreateWebLoginTokenResponse$;
|
|
1046
|
+
exports.DeleteEnvironment$ = DeleteEnvironment$;
|
|
1036
1047
|
exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
|
|
1048
|
+
exports.DeleteEnvironmentInput$ = DeleteEnvironmentInput$;
|
|
1049
|
+
exports.DeleteEnvironmentOutput$ = DeleteEnvironmentOutput$;
|
|
1050
|
+
exports.Dimension$ = Dimension$;
|
|
1037
1051
|
exports.EndpointManagement = EndpointManagement;
|
|
1052
|
+
exports.Environment$ = Environment$;
|
|
1038
1053
|
exports.EnvironmentStatus = EnvironmentStatus;
|
|
1054
|
+
exports.GetEnvironment$ = GetEnvironment$;
|
|
1039
1055
|
exports.GetEnvironmentCommand = GetEnvironmentCommand;
|
|
1040
|
-
exports.
|
|
1056
|
+
exports.GetEnvironmentInput$ = GetEnvironmentInput$;
|
|
1057
|
+
exports.GetEnvironmentOutput$ = GetEnvironmentOutput$;
|
|
1058
|
+
exports.InternalServerException = InternalServerException;
|
|
1059
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1060
|
+
exports.InvokeRestApi$ = InvokeRestApi$;
|
|
1041
1061
|
exports.InvokeRestApiCommand = InvokeRestApiCommand;
|
|
1062
|
+
exports.InvokeRestApiRequest$ = InvokeRestApiRequest$;
|
|
1063
|
+
exports.InvokeRestApiResponse$ = InvokeRestApiResponse$;
|
|
1064
|
+
exports.LastUpdate$ = LastUpdate$;
|
|
1065
|
+
exports.ListEnvironments$ = ListEnvironments$;
|
|
1042
1066
|
exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
|
|
1067
|
+
exports.ListEnvironmentsInput$ = ListEnvironmentsInput$;
|
|
1068
|
+
exports.ListEnvironmentsOutput$ = ListEnvironmentsOutput$;
|
|
1069
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1043
1070
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1071
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1072
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1073
|
+
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
1074
|
+
exports.LoggingConfigurationInput$ = LoggingConfigurationInput$;
|
|
1044
1075
|
exports.LoggingLevel = LoggingLevel;
|
|
1045
1076
|
exports.MWAA = MWAA;
|
|
1046
1077
|
exports.MWAAClient = MWAAClient;
|
|
1047
|
-
exports.MWAAServiceException = MWAAServiceException
|
|
1078
|
+
exports.MWAAServiceException = MWAAServiceException;
|
|
1079
|
+
exports.MWAAServiceException$ = MWAAServiceException$;
|
|
1080
|
+
exports.MetricDatum$ = MetricDatum$;
|
|
1081
|
+
exports.ModuleLoggingConfiguration$ = ModuleLoggingConfiguration$;
|
|
1082
|
+
exports.ModuleLoggingConfigurationInput$ = ModuleLoggingConfigurationInput$;
|
|
1083
|
+
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
1084
|
+
exports.PublishMetrics$ = PublishMetrics$;
|
|
1048
1085
|
exports.PublishMetricsCommand = PublishMetricsCommand;
|
|
1049
|
-
exports.
|
|
1050
|
-
exports.
|
|
1086
|
+
exports.PublishMetricsInput$ = PublishMetricsInput$;
|
|
1087
|
+
exports.PublishMetricsOutput$ = PublishMetricsOutput$;
|
|
1088
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1089
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1090
|
+
exports.RestApiClientException = RestApiClientException;
|
|
1091
|
+
exports.RestApiClientException$ = RestApiClientException$;
|
|
1051
1092
|
exports.RestApiMethod = RestApiMethod;
|
|
1052
|
-
exports.RestApiServerException = RestApiServerException
|
|
1093
|
+
exports.RestApiServerException = RestApiServerException;
|
|
1094
|
+
exports.RestApiServerException$ = RestApiServerException$;
|
|
1095
|
+
exports.StatisticSet$ = StatisticSet$;
|
|
1096
|
+
exports.TagResource$ = TagResource$;
|
|
1053
1097
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1098
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1099
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1054
1100
|
exports.Unit = Unit;
|
|
1101
|
+
exports.UntagResource$ = UntagResource$;
|
|
1055
1102
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1103
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1104
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1105
|
+
exports.UpdateEnvironment$ = UpdateEnvironment$;
|
|
1056
1106
|
exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
|
|
1107
|
+
exports.UpdateEnvironmentInput$ = UpdateEnvironmentInput$;
|
|
1108
|
+
exports.UpdateEnvironmentOutput$ = UpdateEnvironmentOutput$;
|
|
1109
|
+
exports.UpdateError$ = UpdateError$;
|
|
1110
|
+
exports.UpdateNetworkConfigurationInput$ = UpdateNetworkConfigurationInput$;
|
|
1057
1111
|
exports.UpdateStatus = UpdateStatus;
|
|
1058
|
-
exports.ValidationException = ValidationException
|
|
1112
|
+
exports.ValidationException = ValidationException;
|
|
1113
|
+
exports.ValidationException$ = ValidationException$;
|
|
1059
1114
|
exports.WebserverAccessMode = WebserverAccessMode;
|
|
1060
1115
|
exports.WorkerReplacementStrategy = WorkerReplacementStrategy;
|
|
1061
1116
|
exports.paginateListEnvironments = paginateListEnvironments;
|