@aws-sdk/client-arc-region-switch 3.1074.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultARCRegionSwitchHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { ApprovePlanExecutionStep$, CancelPlanExecution$, CreatePlan$, DeletePlan$, GetPlan$, GetPlanEvaluationStatus$, GetPlanExecution$, GetPlanInRegion$, ListPlanExecutionEvents$, ListPlanExecutions$, ListPlans$, ListPlansInRegion$, ListRoute53HealthChecks$, ListRoute53HealthChecksInRegion$, ListTagsForResource$, StartPlanExecution$, TagResource$, UntagResource$, UpdatePlan$, UpdatePlanExecution$, UpdatePlanExecutionStep$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ARCRegionSwitchServiceException } = require("./models/ARCRegionSwitchServiceException");
18
- exports.ARCRegionSwitchServiceException = ARCRegionSwitchServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultARCRegionSwitchHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "arc-region-switch",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultARCRegionSwitchHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -29,6 +65,1148 @@ const commonParams = {
29
65
  Region: { type: "builtInParams", name: "region" },
30
66
  };
31
67
 
68
+ var version = "3.1075.0";
69
+ var packageInfo = {
70
+ version: version};
71
+
72
+ const a = "isSet", b = "PartitionResult", c = "booleanEquals", d = "sigv4", e = "arc-region-switch", f = { "ref": "Endpoint" }, g = { "authSchemes": [{ "name": d, "signingName": e, "signingRegion": "{PartitionResult#implicitGlobalRegion}" }] }, h = [{ "ref": "Region" }];
73
+ const _data = {
74
+ conditions: [
75
+ [a, [f]],
76
+ [a, h],
77
+ ["aws.partition", h, b],
78
+ [c, [{ ref: "UseFIPS" }, true]],
79
+ [c, [{ fn: "coalesce", argv: [{ ref: "UseControlPlaneEndpoint" }, false] }, true]],
80
+ ["stringEquals", [{ fn: "getAttr", argv: [{ ref: b }, "name"] }, "aws-cn"]]
81
+ ],
82
+ results: [
83
+ [-1],
84
+ ["https://arc-region-switch-control-plane.cn-north-1.{PartitionResult#dualStackDnsSuffix}", { authSchemes: [{ name: d, signingName: e, signingRegion: "cn-north-1" }] }],
85
+ [-1, "Invalid Configuration: FIPS is not supported in this partition"],
86
+ ["https://arc-region-switch-control-plane-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", g],
87
+ ["https://arc-region-switch-control-plane.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", g],
88
+ [-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [f, {}],
90
+ ["https://arc-region-switch-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
91
+ ["https://arc-region-switch.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
92
+ [-1, "Invalid Configuration: Missing Region"]
93
+ ]
94
+ };
95
+ const root = 2;
96
+ const r = 100_000_000;
97
+ const nodes = new Int32Array([
98
+ -1, 1, -1,
99
+ 0, 10, 3,
100
+ 1, 4, r + 9,
101
+ 2, 5, r + 9,
102
+ 3, 8, 6,
103
+ 4, 7, r + 8,
104
+ 5, r + 1, r + 4,
105
+ 4, 9, r + 7,
106
+ 5, r + 2, r + 3,
107
+ 3, r + 5, r + 6,
108
+ ]);
109
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
110
+
111
+ const cache = new EndpointCache({
112
+ size: 50,
113
+ params: ["Endpoint", "Region", "UseControlPlaneEndpoint", "UseFIPS"],
114
+ });
115
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
116
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
117
+ endpointParams: endpointParams,
118
+ logger: context.logger,
119
+ }));
120
+ };
121
+ customEndpointFunctions.aws = awsEndpointFunctions;
122
+
123
+ class ARCRegionSwitchServiceException extends ServiceException {
124
+ constructor(options) {
125
+ super(options);
126
+ Object.setPrototypeOf(this, ARCRegionSwitchServiceException.prototype);
127
+ }
128
+ }
129
+
130
+ class AccessDeniedException extends ARCRegionSwitchServiceException {
131
+ name = "AccessDeniedException";
132
+ $fault = "client";
133
+ constructor(opts) {
134
+ super({
135
+ name: "AccessDeniedException",
136
+ $fault: "client",
137
+ ...opts,
138
+ });
139
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
140
+ }
141
+ }
142
+ class ResourceNotFoundException extends ARCRegionSwitchServiceException {
143
+ name = "ResourceNotFoundException";
144
+ $fault = "client";
145
+ constructor(opts) {
146
+ super({
147
+ name: "ResourceNotFoundException",
148
+ $fault: "client",
149
+ ...opts,
150
+ });
151
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
152
+ }
153
+ }
154
+ class IllegalArgumentException extends ARCRegionSwitchServiceException {
155
+ name = "IllegalArgumentException";
156
+ $fault = "client";
157
+ constructor(opts) {
158
+ super({
159
+ name: "IllegalArgumentException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, IllegalArgumentException.prototype);
164
+ }
165
+ }
166
+ class InternalServerException extends ARCRegionSwitchServiceException {
167
+ name = "InternalServerException";
168
+ $fault = "server";
169
+ constructor(opts) {
170
+ super({
171
+ name: "InternalServerException",
172
+ $fault: "server",
173
+ ...opts,
174
+ });
175
+ Object.setPrototypeOf(this, InternalServerException.prototype);
176
+ }
177
+ }
178
+ class IllegalStateException extends ARCRegionSwitchServiceException {
179
+ name = "IllegalStateException";
180
+ $fault = "client";
181
+ constructor(opts) {
182
+ super({
183
+ name: "IllegalStateException",
184
+ $fault: "client",
185
+ ...opts,
186
+ });
187
+ Object.setPrototypeOf(this, IllegalStateException.prototype);
188
+ }
189
+ }
190
+
191
+ const _A = "Asg";
192
+ const _AA = "AssociatedAlarm";
193
+ const _AAM = "AssociatedAlarmMap";
194
+ const _ADE = "AccessDeniedException";
195
+ const _AE = "AbbreviatedExecution";
196
+ const _AEL = "AbbreviatedExecutionsList";
197
+ const _AL = "AsgList";
198
+ const _AP = "AbbreviatedPlan";
199
+ const _APES = "ApprovePlanExecutionStep";
200
+ const _APESR = "ApprovePlanExecutionStepRequest";
201
+ const _APESRp = "ApprovePlanExecutionStepResponse";
202
+ const _APSC = "AuroraProvisionedScalingConfiguration";
203
+ const _ARCC = "ArcRoutingControlConfiguration";
204
+ const _ARCS = "ArcRoutingControlState";
205
+ const _ARCSr = "ArcRoutingControlStates";
206
+ const _ASSC = "AuroraServerlessScalingConfiguration";
207
+ const _CALC = "CustomActionLambdaConfiguration";
208
+ const _CP = "CreatePlan";
209
+ const _CPE = "CancelPlanExecution";
210
+ const _CPER = "CancelPlanExecutionRequest";
211
+ const _CPERa = "CancelPlanExecutionResponse";
212
+ const _CPR = "CreatePlanRequest";
213
+ const _CPRr = "CreatePlanResponse";
214
+ const _DDC = "DocumentDbConfiguration";
215
+ const _DDU = "DocumentDbUngraceful";
216
+ const _DP = "DeletePlan";
217
+ const _DPR = "DeletePlanRequest";
218
+ const _DPRe = "DeletePlanResponse";
219
+ const _EAC = "ExecutionApprovalConfiguration";
220
+ const _EACIC = "Ec2AsgCapacityIncreaseConfiguration";
221
+ const _EBC = "ExecutionBlockConfiguration";
222
+ const _EC = "EksCluster";
223
+ const _ECIC = "EcsCapacityIncreaseConfiguration";
224
+ const _ECk = "EksClusters";
225
+ const _EE = "ExecutionEvent";
226
+ const _EEL = "ExecutionEventList";
227
+ const _ERSC = "EksResourceScalingConfiguration";
228
+ const _ERSU = "EksResourceScalingUngraceful";
229
+ const _ESM = "EventSourceMapping";
230
+ const _EU = "Ec2Ungraceful";
231
+ const _EUc = "EcsUngraceful";
232
+ const _FRO = "FailedReportOutput";
233
+ const _GAC = "GlobalAuroraConfiguration";
234
+ const _GAU = "GlobalAuroraUngraceful";
235
+ const _GP = "GetPlan";
236
+ const _GPE = "GetPlanExecution";
237
+ const _GPER = "GetPlanExecutionRequest";
238
+ const _GPERe = "GetPlanExecutionResponse";
239
+ const _GPES = "GetPlanEvaluationStatus";
240
+ const _GPESR = "GetPlanEvaluationStatusRequest";
241
+ const _GPESRe = "GetPlanEvaluationStatusResponse";
242
+ const _GPIR = "GetPlanInRegion";
243
+ const _GPIRR = "GetPlanInRegionRequest";
244
+ const _GPIRRe = "GetPlanInRegionResponse";
245
+ const _GPR = "GetPlanRequest";
246
+ const _GPRe = "GetPlanResponse";
247
+ const _GR = "GeneratedReport";
248
+ const _GRD = "GeneratedReportDetails";
249
+ const _IAE = "IllegalArgumentException";
250
+ const _ISE = "IllegalStateException";
251
+ const _ISEn = "InternalServerException";
252
+ const _KRT = "KubernetesResourceType";
253
+ const _KSA = "KubernetesScalingApps";
254
+ const _KSAu = "KubernetesScalingApplication";
255
+ const _KSR = "KubernetesScalingResource";
256
+ const _L = "Lambdas";
257
+ const _LESMC = "LambdaEventSourceMappingConfiguration";
258
+ const _LESMU = "LambdaEventSourceMappingUngraceful";
259
+ const _LL = "LambdaList";
260
+ const _LP = "ListPlans";
261
+ const _LPE = "ListPlanExecutions";
262
+ const _LPEE = "ListPlanExecutionEvents";
263
+ const _LPEER = "ListPlanExecutionEventsRequest";
264
+ const _LPEERi = "ListPlanExecutionEventsResponse";
265
+ const _LPER = "ListPlanExecutionsRequest";
266
+ const _LPERi = "ListPlanExecutionsResponse";
267
+ const _LPIR = "ListPlansInRegion";
268
+ const _LPIRR = "ListPlansInRegionRequest";
269
+ const _LPIRRi = "ListPlansInRegionResponse";
270
+ const _LPR = "ListPlansRequest";
271
+ const _LPRi = "ListPlansResponse";
272
+ const _LRHC = "ListRoute53HealthChecks";
273
+ const _LRHCIR = "ListRoute53HealthChecksInRegion";
274
+ const _LRHCIRR = "ListRoute53HealthChecksInRegionRequest";
275
+ const _LRHCIRRi = "ListRoute53HealthChecksInRegionResponse";
276
+ const _LRHCR = "ListRoute53HealthChecksRequest";
277
+ const _LRHCRi = "ListRoute53HealthChecksResponse";
278
+ const _LTFR = "ListTagsForResource";
279
+ const _LTFRR = "ListTagsForResourceRequest";
280
+ const _LTFRRi = "ListTagsForResourceResponse";
281
+ const _LU = "LambdaUngraceful";
282
+ const _MW = "MinimalWorkflow";
283
+ const _NGDC = "NeptuneGlobalDatabaseConfiguration";
284
+ const _NU = "NeptuneUngraceful";
285
+ const _P = "Plan";
286
+ const _PEBC = "ParallelExecutionBlockConfiguration";
287
+ const _PL = "PlanList";
288
+ const _PW = "PlanWarnings";
289
+ const _RARC = "RegionAndRoutingControls";
290
+ const _RC = "ReportConfiguration";
291
+ const _RCCRRC = "RdsCreateCrossRegionReplicaConfiguration";
292
+ const _RESMM = "RegionEventSourceMappingMap";
293
+ const _RHC = "Route53HealthCheck";
294
+ const _RHCC = "Route53HealthCheckConfiguration";
295
+ const _RHCL = "Route53HealthCheckList";
296
+ const _RNFE = "ResourceNotFoundException";
297
+ const _RO = "ReportOutput";
298
+ const _ROC = "ReportOutputConfiguration";
299
+ const _ROL = "ReportOutputList";
300
+ const _RPRRC = "RdsPromoteReadReplicaConfiguration";
301
+ const _RRRS = "Route53ResourceRecordSet";
302
+ const _RRRSL = "Route53ResourceRecordSetList";
303
+ const _RSPC = "RegionSwitchPlanConfiguration";
304
+ const _RSR = "RegionalScalingResource";
305
+ const _RW = "ResourceWarning";
306
+ const _S = "Service";
307
+ const _SL = "ServiceList";
308
+ const _SPE = "StartPlanExecution";
309
+ const _SPER = "StartPlanExecutionRequest";
310
+ const _SPERt = "StartPlanExecutionResponse";
311
+ const _SRO = "S3ReportOutput";
312
+ const _SROC = "S3ReportOutputConfiguration";
313
+ const _SS = "StepState";
314
+ const _SSt = "StepStates";
315
+ const _St = "Step";
316
+ const _Ste = "Steps";
317
+ const _T = "Trigger";
318
+ const _TC = "TriggerCondition";
319
+ const _TCL = "TriggerConditionList";
320
+ const _TL = "TriggerList";
321
+ const _TR = "TagResource";
322
+ const _TRR = "TagResourceRequest";
323
+ const _TRRa = "TagResourceResponse";
324
+ const _UP = "UpdatePlan";
325
+ const _UPE = "UpdatePlanExecution";
326
+ const _UPER = "UpdatePlanExecutionRequest";
327
+ const _UPERp = "UpdatePlanExecutionResponse";
328
+ const _UPES = "UpdatePlanExecutionStep";
329
+ const _UPESR = "UpdatePlanExecutionStepRequest";
330
+ const _UPESRp = "UpdatePlanExecutionStepResponse";
331
+ const _UPR = "UpdatePlanRequest";
332
+ const _UPRp = "UpdatePlanResponse";
333
+ const _UR = "UntagResource";
334
+ const _URR = "UntagResourceRequest";
335
+ const _URRn = "UntagResourceResponse";
336
+ const _W = "Workflow";
337
+ const _WL = "WorkflowList";
338
+ const _a = "arn";
339
+ const _aA = "associatedAlarms";
340
+ const _aAN = "associatedAlarmName";
341
+ const _aPE = "activePlanExecution";
342
+ const _aPSC = "auroraProvisionedScalingConfig";
343
+ const _aR = "approvalRole";
344
+ const _aRCC = "arcRoutingControlConfig";
345
+ const _aRT = "actualRecoveryTime";
346
+ const _aRc = "activateRegion";
347
+ const _aSSC = "auroraServerlessScalingConfig";
348
+ const _aT = "alarmType";
349
+ const _aTT = "actionToTake";
350
+ const _aV = "apiVersion";
351
+ const _ac = "action";
352
+ const _ap = "approval";
353
+ const _as = "asgs";
354
+ const _b = "behavior";
355
+ const _bO = "bucketOwner";
356
+ const _bP = "bucketPath";
357
+ const _c = "client";
358
+ const _cA = "clusterArn";
359
+ const _cALC = "customActionLambdaConfig";
360
+ const _cAR = "crossAccountRole";
361
+ const _cMA = "capacityMonitoringApproach";
362
+ const _co = "comment";
363
+ const _con = "conditions";
364
+ const _cond = "condition";
365
+ const _d = "description";
366
+ const _dCA = "databaseClusterArns";
367
+ const _dDC = "documentDbConfig";
368
+ const _dIAM = "dbInstanceArnMap";
369
+ const _dR = "deactivateRegion";
370
+ const _e = "error";
371
+ const _eA = "executionAction";
372
+ const _eAC = "executionApprovalConfig";
373
+ const _eACIC = "ec2AsgCapacityIncreaseConfig";
374
+ const _eBC = "executionBlockConfiguration";
375
+ const _eBT = "executionBlockType";
376
+ const _eC = "eksClusters";
377
+ const _eCIC = "ecsCapacityIncreaseConfig";
378
+ const _eCr = "errorCode";
379
+ const _eI = "executionId";
380
+ const _eIv = "eventId";
381
+ const _eIx = "externalId";
382
+ const _eM = "errorMessage";
383
+ const _eR = "executionRegion";
384
+ const _eRSC = "eksResourceScalingConfig";
385
+ const _eRx = "executionRole";
386
+ const _eS = "executionState";
387
+ const _eSv = "evaluationState";
388
+ const _eT = "endTime";
389
+ const _fRO = "failedReportOutput";
390
+ const _gAC = "globalAuroraConfig";
391
+ const _gCI = "globalClusterIdentifier";
392
+ const _gRD = "generatedReportDetails";
393
+ const _hC = "healthChecks";
394
+ const _hCI = "healthCheckId";
395
+ const _hE = "httpError";
396
+ const _hN = "hpaName";
397
+ const _hZI = "hostedZoneId";
398
+ const _i = "items";
399
+ const _iA = "instanceArns";
400
+ const _k = "kind";
401
+ const _kRT = "kubernetesResourceType";
402
+ const _l = "lambdas";
403
+ const _lESMC = "lambdaEventSourceMappingConfig";
404
+ const _lET = "lastEvaluationTime";
405
+ const _lEV = "lastEvaluatedVersion";
406
+ const _lV = "latestVersion";
407
+ const _m = "message";
408
+ const _mDMBE = "minDelayMinutesBetweenExecutions";
409
+ const _mR = "maxResults";
410
+ const _mSP = "minimumSuccessPercentage";
411
+ const _mo = "mode";
412
+ const _n = "name";
413
+ const _nGDC = "neptuneGlobalDatabaseConfig";
414
+ const _nT = "nextToken";
415
+ const _na = "namespace";
416
+ const _o = "owner";
417
+ const _p = "plan";
418
+ const _pA = "planArn";
419
+ const _pC = "parallelConfig";
420
+ const _pEI = "previousEventId";
421
+ const _pR = "primaryRegion";
422
+ const _pV = "planVersion";
423
+ const _pl = "plans";
424
+ const _r = "regions";
425
+ const _rA = "recoveryApproach";
426
+ const _rARC = "regionAndRoutingControls";
427
+ const _rAe = "resourceArn";
428
+ const _rC = "reportConfiguration";
429
+ const _rCA = "routingControlArn";
430
+ const _rCCRRRC = "rdsCreateCrossRegionReadReplicaConfig";
431
+ const _rDCA = "regionDatabaseClusterArns";
432
+ const _rEI = "recoveryExecutionId";
433
+ const _rESM = "regionEventSourceMappings";
434
+ const _rGT = "reportGenerationTime";
435
+ const _rHCC = "route53HealthCheckConfig";
436
+ const _rI = "resourceIdentifier";
437
+ const _rIM = "retryIntervalMinutes";
438
+ const _rN = "recordName";
439
+ const _rO = "reportOutput";
440
+ const _rPRRC = "rdsPromoteReadReplicaConfig";
441
+ const _rS = "recordSets";
442
+ const _rSI = "recordSetIdentifier";
443
+ const _rSPC = "regionSwitchPlanConfig";
444
+ const _rT = "resourceTags";
445
+ const _rTK = "resourceTagKeys";
446
+ const _rTOM = "recoveryTimeObjectiveMinutes";
447
+ const _rTR = "regionToRun";
448
+ const _re = "resources";
449
+ const _reg = "region";
450
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.arcregionswitch";
451
+ const _sA = "serviceArn";
452
+ const _sC = "s3Configuration";
453
+ const _sM = "stepMode";
454
+ const _sN = "stepName";
455
+ const _sOK = "s3ObjectKey";
456
+ const _sR = "scalingResources";
457
+ const _sRO = "s3ReportOutput";
458
+ const _sS = "stepStates";
459
+ const _sT = "startTime";
460
+ const _se = "server";
461
+ const _ser = "services";
462
+ const _st = "state";
463
+ const _sta = "status";
464
+ const _ste = "steps";
465
+ const _t = "triggers";
466
+ const _tM = "timeoutMinutes";
467
+ const _tP = "targetPercent";
468
+ const _tR = "targetRegion";
469
+ const _ta = "tags";
470
+ const _ti = "timestamp";
471
+ const _ty = "type";
472
+ const _u = "ungraceful";
473
+ const _uA = "updatedAt";
474
+ const _v = "version";
475
+ const _w = "workflows";
476
+ const _wD = "workflowDescription";
477
+ const _wM = "warningMessage";
478
+ const _wS = "warningStatus";
479
+ const _wTA = "workflowTargetAction";
480
+ const _wTR = "workflowTargetRegion";
481
+ const _wUT = "warningUpdatedTime";
482
+ const _wa = "warnings";
483
+ const _wo = "workflow";
484
+ const n0 = "com.amazonaws.arcregionswitch";
485
+ const _s_registry = TypeRegistry.for(_s);
486
+ var ARCRegionSwitchServiceException$ = [-3, _s, "ARCRegionSwitchServiceException", 0, [], []];
487
+ _s_registry.registerError(ARCRegionSwitchServiceException$, ARCRegionSwitchServiceException);
488
+ const n0_registry = TypeRegistry.for(n0);
489
+ var AccessDeniedException$ = [-3, n0, _ADE,
490
+ { [_e]: _c, [_hE]: 403 },
491
+ [_m],
492
+ [0], 1
493
+ ];
494
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
495
+ var IllegalArgumentException$ = [-3, n0, _IAE,
496
+ { [_e]: _c, [_hE]: 400 },
497
+ [_m],
498
+ [0], 1
499
+ ];
500
+ n0_registry.registerError(IllegalArgumentException$, IllegalArgumentException);
501
+ var IllegalStateException$ = [-3, n0, _ISE,
502
+ { [_e]: _c, [_hE]: 400 },
503
+ [_m],
504
+ [0], 1
505
+ ];
506
+ n0_registry.registerError(IllegalStateException$, IllegalStateException);
507
+ var InternalServerException$ = [-3, n0, _ISEn,
508
+ { [_e]: _se, [_hE]: 500 },
509
+ [_m],
510
+ [0], 1
511
+ ];
512
+ n0_registry.registerError(InternalServerException$, InternalServerException);
513
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
514
+ { [_e]: _c, [_hE]: 404 },
515
+ [_m],
516
+ [0], 1
517
+ ];
518
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
519
+ const errorTypeRegistries = [
520
+ _s_registry,
521
+ n0_registry,
522
+ ];
523
+ var AbbreviatedExecution$ = [3, n0, _AE,
524
+ 0,
525
+ [_pA, _eI, _sT, _mo, _eS, _eA, _eR, _v, _uA, _co, _eT, _rEI, _aRT],
526
+ [0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0], 7
527
+ ];
528
+ var AbbreviatedPlan$ = [3, n0, _AP,
529
+ 0,
530
+ [_a, _o, _n, _r, _rA, _pR, _v, _uA, _d, _eRx, _aPE, _rTOM],
531
+ [0, 0, 0, 64 | 0, 0, 0, 0, 4, 0, 0, 0, 1], 5
532
+ ];
533
+ var ApprovePlanExecutionStepRequest$ = [3, n0, _APESR,
534
+ 0,
535
+ [_pA, _eI, _sN, _ap, _co],
536
+ [0, 0, 0, 0, 0], 4
537
+ ];
538
+ var ApprovePlanExecutionStepResponse$ = [3, n0, _APESRp,
539
+ 0,
540
+ [],
541
+ []
542
+ ];
543
+ var ArcRoutingControlConfiguration$ = [3, n0, _ARCC,
544
+ 0,
545
+ [_rARC, _tM, _cAR, _eIx],
546
+ [() => RegionAndRoutingControls, 1, 0, 0], 1
547
+ ];
548
+ var ArcRoutingControlState$ = [3, n0, _ARCS,
549
+ 0,
550
+ [_rCA, _st],
551
+ [0, 0], 2
552
+ ];
553
+ var Asg$ = [3, n0, _A,
554
+ 0,
555
+ [_cAR, _eIx, _a],
556
+ [0, 0, 0]
557
+ ];
558
+ var AssociatedAlarm$ = [3, n0, _AA,
559
+ 0,
560
+ [_rI, _aT, _cAR, _eIx],
561
+ [0, 0, 0, 0], 2
562
+ ];
563
+ var AuroraProvisionedScalingConfiguration$ = [3, n0, _APSC,
564
+ 0,
565
+ [_gCI, _rDCA, _iA, _tM, _cAR, _eIx],
566
+ [0, 128 | 0, 128 | 0, 1, 0, 0], 3
567
+ ];
568
+ var AuroraServerlessScalingConfiguration$ = [3, n0, _ASSC,
569
+ 0,
570
+ [_gCI, _rDCA, _tM, _cAR, _eIx, _tP],
571
+ [0, 128 | 0, 1, 0, 0, 1], 2
572
+ ];
573
+ var CancelPlanExecutionRequest$ = [3, n0, _CPER,
574
+ 0,
575
+ [_pA, _eI, _co],
576
+ [0, 0, 0], 2
577
+ ];
578
+ var CancelPlanExecutionResponse$ = [3, n0, _CPERa,
579
+ 0,
580
+ [],
581
+ []
582
+ ];
583
+ var CreatePlanRequest$ = [3, n0, _CPR,
584
+ 0,
585
+ [_w, _eRx, _n, _r, _rA, _d, _rTOM, _aA, _t, _rC, _pR, _ta],
586
+ [() => WorkflowList, 0, 0, 64 | 0, 0, 0, 1, () => AssociatedAlarmMap, () => TriggerList, () => ReportConfiguration$, 0, 128 | 0], 5
587
+ ];
588
+ var CreatePlanResponse$ = [3, n0, _CPRr,
589
+ 0,
590
+ [_p],
591
+ [() => Plan$]
592
+ ];
593
+ var CustomActionLambdaConfiguration$ = [3, n0, _CALC,
594
+ 0,
595
+ [_l, _rIM, _rTR, _tM, _u],
596
+ [() => LambdaList, 1, 0, 1, () => LambdaUngraceful$], 3
597
+ ];
598
+ var DeletePlanRequest$ = [3, n0, _DPR,
599
+ 0,
600
+ [_a],
601
+ [0], 1
602
+ ];
603
+ var DeletePlanResponse$ = [3, n0, _DPRe,
604
+ 0,
605
+ [],
606
+ []
607
+ ];
608
+ var DocumentDbConfiguration$ = [3, n0, _DDC,
609
+ 0,
610
+ [_b, _gCI, _dCA, _tM, _cAR, _eIx, _u],
611
+ [0, 0, 64 | 0, 1, 0, 0, () => DocumentDbUngraceful$], 3
612
+ ];
613
+ var DocumentDbUngraceful$ = [3, n0, _DDU,
614
+ 0,
615
+ [_u],
616
+ [0]
617
+ ];
618
+ var Ec2AsgCapacityIncreaseConfiguration$ = [3, n0, _EACIC,
619
+ 0,
620
+ [_as, _tM, _u, _tP, _cMA],
621
+ [() => AsgList, 1, () => Ec2Ungraceful$, 1, 0], 1
622
+ ];
623
+ var Ec2Ungraceful$ = [3, n0, _EU,
624
+ 0,
625
+ [_mSP],
626
+ [1], 1
627
+ ];
628
+ var EcsCapacityIncreaseConfiguration$ = [3, n0, _ECIC,
629
+ 0,
630
+ [_ser, _tM, _u, _tP, _cMA],
631
+ [() => ServiceList, 1, () => EcsUngraceful$, 1, 0], 1
632
+ ];
633
+ var EcsUngraceful$ = [3, n0, _EUc,
634
+ 0,
635
+ [_mSP],
636
+ [1], 1
637
+ ];
638
+ var EksCluster$ = [3, n0, _EC,
639
+ 0,
640
+ [_cA, _cAR, _eIx],
641
+ [0, 0, 0], 1
642
+ ];
643
+ var EksResourceScalingConfiguration$ = [3, n0, _ERSC,
644
+ 0,
645
+ [_kRT, _tM, _sR, _eC, _u, _tP, _cMA],
646
+ [() => KubernetesResourceType$, 1, () => KubernetesScalingApps, () => EksClusters, () => EksResourceScalingUngraceful$, 1, 0], 1
647
+ ];
648
+ var EksResourceScalingUngraceful$ = [3, n0, _ERSU,
649
+ 0,
650
+ [_mSP],
651
+ [1], 1
652
+ ];
653
+ var EventSourceMapping$ = [3, n0, _ESM,
654
+ 0,
655
+ [_a, _cAR, _eIx],
656
+ [0, 0, 0], 1
657
+ ];
658
+ var ExecutionApprovalConfiguration$ = [3, n0, _EAC,
659
+ 0,
660
+ [_aR, _tM],
661
+ [0, 1], 1
662
+ ];
663
+ var ExecutionEvent$ = [3, n0, _EE,
664
+ 0,
665
+ [_eIv, _ti, _ty, _sN, _eBT, _re, _e, _d, _pEI],
666
+ [0, 4, 0, 0, 0, 64 | 0, 0, 0, 0], 1
667
+ ];
668
+ var FailedReportOutput$ = [3, n0, _FRO,
669
+ 0,
670
+ [_eCr, _eM],
671
+ [0, 0]
672
+ ];
673
+ var GeneratedReport$ = [3, n0, _GR,
674
+ 0,
675
+ [_rGT, _rO],
676
+ [4, () => ReportOutput$]
677
+ ];
678
+ var GetPlanEvaluationStatusRequest$ = [3, n0, _GPESR,
679
+ 0,
680
+ [_pA, _mR, _nT],
681
+ [0, 1, 0], 1
682
+ ];
683
+ var GetPlanEvaluationStatusResponse$ = [3, n0, _GPESRe,
684
+ 0,
685
+ [_pA, _lET, _lEV, _reg, _eSv, _wa, _nT],
686
+ [0, 4, 0, 0, 0, () => PlanWarnings, 0], 1
687
+ ];
688
+ var GetPlanExecutionRequest$ = [3, n0, _GPER,
689
+ 0,
690
+ [_pA, _eI, _mR, _nT],
691
+ [0, 0, 1, 0], 2
692
+ ];
693
+ var GetPlanExecutionResponse$ = [3, n0, _GPERe,
694
+ 0,
695
+ [_pA, _eI, _sT, _mo, _eS, _eA, _eR, _v, _uA, _co, _eT, _rEI, _sS, _p, _aRT, _gRD, _nT],
696
+ [0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 0, () => StepStates, () => Plan$, 0, () => GeneratedReportDetails, 0], 7
697
+ ];
698
+ var GetPlanInRegionRequest$ = [3, n0, _GPIRR,
699
+ 0,
700
+ [_a],
701
+ [0], 1
702
+ ];
703
+ var GetPlanInRegionResponse$ = [3, n0, _GPIRRe,
704
+ 0,
705
+ [_p],
706
+ [() => Plan$]
707
+ ];
708
+ var GetPlanRequest$ = [3, n0, _GPR,
709
+ 0,
710
+ [_a],
711
+ [0], 1
712
+ ];
713
+ var GetPlanResponse$ = [3, n0, _GPRe,
714
+ 0,
715
+ [_p],
716
+ [() => Plan$]
717
+ ];
718
+ var GlobalAuroraConfiguration$ = [3, n0, _GAC,
719
+ 0,
720
+ [_b, _gCI, _dCA, _tM, _cAR, _eIx, _u],
721
+ [0, 0, 64 | 0, 1, 0, 0, () => GlobalAuroraUngraceful$], 3
722
+ ];
723
+ var GlobalAuroraUngraceful$ = [3, n0, _GAU,
724
+ 0,
725
+ [_u],
726
+ [0]
727
+ ];
728
+ var KubernetesResourceType$ = [3, n0, _KRT,
729
+ 0,
730
+ [_aV, _k],
731
+ [0, 0], 2
732
+ ];
733
+ var KubernetesScalingResource$ = [3, n0, _KSR,
734
+ 0,
735
+ [_na, _n, _hN],
736
+ [0, 0, 0], 2
737
+ ];
738
+ var LambdaEventSourceMappingConfiguration$ = [3, n0, _LESMC,
739
+ 0,
740
+ [_ac, _rESM, _tM, _u],
741
+ [0, () => RegionEventSourceMappingMap, 1, () => LambdaEventSourceMappingUngraceful$], 2
742
+ ];
743
+ var LambdaEventSourceMappingUngraceful$ = [3, n0, _LESMU,
744
+ 0,
745
+ [_b],
746
+ [0]
747
+ ];
748
+ var Lambdas$ = [3, n0, _L,
749
+ 0,
750
+ [_cAR, _eIx, _a],
751
+ [0, 0, 0]
752
+ ];
753
+ var LambdaUngraceful$ = [3, n0, _LU,
754
+ 0,
755
+ [_b],
756
+ [0]
757
+ ];
758
+ var ListPlanExecutionEventsRequest$ = [3, n0, _LPEER,
759
+ 0,
760
+ [_pA, _eI, _mR, _nT, _n],
761
+ [0, 0, 1, 0, 0], 2
762
+ ];
763
+ var ListPlanExecutionEventsResponse$ = [3, n0, _LPEERi,
764
+ 0,
765
+ [_i, _nT],
766
+ [() => ExecutionEventList, 0]
767
+ ];
768
+ var ListPlanExecutionsRequest$ = [3, n0, _LPER,
769
+ 0,
770
+ [_pA, _mR, _nT, _st],
771
+ [0, 1, 0, 0], 1
772
+ ];
773
+ var ListPlanExecutionsResponse$ = [3, n0, _LPERi,
774
+ 0,
775
+ [_i, _nT],
776
+ [() => AbbreviatedExecutionsList, 0]
777
+ ];
778
+ var ListPlansInRegionRequest$ = [3, n0, _LPIRR,
779
+ 0,
780
+ [_mR, _nT],
781
+ [1, 0]
782
+ ];
783
+ var ListPlansInRegionResponse$ = [3, n0, _LPIRRi,
784
+ 0,
785
+ [_pl, _nT],
786
+ [() => PlanList, 0]
787
+ ];
788
+ var ListPlansRequest$ = [3, n0, _LPR,
789
+ 0,
790
+ [_mR, _nT],
791
+ [1, 0]
792
+ ];
793
+ var ListPlansResponse$ = [3, n0, _LPRi,
794
+ 0,
795
+ [_pl, _nT],
796
+ [() => PlanList, 0]
797
+ ];
798
+ var ListRoute53HealthChecksInRegionRequest$ = [3, n0, _LRHCIRR,
799
+ 0,
800
+ [_a, _hZI, _rN, _mR, _nT],
801
+ [0, 0, 0, 1, 0], 1
802
+ ];
803
+ var ListRoute53HealthChecksInRegionResponse$ = [3, n0, _LRHCIRRi,
804
+ 0,
805
+ [_hC, _nT],
806
+ [() => Route53HealthCheckList, 0]
807
+ ];
808
+ var ListRoute53HealthChecksRequest$ = [3, n0, _LRHCR,
809
+ 0,
810
+ [_a, _hZI, _rN, _mR, _nT],
811
+ [0, 0, 0, 1, 0], 1
812
+ ];
813
+ var ListRoute53HealthChecksResponse$ = [3, n0, _LRHCRi,
814
+ 0,
815
+ [_hC, _nT],
816
+ [() => Route53HealthCheckList, 0]
817
+ ];
818
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
819
+ 0,
820
+ [_a],
821
+ [0], 1
822
+ ];
823
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
824
+ 0,
825
+ [_rT],
826
+ [128 | 0]
827
+ ];
828
+ var MinimalWorkflow$ = [3, n0, _MW,
829
+ 0,
830
+ [_ac, _n],
831
+ [0, 0]
832
+ ];
833
+ var NeptuneGlobalDatabaseConfiguration$ = [3, n0, _NGDC,
834
+ 0,
835
+ [_b, _gCI, _rDCA, _tM, _cAR, _eIx, _u],
836
+ [0, 0, 128 | 0, 1, 0, 0, () => NeptuneUngraceful$], 3
837
+ ];
838
+ var NeptuneUngraceful$ = [3, n0, _NU,
839
+ 0,
840
+ [_u],
841
+ [0]
842
+ ];
843
+ var ParallelExecutionBlockConfiguration$ = [3, n0, _PEBC,
844
+ 0,
845
+ [_ste],
846
+ [() => Steps], 1
847
+ ];
848
+ var Plan$ = [3, n0, _P,
849
+ 0,
850
+ [_a, _w, _eRx, _n, _r, _rA, _o, _d, _rTOM, _aA, _t, _rC, _pR, _v, _uA],
851
+ [0, () => WorkflowList, 0, 0, 64 | 0, 0, 0, 0, 1, () => AssociatedAlarmMap, () => TriggerList, () => ReportConfiguration$, 0, 0, 4], 7
852
+ ];
853
+ var RdsCreateCrossRegionReplicaConfiguration$ = [3, n0, _RCCRRC,
854
+ 0,
855
+ [_dIAM, _tM, _cAR, _eIx],
856
+ [128 | 0, 1, 0, 0], 1
857
+ ];
858
+ var RdsPromoteReadReplicaConfiguration$ = [3, n0, _RPRRC,
859
+ 0,
860
+ [_dIAM, _tM, _cAR, _eIx],
861
+ [128 | 0, 1, 0, 0], 1
862
+ ];
863
+ var RegionSwitchPlanConfiguration$ = [3, n0, _RSPC,
864
+ 0,
865
+ [_a, _cAR, _eIx],
866
+ [0, 0, 0], 1
867
+ ];
868
+ var ReportConfiguration$ = [3, n0, _RC,
869
+ 0,
870
+ [_rO],
871
+ [() => ReportOutputList]
872
+ ];
873
+ var ResourceWarning$ = [3, n0, _RW,
874
+ 0,
875
+ [_v, _wS, _wUT, _wM, _wo, _sN, _rAe],
876
+ [0, 0, 4, 0, () => MinimalWorkflow$, 0, 0], 4
877
+ ];
878
+ var Route53HealthCheck$ = [3, n0, _RHC,
879
+ 0,
880
+ [_hZI, _rN, _reg, _hCI, _sta],
881
+ [0, 0, 0, 0, 0], 3
882
+ ];
883
+ var Route53HealthCheckConfiguration$ = [3, n0, _RHCC,
884
+ 0,
885
+ [_hZI, _rN, _tM, _cAR, _eIx, _rS],
886
+ [0, 0, 1, 0, 0, () => Route53ResourceRecordSetList], 2
887
+ ];
888
+ var Route53ResourceRecordSet$ = [3, n0, _RRRS,
889
+ 0,
890
+ [_rSI, _reg],
891
+ [0, 0]
892
+ ];
893
+ var S3ReportOutput$ = [3, n0, _SRO,
894
+ 0,
895
+ [_sOK],
896
+ [0]
897
+ ];
898
+ var S3ReportOutputConfiguration$ = [3, n0, _SROC,
899
+ 0,
900
+ [_bP, _bO],
901
+ [0, 0]
902
+ ];
903
+ var Service$ = [3, n0, _S,
904
+ 0,
905
+ [_cAR, _eIx, _cA, _sA],
906
+ [0, 0, 0, 0]
907
+ ];
908
+ var StartPlanExecutionRequest$ = [3, n0, _SPER,
909
+ 0,
910
+ [_pA, _tR, _ac, _mo, _co, _lV, _rEI],
911
+ [0, 0, 0, 0, 0, 0, 0], 3
912
+ ];
913
+ var StartPlanExecutionResponse$ = [3, n0, _SPERt,
914
+ 0,
915
+ [_eI, _p, _pV, _aRc, _dR],
916
+ [0, 0, 0, 0, 0]
917
+ ];
918
+ var Step$ = [3, n0, _St,
919
+ 0,
920
+ [_n, _eBC, _eBT, _d],
921
+ [0, () => ExecutionBlockConfiguration$, 0, 0], 3
922
+ ];
923
+ var StepState$ = [3, n0, _SS,
924
+ 0,
925
+ [_n, _sta, _sT, _eT, _sM],
926
+ [0, 0, 4, 4, 0]
927
+ ];
928
+ var TagResourceRequest$ = [3, n0, _TRR,
929
+ 0,
930
+ [_a, _ta],
931
+ [0, 128 | 0], 2
932
+ ];
933
+ var TagResourceResponse$ = [3, n0, _TRRa,
934
+ 0,
935
+ [],
936
+ []
937
+ ];
938
+ var Trigger$ = [3, n0, _T,
939
+ 0,
940
+ [_tR, _ac, _con, _mDMBE, _d],
941
+ [0, 0, () => TriggerConditionList, 1, 0], 4
942
+ ];
943
+ var TriggerCondition$ = [3, n0, _TC,
944
+ 0,
945
+ [_aAN, _cond],
946
+ [0, 0], 2
947
+ ];
948
+ var UntagResourceRequest$ = [3, n0, _URR,
949
+ 0,
950
+ [_a, _rTK],
951
+ [0, 64 | 0], 2
952
+ ];
953
+ var UntagResourceResponse$ = [3, n0, _URRn,
954
+ 0,
955
+ [],
956
+ []
957
+ ];
958
+ var UpdatePlanExecutionRequest$ = [3, n0, _UPER,
959
+ 0,
960
+ [_pA, _eI, _ac, _co],
961
+ [0, 0, 0, 0], 3
962
+ ];
963
+ var UpdatePlanExecutionResponse$ = [3, n0, _UPERp,
964
+ 0,
965
+ [],
966
+ []
967
+ ];
968
+ var UpdatePlanExecutionStepRequest$ = [3, n0, _UPESR,
969
+ 0,
970
+ [_pA, _eI, _co, _sN, _aTT],
971
+ [0, 0, 0, 0, 0], 5
972
+ ];
973
+ var UpdatePlanExecutionStepResponse$ = [3, n0, _UPESRp,
974
+ 0,
975
+ [],
976
+ []
977
+ ];
978
+ var UpdatePlanRequest$ = [3, n0, _UPR,
979
+ 0,
980
+ [_a, _w, _eRx, _d, _rTOM, _aA, _t, _rC],
981
+ [0, () => WorkflowList, 0, 0, 1, () => AssociatedAlarmMap, () => TriggerList, () => ReportConfiguration$], 3
982
+ ];
983
+ var UpdatePlanResponse$ = [3, n0, _UPRp,
984
+ 0,
985
+ [_p],
986
+ [() => Plan$]
987
+ ];
988
+ var Workflow$ = [3, n0, _W,
989
+ 0,
990
+ [_wTA, _ste, _wTR, _wD],
991
+ [0, () => Steps, 0, 0], 1
992
+ ];
993
+ var AbbreviatedExecutionsList = [1, n0, _AEL,
994
+ 0, () => AbbreviatedExecution$
995
+ ];
996
+ var ArcRoutingControlStates = [1, n0, _ARCSr,
997
+ 0, () => ArcRoutingControlState$
998
+ ];
999
+ var AsgList = [1, n0, _AL,
1000
+ 0, () => Asg$
1001
+ ];
1002
+ var EksClusters = [1, n0, _ECk,
1003
+ 0, () => EksCluster$
1004
+ ];
1005
+ var ExecutionEventList = [1, n0, _EEL,
1006
+ 0, () => ExecutionEvent$
1007
+ ];
1008
+ var GeneratedReportDetails = [1, n0, _GRD,
1009
+ 0, () => GeneratedReport$
1010
+ ];
1011
+ var KubernetesScalingApps = [1, n0, _KSA,
1012
+ 0, () => KubernetesScalingApplication
1013
+ ];
1014
+ var LambdaList = [1, n0, _LL,
1015
+ 0, () => Lambdas$
1016
+ ];
1017
+ var PlanList = [1, n0, _PL,
1018
+ 0, () => AbbreviatedPlan$
1019
+ ];
1020
+ var PlanWarnings = [1, n0, _PW,
1021
+ 0, () => ResourceWarning$
1022
+ ];
1023
+ var ReportOutputList = [1, n0, _ROL,
1024
+ 0, () => ReportOutputConfiguration$
1025
+ ];
1026
+ var Route53HealthCheckList = [1, n0, _RHCL,
1027
+ 0, () => Route53HealthCheck$
1028
+ ];
1029
+ var Route53ResourceRecordSetList = [1, n0, _RRRSL,
1030
+ 0, () => Route53ResourceRecordSet$
1031
+ ];
1032
+ var ServiceList = [1, n0, _SL,
1033
+ 0, () => Service$
1034
+ ];
1035
+ var Steps = [1, n0, _Ste,
1036
+ 0, () => Step$
1037
+ ];
1038
+ var StepStates = [1, n0, _SSt,
1039
+ 0, () => StepState$
1040
+ ];
1041
+ var TriggerConditionList = [1, n0, _TCL,
1042
+ 0, () => TriggerCondition$
1043
+ ];
1044
+ var TriggerList = [1, n0, _TL,
1045
+ 0, () => Trigger$
1046
+ ];
1047
+ var WorkflowList = [1, n0, _WL,
1048
+ 0, () => Workflow$
1049
+ ];
1050
+ var AssociatedAlarmMap = [2, n0, _AAM,
1051
+ 0, 0, () => AssociatedAlarm$
1052
+ ];
1053
+ var KubernetesScalingApplication = [2, n0, _KSAu,
1054
+ 0, 0, () => RegionalScalingResource
1055
+ ];
1056
+ var RegionalScalingResource = [2, n0, _RSR,
1057
+ 0, 0, () => KubernetesScalingResource$
1058
+ ];
1059
+ var RegionAndRoutingControls = [2, n0, _RARC,
1060
+ 0, 0, () => ArcRoutingControlStates
1061
+ ];
1062
+ var RegionEventSourceMappingMap = [2, n0, _RESMM,
1063
+ 0, 0, () => EventSourceMapping$
1064
+ ];
1065
+ var ExecutionBlockConfiguration$ = [4, n0, _EBC,
1066
+ 0,
1067
+ [_cALC, _eACIC, _eAC, _aRCC, _gAC, _pC, _rSPC, _eCIC, _eRSC, _rHCC, _dDC, _rPRRC, _rCCRRRC, _lESMC, _aSSC, _aPSC, _nGDC],
1068
+ [() => CustomActionLambdaConfiguration$, () => Ec2AsgCapacityIncreaseConfiguration$, () => ExecutionApprovalConfiguration$, () => ArcRoutingControlConfiguration$, () => GlobalAuroraConfiguration$, () => ParallelExecutionBlockConfiguration$, () => RegionSwitchPlanConfiguration$, () => EcsCapacityIncreaseConfiguration$, () => EksResourceScalingConfiguration$, () => Route53HealthCheckConfiguration$, () => DocumentDbConfiguration$, () => RdsPromoteReadReplicaConfiguration$, () => RdsCreateCrossRegionReplicaConfiguration$, () => LambdaEventSourceMappingConfiguration$, () => AuroraServerlessScalingConfiguration$, () => AuroraProvisionedScalingConfiguration$, () => NeptuneGlobalDatabaseConfiguration$]
1069
+ ];
1070
+ var ReportOutput$ = [4, n0, _RO,
1071
+ 0,
1072
+ [_sRO, _fRO],
1073
+ [() => S3ReportOutput$, () => FailedReportOutput$]
1074
+ ];
1075
+ var ReportOutputConfiguration$ = [4, n0, _ROC,
1076
+ 0,
1077
+ [_sC],
1078
+ [() => S3ReportOutputConfiguration$]
1079
+ ];
1080
+ var ApprovePlanExecutionStep$ = [9, n0, _APES,
1081
+ 0, () => ApprovePlanExecutionStepRequest$, () => ApprovePlanExecutionStepResponse$
1082
+ ];
1083
+ var CancelPlanExecution$ = [9, n0, _CPE,
1084
+ 0, () => CancelPlanExecutionRequest$, () => CancelPlanExecutionResponse$
1085
+ ];
1086
+ var CreatePlan$ = [9, n0, _CP,
1087
+ 0, () => CreatePlanRequest$, () => CreatePlanResponse$
1088
+ ];
1089
+ var DeletePlan$ = [9, n0, _DP,
1090
+ 2, () => DeletePlanRequest$, () => DeletePlanResponse$
1091
+ ];
1092
+ var GetPlan$ = [9, n0, _GP,
1093
+ 0, () => GetPlanRequest$, () => GetPlanResponse$
1094
+ ];
1095
+ var GetPlanEvaluationStatus$ = [9, n0, _GPES,
1096
+ 0, () => GetPlanEvaluationStatusRequest$, () => GetPlanEvaluationStatusResponse$
1097
+ ];
1098
+ var GetPlanExecution$ = [9, n0, _GPE,
1099
+ 0, () => GetPlanExecutionRequest$, () => GetPlanExecutionResponse$
1100
+ ];
1101
+ var GetPlanInRegion$ = [9, n0, _GPIR,
1102
+ 0, () => GetPlanInRegionRequest$, () => GetPlanInRegionResponse$
1103
+ ];
1104
+ var ListPlanExecutionEvents$ = [9, n0, _LPEE,
1105
+ 0, () => ListPlanExecutionEventsRequest$, () => ListPlanExecutionEventsResponse$
1106
+ ];
1107
+ var ListPlanExecutions$ = [9, n0, _LPE,
1108
+ 0, () => ListPlanExecutionsRequest$, () => ListPlanExecutionsResponse$
1109
+ ];
1110
+ var ListPlans$ = [9, n0, _LP,
1111
+ 0, () => ListPlansRequest$, () => ListPlansResponse$
1112
+ ];
1113
+ var ListPlansInRegion$ = [9, n0, _LPIR,
1114
+ 0, () => ListPlansInRegionRequest$, () => ListPlansInRegionResponse$
1115
+ ];
1116
+ var ListRoute53HealthChecks$ = [9, n0, _LRHC,
1117
+ 0, () => ListRoute53HealthChecksRequest$, () => ListRoute53HealthChecksResponse$
1118
+ ];
1119
+ var ListRoute53HealthChecksInRegion$ = [9, n0, _LRHCIR,
1120
+ 0, () => ListRoute53HealthChecksInRegionRequest$, () => ListRoute53HealthChecksInRegionResponse$
1121
+ ];
1122
+ var ListTagsForResource$ = [9, n0, _LTFR,
1123
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1124
+ ];
1125
+ var StartPlanExecution$ = [9, n0, _SPE,
1126
+ 0, () => StartPlanExecutionRequest$, () => StartPlanExecutionResponse$
1127
+ ];
1128
+ var TagResource$ = [9, n0, _TR,
1129
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
1130
+ ];
1131
+ var UntagResource$ = [9, n0, _UR,
1132
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
1133
+ ];
1134
+ var UpdatePlan$ = [9, n0, _UP,
1135
+ 0, () => UpdatePlanRequest$, () => UpdatePlanResponse$
1136
+ ];
1137
+ var UpdatePlanExecution$ = [9, n0, _UPE,
1138
+ 0, () => UpdatePlanExecutionRequest$, () => UpdatePlanExecutionResponse$
1139
+ ];
1140
+ var UpdatePlanExecutionStep$ = [9, n0, _UPES,
1141
+ 0, () => UpdatePlanExecutionStepRequest$, () => UpdatePlanExecutionStepResponse$
1142
+ ];
1143
+
1144
+ const getRuntimeConfig$1 = (config) => {
1145
+ return {
1146
+ apiVersion: "2022-07-26",
1147
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1148
+ base64Encoder: config?.base64Encoder ?? toBase64,
1149
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1150
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1151
+ extensions: config?.extensions ?? [],
1152
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultARCRegionSwitchHttpAuthSchemeProvider,
1153
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1154
+ {
1155
+ schemeId: "aws.auth#sigv4",
1156
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1157
+ signer: new AwsSdkSigV4Signer(),
1158
+ },
1159
+ ],
1160
+ logger: config?.logger ?? new NoOpLogger(),
1161
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
1162
+ protocolSettings: config?.protocolSettings ?? {
1163
+ defaultNamespace: "com.amazonaws.arcregionswitch",
1164
+ errorTypeRegistries,
1165
+ version: "2022-07-26",
1166
+ serviceTarget: "ArcRegionSwitch",
1167
+ },
1168
+ serviceId: config?.serviceId ?? "ARC Region switch",
1169
+ urlParser: config?.urlParser ?? parseUrl,
1170
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1171
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1172
+ };
1173
+ };
1174
+
1175
+ const getRuntimeConfig = (config) => {
1176
+ emitWarningIfUnsupportedVersion(process.version);
1177
+ const defaultsMode = resolveDefaultsModeConfig(config);
1178
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1179
+ const clientSharedValues = getRuntimeConfig$1(config);
1180
+ emitWarningIfUnsupportedVersion$1(process.version);
1181
+ const loaderConfig = {
1182
+ profile: config?.profile,
1183
+ logger: clientSharedValues.logger,
1184
+ };
1185
+ return {
1186
+ ...clientSharedValues,
1187
+ ...config,
1188
+ runtime: "node",
1189
+ defaultsMode,
1190
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1191
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1192
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1193
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1194
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1195
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1196
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1197
+ retryMode: config?.retryMode ??
1198
+ loadConfig({
1199
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1200
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1201
+ }, config),
1202
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1203
+ streamCollector: config?.streamCollector ?? streamCollector,
1204
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1205
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1206
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1207
+ };
1208
+ };
1209
+
32
1210
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
33
1211
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
34
1212
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -743,58 +1921,189 @@ const UpdatePlanExecutionStepAction = {
743
1921
 
744
1922
  exports.ARCRegionSwitch = ARCRegionSwitch;
745
1923
  exports.ARCRegionSwitchClient = ARCRegionSwitchClient;
1924
+ exports.ARCRegionSwitchServiceException = ARCRegionSwitchServiceException;
1925
+ exports.ARCRegionSwitchServiceException$ = ARCRegionSwitchServiceException$;
1926
+ exports.AbbreviatedExecution$ = AbbreviatedExecution$;
1927
+ exports.AbbreviatedPlan$ = AbbreviatedPlan$;
1928
+ exports.AccessDeniedException = AccessDeniedException;
1929
+ exports.AccessDeniedException$ = AccessDeniedException$;
746
1930
  exports.AlarmCondition = AlarmCondition;
747
1931
  exports.AlarmType = AlarmType;
748
1932
  exports.Approval = Approval;
1933
+ exports.ApprovePlanExecutionStep$ = ApprovePlanExecutionStep$;
749
1934
  exports.ApprovePlanExecutionStepCommand = ApprovePlanExecutionStepCommand;
1935
+ exports.ApprovePlanExecutionStepRequest$ = ApprovePlanExecutionStepRequest$;
1936
+ exports.ApprovePlanExecutionStepResponse$ = ApprovePlanExecutionStepResponse$;
1937
+ exports.ArcRoutingControlConfiguration$ = ArcRoutingControlConfiguration$;
1938
+ exports.ArcRoutingControlState$ = ArcRoutingControlState$;
1939
+ exports.Asg$ = Asg$;
1940
+ exports.AssociatedAlarm$ = AssociatedAlarm$;
1941
+ exports.AuroraProvisionedScalingConfiguration$ = AuroraProvisionedScalingConfiguration$;
1942
+ exports.AuroraServerlessScalingConfiguration$ = AuroraServerlessScalingConfiguration$;
1943
+ exports.CancelPlanExecution$ = CancelPlanExecution$;
750
1944
  exports.CancelPlanExecutionCommand = CancelPlanExecutionCommand;
1945
+ exports.CancelPlanExecutionRequest$ = CancelPlanExecutionRequest$;
1946
+ exports.CancelPlanExecutionResponse$ = CancelPlanExecutionResponse$;
1947
+ exports.CreatePlan$ = CreatePlan$;
751
1948
  exports.CreatePlanCommand = CreatePlanCommand;
1949
+ exports.CreatePlanRequest$ = CreatePlanRequest$;
1950
+ exports.CreatePlanResponse$ = CreatePlanResponse$;
1951
+ exports.CustomActionLambdaConfiguration$ = CustomActionLambdaConfiguration$;
1952
+ exports.DeletePlan$ = DeletePlan$;
752
1953
  exports.DeletePlanCommand = DeletePlanCommand;
1954
+ exports.DeletePlanRequest$ = DeletePlanRequest$;
1955
+ exports.DeletePlanResponse$ = DeletePlanResponse$;
1956
+ exports.DocumentDbConfiguration$ = DocumentDbConfiguration$;
753
1957
  exports.DocumentDbDefaultBehavior = DocumentDbDefaultBehavior;
1958
+ exports.DocumentDbUngraceful$ = DocumentDbUngraceful$;
754
1959
  exports.DocumentDbUngracefulBehavior = DocumentDbUngracefulBehavior;
1960
+ exports.Ec2AsgCapacityIncreaseConfiguration$ = Ec2AsgCapacityIncreaseConfiguration$;
755
1961
  exports.Ec2AsgCapacityMonitoringApproach = Ec2AsgCapacityMonitoringApproach;
1962
+ exports.Ec2Ungraceful$ = Ec2Ungraceful$;
1963
+ exports.EcsCapacityIncreaseConfiguration$ = EcsCapacityIncreaseConfiguration$;
756
1964
  exports.EcsCapacityMonitoringApproach = EcsCapacityMonitoringApproach;
1965
+ exports.EcsUngraceful$ = EcsUngraceful$;
757
1966
  exports.EksCapacityMonitoringApproach = EksCapacityMonitoringApproach;
1967
+ exports.EksCluster$ = EksCluster$;
1968
+ exports.EksResourceScalingConfiguration$ = EksResourceScalingConfiguration$;
1969
+ exports.EksResourceScalingUngraceful$ = EksResourceScalingUngraceful$;
758
1970
  exports.EvaluationStatus = EvaluationStatus;
1971
+ exports.EventSourceMapping$ = EventSourceMapping$;
759
1972
  exports.EventSourceMappingAction = EventSourceMappingAction;
760
1973
  exports.ExecutionAction = ExecutionAction;
1974
+ exports.ExecutionApprovalConfiguration$ = ExecutionApprovalConfiguration$;
1975
+ exports.ExecutionBlockConfiguration$ = ExecutionBlockConfiguration$;
761
1976
  exports.ExecutionBlockType = ExecutionBlockType;
1977
+ exports.ExecutionEvent$ = ExecutionEvent$;
762
1978
  exports.ExecutionEventType = ExecutionEventType;
763
1979
  exports.ExecutionMode = ExecutionMode;
764
1980
  exports.ExecutionState = ExecutionState;
765
1981
  exports.FailedReportErrorCode = FailedReportErrorCode;
1982
+ exports.FailedReportOutput$ = FailedReportOutput$;
1983
+ exports.GeneratedReport$ = GeneratedReport$;
1984
+ exports.GetPlan$ = GetPlan$;
766
1985
  exports.GetPlanCommand = GetPlanCommand;
1986
+ exports.GetPlanEvaluationStatus$ = GetPlanEvaluationStatus$;
767
1987
  exports.GetPlanEvaluationStatusCommand = GetPlanEvaluationStatusCommand;
1988
+ exports.GetPlanEvaluationStatusRequest$ = GetPlanEvaluationStatusRequest$;
1989
+ exports.GetPlanEvaluationStatusResponse$ = GetPlanEvaluationStatusResponse$;
1990
+ exports.GetPlanExecution$ = GetPlanExecution$;
768
1991
  exports.GetPlanExecutionCommand = GetPlanExecutionCommand;
1992
+ exports.GetPlanExecutionRequest$ = GetPlanExecutionRequest$;
1993
+ exports.GetPlanExecutionResponse$ = GetPlanExecutionResponse$;
1994
+ exports.GetPlanInRegion$ = GetPlanInRegion$;
769
1995
  exports.GetPlanInRegionCommand = GetPlanInRegionCommand;
1996
+ exports.GetPlanInRegionRequest$ = GetPlanInRegionRequest$;
1997
+ exports.GetPlanInRegionResponse$ = GetPlanInRegionResponse$;
1998
+ exports.GetPlanRequest$ = GetPlanRequest$;
1999
+ exports.GetPlanResponse$ = GetPlanResponse$;
2000
+ exports.GlobalAuroraConfiguration$ = GlobalAuroraConfiguration$;
770
2001
  exports.GlobalAuroraDefaultBehavior = GlobalAuroraDefaultBehavior;
2002
+ exports.GlobalAuroraUngraceful$ = GlobalAuroraUngraceful$;
771
2003
  exports.GlobalAuroraUngracefulBehavior = GlobalAuroraUngracefulBehavior;
2004
+ exports.IllegalArgumentException = IllegalArgumentException;
2005
+ exports.IllegalArgumentException$ = IllegalArgumentException$;
2006
+ exports.IllegalStateException = IllegalStateException;
2007
+ exports.IllegalStateException$ = IllegalStateException$;
2008
+ exports.InternalServerException = InternalServerException;
2009
+ exports.InternalServerException$ = InternalServerException$;
2010
+ exports.KubernetesResourceType$ = KubernetesResourceType$;
2011
+ exports.KubernetesScalingResource$ = KubernetesScalingResource$;
2012
+ exports.LambdaEventSourceMappingConfiguration$ = LambdaEventSourceMappingConfiguration$;
2013
+ exports.LambdaEventSourceMappingUngraceful$ = LambdaEventSourceMappingUngraceful$;
772
2014
  exports.LambdaEventSourceMappingUngracefulBehavior = LambdaEventSourceMappingUngracefulBehavior;
2015
+ exports.LambdaUngraceful$ = LambdaUngraceful$;
773
2016
  exports.LambdaUngracefulBehavior = LambdaUngracefulBehavior;
2017
+ exports.Lambdas$ = Lambdas$;
2018
+ exports.ListPlanExecutionEvents$ = ListPlanExecutionEvents$;
774
2019
  exports.ListPlanExecutionEventsCommand = ListPlanExecutionEventsCommand;
2020
+ exports.ListPlanExecutionEventsRequest$ = ListPlanExecutionEventsRequest$;
2021
+ exports.ListPlanExecutionEventsResponse$ = ListPlanExecutionEventsResponse$;
2022
+ exports.ListPlanExecutions$ = ListPlanExecutions$;
775
2023
  exports.ListPlanExecutionsCommand = ListPlanExecutionsCommand;
2024
+ exports.ListPlanExecutionsRequest$ = ListPlanExecutionsRequest$;
2025
+ exports.ListPlanExecutionsResponse$ = ListPlanExecutionsResponse$;
2026
+ exports.ListPlans$ = ListPlans$;
776
2027
  exports.ListPlansCommand = ListPlansCommand;
2028
+ exports.ListPlansInRegion$ = ListPlansInRegion$;
777
2029
  exports.ListPlansInRegionCommand = ListPlansInRegionCommand;
2030
+ exports.ListPlansInRegionRequest$ = ListPlansInRegionRequest$;
2031
+ exports.ListPlansInRegionResponse$ = ListPlansInRegionResponse$;
2032
+ exports.ListPlansRequest$ = ListPlansRequest$;
2033
+ exports.ListPlansResponse$ = ListPlansResponse$;
2034
+ exports.ListRoute53HealthChecks$ = ListRoute53HealthChecks$;
778
2035
  exports.ListRoute53HealthChecksCommand = ListRoute53HealthChecksCommand;
2036
+ exports.ListRoute53HealthChecksInRegion$ = ListRoute53HealthChecksInRegion$;
779
2037
  exports.ListRoute53HealthChecksInRegionCommand = ListRoute53HealthChecksInRegionCommand;
2038
+ exports.ListRoute53HealthChecksInRegionRequest$ = ListRoute53HealthChecksInRegionRequest$;
2039
+ exports.ListRoute53HealthChecksInRegionResponse$ = ListRoute53HealthChecksInRegionResponse$;
2040
+ exports.ListRoute53HealthChecksRequest$ = ListRoute53HealthChecksRequest$;
2041
+ exports.ListRoute53HealthChecksResponse$ = ListRoute53HealthChecksResponse$;
2042
+ exports.ListTagsForResource$ = ListTagsForResource$;
780
2043
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2044
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2045
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2046
+ exports.MinimalWorkflow$ = MinimalWorkflow$;
781
2047
  exports.NeptuneDefaultBehavior = NeptuneDefaultBehavior;
2048
+ exports.NeptuneGlobalDatabaseConfiguration$ = NeptuneGlobalDatabaseConfiguration$;
2049
+ exports.NeptuneUngraceful$ = NeptuneUngraceful$;
782
2050
  exports.NeptuneUngracefulBehavior = NeptuneUngracefulBehavior;
2051
+ exports.ParallelExecutionBlockConfiguration$ = ParallelExecutionBlockConfiguration$;
2052
+ exports.Plan$ = Plan$;
2053
+ exports.RdsCreateCrossRegionReplicaConfiguration$ = RdsCreateCrossRegionReplicaConfiguration$;
2054
+ exports.RdsPromoteReadReplicaConfiguration$ = RdsPromoteReadReplicaConfiguration$;
783
2055
  exports.RecoveryApproach = RecoveryApproach;
2056
+ exports.RegionSwitchPlanConfiguration$ = RegionSwitchPlanConfiguration$;
784
2057
  exports.RegionToRunIn = RegionToRunIn;
2058
+ exports.ReportConfiguration$ = ReportConfiguration$;
2059
+ exports.ReportOutput$ = ReportOutput$;
2060
+ exports.ReportOutputConfiguration$ = ReportOutputConfiguration$;
2061
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2062
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2063
+ exports.ResourceWarning$ = ResourceWarning$;
785
2064
  exports.ResourceWarningStatus = ResourceWarningStatus;
2065
+ exports.Route53HealthCheck$ = Route53HealthCheck$;
2066
+ exports.Route53HealthCheckConfiguration$ = Route53HealthCheckConfiguration$;
786
2067
  exports.Route53HealthCheckStatus = Route53HealthCheckStatus;
2068
+ exports.Route53ResourceRecordSet$ = Route53ResourceRecordSet$;
787
2069
  exports.RoutingControlStateChange = RoutingControlStateChange;
2070
+ exports.S3ReportOutput$ = S3ReportOutput$;
2071
+ exports.S3ReportOutputConfiguration$ = S3ReportOutputConfiguration$;
2072
+ exports.Service$ = Service$;
2073
+ exports.StartPlanExecution$ = StartPlanExecution$;
788
2074
  exports.StartPlanExecutionCommand = StartPlanExecutionCommand;
2075
+ exports.StartPlanExecutionRequest$ = StartPlanExecutionRequest$;
2076
+ exports.StartPlanExecutionResponse$ = StartPlanExecutionResponse$;
2077
+ exports.Step$ = Step$;
2078
+ exports.StepState$ = StepState$;
789
2079
  exports.StepStatus = StepStatus;
2080
+ exports.TagResource$ = TagResource$;
790
2081
  exports.TagResourceCommand = TagResourceCommand;
2082
+ exports.TagResourceRequest$ = TagResourceRequest$;
2083
+ exports.TagResourceResponse$ = TagResourceResponse$;
2084
+ exports.Trigger$ = Trigger$;
2085
+ exports.TriggerCondition$ = TriggerCondition$;
2086
+ exports.UntagResource$ = UntagResource$;
791
2087
  exports.UntagResourceCommand = UntagResourceCommand;
2088
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2089
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2090
+ exports.UpdatePlan$ = UpdatePlan$;
792
2091
  exports.UpdatePlanCommand = UpdatePlanCommand;
2092
+ exports.UpdatePlanExecution$ = UpdatePlanExecution$;
793
2093
  exports.UpdatePlanExecutionAction = UpdatePlanExecutionAction;
794
2094
  exports.UpdatePlanExecutionCommand = UpdatePlanExecutionCommand;
2095
+ exports.UpdatePlanExecutionRequest$ = UpdatePlanExecutionRequest$;
2096
+ exports.UpdatePlanExecutionResponse$ = UpdatePlanExecutionResponse$;
2097
+ exports.UpdatePlanExecutionStep$ = UpdatePlanExecutionStep$;
795
2098
  exports.UpdatePlanExecutionStepAction = UpdatePlanExecutionStepAction;
796
2099
  exports.UpdatePlanExecutionStepCommand = UpdatePlanExecutionStepCommand;
2100
+ exports.UpdatePlanExecutionStepRequest$ = UpdatePlanExecutionStepRequest$;
2101
+ exports.UpdatePlanExecutionStepResponse$ = UpdatePlanExecutionStepResponse$;
2102
+ exports.UpdatePlanRequest$ = UpdatePlanRequest$;
2103
+ exports.UpdatePlanResponse$ = UpdatePlanResponse$;
2104
+ exports.Workflow$ = Workflow$;
797
2105
  exports.WorkflowTargetAction = WorkflowTargetAction;
2106
+ exports.errorTypeRegistries = errorTypeRegistries;
798
2107
  exports.paginateGetPlanEvaluationStatus = paginateGetPlanEvaluationStatus;
799
2108
  exports.paginateGetPlanExecution = paginateGetPlanExecution;
800
2109
  exports.paginateListPlanExecutionEvents = paginateListPlanExecutionEvents;