@aws-sdk/client-route53-recovery-control-config 3.987.0 → 3.989.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 +44 -826
- package/dist-cjs/models/Route53RecoveryControlConfigServiceException.js +12 -0
- package/dist-cjs/models/errors.js +109 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +608 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +52 -46
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var Route53RecoveryControlConfigServiceException = require('./models/Route53RecoveryControlConfigServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,704 +114,6 @@ class Route53RecoveryControlConfigClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class Route53RecoveryControlConfigServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, Route53RecoveryControlConfigServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccessDeniedException extends Route53RecoveryControlConfigServiceException {
|
|
122
|
-
name = "AccessDeniedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
class ConflictException extends Route53RecoveryControlConfigServiceException {
|
|
136
|
-
name = "ConflictException";
|
|
137
|
-
$fault = "client";
|
|
138
|
-
Message;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "ConflictException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class InternalServerException extends Route53RecoveryControlConfigServiceException {
|
|
150
|
-
name = "InternalServerException";
|
|
151
|
-
$fault = "server";
|
|
152
|
-
Message;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ResourceNotFoundException extends Route53RecoveryControlConfigServiceException {
|
|
164
|
-
name = "ResourceNotFoundException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
Message;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ResourceNotFoundException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
174
|
-
this.Message = opts.Message;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ServiceQuotaExceededException extends Route53RecoveryControlConfigServiceException {
|
|
178
|
-
name = "ServiceQuotaExceededException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
Message;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ServiceQuotaExceededException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
188
|
-
this.Message = opts.Message;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
class ThrottlingException extends Route53RecoveryControlConfigServiceException {
|
|
192
|
-
name = "ThrottlingException";
|
|
193
|
-
$fault = "client";
|
|
194
|
-
Message;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ThrottlingException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
202
|
-
this.Message = opts.Message;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class ValidationException extends Route53RecoveryControlConfigServiceException {
|
|
206
|
-
name = "ValidationException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
Message;
|
|
209
|
-
constructor(opts) {
|
|
210
|
-
super({
|
|
211
|
-
name: "ValidationException",
|
|
212
|
-
$fault: "client",
|
|
213
|
-
...opts,
|
|
214
|
-
});
|
|
215
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
216
|
-
this.Message = opts.Message;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
const _AC = "AssertedControls";
|
|
221
|
-
const _ADE = "AccessDeniedException";
|
|
222
|
-
const _AR = "AssertionRule";
|
|
223
|
-
const _ARU = "AssertionRuleUpdate";
|
|
224
|
-
const _ASSERTION = "ASSERTION";
|
|
225
|
-
const _C = "Cluster";
|
|
226
|
-
const _CA = "ClusterArn";
|
|
227
|
-
const _CC = "CreateCluster";
|
|
228
|
-
const _CCP = "CreateControlPanel";
|
|
229
|
-
const _CCPR = "CreateControlPanelRequest";
|
|
230
|
-
const _CCPRr = "CreateControlPanelResponse";
|
|
231
|
-
const _CCR = "CreateClusterRequest";
|
|
232
|
-
const _CCRr = "CreateClusterResponse";
|
|
233
|
-
const _CE = "ClusterEndpoints";
|
|
234
|
-
const _CEl = "ClusterEndpoint";
|
|
235
|
-
const _CEo = "ConflictException";
|
|
236
|
-
const _CN = "ClusterName";
|
|
237
|
-
const _CP = "ControlPanel";
|
|
238
|
-
const _CPA = "ControlPanelArn";
|
|
239
|
-
const _CPN = "ControlPanelName";
|
|
240
|
-
const _CPo = "ControlPanels";
|
|
241
|
-
const _CRC = "CreateRoutingControl";
|
|
242
|
-
const _CRCR = "CreateRoutingControlRequest";
|
|
243
|
-
const _CRCRr = "CreateRoutingControlResponse";
|
|
244
|
-
const _CSR = "CreateSafetyRule";
|
|
245
|
-
const _CSRR = "CreateSafetyRuleRequest";
|
|
246
|
-
const _CSRRr = "CreateSafetyRuleResponse";
|
|
247
|
-
const _CT = "ClientToken";
|
|
248
|
-
const _Cl = "Clusters";
|
|
249
|
-
const _DC = "DeleteCluster";
|
|
250
|
-
const _DCP = "DefaultControlPanel";
|
|
251
|
-
const _DCPR = "DeleteControlPanelRequest";
|
|
252
|
-
const _DCPRe = "DeleteControlPanelResponse";
|
|
253
|
-
const _DCPRes = "DescribeControlPanelRequest";
|
|
254
|
-
const _DCPResc = "DescribeControlPanelResponse";
|
|
255
|
-
const _DCPe = "DeleteControlPanel";
|
|
256
|
-
const _DCPes = "DescribeControlPanel";
|
|
257
|
-
const _DCR = "DeleteClusterRequest";
|
|
258
|
-
const _DCRe = "DeleteClusterResponse";
|
|
259
|
-
const _DCRes = "DescribeClusterRequest";
|
|
260
|
-
const _DCResc = "DescribeClusterResponse";
|
|
261
|
-
const _DCe = "DescribeCluster";
|
|
262
|
-
const _DRC = "DeleteRoutingControl";
|
|
263
|
-
const _DRCR = "DeleteRoutingControlRequest";
|
|
264
|
-
const _DRCRe = "DeleteRoutingControlResponse";
|
|
265
|
-
const _DRCRes = "DescribeRoutingControlRequest";
|
|
266
|
-
const _DRCResc = "DescribeRoutingControlResponse";
|
|
267
|
-
const _DRCe = "DescribeRoutingControl";
|
|
268
|
-
const _DSR = "DeleteSafetyRule";
|
|
269
|
-
const _DSRR = "DeleteSafetyRuleRequest";
|
|
270
|
-
const _DSRRe = "DeleteSafetyRuleResponse";
|
|
271
|
-
const _DSRRes = "DescribeSafetyRuleRequest";
|
|
272
|
-
const _DSRResc = "DescribeSafetyRuleResponse";
|
|
273
|
-
const _DSRe = "DescribeSafetyRule";
|
|
274
|
-
const _E = "Endpoint";
|
|
275
|
-
const _GATING = "GATING";
|
|
276
|
-
const _GC = "GatingControls";
|
|
277
|
-
const _GR = "GatingRule";
|
|
278
|
-
const _GRP = "GetResourcePolicy";
|
|
279
|
-
const _GRPR = "GetResourcePolicyRequest";
|
|
280
|
-
const _GRPRe = "GetResourcePolicyResponse";
|
|
281
|
-
const _GRU = "GatingRuleUpdate";
|
|
282
|
-
const _HCI = "HealthCheckIds";
|
|
283
|
-
const _I = "Inverted";
|
|
284
|
-
const _ISE = "InternalServerException";
|
|
285
|
-
const _LARHC = "ListAssociatedRoute53HealthChecks";
|
|
286
|
-
const _LARHCR = "ListAssociatedRoute53HealthChecksRequest";
|
|
287
|
-
const _LARHCRi = "ListAssociatedRoute53HealthChecksResponse";
|
|
288
|
-
const _LC = "ListClusters";
|
|
289
|
-
const _LCP = "ListControlPanels";
|
|
290
|
-
const _LCPR = "ListControlPanelsRequest";
|
|
291
|
-
const _LCPRi = "ListControlPanelsResponse";
|
|
292
|
-
const _LCR = "ListClustersRequest";
|
|
293
|
-
const _LCRi = "ListClustersResponse";
|
|
294
|
-
const _LRC = "ListRoutingControls";
|
|
295
|
-
const _LRCR = "ListRoutingControlsRequest";
|
|
296
|
-
const _LRCRi = "ListRoutingControlsResponse";
|
|
297
|
-
const _LSR = "ListSafetyRules";
|
|
298
|
-
const _LSRR = "ListSafetyRulesRequest";
|
|
299
|
-
const _LSRRi = "ListSafetyRulesResponse";
|
|
300
|
-
const _LTFR = "ListTagsForResource";
|
|
301
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
302
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
303
|
-
const _M = "Message";
|
|
304
|
-
const _MR = "MaxResults";
|
|
305
|
-
const _N = "Name";
|
|
306
|
-
const _NAR = "NewAssertionRule";
|
|
307
|
-
const _NGR = "NewGatingRule";
|
|
308
|
-
const _NT = "NetworkType";
|
|
309
|
-
const _NTe = "NextToken";
|
|
310
|
-
const _O = "Owner";
|
|
311
|
-
const _P = "Policy";
|
|
312
|
-
const _R = "Region";
|
|
313
|
-
const _RA = "ResourceArn";
|
|
314
|
-
const _RC = "RuleConfig";
|
|
315
|
-
const _RCA = "RoutingControlArn";
|
|
316
|
-
const _RCC = "RoutingControlCount";
|
|
317
|
-
const _RCN = "RoutingControlName";
|
|
318
|
-
const _RCo = "RoutingControl";
|
|
319
|
-
const _RCou = "RoutingControls";
|
|
320
|
-
const _RNFE = "ResourceNotFoundException";
|
|
321
|
-
const _Ru = "Rule";
|
|
322
|
-
const _S = "Status";
|
|
323
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
324
|
-
const _SR = "SafetyRules";
|
|
325
|
-
const _SRA = "SafetyRuleArn";
|
|
326
|
-
const _T = "Tags";
|
|
327
|
-
const _TC = "TargetControls";
|
|
328
|
-
const _TE = "ThrottlingException";
|
|
329
|
-
const _TK = "TagKeys";
|
|
330
|
-
const _TR = "TagResource";
|
|
331
|
-
const _TRR = "TagResourceRequest";
|
|
332
|
-
const _TRRa = "TagResourceResponse";
|
|
333
|
-
const _Th = "Threshold";
|
|
334
|
-
const _Ty = "Type";
|
|
335
|
-
const _UC = "UpdateCluster";
|
|
336
|
-
const _UCP = "UpdateControlPanel";
|
|
337
|
-
const _UCPR = "UpdateControlPanelRequest";
|
|
338
|
-
const _UCPRp = "UpdateControlPanelResponse";
|
|
339
|
-
const _UCR = "UpdateClusterRequest";
|
|
340
|
-
const _UCRp = "UpdateClusterResponse";
|
|
341
|
-
const _UR = "UntagResource";
|
|
342
|
-
const _URC = "UpdateRoutingControl";
|
|
343
|
-
const _URCR = "UpdateRoutingControlRequest";
|
|
344
|
-
const _URCRp = "UpdateRoutingControlResponse";
|
|
345
|
-
const _URR = "UntagResourceRequest";
|
|
346
|
-
const _URRn = "UntagResourceResponse";
|
|
347
|
-
const _USR = "UpdateSafetyRule";
|
|
348
|
-
const _USRR = "UpdateSafetyRuleRequest";
|
|
349
|
-
const _USRRp = "UpdateSafetyRuleResponse";
|
|
350
|
-
const _VE = "ValidationException";
|
|
351
|
-
const _WPM = "WaitPeriodMs";
|
|
352
|
-
const _c = "client";
|
|
353
|
-
const _e = "error";
|
|
354
|
-
const _h = "http";
|
|
355
|
-
const _hE = "httpError";
|
|
356
|
-
const _hQ = "httpQuery";
|
|
357
|
-
const _jN = "jsonName";
|
|
358
|
-
const _lOC = "__listOfCluster";
|
|
359
|
-
const _lOCE = "__listOfClusterEndpoint";
|
|
360
|
-
const _lOCP = "__listOfControlPanel";
|
|
361
|
-
const _lOR = "__listOfRule";
|
|
362
|
-
const _lORC = "__listOfRoutingControl";
|
|
363
|
-
const _m = "message";
|
|
364
|
-
const _s = "server";
|
|
365
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53recoverycontrolconfig";
|
|
366
|
-
const n0 = "com.amazonaws.route53recoverycontrolconfig";
|
|
367
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
368
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
369
|
-
[_M],
|
|
370
|
-
[[0, { [_jN]: _m }]], 1
|
|
371
|
-
];
|
|
372
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
373
|
-
var AssertionRule$ = [3, n0, _AR,
|
|
374
|
-
0,
|
|
375
|
-
[_AC, _CPA, _N, _RC, _SRA, _S, _WPM, _O],
|
|
376
|
-
[64 | 0, 0, 0, () => RuleConfig$, 0, 0, 1, 0], 7
|
|
377
|
-
];
|
|
378
|
-
var AssertionRuleUpdate$ = [3, n0, _ARU,
|
|
379
|
-
0,
|
|
380
|
-
[_N, _SRA, _WPM],
|
|
381
|
-
[0, 0, 1], 3
|
|
382
|
-
];
|
|
383
|
-
var Cluster$ = [3, n0, _C,
|
|
384
|
-
0,
|
|
385
|
-
[_CA, _CE, _N, _S, _O, _NT],
|
|
386
|
-
[0, () => __listOfClusterEndpoint, 0, 0, 0, 0]
|
|
387
|
-
];
|
|
388
|
-
var ClusterEndpoint$ = [3, n0, _CEl,
|
|
389
|
-
0,
|
|
390
|
-
[_E, _R],
|
|
391
|
-
[0, 0]
|
|
392
|
-
];
|
|
393
|
-
var ConflictException$ = [-3, n0, _CEo,
|
|
394
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
395
|
-
[_M],
|
|
396
|
-
[[0, { [_jN]: _m }]], 1
|
|
397
|
-
];
|
|
398
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
399
|
-
var ControlPanel$ = [3, n0, _CP,
|
|
400
|
-
0,
|
|
401
|
-
[_CA, _CPA, _DCP, _N, _RCC, _S, _O],
|
|
402
|
-
[0, 0, 2, 0, 1, 0, 0]
|
|
403
|
-
];
|
|
404
|
-
var CreateClusterRequest$ = [3, n0, _CCR,
|
|
405
|
-
0,
|
|
406
|
-
[_CN, _CT, _T, _NT],
|
|
407
|
-
[0, [0, 4], 128 | 0, 0], 1
|
|
408
|
-
];
|
|
409
|
-
var CreateClusterResponse$ = [3, n0, _CCRr,
|
|
410
|
-
0,
|
|
411
|
-
[_C],
|
|
412
|
-
[() => Cluster$]
|
|
413
|
-
];
|
|
414
|
-
var CreateControlPanelRequest$ = [3, n0, _CCPR,
|
|
415
|
-
0,
|
|
416
|
-
[_CA, _CPN, _CT, _T],
|
|
417
|
-
[0, 0, [0, 4], 128 | 0], 2
|
|
418
|
-
];
|
|
419
|
-
var CreateControlPanelResponse$ = [3, n0, _CCPRr,
|
|
420
|
-
0,
|
|
421
|
-
[_CP],
|
|
422
|
-
[() => ControlPanel$]
|
|
423
|
-
];
|
|
424
|
-
var CreateRoutingControlRequest$ = [3, n0, _CRCR,
|
|
425
|
-
0,
|
|
426
|
-
[_CA, _RCN, _CT, _CPA],
|
|
427
|
-
[0, 0, [0, 4], 0], 2
|
|
428
|
-
];
|
|
429
|
-
var CreateRoutingControlResponse$ = [3, n0, _CRCRr,
|
|
430
|
-
0,
|
|
431
|
-
[_RCo],
|
|
432
|
-
[() => RoutingControl$]
|
|
433
|
-
];
|
|
434
|
-
var CreateSafetyRuleRequest$ = [3, n0, _CSRR,
|
|
435
|
-
0,
|
|
436
|
-
[_AR, _CT, _GR, _T],
|
|
437
|
-
[() => NewAssertionRule$, [0, 4], () => NewGatingRule$, 128 | 0]
|
|
438
|
-
];
|
|
439
|
-
var CreateSafetyRuleResponse$ = [3, n0, _CSRRr,
|
|
440
|
-
0,
|
|
441
|
-
[_AR, _GR],
|
|
442
|
-
[() => AssertionRule$, () => GatingRule$]
|
|
443
|
-
];
|
|
444
|
-
var DeleteClusterRequest$ = [3, n0, _DCR,
|
|
445
|
-
0,
|
|
446
|
-
[_CA],
|
|
447
|
-
[[0, 1]], 1
|
|
448
|
-
];
|
|
449
|
-
var DeleteClusterResponse$ = [3, n0, _DCRe,
|
|
450
|
-
0,
|
|
451
|
-
[],
|
|
452
|
-
[]
|
|
453
|
-
];
|
|
454
|
-
var DeleteControlPanelRequest$ = [3, n0, _DCPR,
|
|
455
|
-
0,
|
|
456
|
-
[_CPA],
|
|
457
|
-
[[0, 1]], 1
|
|
458
|
-
];
|
|
459
|
-
var DeleteControlPanelResponse$ = [3, n0, _DCPRe,
|
|
460
|
-
0,
|
|
461
|
-
[],
|
|
462
|
-
[]
|
|
463
|
-
];
|
|
464
|
-
var DeleteRoutingControlRequest$ = [3, n0, _DRCR,
|
|
465
|
-
0,
|
|
466
|
-
[_RCA],
|
|
467
|
-
[[0, 1]], 1
|
|
468
|
-
];
|
|
469
|
-
var DeleteRoutingControlResponse$ = [3, n0, _DRCRe,
|
|
470
|
-
0,
|
|
471
|
-
[],
|
|
472
|
-
[]
|
|
473
|
-
];
|
|
474
|
-
var DeleteSafetyRuleRequest$ = [3, n0, _DSRR,
|
|
475
|
-
0,
|
|
476
|
-
[_SRA],
|
|
477
|
-
[[0, 1]], 1
|
|
478
|
-
];
|
|
479
|
-
var DeleteSafetyRuleResponse$ = [3, n0, _DSRRe,
|
|
480
|
-
0,
|
|
481
|
-
[],
|
|
482
|
-
[]
|
|
483
|
-
];
|
|
484
|
-
var DescribeClusterRequest$ = [3, n0, _DCRes,
|
|
485
|
-
0,
|
|
486
|
-
[_CA],
|
|
487
|
-
[[0, 1]], 1
|
|
488
|
-
];
|
|
489
|
-
var DescribeClusterResponse$ = [3, n0, _DCResc,
|
|
490
|
-
0,
|
|
491
|
-
[_C],
|
|
492
|
-
[() => Cluster$]
|
|
493
|
-
];
|
|
494
|
-
var DescribeControlPanelRequest$ = [3, n0, _DCPRes,
|
|
495
|
-
0,
|
|
496
|
-
[_CPA],
|
|
497
|
-
[[0, 1]], 1
|
|
498
|
-
];
|
|
499
|
-
var DescribeControlPanelResponse$ = [3, n0, _DCPResc,
|
|
500
|
-
0,
|
|
501
|
-
[_CP],
|
|
502
|
-
[() => ControlPanel$]
|
|
503
|
-
];
|
|
504
|
-
var DescribeRoutingControlRequest$ = [3, n0, _DRCRes,
|
|
505
|
-
0,
|
|
506
|
-
[_RCA],
|
|
507
|
-
[[0, 1]], 1
|
|
508
|
-
];
|
|
509
|
-
var DescribeRoutingControlResponse$ = [3, n0, _DRCResc,
|
|
510
|
-
0,
|
|
511
|
-
[_RCo],
|
|
512
|
-
[() => RoutingControl$]
|
|
513
|
-
];
|
|
514
|
-
var DescribeSafetyRuleRequest$ = [3, n0, _DSRRes,
|
|
515
|
-
0,
|
|
516
|
-
[_SRA],
|
|
517
|
-
[[0, 1]], 1
|
|
518
|
-
];
|
|
519
|
-
var DescribeSafetyRuleResponse$ = [3, n0, _DSRResc,
|
|
520
|
-
0,
|
|
521
|
-
[_AR, _GR],
|
|
522
|
-
[() => AssertionRule$, () => GatingRule$]
|
|
523
|
-
];
|
|
524
|
-
var GatingRule$ = [3, n0, _GR,
|
|
525
|
-
0,
|
|
526
|
-
[_CPA, _GC, _N, _RC, _SRA, _S, _TC, _WPM, _O],
|
|
527
|
-
[0, 64 | 0, 0, () => RuleConfig$, 0, 0, 64 | 0, 1, 0], 8
|
|
528
|
-
];
|
|
529
|
-
var GatingRuleUpdate$ = [3, n0, _GRU,
|
|
530
|
-
0,
|
|
531
|
-
[_N, _SRA, _WPM],
|
|
532
|
-
[0, 0, 1], 3
|
|
533
|
-
];
|
|
534
|
-
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
535
|
-
0,
|
|
536
|
-
[_RA],
|
|
537
|
-
[[0, 1]], 1
|
|
538
|
-
];
|
|
539
|
-
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
540
|
-
0,
|
|
541
|
-
[_P],
|
|
542
|
-
[0]
|
|
543
|
-
];
|
|
544
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
545
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
546
|
-
[_M],
|
|
547
|
-
[[0, { [_jN]: _m }]], 1
|
|
548
|
-
];
|
|
549
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
550
|
-
var ListAssociatedRoute53HealthChecksRequest$ = [3, n0, _LARHCR,
|
|
551
|
-
0,
|
|
552
|
-
[_RCA, _MR, _NTe],
|
|
553
|
-
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]], 1
|
|
554
|
-
];
|
|
555
|
-
var ListAssociatedRoute53HealthChecksResponse$ = [3, n0, _LARHCRi,
|
|
556
|
-
0,
|
|
557
|
-
[_HCI, _NTe],
|
|
558
|
-
[64 | 0, 0]
|
|
559
|
-
];
|
|
560
|
-
var ListClustersRequest$ = [3, n0, _LCR,
|
|
561
|
-
0,
|
|
562
|
-
[_MR, _NTe],
|
|
563
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]]
|
|
564
|
-
];
|
|
565
|
-
var ListClustersResponse$ = [3, n0, _LCRi,
|
|
566
|
-
0,
|
|
567
|
-
[_Cl, _NTe],
|
|
568
|
-
[() => __listOfCluster, 0]
|
|
569
|
-
];
|
|
570
|
-
var ListControlPanelsRequest$ = [3, n0, _LCPR,
|
|
571
|
-
0,
|
|
572
|
-
[_CA, _MR, _NTe],
|
|
573
|
-
[[0, { [_hQ]: _CA }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]]
|
|
574
|
-
];
|
|
575
|
-
var ListControlPanelsResponse$ = [3, n0, _LCPRi,
|
|
576
|
-
0,
|
|
577
|
-
[_CPo, _NTe],
|
|
578
|
-
[() => __listOfControlPanel, 0]
|
|
579
|
-
];
|
|
580
|
-
var ListRoutingControlsRequest$ = [3, n0, _LRCR,
|
|
581
|
-
0,
|
|
582
|
-
[_CPA, _MR, _NTe],
|
|
583
|
-
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]], 1
|
|
584
|
-
];
|
|
585
|
-
var ListRoutingControlsResponse$ = [3, n0, _LRCRi,
|
|
586
|
-
0,
|
|
587
|
-
[_NTe, _RCou],
|
|
588
|
-
[0, () => __listOfRoutingControl]
|
|
589
|
-
];
|
|
590
|
-
var ListSafetyRulesRequest$ = [3, n0, _LSRR,
|
|
591
|
-
0,
|
|
592
|
-
[_CPA, _MR, _NTe],
|
|
593
|
-
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NTe }]], 1
|
|
594
|
-
];
|
|
595
|
-
var ListSafetyRulesResponse$ = [3, n0, _LSRRi,
|
|
596
|
-
0,
|
|
597
|
-
[_NTe, _SR],
|
|
598
|
-
[0, () => __listOfRule]
|
|
599
|
-
];
|
|
600
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
601
|
-
0,
|
|
602
|
-
[_RA],
|
|
603
|
-
[[0, 1]], 1
|
|
604
|
-
];
|
|
605
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
606
|
-
0,
|
|
607
|
-
[_T],
|
|
608
|
-
[128 | 0]
|
|
609
|
-
];
|
|
610
|
-
var NewAssertionRule$ = [3, n0, _NAR,
|
|
611
|
-
0,
|
|
612
|
-
[_AC, _CPA, _N, _RC, _WPM],
|
|
613
|
-
[64 | 0, 0, 0, () => RuleConfig$, 1], 5
|
|
614
|
-
];
|
|
615
|
-
var NewGatingRule$ = [3, n0, _NGR,
|
|
616
|
-
0,
|
|
617
|
-
[_CPA, _GC, _N, _RC, _TC, _WPM],
|
|
618
|
-
[0, 64 | 0, 0, () => RuleConfig$, 64 | 0, 1], 6
|
|
619
|
-
];
|
|
620
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
621
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
622
|
-
[_M],
|
|
623
|
-
[[0, { [_jN]: _m }]], 1
|
|
624
|
-
];
|
|
625
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
626
|
-
var RoutingControl$ = [3, n0, _RCo,
|
|
627
|
-
0,
|
|
628
|
-
[_CPA, _N, _RCA, _S, _O],
|
|
629
|
-
[0, 0, 0, 0, 0]
|
|
630
|
-
];
|
|
631
|
-
var Rule$ = [3, n0, _Ru,
|
|
632
|
-
0,
|
|
633
|
-
[_ASSERTION, _GATING],
|
|
634
|
-
[() => AssertionRule$, () => GatingRule$]
|
|
635
|
-
];
|
|
636
|
-
var RuleConfig$ = [3, n0, _RC,
|
|
637
|
-
0,
|
|
638
|
-
[_I, _Th, _Ty],
|
|
639
|
-
[2, 1, 0], 3
|
|
640
|
-
];
|
|
641
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
642
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
643
|
-
[_M],
|
|
644
|
-
[[0, { [_jN]: _m }]], 1
|
|
645
|
-
];
|
|
646
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
647
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
648
|
-
0,
|
|
649
|
-
[_RA, _T],
|
|
650
|
-
[[0, 1], 128 | 0], 2
|
|
651
|
-
];
|
|
652
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
653
|
-
0,
|
|
654
|
-
[],
|
|
655
|
-
[]
|
|
656
|
-
];
|
|
657
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
658
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
659
|
-
[_M],
|
|
660
|
-
[[0, { [_jN]: _m }]], 1
|
|
661
|
-
];
|
|
662
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
663
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
664
|
-
0,
|
|
665
|
-
[_RA, _TK],
|
|
666
|
-
[[0, 1], [64 | 0, { [_hQ]: _TK }]], 2
|
|
667
|
-
];
|
|
668
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
669
|
-
0,
|
|
670
|
-
[],
|
|
671
|
-
[]
|
|
672
|
-
];
|
|
673
|
-
var UpdateClusterRequest$ = [3, n0, _UCR,
|
|
674
|
-
0,
|
|
675
|
-
[_CA, _NT],
|
|
676
|
-
[0, 0], 2
|
|
677
|
-
];
|
|
678
|
-
var UpdateClusterResponse$ = [3, n0, _UCRp,
|
|
679
|
-
0,
|
|
680
|
-
[_C],
|
|
681
|
-
[() => Cluster$]
|
|
682
|
-
];
|
|
683
|
-
var UpdateControlPanelRequest$ = [3, n0, _UCPR,
|
|
684
|
-
0,
|
|
685
|
-
[_CPA, _CPN],
|
|
686
|
-
[0, 0], 2
|
|
687
|
-
];
|
|
688
|
-
var UpdateControlPanelResponse$ = [3, n0, _UCPRp,
|
|
689
|
-
0,
|
|
690
|
-
[_CP],
|
|
691
|
-
[() => ControlPanel$]
|
|
692
|
-
];
|
|
693
|
-
var UpdateRoutingControlRequest$ = [3, n0, _URCR,
|
|
694
|
-
0,
|
|
695
|
-
[_RCA, _RCN],
|
|
696
|
-
[0, 0], 2
|
|
697
|
-
];
|
|
698
|
-
var UpdateRoutingControlResponse$ = [3, n0, _URCRp,
|
|
699
|
-
0,
|
|
700
|
-
[_RCo],
|
|
701
|
-
[() => RoutingControl$]
|
|
702
|
-
];
|
|
703
|
-
var UpdateSafetyRuleRequest$ = [3, n0, _USRR,
|
|
704
|
-
0,
|
|
705
|
-
[_ARU, _GRU],
|
|
706
|
-
[() => AssertionRuleUpdate$, () => GatingRuleUpdate$]
|
|
707
|
-
];
|
|
708
|
-
var UpdateSafetyRuleResponse$ = [3, n0, _USRRp,
|
|
709
|
-
0,
|
|
710
|
-
[_AR, _GR],
|
|
711
|
-
[() => AssertionRule$, () => GatingRule$]
|
|
712
|
-
];
|
|
713
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
714
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
715
|
-
[_M],
|
|
716
|
-
[[0, { [_jN]: _m }]], 1
|
|
717
|
-
];
|
|
718
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
719
|
-
var Route53RecoveryControlConfigServiceException$ = [-3, _sm, "Route53RecoveryControlConfigServiceException", 0, [], []];
|
|
720
|
-
schema.TypeRegistry.for(_sm).registerError(Route53RecoveryControlConfigServiceException$, Route53RecoveryControlConfigServiceException);
|
|
721
|
-
var __listOfCluster = [1, n0, _lOC,
|
|
722
|
-
0, () => Cluster$
|
|
723
|
-
];
|
|
724
|
-
var __listOfClusterEndpoint = [1, n0, _lOCE,
|
|
725
|
-
0, () => ClusterEndpoint$
|
|
726
|
-
];
|
|
727
|
-
var __listOfControlPanel = [1, n0, _lOCP,
|
|
728
|
-
0, () => ControlPanel$
|
|
729
|
-
];
|
|
730
|
-
var __listOfRoutingControl = [1, n0, _lORC,
|
|
731
|
-
0, () => RoutingControl$
|
|
732
|
-
];
|
|
733
|
-
var __listOfRule = [1, n0, _lOR,
|
|
734
|
-
0, () => Rule$
|
|
735
|
-
];
|
|
736
|
-
var CreateCluster$ = [9, n0, _CC,
|
|
737
|
-
{ [_h]: ["POST", "/cluster", 200] }, () => CreateClusterRequest$, () => CreateClusterResponse$
|
|
738
|
-
];
|
|
739
|
-
var CreateControlPanel$ = [9, n0, _CCP,
|
|
740
|
-
{ [_h]: ["POST", "/controlpanel", 200] }, () => CreateControlPanelRequest$, () => CreateControlPanelResponse$
|
|
741
|
-
];
|
|
742
|
-
var CreateRoutingControl$ = [9, n0, _CRC,
|
|
743
|
-
{ [_h]: ["POST", "/routingcontrol", 200] }, () => CreateRoutingControlRequest$, () => CreateRoutingControlResponse$
|
|
744
|
-
];
|
|
745
|
-
var CreateSafetyRule$ = [9, n0, _CSR,
|
|
746
|
-
{ [_h]: ["POST", "/safetyrule", 200] }, () => CreateSafetyRuleRequest$, () => CreateSafetyRuleResponse$
|
|
747
|
-
];
|
|
748
|
-
var DeleteCluster$ = [9, n0, _DC,
|
|
749
|
-
{ [_h]: ["DELETE", "/cluster/{ClusterArn}", 200] }, () => DeleteClusterRequest$, () => DeleteClusterResponse$
|
|
750
|
-
];
|
|
751
|
-
var DeleteControlPanel$ = [9, n0, _DCPe,
|
|
752
|
-
{ [_h]: ["DELETE", "/controlpanel/{ControlPanelArn}", 200] }, () => DeleteControlPanelRequest$, () => DeleteControlPanelResponse$
|
|
753
|
-
];
|
|
754
|
-
var DeleteRoutingControl$ = [9, n0, _DRC,
|
|
755
|
-
{ [_h]: ["DELETE", "/routingcontrol/{RoutingControlArn}", 200] }, () => DeleteRoutingControlRequest$, () => DeleteRoutingControlResponse$
|
|
756
|
-
];
|
|
757
|
-
var DeleteSafetyRule$ = [9, n0, _DSR,
|
|
758
|
-
{ [_h]: ["DELETE", "/safetyrule/{SafetyRuleArn}", 200] }, () => DeleteSafetyRuleRequest$, () => DeleteSafetyRuleResponse$
|
|
759
|
-
];
|
|
760
|
-
var DescribeCluster$ = [9, n0, _DCe,
|
|
761
|
-
{ [_h]: ["GET", "/cluster/{ClusterArn}", 200] }, () => DescribeClusterRequest$, () => DescribeClusterResponse$
|
|
762
|
-
];
|
|
763
|
-
var DescribeControlPanel$ = [9, n0, _DCPes,
|
|
764
|
-
{ [_h]: ["GET", "/controlpanel/{ControlPanelArn}", 200] }, () => DescribeControlPanelRequest$, () => DescribeControlPanelResponse$
|
|
765
|
-
];
|
|
766
|
-
var DescribeRoutingControl$ = [9, n0, _DRCe,
|
|
767
|
-
{ [_h]: ["GET", "/routingcontrol/{RoutingControlArn}", 200] }, () => DescribeRoutingControlRequest$, () => DescribeRoutingControlResponse$
|
|
768
|
-
];
|
|
769
|
-
var DescribeSafetyRule$ = [9, n0, _DSRe,
|
|
770
|
-
{ [_h]: ["GET", "/safetyrule/{SafetyRuleArn}", 200] }, () => DescribeSafetyRuleRequest$, () => DescribeSafetyRuleResponse$
|
|
771
|
-
];
|
|
772
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
773
|
-
{ [_h]: ["GET", "/resourcePolicy/{ResourceArn}", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
774
|
-
];
|
|
775
|
-
var ListAssociatedRoute53HealthChecks$ = [9, n0, _LARHC,
|
|
776
|
-
{ [_h]: ["GET", "/routingcontrol/{RoutingControlArn}/associatedRoute53HealthChecks", 200] }, () => ListAssociatedRoute53HealthChecksRequest$, () => ListAssociatedRoute53HealthChecksResponse$
|
|
777
|
-
];
|
|
778
|
-
var ListClusters$ = [9, n0, _LC,
|
|
779
|
-
{ [_h]: ["GET", "/cluster", 200] }, () => ListClustersRequest$, () => ListClustersResponse$
|
|
780
|
-
];
|
|
781
|
-
var ListControlPanels$ = [9, n0, _LCP,
|
|
782
|
-
{ [_h]: ["GET", "/controlpanels", 200] }, () => ListControlPanelsRequest$, () => ListControlPanelsResponse$
|
|
783
|
-
];
|
|
784
|
-
var ListRoutingControls$ = [9, n0, _LRC,
|
|
785
|
-
{ [_h]: ["GET", "/controlpanel/{ControlPanelArn}/routingcontrols", 200] }, () => ListRoutingControlsRequest$, () => ListRoutingControlsResponse$
|
|
786
|
-
];
|
|
787
|
-
var ListSafetyRules$ = [9, n0, _LSR,
|
|
788
|
-
{ [_h]: ["GET", "/controlpanel/{ControlPanelArn}/safetyrules", 200] }, () => ListSafetyRulesRequest$, () => ListSafetyRulesResponse$
|
|
789
|
-
];
|
|
790
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
791
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
792
|
-
];
|
|
793
|
-
var TagResource$ = [9, n0, _TR,
|
|
794
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
795
|
-
];
|
|
796
|
-
var UntagResource$ = [9, n0, _UR,
|
|
797
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
798
|
-
];
|
|
799
|
-
var UpdateCluster$ = [9, n0, _UC,
|
|
800
|
-
{ [_h]: ["PUT", "/cluster", 200] }, () => UpdateClusterRequest$, () => UpdateClusterResponse$
|
|
801
|
-
];
|
|
802
|
-
var UpdateControlPanel$ = [9, n0, _UCP,
|
|
803
|
-
{ [_h]: ["PUT", "/controlpanel", 200] }, () => UpdateControlPanelRequest$, () => UpdateControlPanelResponse$
|
|
804
|
-
];
|
|
805
|
-
var UpdateRoutingControl$ = [9, n0, _URC,
|
|
806
|
-
{ [_h]: ["PUT", "/routingcontrol", 200] }, () => UpdateRoutingControlRequest$, () => UpdateRoutingControlResponse$
|
|
807
|
-
];
|
|
808
|
-
var UpdateSafetyRule$ = [9, n0, _USR,
|
|
809
|
-
{ [_h]: ["PUT", "/safetyrule", 200] }, () => UpdateSafetyRuleRequest$, () => UpdateSafetyRuleResponse$
|
|
810
|
-
];
|
|
811
|
-
|
|
812
117
|
class CreateClusterCommand extends smithyClient.Command
|
|
813
118
|
.classBuilder()
|
|
814
119
|
.ep(commonParams)
|
|
@@ -817,7 +122,7 @@ class CreateClusterCommand extends smithyClient.Command
|
|
|
817
122
|
})
|
|
818
123
|
.s("Route53RecoveryControlConfig", "CreateCluster", {})
|
|
819
124
|
.n("Route53RecoveryControlConfigClient", "CreateClusterCommand")
|
|
820
|
-
.sc(CreateCluster$)
|
|
125
|
+
.sc(schemas_0.CreateCluster$)
|
|
821
126
|
.build() {
|
|
822
127
|
}
|
|
823
128
|
|
|
@@ -829,7 +134,7 @@ class CreateControlPanelCommand extends smithyClient.Command
|
|
|
829
134
|
})
|
|
830
135
|
.s("Route53RecoveryControlConfig", "CreateControlPanel", {})
|
|
831
136
|
.n("Route53RecoveryControlConfigClient", "CreateControlPanelCommand")
|
|
832
|
-
.sc(CreateControlPanel$)
|
|
137
|
+
.sc(schemas_0.CreateControlPanel$)
|
|
833
138
|
.build() {
|
|
834
139
|
}
|
|
835
140
|
|
|
@@ -841,7 +146,7 @@ class CreateRoutingControlCommand extends smithyClient.Command
|
|
|
841
146
|
})
|
|
842
147
|
.s("Route53RecoveryControlConfig", "CreateRoutingControl", {})
|
|
843
148
|
.n("Route53RecoveryControlConfigClient", "CreateRoutingControlCommand")
|
|
844
|
-
.sc(CreateRoutingControl$)
|
|
149
|
+
.sc(schemas_0.CreateRoutingControl$)
|
|
845
150
|
.build() {
|
|
846
151
|
}
|
|
847
152
|
|
|
@@ -853,7 +158,7 @@ class CreateSafetyRuleCommand extends smithyClient.Command
|
|
|
853
158
|
})
|
|
854
159
|
.s("Route53RecoveryControlConfig", "CreateSafetyRule", {})
|
|
855
160
|
.n("Route53RecoveryControlConfigClient", "CreateSafetyRuleCommand")
|
|
856
|
-
.sc(CreateSafetyRule$)
|
|
161
|
+
.sc(schemas_0.CreateSafetyRule$)
|
|
857
162
|
.build() {
|
|
858
163
|
}
|
|
859
164
|
|
|
@@ -865,7 +170,7 @@ class DeleteClusterCommand extends smithyClient.Command
|
|
|
865
170
|
})
|
|
866
171
|
.s("Route53RecoveryControlConfig", "DeleteCluster", {})
|
|
867
172
|
.n("Route53RecoveryControlConfigClient", "DeleteClusterCommand")
|
|
868
|
-
.sc(DeleteCluster$)
|
|
173
|
+
.sc(schemas_0.DeleteCluster$)
|
|
869
174
|
.build() {
|
|
870
175
|
}
|
|
871
176
|
|
|
@@ -877,7 +182,7 @@ class DeleteControlPanelCommand extends smithyClient.Command
|
|
|
877
182
|
})
|
|
878
183
|
.s("Route53RecoveryControlConfig", "DeleteControlPanel", {})
|
|
879
184
|
.n("Route53RecoveryControlConfigClient", "DeleteControlPanelCommand")
|
|
880
|
-
.sc(DeleteControlPanel$)
|
|
185
|
+
.sc(schemas_0.DeleteControlPanel$)
|
|
881
186
|
.build() {
|
|
882
187
|
}
|
|
883
188
|
|
|
@@ -889,7 +194,7 @@ class DeleteRoutingControlCommand extends smithyClient.Command
|
|
|
889
194
|
})
|
|
890
195
|
.s("Route53RecoveryControlConfig", "DeleteRoutingControl", {})
|
|
891
196
|
.n("Route53RecoveryControlConfigClient", "DeleteRoutingControlCommand")
|
|
892
|
-
.sc(DeleteRoutingControl$)
|
|
197
|
+
.sc(schemas_0.DeleteRoutingControl$)
|
|
893
198
|
.build() {
|
|
894
199
|
}
|
|
895
200
|
|
|
@@ -901,7 +206,7 @@ class DeleteSafetyRuleCommand extends smithyClient.Command
|
|
|
901
206
|
})
|
|
902
207
|
.s("Route53RecoveryControlConfig", "DeleteSafetyRule", {})
|
|
903
208
|
.n("Route53RecoveryControlConfigClient", "DeleteSafetyRuleCommand")
|
|
904
|
-
.sc(DeleteSafetyRule$)
|
|
209
|
+
.sc(schemas_0.DeleteSafetyRule$)
|
|
905
210
|
.build() {
|
|
906
211
|
}
|
|
907
212
|
|
|
@@ -913,7 +218,7 @@ class DescribeClusterCommand extends smithyClient.Command
|
|
|
913
218
|
})
|
|
914
219
|
.s("Route53RecoveryControlConfig", "DescribeCluster", {})
|
|
915
220
|
.n("Route53RecoveryControlConfigClient", "DescribeClusterCommand")
|
|
916
|
-
.sc(DescribeCluster$)
|
|
221
|
+
.sc(schemas_0.DescribeCluster$)
|
|
917
222
|
.build() {
|
|
918
223
|
}
|
|
919
224
|
|
|
@@ -925,7 +230,7 @@ class DescribeControlPanelCommand extends smithyClient.Command
|
|
|
925
230
|
})
|
|
926
231
|
.s("Route53RecoveryControlConfig", "DescribeControlPanel", {})
|
|
927
232
|
.n("Route53RecoveryControlConfigClient", "DescribeControlPanelCommand")
|
|
928
|
-
.sc(DescribeControlPanel$)
|
|
233
|
+
.sc(schemas_0.DescribeControlPanel$)
|
|
929
234
|
.build() {
|
|
930
235
|
}
|
|
931
236
|
|
|
@@ -937,7 +242,7 @@ class DescribeRoutingControlCommand extends smithyClient.Command
|
|
|
937
242
|
})
|
|
938
243
|
.s("Route53RecoveryControlConfig", "DescribeRoutingControl", {})
|
|
939
244
|
.n("Route53RecoveryControlConfigClient", "DescribeRoutingControlCommand")
|
|
940
|
-
.sc(DescribeRoutingControl$)
|
|
245
|
+
.sc(schemas_0.DescribeRoutingControl$)
|
|
941
246
|
.build() {
|
|
942
247
|
}
|
|
943
248
|
|
|
@@ -949,7 +254,7 @@ class DescribeSafetyRuleCommand extends smithyClient.Command
|
|
|
949
254
|
})
|
|
950
255
|
.s("Route53RecoveryControlConfig", "DescribeSafetyRule", {})
|
|
951
256
|
.n("Route53RecoveryControlConfigClient", "DescribeSafetyRuleCommand")
|
|
952
|
-
.sc(DescribeSafetyRule$)
|
|
257
|
+
.sc(schemas_0.DescribeSafetyRule$)
|
|
953
258
|
.build() {
|
|
954
259
|
}
|
|
955
260
|
|
|
@@ -961,7 +266,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
961
266
|
})
|
|
962
267
|
.s("Route53RecoveryControlConfig", "GetResourcePolicy", {})
|
|
963
268
|
.n("Route53RecoveryControlConfigClient", "GetResourcePolicyCommand")
|
|
964
|
-
.sc(GetResourcePolicy$)
|
|
269
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
965
270
|
.build() {
|
|
966
271
|
}
|
|
967
272
|
|
|
@@ -973,7 +278,7 @@ class ListAssociatedRoute53HealthChecksCommand extends smithyClient.Command
|
|
|
973
278
|
})
|
|
974
279
|
.s("Route53RecoveryControlConfig", "ListAssociatedRoute53HealthChecks", {})
|
|
975
280
|
.n("Route53RecoveryControlConfigClient", "ListAssociatedRoute53HealthChecksCommand")
|
|
976
|
-
.sc(ListAssociatedRoute53HealthChecks$)
|
|
281
|
+
.sc(schemas_0.ListAssociatedRoute53HealthChecks$)
|
|
977
282
|
.build() {
|
|
978
283
|
}
|
|
979
284
|
|
|
@@ -985,7 +290,7 @@ class ListClustersCommand extends smithyClient.Command
|
|
|
985
290
|
})
|
|
986
291
|
.s("Route53RecoveryControlConfig", "ListClusters", {})
|
|
987
292
|
.n("Route53RecoveryControlConfigClient", "ListClustersCommand")
|
|
988
|
-
.sc(ListClusters$)
|
|
293
|
+
.sc(schemas_0.ListClusters$)
|
|
989
294
|
.build() {
|
|
990
295
|
}
|
|
991
296
|
|
|
@@ -997,7 +302,7 @@ class ListControlPanelsCommand extends smithyClient.Command
|
|
|
997
302
|
})
|
|
998
303
|
.s("Route53RecoveryControlConfig", "ListControlPanels", {})
|
|
999
304
|
.n("Route53RecoveryControlConfigClient", "ListControlPanelsCommand")
|
|
1000
|
-
.sc(ListControlPanels$)
|
|
305
|
+
.sc(schemas_0.ListControlPanels$)
|
|
1001
306
|
.build() {
|
|
1002
307
|
}
|
|
1003
308
|
|
|
@@ -1009,7 +314,7 @@ class ListRoutingControlsCommand extends smithyClient.Command
|
|
|
1009
314
|
})
|
|
1010
315
|
.s("Route53RecoveryControlConfig", "ListRoutingControls", {})
|
|
1011
316
|
.n("Route53RecoveryControlConfigClient", "ListRoutingControlsCommand")
|
|
1012
|
-
.sc(ListRoutingControls$)
|
|
317
|
+
.sc(schemas_0.ListRoutingControls$)
|
|
1013
318
|
.build() {
|
|
1014
319
|
}
|
|
1015
320
|
|
|
@@ -1021,7 +326,7 @@ class ListSafetyRulesCommand extends smithyClient.Command
|
|
|
1021
326
|
})
|
|
1022
327
|
.s("Route53RecoveryControlConfig", "ListSafetyRules", {})
|
|
1023
328
|
.n("Route53RecoveryControlConfigClient", "ListSafetyRulesCommand")
|
|
1024
|
-
.sc(ListSafetyRules$)
|
|
329
|
+
.sc(schemas_0.ListSafetyRules$)
|
|
1025
330
|
.build() {
|
|
1026
331
|
}
|
|
1027
332
|
|
|
@@ -1033,7 +338,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1033
338
|
})
|
|
1034
339
|
.s("Route53RecoveryControlConfig", "ListTagsForResource", {})
|
|
1035
340
|
.n("Route53RecoveryControlConfigClient", "ListTagsForResourceCommand")
|
|
1036
|
-
.sc(ListTagsForResource$)
|
|
341
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1037
342
|
.build() {
|
|
1038
343
|
}
|
|
1039
344
|
|
|
@@ -1045,7 +350,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1045
350
|
})
|
|
1046
351
|
.s("Route53RecoveryControlConfig", "TagResource", {})
|
|
1047
352
|
.n("Route53RecoveryControlConfigClient", "TagResourceCommand")
|
|
1048
|
-
.sc(TagResource$)
|
|
353
|
+
.sc(schemas_0.TagResource$)
|
|
1049
354
|
.build() {
|
|
1050
355
|
}
|
|
1051
356
|
|
|
@@ -1057,7 +362,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1057
362
|
})
|
|
1058
363
|
.s("Route53RecoveryControlConfig", "UntagResource", {})
|
|
1059
364
|
.n("Route53RecoveryControlConfigClient", "UntagResourceCommand")
|
|
1060
|
-
.sc(UntagResource$)
|
|
365
|
+
.sc(schemas_0.UntagResource$)
|
|
1061
366
|
.build() {
|
|
1062
367
|
}
|
|
1063
368
|
|
|
@@ -1069,7 +374,7 @@ class UpdateClusterCommand extends smithyClient.Command
|
|
|
1069
374
|
})
|
|
1070
375
|
.s("Route53RecoveryControlConfig", "UpdateCluster", {})
|
|
1071
376
|
.n("Route53RecoveryControlConfigClient", "UpdateClusterCommand")
|
|
1072
|
-
.sc(UpdateCluster$)
|
|
377
|
+
.sc(schemas_0.UpdateCluster$)
|
|
1073
378
|
.build() {
|
|
1074
379
|
}
|
|
1075
380
|
|
|
@@ -1081,7 +386,7 @@ class UpdateControlPanelCommand extends smithyClient.Command
|
|
|
1081
386
|
})
|
|
1082
387
|
.s("Route53RecoveryControlConfig", "UpdateControlPanel", {})
|
|
1083
388
|
.n("Route53RecoveryControlConfigClient", "UpdateControlPanelCommand")
|
|
1084
|
-
.sc(UpdateControlPanel$)
|
|
389
|
+
.sc(schemas_0.UpdateControlPanel$)
|
|
1085
390
|
.build() {
|
|
1086
391
|
}
|
|
1087
392
|
|
|
@@ -1093,7 +398,7 @@ class UpdateRoutingControlCommand extends smithyClient.Command
|
|
|
1093
398
|
})
|
|
1094
399
|
.s("Route53RecoveryControlConfig", "UpdateRoutingControl", {})
|
|
1095
400
|
.n("Route53RecoveryControlConfigClient", "UpdateRoutingControlCommand")
|
|
1096
|
-
.sc(UpdateRoutingControl$)
|
|
401
|
+
.sc(schemas_0.UpdateRoutingControl$)
|
|
1097
402
|
.build() {
|
|
1098
403
|
}
|
|
1099
404
|
|
|
@@ -1105,7 +410,7 @@ class UpdateSafetyRuleCommand extends smithyClient.Command
|
|
|
1105
410
|
})
|
|
1106
411
|
.s("Route53RecoveryControlConfig", "UpdateSafetyRule", {})
|
|
1107
412
|
.n("Route53RecoveryControlConfigClient", "UpdateSafetyRuleCommand")
|
|
1108
|
-
.sc(UpdateSafetyRule$)
|
|
413
|
+
.sc(schemas_0.UpdateSafetyRule$)
|
|
1109
414
|
.build() {
|
|
1110
415
|
}
|
|
1111
416
|
|
|
@@ -1422,139 +727,40 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1422
727
|
enumerable: true,
|
|
1423
728
|
get: function () { return smithyClient.Client; }
|
|
1424
729
|
});
|
|
1425
|
-
exports
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
exports.Cluster$ = Cluster$;
|
|
1430
|
-
exports.ClusterEndpoint$ = ClusterEndpoint$;
|
|
1431
|
-
exports.ConflictException = ConflictException;
|
|
1432
|
-
exports.ConflictException$ = ConflictException$;
|
|
1433
|
-
exports.ControlPanel$ = ControlPanel$;
|
|
1434
|
-
exports.CreateCluster$ = CreateCluster$;
|
|
730
|
+
Object.defineProperty(exports, "Route53RecoveryControlConfigServiceException", {
|
|
731
|
+
enumerable: true,
|
|
732
|
+
get: function () { return Route53RecoveryControlConfigServiceException.Route53RecoveryControlConfigServiceException; }
|
|
733
|
+
});
|
|
1435
734
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
1436
|
-
exports.CreateClusterRequest$ = CreateClusterRequest$;
|
|
1437
|
-
exports.CreateClusterResponse$ = CreateClusterResponse$;
|
|
1438
|
-
exports.CreateControlPanel$ = CreateControlPanel$;
|
|
1439
735
|
exports.CreateControlPanelCommand = CreateControlPanelCommand;
|
|
1440
|
-
exports.CreateControlPanelRequest$ = CreateControlPanelRequest$;
|
|
1441
|
-
exports.CreateControlPanelResponse$ = CreateControlPanelResponse$;
|
|
1442
|
-
exports.CreateRoutingControl$ = CreateRoutingControl$;
|
|
1443
736
|
exports.CreateRoutingControlCommand = CreateRoutingControlCommand;
|
|
1444
|
-
exports.CreateRoutingControlRequest$ = CreateRoutingControlRequest$;
|
|
1445
|
-
exports.CreateRoutingControlResponse$ = CreateRoutingControlResponse$;
|
|
1446
|
-
exports.CreateSafetyRule$ = CreateSafetyRule$;
|
|
1447
737
|
exports.CreateSafetyRuleCommand = CreateSafetyRuleCommand;
|
|
1448
|
-
exports.CreateSafetyRuleRequest$ = CreateSafetyRuleRequest$;
|
|
1449
|
-
exports.CreateSafetyRuleResponse$ = CreateSafetyRuleResponse$;
|
|
1450
|
-
exports.DeleteCluster$ = DeleteCluster$;
|
|
1451
738
|
exports.DeleteClusterCommand = DeleteClusterCommand;
|
|
1452
|
-
exports.DeleteClusterRequest$ = DeleteClusterRequest$;
|
|
1453
|
-
exports.DeleteClusterResponse$ = DeleteClusterResponse$;
|
|
1454
|
-
exports.DeleteControlPanel$ = DeleteControlPanel$;
|
|
1455
739
|
exports.DeleteControlPanelCommand = DeleteControlPanelCommand;
|
|
1456
|
-
exports.DeleteControlPanelRequest$ = DeleteControlPanelRequest$;
|
|
1457
|
-
exports.DeleteControlPanelResponse$ = DeleteControlPanelResponse$;
|
|
1458
|
-
exports.DeleteRoutingControl$ = DeleteRoutingControl$;
|
|
1459
740
|
exports.DeleteRoutingControlCommand = DeleteRoutingControlCommand;
|
|
1460
|
-
exports.DeleteRoutingControlRequest$ = DeleteRoutingControlRequest$;
|
|
1461
|
-
exports.DeleteRoutingControlResponse$ = DeleteRoutingControlResponse$;
|
|
1462
|
-
exports.DeleteSafetyRule$ = DeleteSafetyRule$;
|
|
1463
741
|
exports.DeleteSafetyRuleCommand = DeleteSafetyRuleCommand;
|
|
1464
|
-
exports.DeleteSafetyRuleRequest$ = DeleteSafetyRuleRequest$;
|
|
1465
|
-
exports.DeleteSafetyRuleResponse$ = DeleteSafetyRuleResponse$;
|
|
1466
|
-
exports.DescribeCluster$ = DescribeCluster$;
|
|
1467
742
|
exports.DescribeClusterCommand = DescribeClusterCommand;
|
|
1468
|
-
exports.DescribeClusterRequest$ = DescribeClusterRequest$;
|
|
1469
|
-
exports.DescribeClusterResponse$ = DescribeClusterResponse$;
|
|
1470
|
-
exports.DescribeControlPanel$ = DescribeControlPanel$;
|
|
1471
743
|
exports.DescribeControlPanelCommand = DescribeControlPanelCommand;
|
|
1472
|
-
exports.DescribeControlPanelRequest$ = DescribeControlPanelRequest$;
|
|
1473
|
-
exports.DescribeControlPanelResponse$ = DescribeControlPanelResponse$;
|
|
1474
|
-
exports.DescribeRoutingControl$ = DescribeRoutingControl$;
|
|
1475
744
|
exports.DescribeRoutingControlCommand = DescribeRoutingControlCommand;
|
|
1476
|
-
exports.DescribeRoutingControlRequest$ = DescribeRoutingControlRequest$;
|
|
1477
|
-
exports.DescribeRoutingControlResponse$ = DescribeRoutingControlResponse$;
|
|
1478
|
-
exports.DescribeSafetyRule$ = DescribeSafetyRule$;
|
|
1479
745
|
exports.DescribeSafetyRuleCommand = DescribeSafetyRuleCommand;
|
|
1480
|
-
exports.DescribeSafetyRuleRequest$ = DescribeSafetyRuleRequest$;
|
|
1481
|
-
exports.DescribeSafetyRuleResponse$ = DescribeSafetyRuleResponse$;
|
|
1482
|
-
exports.GatingRule$ = GatingRule$;
|
|
1483
|
-
exports.GatingRuleUpdate$ = GatingRuleUpdate$;
|
|
1484
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
1485
746
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1486
|
-
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
1487
|
-
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
1488
|
-
exports.InternalServerException = InternalServerException;
|
|
1489
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1490
|
-
exports.ListAssociatedRoute53HealthChecks$ = ListAssociatedRoute53HealthChecks$;
|
|
1491
747
|
exports.ListAssociatedRoute53HealthChecksCommand = ListAssociatedRoute53HealthChecksCommand;
|
|
1492
|
-
exports.ListAssociatedRoute53HealthChecksRequest$ = ListAssociatedRoute53HealthChecksRequest$;
|
|
1493
|
-
exports.ListAssociatedRoute53HealthChecksResponse$ = ListAssociatedRoute53HealthChecksResponse$;
|
|
1494
|
-
exports.ListClusters$ = ListClusters$;
|
|
1495
748
|
exports.ListClustersCommand = ListClustersCommand;
|
|
1496
|
-
exports.ListClustersRequest$ = ListClustersRequest$;
|
|
1497
|
-
exports.ListClustersResponse$ = ListClustersResponse$;
|
|
1498
|
-
exports.ListControlPanels$ = ListControlPanels$;
|
|
1499
749
|
exports.ListControlPanelsCommand = ListControlPanelsCommand;
|
|
1500
|
-
exports.ListControlPanelsRequest$ = ListControlPanelsRequest$;
|
|
1501
|
-
exports.ListControlPanelsResponse$ = ListControlPanelsResponse$;
|
|
1502
|
-
exports.ListRoutingControls$ = ListRoutingControls$;
|
|
1503
750
|
exports.ListRoutingControlsCommand = ListRoutingControlsCommand;
|
|
1504
|
-
exports.ListRoutingControlsRequest$ = ListRoutingControlsRequest$;
|
|
1505
|
-
exports.ListRoutingControlsResponse$ = ListRoutingControlsResponse$;
|
|
1506
|
-
exports.ListSafetyRules$ = ListSafetyRules$;
|
|
1507
751
|
exports.ListSafetyRulesCommand = ListSafetyRulesCommand;
|
|
1508
|
-
exports.ListSafetyRulesRequest$ = ListSafetyRulesRequest$;
|
|
1509
|
-
exports.ListSafetyRulesResponse$ = ListSafetyRulesResponse$;
|
|
1510
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1511
752
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1512
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1513
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1514
753
|
exports.NetworkType = NetworkType;
|
|
1515
|
-
exports.NewAssertionRule$ = NewAssertionRule$;
|
|
1516
|
-
exports.NewGatingRule$ = NewGatingRule$;
|
|
1517
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1518
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1519
754
|
exports.Route53RecoveryControlConfig = Route53RecoveryControlConfig;
|
|
1520
755
|
exports.Route53RecoveryControlConfigClient = Route53RecoveryControlConfigClient;
|
|
1521
|
-
exports.Route53RecoveryControlConfigServiceException = Route53RecoveryControlConfigServiceException;
|
|
1522
|
-
exports.Route53RecoveryControlConfigServiceException$ = Route53RecoveryControlConfigServiceException$;
|
|
1523
|
-
exports.RoutingControl$ = RoutingControl$;
|
|
1524
|
-
exports.Rule$ = Rule$;
|
|
1525
|
-
exports.RuleConfig$ = RuleConfig$;
|
|
1526
756
|
exports.RuleType = RuleType;
|
|
1527
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1528
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1529
757
|
exports.Status = Status;
|
|
1530
|
-
exports.TagResource$ = TagResource$;
|
|
1531
758
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1532
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1533
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1534
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1535
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1536
|
-
exports.UntagResource$ = UntagResource$;
|
|
1537
759
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1538
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1539
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1540
|
-
exports.UpdateCluster$ = UpdateCluster$;
|
|
1541
760
|
exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
1542
|
-
exports.UpdateClusterRequest$ = UpdateClusterRequest$;
|
|
1543
|
-
exports.UpdateClusterResponse$ = UpdateClusterResponse$;
|
|
1544
|
-
exports.UpdateControlPanel$ = UpdateControlPanel$;
|
|
1545
761
|
exports.UpdateControlPanelCommand = UpdateControlPanelCommand;
|
|
1546
|
-
exports.UpdateControlPanelRequest$ = UpdateControlPanelRequest$;
|
|
1547
|
-
exports.UpdateControlPanelResponse$ = UpdateControlPanelResponse$;
|
|
1548
|
-
exports.UpdateRoutingControl$ = UpdateRoutingControl$;
|
|
1549
762
|
exports.UpdateRoutingControlCommand = UpdateRoutingControlCommand;
|
|
1550
|
-
exports.UpdateRoutingControlRequest$ = UpdateRoutingControlRequest$;
|
|
1551
|
-
exports.UpdateRoutingControlResponse$ = UpdateRoutingControlResponse$;
|
|
1552
|
-
exports.UpdateSafetyRule$ = UpdateSafetyRule$;
|
|
1553
763
|
exports.UpdateSafetyRuleCommand = UpdateSafetyRuleCommand;
|
|
1554
|
-
exports.UpdateSafetyRuleRequest$ = UpdateSafetyRuleRequest$;
|
|
1555
|
-
exports.UpdateSafetyRuleResponse$ = UpdateSafetyRuleResponse$;
|
|
1556
|
-
exports.ValidationException = ValidationException;
|
|
1557
|
-
exports.ValidationException$ = ValidationException$;
|
|
1558
764
|
exports.paginateListAssociatedRoute53HealthChecks = paginateListAssociatedRoute53HealthChecks;
|
|
1559
765
|
exports.paginateListClusters = paginateListClusters;
|
|
1560
766
|
exports.paginateListControlPanels = paginateListControlPanels;
|
|
@@ -1572,3 +778,15 @@ exports.waitUntilControlPanelCreated = waitUntilControlPanelCreated;
|
|
|
1572
778
|
exports.waitUntilControlPanelDeleted = waitUntilControlPanelDeleted;
|
|
1573
779
|
exports.waitUntilRoutingControlCreated = waitUntilRoutingControlCreated;
|
|
1574
780
|
exports.waitUntilRoutingControlDeleted = waitUntilRoutingControlDeleted;
|
|
781
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
782
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
783
|
+
enumerable: true,
|
|
784
|
+
get: function () { return schemas_0[k]; }
|
|
785
|
+
});
|
|
786
|
+
});
|
|
787
|
+
Object.keys(errors).forEach(function (k) {
|
|
788
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
789
|
+
enumerable: true,
|
|
790
|
+
get: function () { return errors[k]; }
|
|
791
|
+
});
|
|
792
|
+
});
|