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