@aws-sdk/client-route53-recovery-control-config 3.1075.0 → 3.1077.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,58 @@
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, defaultRoute53RecoveryControlConfigHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateCluster$, CreateControlPanel$, CreateRoutingControl$, CreateSafetyRule$, DeleteCluster$, DeleteControlPanel$, DeleteRoutingControl$, DeleteSafetyRule$, DescribeCluster$, DescribeControlPanel$, DescribeRoutingControl$, DescribeSafetyRule$, GetResourcePolicy$, ListAssociatedRoute53HealthChecks$, ListClusters$, ListControlPanels$, ListRoutingControls$, ListSafetyRules$, ListTagsForResource$, TagResource$, UntagResource$, UpdateCluster$, UpdateControlPanel$, UpdateRoutingControl$, UpdateSafetyRule$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { Route53RecoveryControlConfigServiceException } = require("./models/Route53RecoveryControlConfigServiceException");
18
- exports.Route53RecoveryControlConfigServiceException = Route53RecoveryControlConfigServiceException;
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, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultRoute53RecoveryControlConfigHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "route53-recovery-control-config",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultRoute53RecoveryControlConfigHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,843 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const l = "ref", m = "authSchemes", n = "signingRegion";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [l]: "Endpoint" }, h = { [l]: d }, i = { [m]: [{ "name": "sigv4", [n]: "us-west-2" }] }, j = { [m]: [{ "name": "sigv4", [n]: "{PartitionResult#implicitGlobalRegion}" }] }, k = [{ [l]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, k],
81
+ ["aws.partition", k, d],
82
+ [e, [{ [l]: "UseFIPS" }, b]],
83
+ [e, [{ [l]: "UseDualStack" }, b]],
84
+ ["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws"]],
85
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
86
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [g, {}],
93
+ ["https://route53-recovery-control-config.us-west-2.amazonaws.com", i],
94
+ ["https://arc-recovery-control-config.us-west-2.api.aws", i],
95
+ ["https://route53-recovery-control-config-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", j],
96
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
97
+ ["https://route53-recovery-control-config-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}", j],
98
+ [a, "FIPS is enabled but this partition does not support FIPS"],
99
+ ["https://route53-recovery-control-config.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", j],
100
+ [a, "DualStack is enabled but this partition does not support DualStack"],
101
+ ["https://route53-recovery-control-config.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}", j],
102
+ [a, "Invalid Configuration: Missing Region"]
103
+ ]
104
+ };
105
+ const root = 2;
106
+ const r = 100_000_000;
107
+ const nodes = new Int32Array([
108
+ -1, 1, -1,
109
+ 0, 14, 3,
110
+ 1, 4, r + 13,
111
+ 2, 5, r + 13,
112
+ 3, 10, 6,
113
+ 4, 8, 7,
114
+ 5, r + 4, r + 12,
115
+ 5, r + 5, 9,
116
+ 6, r + 10, r + 11,
117
+ 4, 12, 11,
118
+ 7, r + 8, r + 9,
119
+ 6, 13, r + 7,
120
+ 7, r + 6, r + 7,
121
+ 3, r + 1, 15,
122
+ 4, r + 2, r + 3,
123
+ ]);
124
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
125
+
126
+ const cache = new EndpointCache({
127
+ size: 50,
128
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
129
+ });
130
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
131
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
132
+ endpointParams: endpointParams,
133
+ logger: context.logger,
134
+ }));
135
+ };
136
+ customEndpointFunctions.aws = awsEndpointFunctions;
137
+
138
+ class Route53RecoveryControlConfigServiceException extends ServiceException {
139
+ constructor(options) {
140
+ super(options);
141
+ Object.setPrototypeOf(this, Route53RecoveryControlConfigServiceException.prototype);
142
+ }
143
+ }
144
+
145
+ class AccessDeniedException extends Route53RecoveryControlConfigServiceException {
146
+ name = "AccessDeniedException";
147
+ $fault = "client";
148
+ Message;
149
+ constructor(opts) {
150
+ super({
151
+ name: "AccessDeniedException",
152
+ $fault: "client",
153
+ ...opts,
154
+ });
155
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
156
+ this.Message = opts.Message;
157
+ }
158
+ }
159
+ class ConflictException extends Route53RecoveryControlConfigServiceException {
160
+ name = "ConflictException";
161
+ $fault = "client";
162
+ Message;
163
+ constructor(opts) {
164
+ super({
165
+ name: "ConflictException",
166
+ $fault: "client",
167
+ ...opts,
168
+ });
169
+ Object.setPrototypeOf(this, ConflictException.prototype);
170
+ this.Message = opts.Message;
171
+ }
172
+ }
173
+ class InternalServerException extends Route53RecoveryControlConfigServiceException {
174
+ name = "InternalServerException";
175
+ $fault = "server";
176
+ Message;
177
+ constructor(opts) {
178
+ super({
179
+ name: "InternalServerException",
180
+ $fault: "server",
181
+ ...opts,
182
+ });
183
+ Object.setPrototypeOf(this, InternalServerException.prototype);
184
+ this.Message = opts.Message;
185
+ }
186
+ }
187
+ class ResourceNotFoundException extends Route53RecoveryControlConfigServiceException {
188
+ name = "ResourceNotFoundException";
189
+ $fault = "client";
190
+ Message;
191
+ constructor(opts) {
192
+ super({
193
+ name: "ResourceNotFoundException",
194
+ $fault: "client",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
198
+ this.Message = opts.Message;
199
+ }
200
+ }
201
+ class ServiceQuotaExceededException extends Route53RecoveryControlConfigServiceException {
202
+ name = "ServiceQuotaExceededException";
203
+ $fault = "client";
204
+ Message;
205
+ constructor(opts) {
206
+ super({
207
+ name: "ServiceQuotaExceededException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
212
+ this.Message = opts.Message;
213
+ }
214
+ }
215
+ class ThrottlingException extends Route53RecoveryControlConfigServiceException {
216
+ name = "ThrottlingException";
217
+ $fault = "client";
218
+ Message;
219
+ constructor(opts) {
220
+ super({
221
+ name: "ThrottlingException",
222
+ $fault: "client",
223
+ ...opts,
224
+ });
225
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
226
+ this.Message = opts.Message;
227
+ }
228
+ }
229
+ class ValidationException extends Route53RecoveryControlConfigServiceException {
230
+ name = "ValidationException";
231
+ $fault = "client";
232
+ Message;
233
+ constructor(opts) {
234
+ super({
235
+ name: "ValidationException",
236
+ $fault: "client",
237
+ ...opts,
238
+ });
239
+ Object.setPrototypeOf(this, ValidationException.prototype);
240
+ this.Message = opts.Message;
241
+ }
242
+ }
243
+
244
+ const _AC = "AssertedControls";
245
+ const _ADE = "AccessDeniedException";
246
+ const _AR = "AssertionRule";
247
+ const _ARU = "AssertionRuleUpdate";
248
+ const _ASSERTION = "ASSERTION";
249
+ const _C = "Cluster";
250
+ const _CA = "ClusterArn";
251
+ const _CC = "CreateCluster";
252
+ const _CCP = "CreateControlPanel";
253
+ const _CCPR = "CreateControlPanelRequest";
254
+ const _CCPRr = "CreateControlPanelResponse";
255
+ const _CCR = "CreateClusterRequest";
256
+ const _CCRr = "CreateClusterResponse";
257
+ const _CE = "ConflictException";
258
+ const _CEl = "ClusterEndpoints";
259
+ const _CElu = "ClusterEndpoint";
260
+ const _CN = "ClusterName";
261
+ const _CP = "ControlPanel";
262
+ const _CPA = "ControlPanelArn";
263
+ const _CPN = "ControlPanelName";
264
+ const _CPo = "ControlPanels";
265
+ const _CRC = "CreateRoutingControl";
266
+ const _CRCR = "CreateRoutingControlRequest";
267
+ const _CRCRr = "CreateRoutingControlResponse";
268
+ const _CSR = "CreateSafetyRule";
269
+ const _CSRR = "CreateSafetyRuleRequest";
270
+ const _CSRRr = "CreateSafetyRuleResponse";
271
+ const _CT = "ClientToken";
272
+ const _Cl = "Clusters";
273
+ const _DC = "DeleteCluster";
274
+ const _DCP = "DefaultControlPanel";
275
+ const _DCPR = "DeleteControlPanelRequest";
276
+ const _DCPRe = "DeleteControlPanelResponse";
277
+ const _DCPRes = "DescribeControlPanelRequest";
278
+ const _DCPResc = "DescribeControlPanelResponse";
279
+ const _DCPe = "DeleteControlPanel";
280
+ const _DCPes = "DescribeControlPanel";
281
+ const _DCR = "DeleteClusterRequest";
282
+ const _DCRe = "DeleteClusterResponse";
283
+ const _DCRes = "DescribeClusterRequest";
284
+ const _DCResc = "DescribeClusterResponse";
285
+ const _DCe = "DescribeCluster";
286
+ const _DRC = "DeleteRoutingControl";
287
+ const _DRCR = "DeleteRoutingControlRequest";
288
+ const _DRCRe = "DeleteRoutingControlResponse";
289
+ const _DRCRes = "DescribeRoutingControlRequest";
290
+ const _DRCResc = "DescribeRoutingControlResponse";
291
+ const _DRCe = "DescribeRoutingControl";
292
+ const _DSR = "DeleteSafetyRule";
293
+ const _DSRR = "DeleteSafetyRuleRequest";
294
+ const _DSRRe = "DeleteSafetyRuleResponse";
295
+ const _DSRRes = "DescribeSafetyRuleRequest";
296
+ const _DSRResc = "DescribeSafetyRuleResponse";
297
+ const _DSRe = "DescribeSafetyRule";
298
+ const _E = "Endpoint";
299
+ const _GATING = "GATING";
300
+ const _GC = "GatingControls";
301
+ const _GR = "GatingRule";
302
+ const _GRP = "GetResourcePolicy";
303
+ const _GRPR = "GetResourcePolicyRequest";
304
+ const _GRPRe = "GetResourcePolicyResponse";
305
+ const _GRU = "GatingRuleUpdate";
306
+ const _HCI = "HealthCheckIds";
307
+ const _I = "Inverted";
308
+ const _ISE = "InternalServerException";
309
+ const _LARHC = "ListAssociatedRoute53HealthChecks";
310
+ const _LARHCR = "ListAssociatedRoute53HealthChecksRequest";
311
+ const _LARHCRi = "ListAssociatedRoute53HealthChecksResponse";
312
+ const _LC = "ListClusters";
313
+ const _LCP = "ListControlPanels";
314
+ const _LCPR = "ListControlPanelsRequest";
315
+ const _LCPRi = "ListControlPanelsResponse";
316
+ const _LCR = "ListClustersRequest";
317
+ const _LCRi = "ListClustersResponse";
318
+ const _LRC = "ListRoutingControls";
319
+ const _LRCR = "ListRoutingControlsRequest";
320
+ const _LRCRi = "ListRoutingControlsResponse";
321
+ const _LSR = "ListSafetyRules";
322
+ const _LSRR = "ListSafetyRulesRequest";
323
+ const _LSRRi = "ListSafetyRulesResponse";
324
+ const _LTFR = "ListTagsForResource";
325
+ const _LTFRR = "ListTagsForResourceRequest";
326
+ const _LTFRRi = "ListTagsForResourceResponse";
327
+ const _M = "Message";
328
+ const _MR = "MaxResults";
329
+ const _N = "Name";
330
+ const _NAR = "NewAssertionRule";
331
+ const _NGR = "NewGatingRule";
332
+ const _NT = "NetworkType";
333
+ const _NTe = "NextToken";
334
+ const _O = "Owner";
335
+ const _P = "Policy";
336
+ const _R = "Region";
337
+ const _RA = "ResourceArn";
338
+ const _RC = "RuleConfig";
339
+ const _RCA = "RoutingControlArn";
340
+ const _RCC = "RoutingControlCount";
341
+ const _RCN = "RoutingControlName";
342
+ const _RCo = "RoutingControl";
343
+ const _RCou = "RoutingControls";
344
+ const _RNFE = "ResourceNotFoundException";
345
+ const _Ru = "Rule";
346
+ const _S = "Status";
347
+ const _SQEE = "ServiceQuotaExceededException";
348
+ const _SR = "SafetyRules";
349
+ const _SRA = "SafetyRuleArn";
350
+ const _T = "Tags";
351
+ const _TC = "TargetControls";
352
+ const _TE = "ThrottlingException";
353
+ const _TK = "TagKeys";
354
+ const _TR = "TagResource";
355
+ const _TRR = "TagResourceRequest";
356
+ const _TRRa = "TagResourceResponse";
357
+ const _Th = "Threshold";
358
+ const _Ty = "Type";
359
+ const _UC = "UpdateCluster";
360
+ const _UCP = "UpdateControlPanel";
361
+ const _UCPR = "UpdateControlPanelRequest";
362
+ const _UCPRp = "UpdateControlPanelResponse";
363
+ const _UCR = "UpdateClusterRequest";
364
+ const _UCRp = "UpdateClusterResponse";
365
+ const _UR = "UntagResource";
366
+ const _URC = "UpdateRoutingControl";
367
+ const _URCR = "UpdateRoutingControlRequest";
368
+ const _URCRp = "UpdateRoutingControlResponse";
369
+ const _URR = "UntagResourceRequest";
370
+ const _URRn = "UntagResourceResponse";
371
+ const _USR = "UpdateSafetyRule";
372
+ const _USRR = "UpdateSafetyRuleRequest";
373
+ const _USRRp = "UpdateSafetyRuleResponse";
374
+ const _VE = "ValidationException";
375
+ const _WPM = "WaitPeriodMs";
376
+ const _c = "client";
377
+ const _e = "error";
378
+ const _h = "http";
379
+ const _hE = "httpError";
380
+ const _hQ = "httpQuery";
381
+ const _jN = "jsonName";
382
+ const _lOC = "__listOfCluster";
383
+ const _lOCE = "__listOfClusterEndpoint";
384
+ const _lOCP = "__listOfControlPanel";
385
+ const _lOR = "__listOfRule";
386
+ const _lORC = "__listOfRoutingControl";
387
+ const _m = "message";
388
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53recoverycontrolconfig";
389
+ const _se = "server";
390
+ const n0 = "com.amazonaws.route53recoverycontrolconfig";
391
+ const _s_registry = TypeRegistry.for(_s);
392
+ var Route53RecoveryControlConfigServiceException$ = [-3, _s, "Route53RecoveryControlConfigServiceException", 0, [], []];
393
+ _s_registry.registerError(Route53RecoveryControlConfigServiceException$, Route53RecoveryControlConfigServiceException);
394
+ const n0_registry = TypeRegistry.for(n0);
395
+ var AccessDeniedException$ = [-3, n0, _ADE,
396
+ { [_e]: _c, [_hE]: 403 },
397
+ [_M],
398
+ [[0, { [_jN]: _m }]], 1
399
+ ];
400
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
401
+ var ConflictException$ = [-3, n0, _CE,
402
+ { [_e]: _c, [_hE]: 409 },
403
+ [_M],
404
+ [[0, { [_jN]: _m }]], 1
405
+ ];
406
+ n0_registry.registerError(ConflictException$, ConflictException);
407
+ var InternalServerException$ = [-3, n0, _ISE,
408
+ { [_e]: _se, [_hE]: 500 },
409
+ [_M],
410
+ [[0, { [_jN]: _m }]], 1
411
+ ];
412
+ n0_registry.registerError(InternalServerException$, InternalServerException);
413
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
414
+ { [_e]: _c, [_hE]: 404 },
415
+ [_M],
416
+ [[0, { [_jN]: _m }]], 1
417
+ ];
418
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
419
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
420
+ { [_e]: _c, [_hE]: 402 },
421
+ [_M],
422
+ [[0, { [_jN]: _m }]], 1
423
+ ];
424
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
425
+ var ThrottlingException$ = [-3, n0, _TE,
426
+ { [_e]: _c, [_hE]: 429 },
427
+ [_M],
428
+ [[0, { [_jN]: _m }]], 1
429
+ ];
430
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
431
+ var ValidationException$ = [-3, n0, _VE,
432
+ { [_e]: _c, [_hE]: 400 },
433
+ [_M],
434
+ [[0, { [_jN]: _m }]], 1
435
+ ];
436
+ n0_registry.registerError(ValidationException$, ValidationException);
437
+ const errorTypeRegistries = [
438
+ _s_registry,
439
+ n0_registry,
440
+ ];
441
+ var AssertionRule$ = [3, n0, _AR,
442
+ 0,
443
+ [_AC, _CPA, _N, _RC, _SRA, _S, _WPM, _O],
444
+ [64 | 0, 0, 0, () => RuleConfig$, 0, 0, 1, 0], 7
445
+ ];
446
+ var AssertionRuleUpdate$ = [3, n0, _ARU,
447
+ 0,
448
+ [_N, _SRA, _WPM],
449
+ [0, 0, 1], 3
450
+ ];
451
+ var Cluster$ = [3, n0, _C,
452
+ 0,
453
+ [_CA, _CEl, _N, _S, _O, _NT],
454
+ [0, () => __listOfClusterEndpoint, 0, 0, 0, 0]
455
+ ];
456
+ var ClusterEndpoint$ = [3, n0, _CElu,
457
+ 0,
458
+ [_E, _R],
459
+ [0, 0]
460
+ ];
461
+ var ControlPanel$ = [3, n0, _CP,
462
+ 0,
463
+ [_CA, _CPA, _DCP, _N, _RCC, _S, _O],
464
+ [0, 0, 2, 0, 1, 0, 0]
465
+ ];
466
+ var CreateClusterRequest$ = [3, n0, _CCR,
467
+ 0,
468
+ [_CN, _CT, _T, _NT],
469
+ [0, [0, 4], 128 | 0, 0], 1
470
+ ];
471
+ var CreateClusterResponse$ = [3, n0, _CCRr,
472
+ 0,
473
+ [_C],
474
+ [() => Cluster$]
475
+ ];
476
+ var CreateControlPanelRequest$ = [3, n0, _CCPR,
477
+ 0,
478
+ [_CA, _CPN, _CT, _T],
479
+ [0, 0, [0, 4], 128 | 0], 2
480
+ ];
481
+ var CreateControlPanelResponse$ = [3, n0, _CCPRr,
482
+ 0,
483
+ [_CP],
484
+ [() => ControlPanel$]
485
+ ];
486
+ var CreateRoutingControlRequest$ = [3, n0, _CRCR,
487
+ 0,
488
+ [_CA, _RCN, _CT, _CPA],
489
+ [0, 0, [0, 4], 0], 2
490
+ ];
491
+ var CreateRoutingControlResponse$ = [3, n0, _CRCRr,
492
+ 0,
493
+ [_RCo],
494
+ [() => RoutingControl$]
495
+ ];
496
+ var CreateSafetyRuleRequest$ = [3, n0, _CSRR,
497
+ 0,
498
+ [_AR, _CT, _GR, _T],
499
+ [() => NewAssertionRule$, [0, 4], () => NewGatingRule$, 128 | 0]
500
+ ];
501
+ var CreateSafetyRuleResponse$ = [3, n0, _CSRRr,
502
+ 0,
503
+ [_AR, _GR],
504
+ [() => AssertionRule$, () => GatingRule$]
505
+ ];
506
+ var DeleteClusterRequest$ = [3, n0, _DCR,
507
+ 0,
508
+ [_CA],
509
+ [[0, 1]], 1
510
+ ];
511
+ var DeleteClusterResponse$ = [3, n0, _DCRe,
512
+ 0,
513
+ [],
514
+ []
515
+ ];
516
+ var DeleteControlPanelRequest$ = [3, n0, _DCPR,
517
+ 0,
518
+ [_CPA],
519
+ [[0, 1]], 1
520
+ ];
521
+ var DeleteControlPanelResponse$ = [3, n0, _DCPRe,
522
+ 0,
523
+ [],
524
+ []
525
+ ];
526
+ var DeleteRoutingControlRequest$ = [3, n0, _DRCR,
527
+ 0,
528
+ [_RCA],
529
+ [[0, 1]], 1
530
+ ];
531
+ var DeleteRoutingControlResponse$ = [3, n0, _DRCRe,
532
+ 0,
533
+ [],
534
+ []
535
+ ];
536
+ var DeleteSafetyRuleRequest$ = [3, n0, _DSRR,
537
+ 0,
538
+ [_SRA],
539
+ [[0, 1]], 1
540
+ ];
541
+ var DeleteSafetyRuleResponse$ = [3, n0, _DSRRe,
542
+ 0,
543
+ [],
544
+ []
545
+ ];
546
+ var DescribeClusterRequest$ = [3, n0, _DCRes,
547
+ 0,
548
+ [_CA],
549
+ [[0, 1]], 1
550
+ ];
551
+ var DescribeClusterResponse$ = [3, n0, _DCResc,
552
+ 0,
553
+ [_C],
554
+ [() => Cluster$]
555
+ ];
556
+ var DescribeControlPanelRequest$ = [3, n0, _DCPRes,
557
+ 0,
558
+ [_CPA],
559
+ [[0, 1]], 1
560
+ ];
561
+ var DescribeControlPanelResponse$ = [3, n0, _DCPResc,
562
+ 0,
563
+ [_CP],
564
+ [() => ControlPanel$]
565
+ ];
566
+ var DescribeRoutingControlRequest$ = [3, n0, _DRCRes,
567
+ 0,
568
+ [_RCA],
569
+ [[0, 1]], 1
570
+ ];
571
+ var DescribeRoutingControlResponse$ = [3, n0, _DRCResc,
572
+ 0,
573
+ [_RCo],
574
+ [() => RoutingControl$]
575
+ ];
576
+ var DescribeSafetyRuleRequest$ = [3, n0, _DSRRes,
577
+ 0,
578
+ [_SRA],
579
+ [[0, 1]], 1
580
+ ];
581
+ var DescribeSafetyRuleResponse$ = [3, n0, _DSRResc,
582
+ 0,
583
+ [_AR, _GR],
584
+ [() => AssertionRule$, () => GatingRule$]
585
+ ];
586
+ var GatingRule$ = [3, n0, _GR,
587
+ 0,
588
+ [_CPA, _GC, _N, _RC, _SRA, _S, _TC, _WPM, _O],
589
+ [0, 64 | 0, 0, () => RuleConfig$, 0, 0, 64 | 0, 1, 0], 8
590
+ ];
591
+ var GatingRuleUpdate$ = [3, n0, _GRU,
592
+ 0,
593
+ [_N, _SRA, _WPM],
594
+ [0, 0, 1], 3
595
+ ];
596
+ var GetResourcePolicyRequest$ = [3, n0, _GRPR,
597
+ 0,
598
+ [_RA],
599
+ [[0, 1]], 1
600
+ ];
601
+ var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
602
+ 0,
603
+ [_P],
604
+ [0]
605
+ ];
606
+ var ListAssociatedRoute53HealthChecksRequest$ = [3, n0, _LARHCR,
607
+ 0,
608
+ [_RCA, _MR, _NTe],
609
+ [[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]], 1
610
+ ];
611
+ var ListAssociatedRoute53HealthChecksResponse$ = [3, n0, _LARHCRi,
612
+ 0,
613
+ [_HCI, _NTe],
614
+ [64 | 0, 0]
615
+ ];
616
+ var ListClustersRequest$ = [3, n0, _LCR,
617
+ 0,
618
+ [_MR, _NTe],
619
+ [[1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]]
620
+ ];
621
+ var ListClustersResponse$ = [3, n0, _LCRi,
622
+ 0,
623
+ [_Cl, _NTe],
624
+ [() => __listOfCluster, 0]
625
+ ];
626
+ var ListControlPanelsRequest$ = [3, n0, _LCPR,
627
+ 0,
628
+ [_CA, _MR, _NTe],
629
+ [[0, { [_hQ]: _CA }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]]
630
+ ];
631
+ var ListControlPanelsResponse$ = [3, n0, _LCPRi,
632
+ 0,
633
+ [_CPo, _NTe],
634
+ [() => __listOfControlPanel, 0]
635
+ ];
636
+ var ListRoutingControlsRequest$ = [3, n0, _LRCR,
637
+ 0,
638
+ [_CPA, _MR, _NTe],
639
+ [[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]], 1
640
+ ];
641
+ var ListRoutingControlsResponse$ = [3, n0, _LRCRi,
642
+ 0,
643
+ [_NTe, _RCou],
644
+ [0, () => __listOfRoutingControl]
645
+ ];
646
+ var ListSafetyRulesRequest$ = [3, n0, _LSRR,
647
+ 0,
648
+ [_CPA, _MR, _NTe],
649
+ [[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]], 1
650
+ ];
651
+ var ListSafetyRulesResponse$ = [3, n0, _LSRRi,
652
+ 0,
653
+ [_NTe, _SR],
654
+ [0, () => __listOfRule]
655
+ ];
656
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
657
+ 0,
658
+ [_RA],
659
+ [[0, 1]], 1
660
+ ];
661
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
662
+ 0,
663
+ [_T],
664
+ [128 | 0]
665
+ ];
666
+ var NewAssertionRule$ = [3, n0, _NAR,
667
+ 0,
668
+ [_AC, _CPA, _N, _RC, _WPM],
669
+ [64 | 0, 0, 0, () => RuleConfig$, 1], 5
670
+ ];
671
+ var NewGatingRule$ = [3, n0, _NGR,
672
+ 0,
673
+ [_CPA, _GC, _N, _RC, _TC, _WPM],
674
+ [0, 64 | 0, 0, () => RuleConfig$, 64 | 0, 1], 6
675
+ ];
676
+ var RoutingControl$ = [3, n0, _RCo,
677
+ 0,
678
+ [_CPA, _N, _RCA, _S, _O],
679
+ [0, 0, 0, 0, 0]
680
+ ];
681
+ var Rule$ = [3, n0, _Ru,
682
+ 0,
683
+ [_ASSERTION, _GATING],
684
+ [() => AssertionRule$, () => GatingRule$]
685
+ ];
686
+ var RuleConfig$ = [3, n0, _RC,
687
+ 0,
688
+ [_I, _Th, _Ty],
689
+ [2, 1, 0], 3
690
+ ];
691
+ var TagResourceRequest$ = [3, n0, _TRR,
692
+ 0,
693
+ [_RA, _T],
694
+ [[0, 1], 128 | 0], 2
695
+ ];
696
+ var TagResourceResponse$ = [3, n0, _TRRa,
697
+ 0,
698
+ [],
699
+ []
700
+ ];
701
+ var UntagResourceRequest$ = [3, n0, _URR,
702
+ 0,
703
+ [_RA, _TK],
704
+ [[0, 1], [64 | 0, { [_hQ]: _TK }]], 2
705
+ ];
706
+ var UntagResourceResponse$ = [3, n0, _URRn,
707
+ 0,
708
+ [],
709
+ []
710
+ ];
711
+ var UpdateClusterRequest$ = [3, n0, _UCR,
712
+ 0,
713
+ [_CA, _NT],
714
+ [0, 0], 2
715
+ ];
716
+ var UpdateClusterResponse$ = [3, n0, _UCRp,
717
+ 0,
718
+ [_C],
719
+ [() => Cluster$]
720
+ ];
721
+ var UpdateControlPanelRequest$ = [3, n0, _UCPR,
722
+ 0,
723
+ [_CPA, _CPN],
724
+ [0, 0], 2
725
+ ];
726
+ var UpdateControlPanelResponse$ = [3, n0, _UCPRp,
727
+ 0,
728
+ [_CP],
729
+ [() => ControlPanel$]
730
+ ];
731
+ var UpdateRoutingControlRequest$ = [3, n0, _URCR,
732
+ 0,
733
+ [_RCA, _RCN],
734
+ [0, 0], 2
735
+ ];
736
+ var UpdateRoutingControlResponse$ = [3, n0, _URCRp,
737
+ 0,
738
+ [_RCo],
739
+ [() => RoutingControl$]
740
+ ];
741
+ var UpdateSafetyRuleRequest$ = [3, n0, _USRR,
742
+ 0,
743
+ [_ARU, _GRU],
744
+ [() => AssertionRuleUpdate$, () => GatingRuleUpdate$]
745
+ ];
746
+ var UpdateSafetyRuleResponse$ = [3, n0, _USRRp,
747
+ 0,
748
+ [_AR, _GR],
749
+ [() => AssertionRule$, () => GatingRule$]
750
+ ];
751
+ var __listOfCluster = [1, n0, _lOC,
752
+ 0, () => Cluster$
753
+ ];
754
+ var __listOfClusterEndpoint = [1, n0, _lOCE,
755
+ 0, () => ClusterEndpoint$
756
+ ];
757
+ var __listOfControlPanel = [1, n0, _lOCP,
758
+ 0, () => ControlPanel$
759
+ ];
760
+ var __listOfRoutingControl = [1, n0, _lORC,
761
+ 0, () => RoutingControl$
762
+ ];
763
+ var __listOfRule = [1, n0, _lOR,
764
+ 0, () => Rule$
765
+ ];
766
+ var CreateCluster$ = [9, n0, _CC,
767
+ { [_h]: ["POST", "/cluster", 200] }, () => CreateClusterRequest$, () => CreateClusterResponse$
768
+ ];
769
+ var CreateControlPanel$ = [9, n0, _CCP,
770
+ { [_h]: ["POST", "/controlpanel", 200] }, () => CreateControlPanelRequest$, () => CreateControlPanelResponse$
771
+ ];
772
+ var CreateRoutingControl$ = [9, n0, _CRC,
773
+ { [_h]: ["POST", "/routingcontrol", 200] }, () => CreateRoutingControlRequest$, () => CreateRoutingControlResponse$
774
+ ];
775
+ var CreateSafetyRule$ = [9, n0, _CSR,
776
+ { [_h]: ["POST", "/safetyrule", 200] }, () => CreateSafetyRuleRequest$, () => CreateSafetyRuleResponse$
777
+ ];
778
+ var DeleteCluster$ = [9, n0, _DC,
779
+ { [_h]: ["DELETE", "/cluster/{ClusterArn}", 200] }, () => DeleteClusterRequest$, () => DeleteClusterResponse$
780
+ ];
781
+ var DeleteControlPanel$ = [9, n0, _DCPe,
782
+ { [_h]: ["DELETE", "/controlpanel/{ControlPanelArn}", 200] }, () => DeleteControlPanelRequest$, () => DeleteControlPanelResponse$
783
+ ];
784
+ var DeleteRoutingControl$ = [9, n0, _DRC,
785
+ { [_h]: ["DELETE", "/routingcontrol/{RoutingControlArn}", 200] }, () => DeleteRoutingControlRequest$, () => DeleteRoutingControlResponse$
786
+ ];
787
+ var DeleteSafetyRule$ = [9, n0, _DSR,
788
+ { [_h]: ["DELETE", "/safetyrule/{SafetyRuleArn}", 200] }, () => DeleteSafetyRuleRequest$, () => DeleteSafetyRuleResponse$
789
+ ];
790
+ var DescribeCluster$ = [9, n0, _DCe,
791
+ { [_h]: ["GET", "/cluster/{ClusterArn}", 200] }, () => DescribeClusterRequest$, () => DescribeClusterResponse$
792
+ ];
793
+ var DescribeControlPanel$ = [9, n0, _DCPes,
794
+ { [_h]: ["GET", "/controlpanel/{ControlPanelArn}", 200] }, () => DescribeControlPanelRequest$, () => DescribeControlPanelResponse$
795
+ ];
796
+ var DescribeRoutingControl$ = [9, n0, _DRCe,
797
+ { [_h]: ["GET", "/routingcontrol/{RoutingControlArn}", 200] }, () => DescribeRoutingControlRequest$, () => DescribeRoutingControlResponse$
798
+ ];
799
+ var DescribeSafetyRule$ = [9, n0, _DSRe,
800
+ { [_h]: ["GET", "/safetyrule/{SafetyRuleArn}", 200] }, () => DescribeSafetyRuleRequest$, () => DescribeSafetyRuleResponse$
801
+ ];
802
+ var GetResourcePolicy$ = [9, n0, _GRP,
803
+ { [_h]: ["GET", "/resourcePolicy/{ResourceArn}", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
804
+ ];
805
+ var ListAssociatedRoute53HealthChecks$ = [9, n0, _LARHC,
806
+ { [_h]: ["GET", "/routingcontrol/{RoutingControlArn}/associatedRoute53HealthChecks", 200] }, () => ListAssociatedRoute53HealthChecksRequest$, () => ListAssociatedRoute53HealthChecksResponse$
807
+ ];
808
+ var ListClusters$ = [9, n0, _LC,
809
+ { [_h]: ["GET", "/cluster", 200] }, () => ListClustersRequest$, () => ListClustersResponse$
810
+ ];
811
+ var ListControlPanels$ = [9, n0, _LCP,
812
+ { [_h]: ["GET", "/controlpanels", 200] }, () => ListControlPanelsRequest$, () => ListControlPanelsResponse$
813
+ ];
814
+ var ListRoutingControls$ = [9, n0, _LRC,
815
+ { [_h]: ["GET", "/controlpanel/{ControlPanelArn}/routingcontrols", 200] }, () => ListRoutingControlsRequest$, () => ListRoutingControlsResponse$
816
+ ];
817
+ var ListSafetyRules$ = [9, n0, _LSR,
818
+ { [_h]: ["GET", "/controlpanel/{ControlPanelArn}/safetyrules", 200] }, () => ListSafetyRulesRequest$, () => ListSafetyRulesResponse$
819
+ ];
820
+ var ListTagsForResource$ = [9, n0, _LTFR,
821
+ { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
822
+ ];
823
+ var TagResource$ = [9, n0, _TR,
824
+ { [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
825
+ ];
826
+ var UntagResource$ = [9, n0, _UR,
827
+ { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
828
+ ];
829
+ var UpdateCluster$ = [9, n0, _UC,
830
+ { [_h]: ["PUT", "/cluster", 200] }, () => UpdateClusterRequest$, () => UpdateClusterResponse$
831
+ ];
832
+ var UpdateControlPanel$ = [9, n0, _UCP,
833
+ { [_h]: ["PUT", "/controlpanel", 200] }, () => UpdateControlPanelRequest$, () => UpdateControlPanelResponse$
834
+ ];
835
+ var UpdateRoutingControl$ = [9, n0, _URC,
836
+ { [_h]: ["PUT", "/routingcontrol", 200] }, () => UpdateRoutingControlRequest$, () => UpdateRoutingControlResponse$
837
+ ];
838
+ var UpdateSafetyRule$ = [9, n0, _USR,
839
+ { [_h]: ["PUT", "/safetyrule", 200] }, () => UpdateSafetyRuleRequest$, () => UpdateSafetyRuleResponse$
840
+ ];
841
+
842
+ const getRuntimeConfig$1 = (config) => {
843
+ return {
844
+ apiVersion: "2020-11-02",
845
+ base64Decoder: config?.base64Decoder ?? fromBase64,
846
+ base64Encoder: config?.base64Encoder ?? toBase64,
847
+ disableHostPrefix: config?.disableHostPrefix ?? false,
848
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
849
+ extensions: config?.extensions ?? [],
850
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRoute53RecoveryControlConfigHttpAuthSchemeProvider,
851
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
852
+ {
853
+ schemeId: "aws.auth#sigv4",
854
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
855
+ signer: new AwsSdkSigV4Signer(),
856
+ },
857
+ ],
858
+ logger: config?.logger ?? new NoOpLogger(),
859
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
860
+ protocolSettings: config?.protocolSettings ?? {
861
+ defaultNamespace: "com.amazonaws.route53recoverycontrolconfig",
862
+ errorTypeRegistries,
863
+ version: "2020-11-02",
864
+ serviceTarget: "Route53RecoveryControlConfig",
865
+ },
866
+ serviceId: config?.serviceId ?? "Route53 Recovery Control Config",
867
+ sha256: config?.sha256 ?? Sha256,
868
+ urlParser: config?.urlParser ?? parseUrl,
869
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
870
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
871
+ };
872
+ };
873
+
874
+ const getRuntimeConfig = (config) => {
875
+ emitWarningIfUnsupportedVersion(process.version);
876
+ const defaultsMode = resolveDefaultsModeConfig(config);
877
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
878
+ const clientSharedValues = getRuntimeConfig$1(config);
879
+ emitWarningIfUnsupportedVersion$1(process.version);
880
+ const loaderConfig = {
881
+ profile: config?.profile,
882
+ logger: clientSharedValues.logger,
883
+ };
884
+ return {
885
+ ...clientSharedValues,
886
+ ...config,
887
+ runtime: "node",
888
+ defaultsMode,
889
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
890
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
891
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
892
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
893
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
894
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
895
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
896
+ retryMode: config?.retryMode ??
897
+ loadConfig({
898
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
899
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
900
+ }, config),
901
+ streamCollector: config?.streamCollector ?? streamCollector,
902
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
903
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
904
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
905
+ };
906
+ };
907
+
34
908
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
909
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
910
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -716,36 +1590,140 @@ const RuleType = {
716
1590
  OR: "OR",
717
1591
  };
718
1592
 
1593
+ exports.AccessDeniedException = AccessDeniedException;
1594
+ exports.AccessDeniedException$ = AccessDeniedException$;
1595
+ exports.AssertionRule$ = AssertionRule$;
1596
+ exports.AssertionRuleUpdate$ = AssertionRuleUpdate$;
1597
+ exports.Cluster$ = Cluster$;
1598
+ exports.ClusterEndpoint$ = ClusterEndpoint$;
1599
+ exports.ConflictException = ConflictException;
1600
+ exports.ConflictException$ = ConflictException$;
1601
+ exports.ControlPanel$ = ControlPanel$;
1602
+ exports.CreateCluster$ = CreateCluster$;
719
1603
  exports.CreateClusterCommand = CreateClusterCommand;
1604
+ exports.CreateClusterRequest$ = CreateClusterRequest$;
1605
+ exports.CreateClusterResponse$ = CreateClusterResponse$;
1606
+ exports.CreateControlPanel$ = CreateControlPanel$;
720
1607
  exports.CreateControlPanelCommand = CreateControlPanelCommand;
1608
+ exports.CreateControlPanelRequest$ = CreateControlPanelRequest$;
1609
+ exports.CreateControlPanelResponse$ = CreateControlPanelResponse$;
1610
+ exports.CreateRoutingControl$ = CreateRoutingControl$;
721
1611
  exports.CreateRoutingControlCommand = CreateRoutingControlCommand;
1612
+ exports.CreateRoutingControlRequest$ = CreateRoutingControlRequest$;
1613
+ exports.CreateRoutingControlResponse$ = CreateRoutingControlResponse$;
1614
+ exports.CreateSafetyRule$ = CreateSafetyRule$;
722
1615
  exports.CreateSafetyRuleCommand = CreateSafetyRuleCommand;
1616
+ exports.CreateSafetyRuleRequest$ = CreateSafetyRuleRequest$;
1617
+ exports.CreateSafetyRuleResponse$ = CreateSafetyRuleResponse$;
1618
+ exports.DeleteCluster$ = DeleteCluster$;
723
1619
  exports.DeleteClusterCommand = DeleteClusterCommand;
1620
+ exports.DeleteClusterRequest$ = DeleteClusterRequest$;
1621
+ exports.DeleteClusterResponse$ = DeleteClusterResponse$;
1622
+ exports.DeleteControlPanel$ = DeleteControlPanel$;
724
1623
  exports.DeleteControlPanelCommand = DeleteControlPanelCommand;
1624
+ exports.DeleteControlPanelRequest$ = DeleteControlPanelRequest$;
1625
+ exports.DeleteControlPanelResponse$ = DeleteControlPanelResponse$;
1626
+ exports.DeleteRoutingControl$ = DeleteRoutingControl$;
725
1627
  exports.DeleteRoutingControlCommand = DeleteRoutingControlCommand;
1628
+ exports.DeleteRoutingControlRequest$ = DeleteRoutingControlRequest$;
1629
+ exports.DeleteRoutingControlResponse$ = DeleteRoutingControlResponse$;
1630
+ exports.DeleteSafetyRule$ = DeleteSafetyRule$;
726
1631
  exports.DeleteSafetyRuleCommand = DeleteSafetyRuleCommand;
1632
+ exports.DeleteSafetyRuleRequest$ = DeleteSafetyRuleRequest$;
1633
+ exports.DeleteSafetyRuleResponse$ = DeleteSafetyRuleResponse$;
1634
+ exports.DescribeCluster$ = DescribeCluster$;
727
1635
  exports.DescribeClusterCommand = DescribeClusterCommand;
1636
+ exports.DescribeClusterRequest$ = DescribeClusterRequest$;
1637
+ exports.DescribeClusterResponse$ = DescribeClusterResponse$;
1638
+ exports.DescribeControlPanel$ = DescribeControlPanel$;
728
1639
  exports.DescribeControlPanelCommand = DescribeControlPanelCommand;
1640
+ exports.DescribeControlPanelRequest$ = DescribeControlPanelRequest$;
1641
+ exports.DescribeControlPanelResponse$ = DescribeControlPanelResponse$;
1642
+ exports.DescribeRoutingControl$ = DescribeRoutingControl$;
729
1643
  exports.DescribeRoutingControlCommand = DescribeRoutingControlCommand;
1644
+ exports.DescribeRoutingControlRequest$ = DescribeRoutingControlRequest$;
1645
+ exports.DescribeRoutingControlResponse$ = DescribeRoutingControlResponse$;
1646
+ exports.DescribeSafetyRule$ = DescribeSafetyRule$;
730
1647
  exports.DescribeSafetyRuleCommand = DescribeSafetyRuleCommand;
1648
+ exports.DescribeSafetyRuleRequest$ = DescribeSafetyRuleRequest$;
1649
+ exports.DescribeSafetyRuleResponse$ = DescribeSafetyRuleResponse$;
1650
+ exports.GatingRule$ = GatingRule$;
1651
+ exports.GatingRuleUpdate$ = GatingRuleUpdate$;
1652
+ exports.GetResourcePolicy$ = GetResourcePolicy$;
731
1653
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
1654
+ exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
1655
+ exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
1656
+ exports.InternalServerException = InternalServerException;
1657
+ exports.InternalServerException$ = InternalServerException$;
1658
+ exports.ListAssociatedRoute53HealthChecks$ = ListAssociatedRoute53HealthChecks$;
732
1659
  exports.ListAssociatedRoute53HealthChecksCommand = ListAssociatedRoute53HealthChecksCommand;
1660
+ exports.ListAssociatedRoute53HealthChecksRequest$ = ListAssociatedRoute53HealthChecksRequest$;
1661
+ exports.ListAssociatedRoute53HealthChecksResponse$ = ListAssociatedRoute53HealthChecksResponse$;
1662
+ exports.ListClusters$ = ListClusters$;
733
1663
  exports.ListClustersCommand = ListClustersCommand;
1664
+ exports.ListClustersRequest$ = ListClustersRequest$;
1665
+ exports.ListClustersResponse$ = ListClustersResponse$;
1666
+ exports.ListControlPanels$ = ListControlPanels$;
734
1667
  exports.ListControlPanelsCommand = ListControlPanelsCommand;
1668
+ exports.ListControlPanelsRequest$ = ListControlPanelsRequest$;
1669
+ exports.ListControlPanelsResponse$ = ListControlPanelsResponse$;
1670
+ exports.ListRoutingControls$ = ListRoutingControls$;
735
1671
  exports.ListRoutingControlsCommand = ListRoutingControlsCommand;
1672
+ exports.ListRoutingControlsRequest$ = ListRoutingControlsRequest$;
1673
+ exports.ListRoutingControlsResponse$ = ListRoutingControlsResponse$;
1674
+ exports.ListSafetyRules$ = ListSafetyRules$;
736
1675
  exports.ListSafetyRulesCommand = ListSafetyRulesCommand;
1676
+ exports.ListSafetyRulesRequest$ = ListSafetyRulesRequest$;
1677
+ exports.ListSafetyRulesResponse$ = ListSafetyRulesResponse$;
1678
+ exports.ListTagsForResource$ = ListTagsForResource$;
737
1679
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1680
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1681
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
738
1682
  exports.NetworkType = NetworkType;
1683
+ exports.NewAssertionRule$ = NewAssertionRule$;
1684
+ exports.NewGatingRule$ = NewGatingRule$;
1685
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1686
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
739
1687
  exports.Route53RecoveryControlConfig = Route53RecoveryControlConfig;
740
1688
  exports.Route53RecoveryControlConfigClient = Route53RecoveryControlConfigClient;
1689
+ exports.Route53RecoveryControlConfigServiceException = Route53RecoveryControlConfigServiceException;
1690
+ exports.Route53RecoveryControlConfigServiceException$ = Route53RecoveryControlConfigServiceException$;
1691
+ exports.RoutingControl$ = RoutingControl$;
1692
+ exports.Rule$ = Rule$;
1693
+ exports.RuleConfig$ = RuleConfig$;
741
1694
  exports.RuleType = RuleType;
1695
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1696
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
742
1697
  exports.Status = Status;
1698
+ exports.TagResource$ = TagResource$;
743
1699
  exports.TagResourceCommand = TagResourceCommand;
1700
+ exports.TagResourceRequest$ = TagResourceRequest$;
1701
+ exports.TagResourceResponse$ = TagResourceResponse$;
1702
+ exports.ThrottlingException = ThrottlingException;
1703
+ exports.ThrottlingException$ = ThrottlingException$;
1704
+ exports.UntagResource$ = UntagResource$;
744
1705
  exports.UntagResourceCommand = UntagResourceCommand;
1706
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1707
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1708
+ exports.UpdateCluster$ = UpdateCluster$;
745
1709
  exports.UpdateClusterCommand = UpdateClusterCommand;
1710
+ exports.UpdateClusterRequest$ = UpdateClusterRequest$;
1711
+ exports.UpdateClusterResponse$ = UpdateClusterResponse$;
1712
+ exports.UpdateControlPanel$ = UpdateControlPanel$;
746
1713
  exports.UpdateControlPanelCommand = UpdateControlPanelCommand;
1714
+ exports.UpdateControlPanelRequest$ = UpdateControlPanelRequest$;
1715
+ exports.UpdateControlPanelResponse$ = UpdateControlPanelResponse$;
1716
+ exports.UpdateRoutingControl$ = UpdateRoutingControl$;
747
1717
  exports.UpdateRoutingControlCommand = UpdateRoutingControlCommand;
1718
+ exports.UpdateRoutingControlRequest$ = UpdateRoutingControlRequest$;
1719
+ exports.UpdateRoutingControlResponse$ = UpdateRoutingControlResponse$;
1720
+ exports.UpdateSafetyRule$ = UpdateSafetyRule$;
748
1721
  exports.UpdateSafetyRuleCommand = UpdateSafetyRuleCommand;
1722
+ exports.UpdateSafetyRuleRequest$ = UpdateSafetyRuleRequest$;
1723
+ exports.UpdateSafetyRuleResponse$ = UpdateSafetyRuleResponse$;
1724
+ exports.ValidationException = ValidationException;
1725
+ exports.ValidationException$ = ValidationException$;
1726
+ exports.errorTypeRegistries = errorTypeRegistries;
749
1727
  exports.paginateListAssociatedRoute53HealthChecks = paginateListAssociatedRoute53HealthChecks;
750
1728
  exports.paginateListClusters = paginateListClusters;
751
1729
  exports.paginateListControlPanels = paginateListControlPanels;