@aws-sdk/client-resiliencehubv2 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 +2304 -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 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/Resiliencehubv2ServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -95
- 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 -1977
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 defaultResiliencehubv2HttpAuthSchemeParametersProvider = 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: "resiliencehub",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultResiliencehubv2HttpAuthSchemeProvider = (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,1999 @@ 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 k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://resiliencehub-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://resiliencehub-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://resiliencehub.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://resiliencehub.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class Resiliencehubv2ServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, Resiliencehubv2ServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends Resiliencehubv2ServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ConflictException extends Resiliencehubv2ServiceException {
|
|
152
|
+
name = "ConflictException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "ConflictException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class InternalServerException extends Resiliencehubv2ServiceException {
|
|
164
|
+
name = "InternalServerException";
|
|
165
|
+
$fault = "server";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "InternalServerException",
|
|
169
|
+
$fault: "server",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class ResourceNotFoundException extends Resiliencehubv2ServiceException {
|
|
176
|
+
name = "ResourceNotFoundException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
resourceId;
|
|
179
|
+
resourceType;
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "ResourceNotFoundException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
|
+
this.resourceId = opts.resourceId;
|
|
188
|
+
this.resourceType = opts.resourceType;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class ServiceQuotaExceededException extends Resiliencehubv2ServiceException {
|
|
192
|
+
name = "ServiceQuotaExceededException";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "ServiceQuotaExceededException",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class ValidationException extends Resiliencehubv2ServiceException {
|
|
204
|
+
name = "ValidationException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
reason;
|
|
207
|
+
fieldList;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "ValidationException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
215
|
+
this.reason = opts.reason;
|
|
216
|
+
this.fieldList = opts.fieldList;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ThrottlingException extends Resiliencehubv2ServiceException {
|
|
220
|
+
name = "ThrottlingException";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
retryAfterSeconds;
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "ThrottlingException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
230
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
const _A = "Achievability";
|
|
235
|
+
const _AC = "AssessmentCost";
|
|
236
|
+
const _ACM = "AssertionCreatedMetadata";
|
|
237
|
+
const _ADE = "AccessDeniedException";
|
|
238
|
+
const _ADM = "AssertionDeletedMetadata";
|
|
239
|
+
const _AL = "AssertionList";
|
|
240
|
+
const _AS = "AssessmentSummary";
|
|
241
|
+
const _ASL = "AssessmentSummaryList";
|
|
242
|
+
const _ASLs = "AssociatedSystemList";
|
|
243
|
+
const _ASs = "AssociatedSystem";
|
|
244
|
+
const _ASv = "AvailabilitySlo";
|
|
245
|
+
const _AUM = "AssertionUpdatedMetadata";
|
|
246
|
+
const _As = "Assertion";
|
|
247
|
+
const _CA = "CreateAssertion";
|
|
248
|
+
const _CAR = "CreateAssertionRequest";
|
|
249
|
+
const _CARL = "CrossAccountRoleList";
|
|
250
|
+
const _CARr = "CreateAssertionResponse";
|
|
251
|
+
const _CARro = "CrossAccountRole";
|
|
252
|
+
const _CE = "ConflictException";
|
|
253
|
+
const _CIS = "CreateInputSource";
|
|
254
|
+
const _CISR = "CreateInputSourceRequest";
|
|
255
|
+
const _CISRr = "CreateInputSourceResponse";
|
|
256
|
+
const _CP = "CreatePolicy";
|
|
257
|
+
const _CPR = "CreatePolicyRequest";
|
|
258
|
+
const _CPRr = "CreatePolicyResponse";
|
|
259
|
+
const _CR = "CreateReport";
|
|
260
|
+
const _CRR = "CreateReportRequest";
|
|
261
|
+
const _CRRr = "CreateReportResponse";
|
|
262
|
+
const _CS = "CreateService";
|
|
263
|
+
const _CSF = "CreateServiceFunction";
|
|
264
|
+
const _CSFR = "CreateServiceFunctionRequest";
|
|
265
|
+
const _CSFRR = "CreateServiceFunctionResourcesRequest";
|
|
266
|
+
const _CSFRRr = "CreateServiceFunctionResourcesResponse";
|
|
267
|
+
const _CSFRr = "CreateServiceFunctionResponse";
|
|
268
|
+
const _CSFRre = "CreateServiceFunctionResources";
|
|
269
|
+
const _CSR = "CreateServiceRequest";
|
|
270
|
+
const _CSRr = "CreateServiceResponse";
|
|
271
|
+
const _CSRre = "CreateSystemRequest";
|
|
272
|
+
const _CSRrea = "CreateSystemResponse";
|
|
273
|
+
const _CSr = "CreateSystem";
|
|
274
|
+
const _CUJ = "CreateUserJourney";
|
|
275
|
+
const _CUJR = "CreateUserJourneyRequest";
|
|
276
|
+
const _CUJRr = "CreateUserJourneyResponse";
|
|
277
|
+
const _DA = "DeleteAssertion";
|
|
278
|
+
const _DAR = "DeleteAssertionRequest";
|
|
279
|
+
const _DARe = "DeleteAssertionResponse";
|
|
280
|
+
const _DDC = "DependencyDiscoveryConfig";
|
|
281
|
+
const _DIS = "DeleteInputSource";
|
|
282
|
+
const _DISR = "DeleteInputSourceRequest";
|
|
283
|
+
const _DISRe = "DeleteInputSourceResponse";
|
|
284
|
+
const _DP = "DeletePolicy";
|
|
285
|
+
const _DPR = "DeletePolicyRequest";
|
|
286
|
+
const _DPRe = "DeletePolicyResponse";
|
|
287
|
+
const _DRS = "DisasterRecoverySource";
|
|
288
|
+
const _DRT = "DataRecoveryTargets";
|
|
289
|
+
const _DS = "DependencySummary";
|
|
290
|
+
const _DSF = "DeleteServiceFunction";
|
|
291
|
+
const _DSFR = "DeleteServiceFunctionRequest";
|
|
292
|
+
const _DSFRR = "DeleteServiceFunctionResourcesRequest";
|
|
293
|
+
const _DSFRRe = "DeleteServiceFunctionResourcesResponse";
|
|
294
|
+
const _DSFRe = "DeleteServiceFunctionResponse";
|
|
295
|
+
const _DSFRel = "DeleteServiceFunctionResources";
|
|
296
|
+
const _DSL = "DependencySummaryList";
|
|
297
|
+
const _DSR = "DeleteServiceRequest";
|
|
298
|
+
const _DSRe = "DeleteServiceResponse";
|
|
299
|
+
const _DSRel = "DeleteSystemRequest";
|
|
300
|
+
const _DSRele = "DeleteSystemResponse";
|
|
301
|
+
const _DSe = "DeleteService";
|
|
302
|
+
const _DSel = "DeleteSystem";
|
|
303
|
+
const _DUJ = "DeleteUserJourney";
|
|
304
|
+
const _DUJR = "DeleteUserJourneyRequest";
|
|
305
|
+
const _DUJRe = "DeleteUserJourneyResponse";
|
|
306
|
+
const _EA = "EventActor";
|
|
307
|
+
const _EPL = "EdgePropertyList";
|
|
308
|
+
const _EPS = "EdgePropertySummary";
|
|
309
|
+
const _EPV = "EffectivePolicyValues";
|
|
310
|
+
const _ES = "EksSource";
|
|
311
|
+
const _F = "Finding";
|
|
312
|
+
const _FL = "FindingsList";
|
|
313
|
+
const _FRO = "FailedReportOutput";
|
|
314
|
+
const _FS = "FindingSummary";
|
|
315
|
+
const _GFMF = "GetFailureModeFinding";
|
|
316
|
+
const _GFMFR = "GetFailureModeFindingRequest";
|
|
317
|
+
const _GFMFRe = "GetFailureModeFindingResponse";
|
|
318
|
+
const _GP = "GetPolicy";
|
|
319
|
+
const _GPR = "GetPolicyRequest";
|
|
320
|
+
const _GPRe = "GetPolicyResponse";
|
|
321
|
+
const _GS = "GetService";
|
|
322
|
+
const _GSR = "GetServiceRequest";
|
|
323
|
+
const _GSRe = "GetServiceResponse";
|
|
324
|
+
const _GSRet = "GetSystemRequest";
|
|
325
|
+
const _GSRety = "GetSystemResponse";
|
|
326
|
+
const _GSe = "GetSystem";
|
|
327
|
+
const _GUJ = "GetUserJourney";
|
|
328
|
+
const _GUJR = "GetUserJourneyRequest";
|
|
329
|
+
const _GUJRe = "GetUserJourneyResponse";
|
|
330
|
+
const _IA = "ImportApp";
|
|
331
|
+
const _IACR = "InfrastructureAndCodeRecommendation";
|
|
332
|
+
const _IACRL = "InfrastructureAndCodeRecommendationsList";
|
|
333
|
+
const _IAR = "ImportAppRequest";
|
|
334
|
+
const _IARm = "ImportAppResponse";
|
|
335
|
+
const _IP = "ImportPolicy";
|
|
336
|
+
const _IPR = "ImportPolicyRequest";
|
|
337
|
+
const _IPRm = "ImportPolicyResponse";
|
|
338
|
+
const _IS = "InputSource";
|
|
339
|
+
const _ISE = "InternalServerException";
|
|
340
|
+
const _ISS = "InputSourceSummary";
|
|
341
|
+
const _ISSL = "InputSourceSummaryList";
|
|
342
|
+
const _LA = "ListAssertions";
|
|
343
|
+
const _LAR = "ListAssertionsRequest";
|
|
344
|
+
const _LARi = "ListAssertionsResponse";
|
|
345
|
+
const _LD = "ListDependencies";
|
|
346
|
+
const _LDR = "ListDependenciesRequest";
|
|
347
|
+
const _LDRi = "ListDependenciesResponse";
|
|
348
|
+
const _LFMA = "ListFailureModeAssessments";
|
|
349
|
+
const _LFMAR = "ListFailureModeAssessmentsRequest";
|
|
350
|
+
const _LFMARi = "ListFailureModeAssessmentsResponse";
|
|
351
|
+
const _LFMF = "ListFailureModeFindings";
|
|
352
|
+
const _LFMFR = "ListFailureModeFindingsRequest";
|
|
353
|
+
const _LFMFRi = "ListFailureModeFindingsResponse";
|
|
354
|
+
const _LIS = "ListInputSources";
|
|
355
|
+
const _LISR = "ListInputSourcesRequest";
|
|
356
|
+
const _LISRi = "ListInputSourcesResponse";
|
|
357
|
+
const _LP = "ListPolicies";
|
|
358
|
+
const _LPR = "ListPoliciesRequest";
|
|
359
|
+
const _LPRi = "ListPoliciesResponse";
|
|
360
|
+
const _LR = "ListReports";
|
|
361
|
+
const _LRR = "ListReportsRequest";
|
|
362
|
+
const _LRRi = "ListReportsResponse";
|
|
363
|
+
const _LRRis = "ListResourcesRequest";
|
|
364
|
+
const _LRRist = "ListResourcesResponse";
|
|
365
|
+
const _LRi = "ListResources";
|
|
366
|
+
const _LS = "ListServices";
|
|
367
|
+
const _LSE = "ListServiceEvents";
|
|
368
|
+
const _LSER = "ListServiceEventsRequest";
|
|
369
|
+
const _LSERi = "ListServiceEventsResponse";
|
|
370
|
+
const _LSERis = "ListSystemEventsRequest";
|
|
371
|
+
const _LSERist = "ListSystemEventsResponse";
|
|
372
|
+
const _LSEi = "ListSystemEvents";
|
|
373
|
+
const _LSF = "ListServiceFunctions";
|
|
374
|
+
const _LSFR = "ListServiceFunctionsRequest";
|
|
375
|
+
const _LSFRi = "ListServiceFunctionsResponse";
|
|
376
|
+
const _LSR = "ListServicesRequest";
|
|
377
|
+
const _LSRi = "ListServicesResponse";
|
|
378
|
+
const _LSRis = "ListSystemsRequest";
|
|
379
|
+
const _LSRist = "ListSystemsResponse";
|
|
380
|
+
const _LSTE = "ListServiceTopologyEdges";
|
|
381
|
+
const _LSTER = "ListServiceTopologyEdgesRequest";
|
|
382
|
+
const _LSTERi = "ListServiceTopologyEdgesResponse";
|
|
383
|
+
const _LSi = "ListSystems";
|
|
384
|
+
const _LTFR = "ListTagsForResource";
|
|
385
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
386
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
387
|
+
const _LUJ = "ListUserJourneys";
|
|
388
|
+
const _LUJR = "ListUserJourneysRequest";
|
|
389
|
+
const _LUJRi = "ListUserJourneysResponse";
|
|
390
|
+
const _MAT = "MultiAzTargets";
|
|
391
|
+
const _MRT = "MultiRegionTargets";
|
|
392
|
+
const _OR = "ObservabilityRecommendation";
|
|
393
|
+
const _ORL = "ObservabilityRecommendationsList";
|
|
394
|
+
const _P = "Policy";
|
|
395
|
+
const _PM = "PermissionModel";
|
|
396
|
+
const _PS = "PolicySummary";
|
|
397
|
+
const _PSL = "PolicySummaryList";
|
|
398
|
+
const _QDP = "QueryDataPoint";
|
|
399
|
+
const _QDPL = "QueryDataPointList";
|
|
400
|
+
const _QR = "QueryRange";
|
|
401
|
+
const _R = "Resource";
|
|
402
|
+
const _RC = "ResourceConfiguration";
|
|
403
|
+
const _RDS = "ResourceDiscoveryStatus";
|
|
404
|
+
const _RGR = "ReportGenerationResult";
|
|
405
|
+
const _RGRL = "ReportGenerationResultList";
|
|
406
|
+
const _RNFE = "ResourceNotFoundException";
|
|
407
|
+
const _RO = "ReportOutput";
|
|
408
|
+
const _ROC = "ReportOutputConfiguration";
|
|
409
|
+
const _ROCL = "ReportOutputConfigurationList";
|
|
410
|
+
const _RT = "ResourceTag";
|
|
411
|
+
const _RTL = "ResourceTagList";
|
|
412
|
+
const _S = "Service";
|
|
413
|
+
const _SAUM = "ServiceAchievabilityUpdatedMetadata";
|
|
414
|
+
const _SC = "StringChange";
|
|
415
|
+
const _SCM = "ServiceCreatedMetadata";
|
|
416
|
+
const _SCMy = "SystemCreatedMetadata";
|
|
417
|
+
const _SDM = "ServiceDeletedMetadata";
|
|
418
|
+
const _SDMy = "SystemDeletedMetadata";
|
|
419
|
+
const _SE = "ServiceEvent";
|
|
420
|
+
const _SED = "ServiceEventDetails";
|
|
421
|
+
const _SEDy = "SystemEventDetails";
|
|
422
|
+
const _SEL = "ServiceEventList";
|
|
423
|
+
const _SELy = "SystemEventList";
|
|
424
|
+
const _SEM = "ServiceEventMetadata";
|
|
425
|
+
const _SEMy = "SystemEventMetadata";
|
|
426
|
+
const _SEy = "SystemEvent";
|
|
427
|
+
const _SF = "ServiceFunction";
|
|
428
|
+
const _SFCM = "ServiceFunctionCreatedMetadata";
|
|
429
|
+
const _SFDM = "ServiceFunctionDeletedMetadata";
|
|
430
|
+
const _SFL = "ServiceFunctionList";
|
|
431
|
+
const _SFMA = "StartFailureModeAssessment";
|
|
432
|
+
const _SFMAR = "StartFailureModeAssessmentRequest";
|
|
433
|
+
const _SFMARt = "StartFailureModeAssessmentResponse";
|
|
434
|
+
const _SFRAM = "ServiceFunctionResourcesAddedMetadata";
|
|
435
|
+
const _SFRRM = "ServiceFunctionResourcesRemovedMetadata";
|
|
436
|
+
const _SFUM = "ServiceFunctionUpdatedMetadata";
|
|
437
|
+
const _SISUM = "ServiceInputSourcesUpdatedMetadata";
|
|
438
|
+
const _SPAM = "ServicePolicyAssociatedMetadata";
|
|
439
|
+
const _SPAMy = "SystemPolicyAssociatedMetadata";
|
|
440
|
+
const _SPDM = "ServicePolicyDisassociatedMetadata";
|
|
441
|
+
const _SPDMy = "SystemPolicyDisassociatedMetadata";
|
|
442
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
443
|
+
const _SR = "ServiceReference";
|
|
444
|
+
const _SRAM = "ServiceResourcesAssociatedMetadata";
|
|
445
|
+
const _SRC = "ServiceReferenceChanges";
|
|
446
|
+
const _SRCe = "ServiceReportConfiguration";
|
|
447
|
+
const _SRDM = "ServiceResourcesDisassociatedMetadata";
|
|
448
|
+
const _SRL = "ServiceReferenceList";
|
|
449
|
+
const _SRLe = "ServiceResourceList";
|
|
450
|
+
const _SRO = "S3ReportOutput";
|
|
451
|
+
const _SROC = "S3ReportOutputConfiguration";
|
|
452
|
+
const _SRe = "ServiceResource";
|
|
453
|
+
const _SS = "ServiceSummary";
|
|
454
|
+
const _SSAM = "ServiceSystemAssociatedMetadata";
|
|
455
|
+
const _SSAMy = "SystemServiceAssociatedMetadata";
|
|
456
|
+
const _SSDM = "ServiceSystemDisassociatedMetadata";
|
|
457
|
+
const _SSDMy = "SystemServiceDisassociatedMetadata";
|
|
458
|
+
const _SSL = "ServiceSummaryList";
|
|
459
|
+
const _SSLy = "SystemSummaryList";
|
|
460
|
+
const _SSl = "SloSource";
|
|
461
|
+
const _SSy = "SystemSummary";
|
|
462
|
+
const _STES = "ServiceTopologyEdgeSummary";
|
|
463
|
+
const _STESL = "ServiceTopologyEdgeSummaryList";
|
|
464
|
+
const _SUJCM = "SystemUserJourneyCreatedMetadata";
|
|
465
|
+
const _SUJDM = "SystemUserJourneyDeletedMetadata";
|
|
466
|
+
const _SUJUM = "SystemUserJourneyUpdatedMetadata";
|
|
467
|
+
const _SWUM = "ServiceWorkflowUpdatedMetadata";
|
|
468
|
+
const _Sy = "System";
|
|
469
|
+
const _TE = "ThrottlingException";
|
|
470
|
+
const _TKL = "TagKeyList";
|
|
471
|
+
const _TM = "TagMap";
|
|
472
|
+
const _TR = "TestingRecommendation";
|
|
473
|
+
const _TRL = "TestingRecommendationsList";
|
|
474
|
+
const _TRR = "TagResourceRequest";
|
|
475
|
+
const _TRRa = "TagResourceResponse";
|
|
476
|
+
const _TRa = "TagResource";
|
|
477
|
+
const _TS = "TargetSource";
|
|
478
|
+
const _UA = "UpdateAssertion";
|
|
479
|
+
const _UAR = "UpdateAssertionRequest";
|
|
480
|
+
const _UARp = "UpdateAssertionResponse";
|
|
481
|
+
const _UD = "UpdateDependency";
|
|
482
|
+
const _UDR = "UpdateDependencyRequest";
|
|
483
|
+
const _UDRp = "UpdateDependencyResponse";
|
|
484
|
+
const _UFMF = "UpdateFailureModeFinding";
|
|
485
|
+
const _UFMFR = "UpdateFailureModeFindingRequest";
|
|
486
|
+
const _UFMFRp = "UpdateFailureModeFindingResponse";
|
|
487
|
+
const _UJ = "UserJourney";
|
|
488
|
+
const _UJC = "UserJourneyChanges";
|
|
489
|
+
const _UJS = "UserJourneySummary";
|
|
490
|
+
const _UJSL = "UserJourneySummaryList";
|
|
491
|
+
const _UP = "UpdatePolicy";
|
|
492
|
+
const _UPR = "UpdatePolicyRequest";
|
|
493
|
+
const _UPRp = "UpdatePolicyResponse";
|
|
494
|
+
const _UR = "UntagResource";
|
|
495
|
+
const _URR = "UntagResourceRequest";
|
|
496
|
+
const _URRn = "UntagResourceResponse";
|
|
497
|
+
const _US = "UpdateService";
|
|
498
|
+
const _USF = "UpdateServiceFunction";
|
|
499
|
+
const _USFR = "UpdateServiceFunctionRequest";
|
|
500
|
+
const _USFRp = "UpdateServiceFunctionResponse";
|
|
501
|
+
const _USR = "UpdateServiceRequest";
|
|
502
|
+
const _USRp = "UpdateServiceResponse";
|
|
503
|
+
const _USRpd = "UpdateSystemRequest";
|
|
504
|
+
const _USRpda = "UpdateSystemResponse";
|
|
505
|
+
const _USp = "UpdateSystem";
|
|
506
|
+
const _UUJ = "UpdateUserJourney";
|
|
507
|
+
const _UUJR = "UpdateUserJourneyRequest";
|
|
508
|
+
const _UUJRp = "UpdateUserJourneyResponse";
|
|
509
|
+
const _VE = "ValidationException";
|
|
510
|
+
const _VEF = "ValidationExceptionField";
|
|
511
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
512
|
+
const _a = "amount";
|
|
513
|
+
const _aAI = "awsAccountId";
|
|
514
|
+
const _aC = "assessmentCost";
|
|
515
|
+
const _aCs = "assertionCreated";
|
|
516
|
+
const _aD = "assertionDeleted";
|
|
517
|
+
const _aI = "assertionId";
|
|
518
|
+
const _aIc = "accountId";
|
|
519
|
+
const _aIs = "assessmentId";
|
|
520
|
+
const _aN = "assertionName";
|
|
521
|
+
const _aR = "awsRegion";
|
|
522
|
+
const _aS = "availabilitySlo";
|
|
523
|
+
const _aSAD = "associatedServicesAtDeletion";
|
|
524
|
+
const _aSC = "associatedServiceCount";
|
|
525
|
+
const _aSs = "assessmentStatus";
|
|
526
|
+
const _aSss = "assessmentStep";
|
|
527
|
+
const _aSsse = "assessmentSummaries";
|
|
528
|
+
const _aSsso = "associatedSystems";
|
|
529
|
+
const _aSssoc = "associatedServices";
|
|
530
|
+
const _aU = "assertionUpdated";
|
|
531
|
+
const _ac = "achievability";
|
|
532
|
+
const _act = "actor";
|
|
533
|
+
const _ad = "added";
|
|
534
|
+
const _as = "assertion";
|
|
535
|
+
const _ass = "assertions";
|
|
536
|
+
const _bAUC = "billableAssessmentUnitCount";
|
|
537
|
+
const _bO = "bucketOwner";
|
|
538
|
+
const _bP = "bucketPath";
|
|
539
|
+
const _c = "client";
|
|
540
|
+
const _cA = "createdAt";
|
|
541
|
+
const _cAR = "crossAccountRoles";
|
|
542
|
+
const _cARA = "crossAccountRoleArn";
|
|
543
|
+
const _cAl = "clusterArn";
|
|
544
|
+
const _cSA = "cfnStackArn";
|
|
545
|
+
const _cT = "clientToken";
|
|
546
|
+
const _ch = "changes";
|
|
547
|
+
const _co = "comment";
|
|
548
|
+
const _cr = "criticality";
|
|
549
|
+
const _cu = "currency";
|
|
550
|
+
const _d = "description";
|
|
551
|
+
const _dD = "dependencyDiscovery";
|
|
552
|
+
const _dFSU = "designFileS3Url";
|
|
553
|
+
const _dI = "dependencyId";
|
|
554
|
+
const _dN = "dependencyName";
|
|
555
|
+
const _dNn = "dnsName";
|
|
556
|
+
const _dP = "dataPoints";
|
|
557
|
+
const _dR = "dataRecovery";
|
|
558
|
+
const _dRA = "disasterRecoveryApproach";
|
|
559
|
+
const _dRI = "destinationResourceIdentifier";
|
|
560
|
+
const _dRTBB = "dataRecoveryTimeBetweenBackups";
|
|
561
|
+
const _dS = "dependencySummaries";
|
|
562
|
+
const _e = "error";
|
|
563
|
+
const _eA = "endedAt";
|
|
564
|
+
const _eAC = "estimatedAssessmentCost";
|
|
565
|
+
const _eC = "errorCode";
|
|
566
|
+
const _eD = "eventDetails";
|
|
567
|
+
const _eI = "externalId";
|
|
568
|
+
const _eIv = "eventId";
|
|
569
|
+
const _eM = "errorMessage";
|
|
570
|
+
const _eMv = "eventMetadata";
|
|
571
|
+
const _ePV = "effectivePolicyValues";
|
|
572
|
+
const _eT = "eventTypes";
|
|
573
|
+
const _eTn = "endTime";
|
|
574
|
+
const _eTv = "eventType";
|
|
575
|
+
const _ek = "eks";
|
|
576
|
+
const _ev = "events";
|
|
577
|
+
const _f = "finding";
|
|
578
|
+
const _fC = "failureCategory";
|
|
579
|
+
const _fI = "findingId";
|
|
580
|
+
const _fL = "fieldList";
|
|
581
|
+
const _fRO = "failedReportOutput";
|
|
582
|
+
const _fS = "findingsSummary";
|
|
583
|
+
const _g = "granularity";
|
|
584
|
+
const _h = "http";
|
|
585
|
+
const _hE = "httpError";
|
|
586
|
+
const _hQ = "httpQuery";
|
|
587
|
+
const _i = "identifier";
|
|
588
|
+
const _iACR = "infrastructureAndCodeRecommendations";
|
|
589
|
+
const _iRN = "invokerRoleName";
|
|
590
|
+
const _iS = "inputSource";
|
|
591
|
+
const _iSI = "inputSourceId";
|
|
592
|
+
const _iSS = "inputSourceSummaries";
|
|
593
|
+
const _jD = "journeyDescription";
|
|
594
|
+
const _k = "key";
|
|
595
|
+
const _kKI = "kmsKeyId";
|
|
596
|
+
const _l = "location";
|
|
597
|
+
const _lDT = "lastDetectedTime";
|
|
598
|
+
const _lRA = "lastRunAt";
|
|
599
|
+
const _la = "label";
|
|
600
|
+
const _m = "message";
|
|
601
|
+
const _mA = "multiAz";
|
|
602
|
+
const _mADA = "multiAzDrApproach";
|
|
603
|
+
const _mADRA = "multiAzDisasterRecoveryApproach";
|
|
604
|
+
const _mAR = "multiAzRto";
|
|
605
|
+
const _mARR = "multiAzRtoRpo";
|
|
606
|
+
const _mARu = "multiAzRpo";
|
|
607
|
+
const _mR = "multiRegion";
|
|
608
|
+
const _mRDA = "multiRegionDrApproach";
|
|
609
|
+
const _mRDRA = "multiRegionDisasterRecoveryApproach";
|
|
610
|
+
const _mRR = "multiRegionRto";
|
|
611
|
+
const _mRRR = "multiRegionRtoRpo";
|
|
612
|
+
const _mRRu = "multiRegionRpo";
|
|
613
|
+
const _mRa = "maxResults";
|
|
614
|
+
const _n = "name";
|
|
615
|
+
const _nT = "nextToken";
|
|
616
|
+
const _nV = "newValue";
|
|
617
|
+
const _na = "namespaces";
|
|
618
|
+
const _oFC = "openFindingsCount";
|
|
619
|
+
const _oI = "ouId";
|
|
620
|
+
const _oIr = "organizationId";
|
|
621
|
+
const _oR = "observabilityRecommendations";
|
|
622
|
+
const _oV = "oldValue";
|
|
623
|
+
const _p = "policy";
|
|
624
|
+
const _pA = "policyArn";
|
|
625
|
+
const _pC = "policyComponent";
|
|
626
|
+
const _pI = "principalId";
|
|
627
|
+
const _pM = "permissionModel";
|
|
628
|
+
const _pN = "policyName";
|
|
629
|
+
const _pS = "policySummaries";
|
|
630
|
+
const _pr = "provider";
|
|
631
|
+
const _pro = "properties";
|
|
632
|
+
const _qC = "queryCount";
|
|
633
|
+
const _qR = "queryRange";
|
|
634
|
+
const _qRET = "queryRangeEndTime";
|
|
635
|
+
const _qRG = "queryRangeGranularity";
|
|
636
|
+
const _qRST = "queryRangeStartTime";
|
|
637
|
+
const _r = "reason";
|
|
638
|
+
const _rA = "resourceArn";
|
|
639
|
+
const _rAS = "retryAfterSeconds";
|
|
640
|
+
const _rAe = "rerunAssessment";
|
|
641
|
+
const _rAes = "resourcesAdded";
|
|
642
|
+
const _rC = "resourceConfiguration";
|
|
643
|
+
const _rCe = "reportConfiguration";
|
|
644
|
+
const _rCes = "resourceCount";
|
|
645
|
+
const _rD = "resourceDiscovery";
|
|
646
|
+
const _rFC = "resolvedFindingsCount";
|
|
647
|
+
const _rGR = "reportGenerationResult";
|
|
648
|
+
const _rGRe = "reportGenerationResults";
|
|
649
|
+
const _rI = "resourceId";
|
|
650
|
+
const _rIM = "rtoInMinutes";
|
|
651
|
+
const _rIMp = "rpoInMinutes";
|
|
652
|
+
const _rIe = "resourceIdentifier";
|
|
653
|
+
const _rO = "reportOutput";
|
|
654
|
+
const _rOe = "reportOutputs";
|
|
655
|
+
const _rR = "resourcesRemoved";
|
|
656
|
+
const _rT = "resourceType";
|
|
657
|
+
const _rTe = "reportType";
|
|
658
|
+
const _rTes = "resourceTags";
|
|
659
|
+
const _rTeso = "resourceTypes";
|
|
660
|
+
const _re = "resources";
|
|
661
|
+
const _rea = "reasoning";
|
|
662
|
+
const _reg = "regions";
|
|
663
|
+
const _rem = "removed";
|
|
664
|
+
const _res = "resource";
|
|
665
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.resiliencehubv2";
|
|
666
|
+
const _sA = "serviceArn";
|
|
667
|
+
const _sAU = "serviceAchievabilityUpdated";
|
|
668
|
+
const _sAt = "startedAt";
|
|
669
|
+
const _sAy = "systemArn";
|
|
670
|
+
const _sC = "suggestedChanges";
|
|
671
|
+
const _sCe = "servicesCount";
|
|
672
|
+
const _sCer = "serviceCreated";
|
|
673
|
+
const _sCy = "systemCreated";
|
|
674
|
+
const _sD = "serviceDeleted";
|
|
675
|
+
const _sDy = "systemDeleted";
|
|
676
|
+
const _sE = "sharingEnabled";
|
|
677
|
+
const _sF = "serviceFunction";
|
|
678
|
+
const _sFC = "serviceFunctionCreated";
|
|
679
|
+
const _sFD = "serviceFunctionDeleted";
|
|
680
|
+
const _sFI = "serviceFunctionId";
|
|
681
|
+
const _sFN = "serviceFunctionName";
|
|
682
|
+
const _sFRA = "serviceFunctionResourcesAdded";
|
|
683
|
+
const _sFRR = "serviceFunctionResourcesRemoved";
|
|
684
|
+
const _sFU = "serviceFunctionUpdated";
|
|
685
|
+
const _sFe = "serviceFunctions";
|
|
686
|
+
const _sI = "serviceId";
|
|
687
|
+
const _sISU = "serviceInputSourcesUpdated";
|
|
688
|
+
const _sIy = "systemId";
|
|
689
|
+
const _sMAR = "skipManuallyAddedResources";
|
|
690
|
+
const _sN = "systemName";
|
|
691
|
+
const _sNe = "serviceName";
|
|
692
|
+
const _sOK = "s3ObjectKey";
|
|
693
|
+
const _sPA = "servicePolicyAssociated";
|
|
694
|
+
const _sPAy = "systemPolicyAssociated";
|
|
695
|
+
const _sPD = "servicePolicyDisassociated";
|
|
696
|
+
const _sPDy = "systemPolicyDisassociated";
|
|
697
|
+
const _sR = "sourceRegions";
|
|
698
|
+
const _sRA = "serviceResourcesAssociated";
|
|
699
|
+
const _sRD = "serviceResourcesDisassociated";
|
|
700
|
+
const _sRI = "sourceResourceIdentifier";
|
|
701
|
+
const _sRO = "s3ReportOutput";
|
|
702
|
+
const _sRe = "serviceResources";
|
|
703
|
+
const _sS = "serviceSummaries";
|
|
704
|
+
const _sSA = "serviceSystemAssociated";
|
|
705
|
+
const _sSAy = "systemServiceAssociated";
|
|
706
|
+
const _sSD = "serviceSystemDisassociated";
|
|
707
|
+
const _sSDy = "systemServiceDisassociated";
|
|
708
|
+
const _sSy = "systemSummaries";
|
|
709
|
+
const _sT = "startTime";
|
|
710
|
+
const _sTES = "serviceTopologyEdgeSummaries";
|
|
711
|
+
const _sUJC = "systemUserJourneyCreated";
|
|
712
|
+
const _sUJD = "systemUserJourneyDeleted";
|
|
713
|
+
const _sUJU = "systemUserJourneyUpdated";
|
|
714
|
+
const _sWU = "serviceWorkflowUpdated";
|
|
715
|
+
const _s_ = "s3";
|
|
716
|
+
const _se = "server";
|
|
717
|
+
const _ser = "service";
|
|
718
|
+
const _sev = "severity";
|
|
719
|
+
const _so = "source";
|
|
720
|
+
const _st = "status";
|
|
721
|
+
const _sy = "system";
|
|
722
|
+
const _t = "text";
|
|
723
|
+
const _tBBIM = "timeBetweenBackupsInMinutes";
|
|
724
|
+
const _tF = "totalFindings";
|
|
725
|
+
const _tK = "tagKeys";
|
|
726
|
+
const _tR = "testingRecommendations";
|
|
727
|
+
const _tSFU = "tfStateFileUrl";
|
|
728
|
+
const _tT = "topologyType";
|
|
729
|
+
const _ta = "target";
|
|
730
|
+
const _tag = "tags";
|
|
731
|
+
const _ti = "timestamp";
|
|
732
|
+
const _tit = "title";
|
|
733
|
+
const _ty = "type";
|
|
734
|
+
const _uA = "updatedAt";
|
|
735
|
+
const _uJ = "userJourney";
|
|
736
|
+
const _uJA = "userJourneysAffected";
|
|
737
|
+
const _uJC = "userJourneysCount";
|
|
738
|
+
const _uJI = "userJourneyIds";
|
|
739
|
+
const _uJIs = "userJourneyId";
|
|
740
|
+
const _uJN = "userJourneyName";
|
|
741
|
+
const _uJS = "userJourneySummaries";
|
|
742
|
+
const _uJs = "userJourneys";
|
|
743
|
+
const _uN = "userName";
|
|
744
|
+
const _v = "value";
|
|
745
|
+
const _vAA = "v1AppArn";
|
|
746
|
+
const _vPA = "v1PolicyArn";
|
|
747
|
+
const _va = "values";
|
|
748
|
+
const n0 = "com.amazonaws.resiliencehubv2";
|
|
749
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
750
|
+
var Resiliencehubv2ServiceException$ = [-3, _s, "Resiliencehubv2ServiceException", 0, [], []];
|
|
751
|
+
_s_registry.registerError(Resiliencehubv2ServiceException$, Resiliencehubv2ServiceException);
|
|
752
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
753
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
754
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
755
|
+
[_m],
|
|
756
|
+
[0], 1
|
|
757
|
+
];
|
|
758
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
759
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
760
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
761
|
+
[_m],
|
|
762
|
+
[0], 1
|
|
763
|
+
];
|
|
764
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
765
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
766
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
767
|
+
[_m],
|
|
768
|
+
[0], 1
|
|
769
|
+
];
|
|
770
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
771
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
772
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
773
|
+
[_m, _rI, _rT],
|
|
774
|
+
[0, 0, 0], 1
|
|
775
|
+
];
|
|
776
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
777
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
778
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
779
|
+
[_m],
|
|
780
|
+
[0], 1
|
|
781
|
+
];
|
|
782
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
783
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
784
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
785
|
+
[_m, _rAS],
|
|
786
|
+
[0, 1], 1
|
|
787
|
+
];
|
|
788
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
789
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
790
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
791
|
+
[_m, _r, _fL],
|
|
792
|
+
[0, 0, () => ValidationExceptionFieldList], 1
|
|
793
|
+
];
|
|
794
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
795
|
+
const errorTypeRegistries = [
|
|
796
|
+
_s_registry,
|
|
797
|
+
n0_registry,
|
|
798
|
+
];
|
|
799
|
+
var Achievability$ = [3, n0, _A,
|
|
800
|
+
0,
|
|
801
|
+
[_aS, _mARR, _mRRR],
|
|
802
|
+
[0, 0, 0]
|
|
803
|
+
];
|
|
804
|
+
var Assertion$ = [3, n0, _As,
|
|
805
|
+
0,
|
|
806
|
+
[_sA, _aI, _t, _so, _cA, _uA],
|
|
807
|
+
[0, 0, 0, 0, 4, 4], 4
|
|
808
|
+
];
|
|
809
|
+
var AssertionCreatedMetadata$ = [3, n0, _ACM,
|
|
810
|
+
0,
|
|
811
|
+
[_aI, _aN],
|
|
812
|
+
[0, 0]
|
|
813
|
+
];
|
|
814
|
+
var AssertionDeletedMetadata$ = [3, n0, _ADM,
|
|
815
|
+
0,
|
|
816
|
+
[_aI, _aN],
|
|
817
|
+
[0, 0]
|
|
818
|
+
];
|
|
819
|
+
var AssertionUpdatedMetadata$ = [3, n0, _AUM,
|
|
820
|
+
0,
|
|
821
|
+
[_aI, _aN],
|
|
822
|
+
[0, 0]
|
|
823
|
+
];
|
|
824
|
+
var AssessmentCost$ = [3, n0, _AC,
|
|
825
|
+
0,
|
|
826
|
+
[_a, _cu],
|
|
827
|
+
[1, 0]
|
|
828
|
+
];
|
|
829
|
+
var AssessmentSummary$ = [3, n0, _AS,
|
|
830
|
+
0,
|
|
831
|
+
[_aIs, _sA, _aSs, _aSss, _tF, _sAt, _eA, _eM, _eC, _aC, _bAUC, _ac],
|
|
832
|
+
[0, 0, 0, 0, 1, 4, 4, 0, 0, () => AssessmentCost$, 1, () => Achievability$], 2
|
|
833
|
+
];
|
|
834
|
+
var AssociatedSystem$ = [3, n0, _ASs,
|
|
835
|
+
0,
|
|
836
|
+
[_sAy, _sN, _uJI],
|
|
837
|
+
[0, 0, 64 | 0], 1
|
|
838
|
+
];
|
|
839
|
+
var AvailabilitySlo$ = [3, n0, _ASv,
|
|
840
|
+
0,
|
|
841
|
+
[_ta],
|
|
842
|
+
[1]
|
|
843
|
+
];
|
|
844
|
+
var CreateAssertionRequest$ = [3, n0, _CAR,
|
|
845
|
+
0,
|
|
846
|
+
[_sA, _t, _cT],
|
|
847
|
+
[0, 0, [0, 4]], 2
|
|
848
|
+
];
|
|
849
|
+
var CreateAssertionResponse$ = [3, n0, _CARr,
|
|
850
|
+
0,
|
|
851
|
+
[_as],
|
|
852
|
+
[() => Assertion$], 1
|
|
853
|
+
];
|
|
854
|
+
var CreateInputSourceRequest$ = [3, n0, _CISR,
|
|
855
|
+
0,
|
|
856
|
+
[_sA, _rC, _cT],
|
|
857
|
+
[0, () => ResourceConfiguration$, [0, 4]], 2
|
|
858
|
+
];
|
|
859
|
+
var CreateInputSourceResponse$ = [3, n0, _CISRr,
|
|
860
|
+
0,
|
|
861
|
+
[_sA, _iSI],
|
|
862
|
+
[0, 0], 2
|
|
863
|
+
];
|
|
864
|
+
var CreatePolicyRequest$ = [3, n0, _CPR,
|
|
865
|
+
0,
|
|
866
|
+
[_n, _d, _aS, _mA, _mR, _dR, _kKI, _tag, _cT],
|
|
867
|
+
[0, 0, () => AvailabilitySlo$, () => MultiAzTargets$, () => MultiRegionTargets$, () => DataRecoveryTargets$, 0, [() => TagMap, 0], [0, 4]], 1
|
|
868
|
+
];
|
|
869
|
+
var CreatePolicyResponse$ = [3, n0, _CPRr,
|
|
870
|
+
0,
|
|
871
|
+
[_p],
|
|
872
|
+
[[() => Policy$, 0]], 1
|
|
873
|
+
];
|
|
874
|
+
var CreateReportRequest$ = [3, n0, _CRR,
|
|
875
|
+
0,
|
|
876
|
+
[_sA, _rTe, _cT],
|
|
877
|
+
[0, 0, [0, 4]], 2
|
|
878
|
+
];
|
|
879
|
+
var CreateReportResponse$ = [3, n0, _CRRr,
|
|
880
|
+
0,
|
|
881
|
+
[_rGR],
|
|
882
|
+
[() => ReportGenerationResult$], 1
|
|
883
|
+
];
|
|
884
|
+
var CreateServiceFunctionRequest$ = [3, n0, _CSFR,
|
|
885
|
+
0,
|
|
886
|
+
[_n, _sA, _cr, _d, _cT],
|
|
887
|
+
[0, 0, 0, 0, [0, 4]], 3
|
|
888
|
+
];
|
|
889
|
+
var CreateServiceFunctionResourcesRequest$ = [3, n0, _CSFRR,
|
|
890
|
+
0,
|
|
891
|
+
[_sA, _sFI, _re],
|
|
892
|
+
[0, 0, 64 | 0], 3
|
|
893
|
+
];
|
|
894
|
+
var CreateServiceFunctionResourcesResponse$ = [3, n0, _CSFRRr,
|
|
895
|
+
0,
|
|
896
|
+
[_sA, _sFI, _re],
|
|
897
|
+
[0, 0, 64 | 0]
|
|
898
|
+
];
|
|
899
|
+
var CreateServiceFunctionResponse$ = [3, n0, _CSFRr,
|
|
900
|
+
0,
|
|
901
|
+
[_sF],
|
|
902
|
+
[() => ServiceFunction$], 1
|
|
903
|
+
];
|
|
904
|
+
var CreateServiceRequest$ = [3, n0, _CSR,
|
|
905
|
+
0,
|
|
906
|
+
[_n, _reg, _pM, _d, _aSsso, _pA, _dD, _rCe, _kKI, _tag, _cT],
|
|
907
|
+
[0, 64 | 0, () => PermissionModel$, 0, () => AssociatedSystemList, 0, 0, () => ServiceReportConfiguration$, 0, [() => TagMap, 0], [0, 4]], 3
|
|
908
|
+
];
|
|
909
|
+
var CreateServiceResponse$ = [3, n0, _CSRr,
|
|
910
|
+
0,
|
|
911
|
+
[_ser],
|
|
912
|
+
[[() => Service$, 0]], 1
|
|
913
|
+
];
|
|
914
|
+
var CreateSystemRequest$ = [3, n0, _CSRre,
|
|
915
|
+
0,
|
|
916
|
+
[_n, _d, _sE, _kKI, _tag, _cT],
|
|
917
|
+
[0, 0, 2, 0, [() => TagMap, 0], [0, 4]], 1
|
|
918
|
+
];
|
|
919
|
+
var CreateSystemResponse$ = [3, n0, _CSRrea,
|
|
920
|
+
0,
|
|
921
|
+
[_sy],
|
|
922
|
+
[[() => System$, 0]], 1
|
|
923
|
+
];
|
|
924
|
+
var CreateUserJourneyRequest$ = [3, n0, _CUJR,
|
|
925
|
+
0,
|
|
926
|
+
[_sAy, _n, _d, _pA, _cT],
|
|
927
|
+
[0, 0, 0, 0, [0, 4]], 2
|
|
928
|
+
];
|
|
929
|
+
var CreateUserJourneyResponse$ = [3, n0, _CUJRr,
|
|
930
|
+
0,
|
|
931
|
+
[_uJ],
|
|
932
|
+
[() => UserJourney$], 1
|
|
933
|
+
];
|
|
934
|
+
var CrossAccountRole$ = [3, n0, _CARro,
|
|
935
|
+
0,
|
|
936
|
+
[_cARA, _eI],
|
|
937
|
+
[0, 0], 1
|
|
938
|
+
];
|
|
939
|
+
var DataRecoveryTargets$ = [3, n0, _DRT,
|
|
940
|
+
0,
|
|
941
|
+
[_tBBIM],
|
|
942
|
+
[1]
|
|
943
|
+
];
|
|
944
|
+
var DeleteAssertionRequest$ = [3, n0, _DAR,
|
|
945
|
+
0,
|
|
946
|
+
[_sA, _aI],
|
|
947
|
+
[0, 0], 2
|
|
948
|
+
];
|
|
949
|
+
var DeleteAssertionResponse$ = [3, n0, _DARe,
|
|
950
|
+
0,
|
|
951
|
+
[_aI],
|
|
952
|
+
[0]
|
|
953
|
+
];
|
|
954
|
+
var DeleteInputSourceRequest$ = [3, n0, _DISR,
|
|
955
|
+
0,
|
|
956
|
+
[_sA, _iSI],
|
|
957
|
+
[0, 0], 2
|
|
958
|
+
];
|
|
959
|
+
var DeleteInputSourceResponse$ = [3, n0, _DISRe,
|
|
960
|
+
0,
|
|
961
|
+
[_sA, _iSI],
|
|
962
|
+
[0, 0], 2
|
|
963
|
+
];
|
|
964
|
+
var DeletePolicyRequest$ = [3, n0, _DPR,
|
|
965
|
+
0,
|
|
966
|
+
[_pA],
|
|
967
|
+
[0], 1
|
|
968
|
+
];
|
|
969
|
+
var DeletePolicyResponse$ = [3, n0, _DPRe,
|
|
970
|
+
0,
|
|
971
|
+
[_pA],
|
|
972
|
+
[0], 1
|
|
973
|
+
];
|
|
974
|
+
var DeleteServiceFunctionRequest$ = [3, n0, _DSFR,
|
|
975
|
+
0,
|
|
976
|
+
[_sA, _sFI],
|
|
977
|
+
[0, 0], 2
|
|
978
|
+
];
|
|
979
|
+
var DeleteServiceFunctionResourcesRequest$ = [3, n0, _DSFRR,
|
|
980
|
+
0,
|
|
981
|
+
[_sA, _sFI, _re],
|
|
982
|
+
[0, 0, 64 | 0], 3
|
|
983
|
+
];
|
|
984
|
+
var DeleteServiceFunctionResourcesResponse$ = [3, n0, _DSFRRe,
|
|
985
|
+
0,
|
|
986
|
+
[_sA, _sFI, _re],
|
|
987
|
+
[0, 0, 64 | 0]
|
|
988
|
+
];
|
|
989
|
+
var DeleteServiceFunctionResponse$ = [3, n0, _DSFRe,
|
|
990
|
+
0,
|
|
991
|
+
[_sFI],
|
|
992
|
+
[0]
|
|
993
|
+
];
|
|
994
|
+
var DeleteServiceRequest$ = [3, n0, _DSR,
|
|
995
|
+
0,
|
|
996
|
+
[_sA],
|
|
997
|
+
[0], 1
|
|
998
|
+
];
|
|
999
|
+
var DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
1000
|
+
0,
|
|
1001
|
+
[_sA],
|
|
1002
|
+
[0], 1
|
|
1003
|
+
];
|
|
1004
|
+
var DeleteSystemRequest$ = [3, n0, _DSRel,
|
|
1005
|
+
0,
|
|
1006
|
+
[_sAy],
|
|
1007
|
+
[0], 1
|
|
1008
|
+
];
|
|
1009
|
+
var DeleteSystemResponse$ = [3, n0, _DSRele,
|
|
1010
|
+
0,
|
|
1011
|
+
[_sAy],
|
|
1012
|
+
[0], 1
|
|
1013
|
+
];
|
|
1014
|
+
var DeleteUserJourneyRequest$ = [3, n0, _DUJR,
|
|
1015
|
+
0,
|
|
1016
|
+
[_sAy, _uJIs],
|
|
1017
|
+
[0, 0], 2
|
|
1018
|
+
];
|
|
1019
|
+
var DeleteUserJourneyResponse$ = [3, n0, _DUJRe,
|
|
1020
|
+
0,
|
|
1021
|
+
[_uJIs],
|
|
1022
|
+
[0], 1
|
|
1023
|
+
];
|
|
1024
|
+
var DependencyDiscoveryConfig$ = [3, n0, _DDC,
|
|
1025
|
+
0,
|
|
1026
|
+
[_st, _uA],
|
|
1027
|
+
[0, 4], 1
|
|
1028
|
+
];
|
|
1029
|
+
var DependencySummary$ = [3, n0, _DS,
|
|
1030
|
+
0,
|
|
1031
|
+
[_dI, _sA, _dN, _dNn, _l, _lDT, _sR, _qR, _cr, _pr, _co],
|
|
1032
|
+
[0, 0, 0, 0, 0, 4, 64 | 0, () => QueryRange$, 0, 0, 0], 9
|
|
1033
|
+
];
|
|
1034
|
+
var DisasterRecoverySource$ = [3, n0, _DRS,
|
|
1035
|
+
0,
|
|
1036
|
+
[_v, _pN, _so],
|
|
1037
|
+
[0, 0, 0]
|
|
1038
|
+
];
|
|
1039
|
+
var EdgePropertySummary$ = [3, n0, _EPS,
|
|
1040
|
+
0,
|
|
1041
|
+
[_tT, _la],
|
|
1042
|
+
[0, 0]
|
|
1043
|
+
];
|
|
1044
|
+
var EffectivePolicyValues$ = [3, n0, _EPV,
|
|
1045
|
+
0,
|
|
1046
|
+
[_aS, _mAR, _mARu, _mADA, _mRR, _mRRu, _mRDA, _dRTBB],
|
|
1047
|
+
[() => SloSource$, () => TargetSource$, () => TargetSource$, () => DisasterRecoverySource$, () => TargetSource$, () => TargetSource$, () => DisasterRecoverySource$, () => TargetSource$]
|
|
1048
|
+
];
|
|
1049
|
+
var EksSource$ = [3, n0, _ES,
|
|
1050
|
+
0,
|
|
1051
|
+
[_cAl, _na],
|
|
1052
|
+
[0, 64 | 0], 2
|
|
1053
|
+
];
|
|
1054
|
+
var EventActor$ = [3, n0, _EA,
|
|
1055
|
+
0,
|
|
1056
|
+
[_ty, _pI, _aIc, _uN],
|
|
1057
|
+
[0, 0, 0, 0], 2
|
|
1058
|
+
];
|
|
1059
|
+
var FailedReportOutput$ = [3, n0, _FRO,
|
|
1060
|
+
0,
|
|
1061
|
+
[_eC, _eM],
|
|
1062
|
+
[0, 0], 1
|
|
1063
|
+
];
|
|
1064
|
+
var Finding$ = [3, n0, _F,
|
|
1065
|
+
0,
|
|
1066
|
+
[_fI, _n, _d, _fC, _st, _rea, _co, _sev, _sFe, _pC, _iACR, _oR, _tR, _uA],
|
|
1067
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, () => InfrastructureAndCodeRecommendationsList, () => ObservabilityRecommendationsList, () => TestingRecommendationsList, 4]
|
|
1068
|
+
];
|
|
1069
|
+
var FindingSummary$ = [3, n0, _FS,
|
|
1070
|
+
0,
|
|
1071
|
+
[_sA, _fI, _n, _d, _fC, _sev, _st, _pC, _uA],
|
|
1072
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4]
|
|
1073
|
+
];
|
|
1074
|
+
var GetFailureModeFindingRequest$ = [3, n0, _GFMFR,
|
|
1075
|
+
0,
|
|
1076
|
+
[_fI, _sA],
|
|
1077
|
+
[[0, { [_hQ]: _fI }], [0, { [_hQ]: _sA }]], 2
|
|
1078
|
+
];
|
|
1079
|
+
var GetFailureModeFindingResponse$ = [3, n0, _GFMFRe,
|
|
1080
|
+
0,
|
|
1081
|
+
[_f],
|
|
1082
|
+
[() => Finding$]
|
|
1083
|
+
];
|
|
1084
|
+
var GetPolicyRequest$ = [3, n0, _GPR,
|
|
1085
|
+
0,
|
|
1086
|
+
[_pA],
|
|
1087
|
+
[[0, { [_hQ]: _pA }]], 1
|
|
1088
|
+
];
|
|
1089
|
+
var GetPolicyResponse$ = [3, n0, _GPRe,
|
|
1090
|
+
0,
|
|
1091
|
+
[_p],
|
|
1092
|
+
[[() => Policy$, 0]], 1
|
|
1093
|
+
];
|
|
1094
|
+
var GetServiceRequest$ = [3, n0, _GSR,
|
|
1095
|
+
0,
|
|
1096
|
+
[_sA],
|
|
1097
|
+
[[0, { [_hQ]: _sA }]], 1
|
|
1098
|
+
];
|
|
1099
|
+
var GetServiceResponse$ = [3, n0, _GSRe,
|
|
1100
|
+
0,
|
|
1101
|
+
[_ser],
|
|
1102
|
+
[[() => Service$, 0]], 1
|
|
1103
|
+
];
|
|
1104
|
+
var GetSystemRequest$ = [3, n0, _GSRet,
|
|
1105
|
+
0,
|
|
1106
|
+
[_sAy],
|
|
1107
|
+
[[0, { [_hQ]: _sAy }]], 1
|
|
1108
|
+
];
|
|
1109
|
+
var GetSystemResponse$ = [3, n0, _GSRety,
|
|
1110
|
+
0,
|
|
1111
|
+
[_sy],
|
|
1112
|
+
[[() => System$, 0]], 1
|
|
1113
|
+
];
|
|
1114
|
+
var GetUserJourneyRequest$ = [3, n0, _GUJR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_sAy, _uJIs],
|
|
1117
|
+
[[0, { [_hQ]: _sAy }], [0, { [_hQ]: _uJIs }]], 2
|
|
1118
|
+
];
|
|
1119
|
+
var GetUserJourneyResponse$ = [3, n0, _GUJRe,
|
|
1120
|
+
0,
|
|
1121
|
+
[_uJ],
|
|
1122
|
+
[() => UserJourney$], 1
|
|
1123
|
+
];
|
|
1124
|
+
var ImportAppRequest$ = [3, n0, _IAR,
|
|
1125
|
+
0,
|
|
1126
|
+
[_vAA, _pA, _kKI, _sMAR, _aSsso, _tag, _cT],
|
|
1127
|
+
[0, 0, 0, 2, () => AssociatedSystemList, [() => TagMap, 0], [0, 4]], 1
|
|
1128
|
+
];
|
|
1129
|
+
var ImportAppResponse$ = [3, n0, _IARm,
|
|
1130
|
+
0,
|
|
1131
|
+
[_ser],
|
|
1132
|
+
[[() => Service$, 0]], 1
|
|
1133
|
+
];
|
|
1134
|
+
var ImportPolicyRequest$ = [3, n0, _IPR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_vPA, _kKI, _aS, _mADRA, _mRDRA, _tag, _cT],
|
|
1137
|
+
[0, 0, () => AvailabilitySlo$, 0, 0, [() => TagMap, 0], [0, 4]], 1
|
|
1138
|
+
];
|
|
1139
|
+
var ImportPolicyResponse$ = [3, n0, _IPRm,
|
|
1140
|
+
0,
|
|
1141
|
+
[_p],
|
|
1142
|
+
[[() => Policy$, 0]], 1
|
|
1143
|
+
];
|
|
1144
|
+
var InfrastructureAndCodeRecommendation$ = [3, n0, _IACR,
|
|
1145
|
+
0,
|
|
1146
|
+
[_sC],
|
|
1147
|
+
[64 | 0]
|
|
1148
|
+
];
|
|
1149
|
+
var InputSource$ = [3, n0, _IS,
|
|
1150
|
+
0,
|
|
1151
|
+
[_i, _ty],
|
|
1152
|
+
[0, 0], 2
|
|
1153
|
+
];
|
|
1154
|
+
var InputSourceSummary$ = [3, n0, _ISS,
|
|
1155
|
+
0,
|
|
1156
|
+
[_iSI, _ty, _rTes, _cSA, _tSFU, _ek, _dFSU, _cA],
|
|
1157
|
+
[0, 0, () => ResourceTagList, 0, 0, () => EksSource$, 0, 4], 1
|
|
1158
|
+
];
|
|
1159
|
+
var ListAssertionsRequest$ = [3, n0, _LAR,
|
|
1160
|
+
0,
|
|
1161
|
+
[_sA, _so, _mRa, _nT],
|
|
1162
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _so }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1163
|
+
];
|
|
1164
|
+
var ListAssertionsResponse$ = [3, n0, _LARi,
|
|
1165
|
+
0,
|
|
1166
|
+
[_ass, _nT],
|
|
1167
|
+
[() => AssertionList, 0], 1
|
|
1168
|
+
];
|
|
1169
|
+
var ListDependenciesRequest$ = [3, n0, _LDR,
|
|
1170
|
+
0,
|
|
1171
|
+
[_sA, _qRST, _qRET, _qRG, _mRa, _nT],
|
|
1172
|
+
[[0, { [_hQ]: _sA }], [4, { [_hQ]: _qRST }], [4, { [_hQ]: _qRET }], [0, { [_hQ]: _qRG }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1173
|
+
];
|
|
1174
|
+
var ListDependenciesResponse$ = [3, n0, _LDRi,
|
|
1175
|
+
0,
|
|
1176
|
+
[_dS, _nT],
|
|
1177
|
+
[() => DependencySummaryList, 0], 1
|
|
1178
|
+
];
|
|
1179
|
+
var ListFailureModeAssessmentsRequest$ = [3, n0, _LFMAR,
|
|
1180
|
+
0,
|
|
1181
|
+
[_sA, _mRa, _nT],
|
|
1182
|
+
[[0, { [_hQ]: _sA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1183
|
+
];
|
|
1184
|
+
var ListFailureModeAssessmentsResponse$ = [3, n0, _LFMARi,
|
|
1185
|
+
0,
|
|
1186
|
+
[_aSsse, _nT],
|
|
1187
|
+
[() => AssessmentSummaryList, 0], 1
|
|
1188
|
+
];
|
|
1189
|
+
var ListFailureModeFindingsRequest$ = [3, n0, _LFMFR,
|
|
1190
|
+
0,
|
|
1191
|
+
[_sA, _sev, _fC, _st, _mRa, _nT],
|
|
1192
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _sev }], [0, { [_hQ]: _fC }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1193
|
+
];
|
|
1194
|
+
var ListFailureModeFindingsResponse$ = [3, n0, _LFMFRi,
|
|
1195
|
+
0,
|
|
1196
|
+
[_fS, _nT],
|
|
1197
|
+
[() => FindingsList, 0], 1
|
|
1198
|
+
];
|
|
1199
|
+
var ListInputSourcesRequest$ = [3, n0, _LISR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_sA, _ty, _mRa, _nT],
|
|
1202
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _ty }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1203
|
+
];
|
|
1204
|
+
var ListInputSourcesResponse$ = [3, n0, _LISRi,
|
|
1205
|
+
0,
|
|
1206
|
+
[_iSS, _nT],
|
|
1207
|
+
[() => InputSourceSummaryList, 0], 1
|
|
1208
|
+
];
|
|
1209
|
+
var ListPoliciesRequest$ = [3, n0, _LPR,
|
|
1210
|
+
0,
|
|
1211
|
+
[_mRa, _nT],
|
|
1212
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1213
|
+
];
|
|
1214
|
+
var ListPoliciesResponse$ = [3, n0, _LPRi,
|
|
1215
|
+
0,
|
|
1216
|
+
[_pS, _nT],
|
|
1217
|
+
[() => PolicySummaryList, 0], 1
|
|
1218
|
+
];
|
|
1219
|
+
var ListReportsRequest$ = [3, n0, _LRR,
|
|
1220
|
+
0,
|
|
1221
|
+
[_sA, _rTe, _mRa, _nT],
|
|
1222
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _rTe }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1223
|
+
];
|
|
1224
|
+
var ListReportsResponse$ = [3, n0, _LRRi,
|
|
1225
|
+
0,
|
|
1226
|
+
[_rGRe, _nT],
|
|
1227
|
+
[() => ReportGenerationResultList, 0], 1
|
|
1228
|
+
];
|
|
1229
|
+
var ListResourcesRequest$ = [3, n0, _LRRis,
|
|
1230
|
+
0,
|
|
1231
|
+
[_sA, _sFI, _aR, _mRa, _nT],
|
|
1232
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _sFI }], [0, { [_hQ]: _aR }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1233
|
+
];
|
|
1234
|
+
var ListResourcesResponse$ = [3, n0, _LRRist,
|
|
1235
|
+
0,
|
|
1236
|
+
[_sFI, _sRe, _nT],
|
|
1237
|
+
[0, () => ServiceResourceList, 0]
|
|
1238
|
+
];
|
|
1239
|
+
var ListServiceEventsRequest$ = [3, n0, _LSER,
|
|
1240
|
+
0,
|
|
1241
|
+
[_sA, _eT, _sT, _eTn, _mRa, _nT],
|
|
1242
|
+
[[0, { [_hQ]: _sA }], [64 | 0, { [_hQ]: _eT }], [4, { [_hQ]: _sT }], [4, { [_hQ]: _eTn }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1243
|
+
];
|
|
1244
|
+
var ListServiceEventsResponse$ = [3, n0, _LSERi,
|
|
1245
|
+
0,
|
|
1246
|
+
[_ev, _nT],
|
|
1247
|
+
[() => ServiceEventList, 0], 1
|
|
1248
|
+
];
|
|
1249
|
+
var ListServiceFunctionsRequest$ = [3, n0, _LSFR,
|
|
1250
|
+
0,
|
|
1251
|
+
[_sA, _mRa, _nT],
|
|
1252
|
+
[[0, { [_hQ]: _sA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1253
|
+
];
|
|
1254
|
+
var ListServiceFunctionsResponse$ = [3, n0, _LSFRi,
|
|
1255
|
+
0,
|
|
1256
|
+
[_sFe, _nT],
|
|
1257
|
+
[() => ServiceFunctionList, 0], 1
|
|
1258
|
+
];
|
|
1259
|
+
var ListServicesRequest$ = [3, n0, _LSR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_sAy, _uJIs, _oI, _aIc, _aSs, _pA, _mRa, _nT],
|
|
1262
|
+
[[0, { [_hQ]: _sAy }], [0, { [_hQ]: _uJIs }], [0, { [_hQ]: _oI }], [0, { [_hQ]: _aIc }], [0, { [_hQ]: _aSs }], [0, { [_hQ]: _pA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1263
|
+
];
|
|
1264
|
+
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
1265
|
+
0,
|
|
1266
|
+
[_sS, _nT],
|
|
1267
|
+
[() => ServiceSummaryList, 0], 1
|
|
1268
|
+
];
|
|
1269
|
+
var ListServiceTopologyEdgesRequest$ = [3, n0, _LSTER,
|
|
1270
|
+
0,
|
|
1271
|
+
[_sA, _mRa, _nT],
|
|
1272
|
+
[[0, { [_hQ]: _sA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1273
|
+
];
|
|
1274
|
+
var ListServiceTopologyEdgesResponse$ = [3, n0, _LSTERi,
|
|
1275
|
+
0,
|
|
1276
|
+
[_sTES, _nT],
|
|
1277
|
+
[() => ServiceTopologyEdgeSummaryList, 0]
|
|
1278
|
+
];
|
|
1279
|
+
var ListSystemEventsRequest$ = [3, n0, _LSERis,
|
|
1280
|
+
0,
|
|
1281
|
+
[_sAy, _eT, _sT, _eTn, _mRa, _nT],
|
|
1282
|
+
[[0, { [_hQ]: _sAy }], [64 | 0, { [_hQ]: _eT }], [4, { [_hQ]: _sT }], [4, { [_hQ]: _eTn }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1283
|
+
];
|
|
1284
|
+
var ListSystemEventsResponse$ = [3, n0, _LSERist,
|
|
1285
|
+
0,
|
|
1286
|
+
[_ev, _nT],
|
|
1287
|
+
[() => SystemEventList, 0], 1
|
|
1288
|
+
];
|
|
1289
|
+
var ListSystemsRequest$ = [3, n0, _LSRis,
|
|
1290
|
+
0,
|
|
1291
|
+
[_oI, _mRa, _nT],
|
|
1292
|
+
[[0, { [_hQ]: _oI }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1293
|
+
];
|
|
1294
|
+
var ListSystemsResponse$ = [3, n0, _LSRist,
|
|
1295
|
+
0,
|
|
1296
|
+
[_sSy, _nT],
|
|
1297
|
+
[() => SystemSummaryList, 0], 1
|
|
1298
|
+
];
|
|
1299
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1300
|
+
0,
|
|
1301
|
+
[_rA],
|
|
1302
|
+
[[0, 1]], 1
|
|
1303
|
+
];
|
|
1304
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1305
|
+
0,
|
|
1306
|
+
[_tag],
|
|
1307
|
+
[[() => TagMap, 0]]
|
|
1308
|
+
];
|
|
1309
|
+
var ListUserJourneysRequest$ = [3, n0, _LUJR,
|
|
1310
|
+
0,
|
|
1311
|
+
[_sAy, _mRa, _nT],
|
|
1312
|
+
[[0, { [_hQ]: _sAy }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1313
|
+
];
|
|
1314
|
+
var ListUserJourneysResponse$ = [3, n0, _LUJRi,
|
|
1315
|
+
0,
|
|
1316
|
+
[_uJS, _nT],
|
|
1317
|
+
[() => UserJourneySummaryList, 0], 1
|
|
1318
|
+
];
|
|
1319
|
+
var MultiAzTargets$ = [3, n0, _MAT,
|
|
1320
|
+
0,
|
|
1321
|
+
[_rIM, _rIMp, _dRA],
|
|
1322
|
+
[1, 1, 0]
|
|
1323
|
+
];
|
|
1324
|
+
var MultiRegionTargets$ = [3, n0, _MRT,
|
|
1325
|
+
0,
|
|
1326
|
+
[_rIM, _rIMp, _dRA],
|
|
1327
|
+
[1, 1, 0]
|
|
1328
|
+
];
|
|
1329
|
+
var ObservabilityRecommendation$ = [3, n0, _OR,
|
|
1330
|
+
0,
|
|
1331
|
+
[_sC],
|
|
1332
|
+
[64 | 0]
|
|
1333
|
+
];
|
|
1334
|
+
var PermissionModel$ = [3, n0, _PM,
|
|
1335
|
+
0,
|
|
1336
|
+
[_iRN, _cAR],
|
|
1337
|
+
[0, () => CrossAccountRoleList], 1
|
|
1338
|
+
];
|
|
1339
|
+
var Policy$ = [3, n0, _P,
|
|
1340
|
+
0,
|
|
1341
|
+
[_pA, _n, _d, _aS, _mA, _mR, _dR, _kKI, _tag, _aSC, _cA, _uA],
|
|
1342
|
+
[0, 0, 0, () => AvailabilitySlo$, () => MultiAzTargets$, () => MultiRegionTargets$, () => DataRecoveryTargets$, 0, [() => TagMap, 0], 1, 4, 4], 2
|
|
1343
|
+
];
|
|
1344
|
+
var PolicySummary$ = [3, n0, _PS,
|
|
1345
|
+
0,
|
|
1346
|
+
[_pA, _n, _aS, _mA, _mR, _dR, _aSC, _cA, _uA],
|
|
1347
|
+
[0, 0, () => AvailabilitySlo$, () => MultiAzTargets$, () => MultiRegionTargets$, () => DataRecoveryTargets$, 1, 4, 4], 2
|
|
1348
|
+
];
|
|
1349
|
+
var QueryDataPoint$ = [3, n0, _QDP,
|
|
1350
|
+
0,
|
|
1351
|
+
[_ti, _qC],
|
|
1352
|
+
[4, 1], 2
|
|
1353
|
+
];
|
|
1354
|
+
var QueryRange$ = [3, n0, _QR,
|
|
1355
|
+
0,
|
|
1356
|
+
[_sT, _eTn, _g, _dP],
|
|
1357
|
+
[4, 4, 0, () => QueryDataPointList], 4
|
|
1358
|
+
];
|
|
1359
|
+
var ReportGenerationResult$ = [3, n0, _RGR,
|
|
1360
|
+
0,
|
|
1361
|
+
[_rTe, _st, _sA, _aIs, _cA, _rO],
|
|
1362
|
+
[0, 0, 0, 0, 4, () => ReportOutput$], 2
|
|
1363
|
+
];
|
|
1364
|
+
var Resource$ = [3, n0, _R,
|
|
1365
|
+
0,
|
|
1366
|
+
[_i, _aR, _aAI, _rT],
|
|
1367
|
+
[0, 0, 0, 0], 1
|
|
1368
|
+
];
|
|
1369
|
+
var ResourceDiscoveryStatus$ = [3, n0, _RDS,
|
|
1370
|
+
0,
|
|
1371
|
+
[_st, _lRA, _eC, _eM],
|
|
1372
|
+
[0, 4, 0, 0]
|
|
1373
|
+
];
|
|
1374
|
+
var ResourceTag$ = [3, n0, _RT,
|
|
1375
|
+
0,
|
|
1376
|
+
[_k, _va],
|
|
1377
|
+
[0, 64 | 0], 2
|
|
1378
|
+
];
|
|
1379
|
+
var S3ReportOutput$ = [3, n0, _SRO,
|
|
1380
|
+
0,
|
|
1381
|
+
[_sOK],
|
|
1382
|
+
[0], 1
|
|
1383
|
+
];
|
|
1384
|
+
var S3ReportOutputConfiguration$ = [3, n0, _SROC,
|
|
1385
|
+
0,
|
|
1386
|
+
[_bP, _bO],
|
|
1387
|
+
[0, 0], 2
|
|
1388
|
+
];
|
|
1389
|
+
var Service$ = [3, n0, _S,
|
|
1390
|
+
0,
|
|
1391
|
+
[_sA, _n, _d, _aSsso, _pA, _reg, _pM, _dD, _ePV, _ac, _rCe, _kKI, _tag, _eAC, _rD, _aSs, _rAe, _oFC, _rFC, _oIr, _oI, _aIc, _cA, _uA],
|
|
1392
|
+
[0, 0, 0, () => AssociatedSystemList, 0, 64 | 0, () => PermissionModel$, () => DependencyDiscoveryConfig$, () => EffectivePolicyValues$, () => Achievability$, () => ServiceReportConfiguration$, 0, [() => TagMap, 0], () => AssessmentCost$, () => ResourceDiscoveryStatus$, 0, 2, 1, 1, 0, 0, 0, 4, 4], 2
|
|
1393
|
+
];
|
|
1394
|
+
var ServiceAchievabilityUpdatedMetadata$ = [3, n0, _SAUM,
|
|
1395
|
+
0,
|
|
1396
|
+
[_aIs, _aS, _mARR, _mRRR],
|
|
1397
|
+
[0, 0, 0, 0]
|
|
1398
|
+
];
|
|
1399
|
+
var ServiceCreatedMetadata$ = [3, n0, _SCM,
|
|
1400
|
+
0,
|
|
1401
|
+
[],
|
|
1402
|
+
[]
|
|
1403
|
+
];
|
|
1404
|
+
var ServiceDeletedMetadata$ = [3, n0, _SDM,
|
|
1405
|
+
0,
|
|
1406
|
+
[],
|
|
1407
|
+
[]
|
|
1408
|
+
];
|
|
1409
|
+
var ServiceEvent$ = [3, n0, _SE,
|
|
1410
|
+
0,
|
|
1411
|
+
[_eIv, _ti, _eTv, _sA, _act, _eD],
|
|
1412
|
+
[0, 4, 0, 0, () => EventActor$, () => ServiceEventDetails$], 6
|
|
1413
|
+
];
|
|
1414
|
+
var ServiceEventDetails$ = [3, n0, _SED,
|
|
1415
|
+
0,
|
|
1416
|
+
[_tit, _d, _eMv],
|
|
1417
|
+
[0, 0, () => ServiceEventMetadata$], 2
|
|
1418
|
+
];
|
|
1419
|
+
var ServiceFunction$ = [3, n0, _SF,
|
|
1420
|
+
0,
|
|
1421
|
+
[_sA, _sFI, _n, _cr, _d, _rCes, _so, _cA, _uA],
|
|
1422
|
+
[0, 0, 0, 0, 0, 1, 0, 4, 4], 4
|
|
1423
|
+
];
|
|
1424
|
+
var ServiceFunctionCreatedMetadata$ = [3, n0, _SFCM,
|
|
1425
|
+
0,
|
|
1426
|
+
[_sFI, _sFN],
|
|
1427
|
+
[0, 0]
|
|
1428
|
+
];
|
|
1429
|
+
var ServiceFunctionDeletedMetadata$ = [3, n0, _SFDM,
|
|
1430
|
+
0,
|
|
1431
|
+
[_sFI, _sFN],
|
|
1432
|
+
[0, 0]
|
|
1433
|
+
];
|
|
1434
|
+
var ServiceFunctionResourcesAddedMetadata$ = [3, n0, _SFRAM,
|
|
1435
|
+
0,
|
|
1436
|
+
[_sFI, _sFN, _rAes],
|
|
1437
|
+
[0, 0, 64 | 0]
|
|
1438
|
+
];
|
|
1439
|
+
var ServiceFunctionResourcesRemovedMetadata$ = [3, n0, _SFRRM,
|
|
1440
|
+
0,
|
|
1441
|
+
[_sFI, _sFN, _rR],
|
|
1442
|
+
[0, 0, 64 | 0]
|
|
1443
|
+
];
|
|
1444
|
+
var ServiceFunctionUpdatedMetadata$ = [3, n0, _SFUM,
|
|
1445
|
+
0,
|
|
1446
|
+
[_sFI, _sFN, _rAes, _rR],
|
|
1447
|
+
[0, 0, 64 | 0, 64 | 0]
|
|
1448
|
+
];
|
|
1449
|
+
var ServiceInputSourcesUpdatedMetadata$ = [3, n0, _SISUM,
|
|
1450
|
+
0,
|
|
1451
|
+
[],
|
|
1452
|
+
[]
|
|
1453
|
+
];
|
|
1454
|
+
var ServicePolicyAssociatedMetadata$ = [3, n0, _SPAM,
|
|
1455
|
+
0,
|
|
1456
|
+
[_pN, _pA],
|
|
1457
|
+
[0, 0]
|
|
1458
|
+
];
|
|
1459
|
+
var ServicePolicyDisassociatedMetadata$ = [3, n0, _SPDM,
|
|
1460
|
+
0,
|
|
1461
|
+
[_pN, _pA],
|
|
1462
|
+
[0, 0]
|
|
1463
|
+
];
|
|
1464
|
+
var ServiceReference$ = [3, n0, _SR,
|
|
1465
|
+
0,
|
|
1466
|
+
[_sI, _sNe],
|
|
1467
|
+
[0, 0]
|
|
1468
|
+
];
|
|
1469
|
+
var ServiceReferenceChanges$ = [3, n0, _SRC,
|
|
1470
|
+
0,
|
|
1471
|
+
[_ad, _rem],
|
|
1472
|
+
[() => ServiceReferenceList, () => ServiceReferenceList]
|
|
1473
|
+
];
|
|
1474
|
+
var ServiceReportConfiguration$ = [3, n0, _SRCe,
|
|
1475
|
+
0,
|
|
1476
|
+
[_rOe],
|
|
1477
|
+
[() => ReportOutputConfigurationList], 1
|
|
1478
|
+
];
|
|
1479
|
+
var ServiceResource$ = [3, n0, _SRe,
|
|
1480
|
+
0,
|
|
1481
|
+
[_rIe, _res, _iS],
|
|
1482
|
+
[0, () => Resource$, () => InputSource$], 2
|
|
1483
|
+
];
|
|
1484
|
+
var ServiceResourcesAssociatedMetadata$ = [3, n0, _SRAM,
|
|
1485
|
+
0,
|
|
1486
|
+
[_rCes, _rTeso],
|
|
1487
|
+
[1, 64 | 0]
|
|
1488
|
+
];
|
|
1489
|
+
var ServiceResourcesDisassociatedMetadata$ = [3, n0, _SRDM,
|
|
1490
|
+
0,
|
|
1491
|
+
[_rCes, _rTeso],
|
|
1492
|
+
[1, 64 | 0]
|
|
1493
|
+
];
|
|
1494
|
+
var ServiceSummary$ = [3, n0, _SS,
|
|
1495
|
+
0,
|
|
1496
|
+
[_sA, _n, _aSsso, _reg, _pA, _aSs, _oFC, _rFC, _dD, _ac, _oIr, _oI, _aIc, _cA, _uA],
|
|
1497
|
+
[0, 0, () => AssociatedSystemList, 64 | 0, 0, 0, 1, 1, () => DependencyDiscoveryConfig$, () => Achievability$, 0, 0, 0, 4, 4], 2
|
|
1498
|
+
];
|
|
1499
|
+
var ServiceSystemAssociatedMetadata$ = [3, n0, _SSAM,
|
|
1500
|
+
0,
|
|
1501
|
+
[_sN, _sAy],
|
|
1502
|
+
[0, 0]
|
|
1503
|
+
];
|
|
1504
|
+
var ServiceSystemDisassociatedMetadata$ = [3, n0, _SSDM,
|
|
1505
|
+
0,
|
|
1506
|
+
[_sIy, _sN, _sAy],
|
|
1507
|
+
[0, 0, 0]
|
|
1508
|
+
];
|
|
1509
|
+
var ServiceTopologyEdgeSummary$ = [3, n0, _STES,
|
|
1510
|
+
0,
|
|
1511
|
+
[_sRI, _dRI, _pro],
|
|
1512
|
+
[0, 0, () => EdgePropertyList], 2
|
|
1513
|
+
];
|
|
1514
|
+
var ServiceWorkflowUpdatedMetadata$ = [3, n0, _SWUM,
|
|
1515
|
+
0,
|
|
1516
|
+
[_sFI, _sFN],
|
|
1517
|
+
[0, 0]
|
|
1518
|
+
];
|
|
1519
|
+
var SloSource$ = [3, n0, _SSl,
|
|
1520
|
+
0,
|
|
1521
|
+
[_v, _pN, _so],
|
|
1522
|
+
[1, 0, 0]
|
|
1523
|
+
];
|
|
1524
|
+
var StartFailureModeAssessmentRequest$ = [3, n0, _SFMAR,
|
|
1525
|
+
0,
|
|
1526
|
+
[_sA, _cT],
|
|
1527
|
+
[0, [0, 4]], 1
|
|
1528
|
+
];
|
|
1529
|
+
var StartFailureModeAssessmentResponse$ = [3, n0, _SFMARt,
|
|
1530
|
+
0,
|
|
1531
|
+
[_aIs, _sA, _aSs, _sAt],
|
|
1532
|
+
[0, 0, 0, 4]
|
|
1533
|
+
];
|
|
1534
|
+
var StringChange$ = [3, n0, _SC,
|
|
1535
|
+
0,
|
|
1536
|
+
[_oV, _nV],
|
|
1537
|
+
[0, 0]
|
|
1538
|
+
];
|
|
1539
|
+
var System$ = [3, n0, _Sy,
|
|
1540
|
+
0,
|
|
1541
|
+
[_sAy, _sIy, _n, _d, _sE, _tag, _kKI, _oIr, _oI, _cA, _uA],
|
|
1542
|
+
[0, 0, 0, 0, 2, [() => TagMap, 0], 0, 0, 0, 4, 4], 3
|
|
1543
|
+
];
|
|
1544
|
+
var SystemCreatedMetadata$ = [3, n0, _SCMy,
|
|
1545
|
+
0,
|
|
1546
|
+
[],
|
|
1547
|
+
[]
|
|
1548
|
+
];
|
|
1549
|
+
var SystemDeletedMetadata$ = [3, n0, _SDMy,
|
|
1550
|
+
0,
|
|
1551
|
+
[],
|
|
1552
|
+
[]
|
|
1553
|
+
];
|
|
1554
|
+
var SystemEvent$ = [3, n0, _SEy,
|
|
1555
|
+
0,
|
|
1556
|
+
[_eIv, _ti, _eTv, _sAy, _act, _eD],
|
|
1557
|
+
[0, 4, 0, 0, () => EventActor$, () => SystemEventDetails$], 6
|
|
1558
|
+
];
|
|
1559
|
+
var SystemEventDetails$ = [3, n0, _SEDy,
|
|
1560
|
+
0,
|
|
1561
|
+
[_tit, _d, _eMv],
|
|
1562
|
+
[0, 0, () => SystemEventMetadata$], 2
|
|
1563
|
+
];
|
|
1564
|
+
var SystemPolicyAssociatedMetadata$ = [3, n0, _SPAMy,
|
|
1565
|
+
0,
|
|
1566
|
+
[_pN, _pA],
|
|
1567
|
+
[0, 0]
|
|
1568
|
+
];
|
|
1569
|
+
var SystemPolicyDisassociatedMetadata$ = [3, n0, _SPDMy,
|
|
1570
|
+
0,
|
|
1571
|
+
[_pN, _pA],
|
|
1572
|
+
[0, 0]
|
|
1573
|
+
];
|
|
1574
|
+
var SystemServiceAssociatedMetadata$ = [3, n0, _SSAMy,
|
|
1575
|
+
0,
|
|
1576
|
+
[_sNe, _sA, _uJs],
|
|
1577
|
+
[0, 0, 64 | 0]
|
|
1578
|
+
];
|
|
1579
|
+
var SystemServiceDisassociatedMetadata$ = [3, n0, _SSDMy,
|
|
1580
|
+
0,
|
|
1581
|
+
[_sNe, _sA, _uJA, _co],
|
|
1582
|
+
[0, 0, 64 | 0, 0]
|
|
1583
|
+
];
|
|
1584
|
+
var SystemSummary$ = [3, n0, _SSy,
|
|
1585
|
+
0,
|
|
1586
|
+
[_sIy, _n, _sAy, _uJC, _sCe, _oIr, _oI, _cA, _uA],
|
|
1587
|
+
[0, 0, 0, 1, 1, 0, 0, 4, 4], 2
|
|
1588
|
+
];
|
|
1589
|
+
var SystemUserJourneyCreatedMetadata$ = [3, n0, _SUJCM,
|
|
1590
|
+
0,
|
|
1591
|
+
[_uJN, _aSssoc],
|
|
1592
|
+
[0, () => ServiceReferenceList]
|
|
1593
|
+
];
|
|
1594
|
+
var SystemUserJourneyDeletedMetadata$ = [3, n0, _SUJDM,
|
|
1595
|
+
0,
|
|
1596
|
+
[_uJN, _aSAD],
|
|
1597
|
+
[0, () => ServiceReferenceList]
|
|
1598
|
+
];
|
|
1599
|
+
var SystemUserJourneyUpdatedMetadata$ = [3, n0, _SUJUM,
|
|
1600
|
+
0,
|
|
1601
|
+
[_uJN, _ch],
|
|
1602
|
+
[0, () => UserJourneyChanges$]
|
|
1603
|
+
];
|
|
1604
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1605
|
+
0,
|
|
1606
|
+
[_rA, _tag],
|
|
1607
|
+
[[0, 1], [() => TagMap, 0]], 2
|
|
1608
|
+
];
|
|
1609
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1610
|
+
0,
|
|
1611
|
+
[],
|
|
1612
|
+
[]
|
|
1613
|
+
];
|
|
1614
|
+
var TargetSource$ = [3, n0, _TS,
|
|
1615
|
+
0,
|
|
1616
|
+
[_v, _pN, _so],
|
|
1617
|
+
[1, 0, 0]
|
|
1618
|
+
];
|
|
1619
|
+
var TestingRecommendation$ = [3, n0, _TR,
|
|
1620
|
+
0,
|
|
1621
|
+
[_sC],
|
|
1622
|
+
[64 | 0]
|
|
1623
|
+
];
|
|
1624
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1625
|
+
0,
|
|
1626
|
+
[_rA, _tK],
|
|
1627
|
+
[[0, 1], [() => TagKeyList, { [_hQ]: _tK }]], 2
|
|
1628
|
+
];
|
|
1629
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1630
|
+
0,
|
|
1631
|
+
[],
|
|
1632
|
+
[]
|
|
1633
|
+
];
|
|
1634
|
+
var UpdateAssertionRequest$ = [3, n0, _UAR,
|
|
1635
|
+
0,
|
|
1636
|
+
[_sA, _aI, _t],
|
|
1637
|
+
[0, 0, 0], 2
|
|
1638
|
+
];
|
|
1639
|
+
var UpdateAssertionResponse$ = [3, n0, _UARp,
|
|
1640
|
+
0,
|
|
1641
|
+
[_as],
|
|
1642
|
+
[() => Assertion$], 1
|
|
1643
|
+
];
|
|
1644
|
+
var UpdateDependencyRequest$ = [3, n0, _UDR,
|
|
1645
|
+
0,
|
|
1646
|
+
[_sA, _dI, _cr, _co],
|
|
1647
|
+
[0, 0, 0, 0], 2
|
|
1648
|
+
];
|
|
1649
|
+
var UpdateDependencyResponse$ = [3, n0, _UDRp,
|
|
1650
|
+
0,
|
|
1651
|
+
[_dI, _dN, _l, _cr, _uA, _co, _pr],
|
|
1652
|
+
[0, 0, 0, 0, 4, 0, 0], 5
|
|
1653
|
+
];
|
|
1654
|
+
var UpdateFailureModeFindingRequest$ = [3, n0, _UFMFR,
|
|
1655
|
+
0,
|
|
1656
|
+
[_fI, _st, _sA, _co],
|
|
1657
|
+
[0, 0, 0, 0], 3
|
|
1658
|
+
];
|
|
1659
|
+
var UpdateFailureModeFindingResponse$ = [3, n0, _UFMFRp,
|
|
1660
|
+
0,
|
|
1661
|
+
[_f],
|
|
1662
|
+
[() => Finding$]
|
|
1663
|
+
];
|
|
1664
|
+
var UpdatePolicyRequest$ = [3, n0, _UPR,
|
|
1665
|
+
0,
|
|
1666
|
+
[_pA, _d, _aS, _mA, _mR, _dR],
|
|
1667
|
+
[0, 0, () => AvailabilitySlo$, () => MultiAzTargets$, () => MultiRegionTargets$, () => DataRecoveryTargets$], 1
|
|
1668
|
+
];
|
|
1669
|
+
var UpdatePolicyResponse$ = [3, n0, _UPRp,
|
|
1670
|
+
0,
|
|
1671
|
+
[_p],
|
|
1672
|
+
[[() => Policy$, 0]], 1
|
|
1673
|
+
];
|
|
1674
|
+
var UpdateServiceFunctionRequest$ = [3, n0, _USFR,
|
|
1675
|
+
0,
|
|
1676
|
+
[_sA, _sFI, _n, _d, _cr],
|
|
1677
|
+
[0, 0, 0, 0, 0], 2
|
|
1678
|
+
];
|
|
1679
|
+
var UpdateServiceFunctionResponse$ = [3, n0, _USFRp,
|
|
1680
|
+
0,
|
|
1681
|
+
[_sF],
|
|
1682
|
+
[() => ServiceFunction$], 1
|
|
1683
|
+
];
|
|
1684
|
+
var UpdateServiceRequest$ = [3, n0, _USR,
|
|
1685
|
+
0,
|
|
1686
|
+
[_sA, _d, _aSsso, _pA, _reg, _pM, _dD, _rCe],
|
|
1687
|
+
[0, 0, () => AssociatedSystemList, 0, 64 | 0, () => PermissionModel$, 0, () => ServiceReportConfiguration$], 1
|
|
1688
|
+
];
|
|
1689
|
+
var UpdateServiceResponse$ = [3, n0, _USRp,
|
|
1690
|
+
0,
|
|
1691
|
+
[_ser],
|
|
1692
|
+
[[() => Service$, 0]], 1
|
|
1693
|
+
];
|
|
1694
|
+
var UpdateSystemRequest$ = [3, n0, _USRpd,
|
|
1695
|
+
0,
|
|
1696
|
+
[_sAy, _d, _sE],
|
|
1697
|
+
[0, 0, 2], 1
|
|
1698
|
+
];
|
|
1699
|
+
var UpdateSystemResponse$ = [3, n0, _USRpda,
|
|
1700
|
+
0,
|
|
1701
|
+
[_sy],
|
|
1702
|
+
[[() => System$, 0]], 1
|
|
1703
|
+
];
|
|
1704
|
+
var UpdateUserJourneyRequest$ = [3, n0, _UUJR,
|
|
1705
|
+
0,
|
|
1706
|
+
[_sAy, _uJIs, _n, _d, _pA],
|
|
1707
|
+
[0, 0, 0, 0, 0], 2
|
|
1708
|
+
];
|
|
1709
|
+
var UpdateUserJourneyResponse$ = [3, n0, _UUJRp,
|
|
1710
|
+
0,
|
|
1711
|
+
[_uJ],
|
|
1712
|
+
[() => UserJourney$], 1
|
|
1713
|
+
];
|
|
1714
|
+
var UserJourney$ = [3, n0, _UJ,
|
|
1715
|
+
0,
|
|
1716
|
+
[_uJIs, _n, _d, _pA, _cA, _uA],
|
|
1717
|
+
[0, 0, 0, 0, 4, 4], 2
|
|
1718
|
+
];
|
|
1719
|
+
var UserJourneyChanges$ = [3, n0, _UJC,
|
|
1720
|
+
0,
|
|
1721
|
+
[_jD, _aSssoc],
|
|
1722
|
+
[() => StringChange$, () => ServiceReferenceChanges$]
|
|
1723
|
+
];
|
|
1724
|
+
var UserJourneySummary$ = [3, n0, _UJS,
|
|
1725
|
+
0,
|
|
1726
|
+
[_uJIs, _n, _cA, _uA],
|
|
1727
|
+
[0, 0, 4, 4], 2
|
|
1728
|
+
];
|
|
1729
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1730
|
+
0,
|
|
1731
|
+
[_n, _m],
|
|
1732
|
+
[0, 0], 2
|
|
1733
|
+
];
|
|
1734
|
+
var AssertionList = [1, n0, _AL,
|
|
1735
|
+
0, () => Assertion$
|
|
1736
|
+
];
|
|
1737
|
+
var AssessmentSummaryList = [1, n0, _ASL,
|
|
1738
|
+
0, () => AssessmentSummary$
|
|
1739
|
+
];
|
|
1740
|
+
var AssociatedSystemList = [1, n0, _ASLs,
|
|
1741
|
+
0, () => AssociatedSystem$
|
|
1742
|
+
];
|
|
1743
|
+
var CrossAccountRoleList = [1, n0, _CARL,
|
|
1744
|
+
0, () => CrossAccountRole$
|
|
1745
|
+
];
|
|
1746
|
+
var DependencySummaryList = [1, n0, _DSL,
|
|
1747
|
+
0, () => DependencySummary$
|
|
1748
|
+
];
|
|
1749
|
+
var EdgePropertyList = [1, n0, _EPL,
|
|
1750
|
+
0, () => EdgePropertySummary$
|
|
1751
|
+
];
|
|
1752
|
+
var FindingsList = [1, n0, _FL,
|
|
1753
|
+
0, () => FindingSummary$
|
|
1754
|
+
];
|
|
1755
|
+
var InfrastructureAndCodeRecommendationsList = [1, n0, _IACRL,
|
|
1756
|
+
0, () => InfrastructureAndCodeRecommendation$
|
|
1757
|
+
];
|
|
1758
|
+
var InputSourceSummaryList = [1, n0, _ISSL,
|
|
1759
|
+
0, () => InputSourceSummary$
|
|
1760
|
+
];
|
|
1761
|
+
var ObservabilityRecommendationsList = [1, n0, _ORL,
|
|
1762
|
+
0, () => ObservabilityRecommendation$
|
|
1763
|
+
];
|
|
1764
|
+
var PolicySummaryList = [1, n0, _PSL,
|
|
1765
|
+
0, () => PolicySummary$
|
|
1766
|
+
];
|
|
1767
|
+
var QueryDataPointList = [1, n0, _QDPL,
|
|
1768
|
+
0, () => QueryDataPoint$
|
|
1769
|
+
];
|
|
1770
|
+
var ReportGenerationResultList = [1, n0, _RGRL,
|
|
1771
|
+
0, () => ReportGenerationResult$
|
|
1772
|
+
];
|
|
1773
|
+
var ReportOutputConfigurationList = [1, n0, _ROCL,
|
|
1774
|
+
0, () => ReportOutputConfiguration$
|
|
1775
|
+
];
|
|
1776
|
+
var ResourceTagList = [1, n0, _RTL,
|
|
1777
|
+
0, () => ResourceTag$
|
|
1778
|
+
];
|
|
1779
|
+
var ServiceEventList = [1, n0, _SEL,
|
|
1780
|
+
0, () => ServiceEvent$
|
|
1781
|
+
];
|
|
1782
|
+
var ServiceFunctionList = [1, n0, _SFL,
|
|
1783
|
+
0, () => ServiceFunction$
|
|
1784
|
+
];
|
|
1785
|
+
var ServiceReferenceList = [1, n0, _SRL,
|
|
1786
|
+
0, () => ServiceReference$
|
|
1787
|
+
];
|
|
1788
|
+
var ServiceResourceList = [1, n0, _SRLe,
|
|
1789
|
+
0, () => ServiceResource$
|
|
1790
|
+
];
|
|
1791
|
+
var ServiceSummaryList = [1, n0, _SSL,
|
|
1792
|
+
0, () => ServiceSummary$
|
|
1793
|
+
];
|
|
1794
|
+
var ServiceTopologyEdgeSummaryList = [1, n0, _STESL,
|
|
1795
|
+
0, () => ServiceTopologyEdgeSummary$
|
|
1796
|
+
];
|
|
1797
|
+
var SystemEventList = [1, n0, _SELy,
|
|
1798
|
+
0, () => SystemEvent$
|
|
1799
|
+
];
|
|
1800
|
+
var SystemSummaryList = [1, n0, _SSLy,
|
|
1801
|
+
0, () => SystemSummary$
|
|
1802
|
+
];
|
|
1803
|
+
var TagKeyList = [1, n0, _TKL,
|
|
1804
|
+
8, 0
|
|
1805
|
+
];
|
|
1806
|
+
var TestingRecommendationsList = [1, n0, _TRL,
|
|
1807
|
+
0, () => TestingRecommendation$
|
|
1808
|
+
];
|
|
1809
|
+
var UserJourneySummaryList = [1, n0, _UJSL,
|
|
1810
|
+
0, () => UserJourneySummary$
|
|
1811
|
+
];
|
|
1812
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1813
|
+
0, () => ValidationExceptionField$
|
|
1814
|
+
];
|
|
1815
|
+
var TagMap = [2, n0, _TM,
|
|
1816
|
+
8, 0, 0
|
|
1817
|
+
];
|
|
1818
|
+
var ReportOutput$ = [4, n0, _RO,
|
|
1819
|
+
0,
|
|
1820
|
+
[_sRO, _fRO],
|
|
1821
|
+
[() => S3ReportOutput$, () => FailedReportOutput$]
|
|
1822
|
+
];
|
|
1823
|
+
var ReportOutputConfiguration$ = [4, n0, _ROC,
|
|
1824
|
+
0,
|
|
1825
|
+
[_s_],
|
|
1826
|
+
[() => S3ReportOutputConfiguration$]
|
|
1827
|
+
];
|
|
1828
|
+
var ResourceConfiguration$ = [4, n0, _RC,
|
|
1829
|
+
0,
|
|
1830
|
+
[_rTes, _cSA, _tSFU, _ek, _dFSU],
|
|
1831
|
+
[() => ResourceTagList, 0, 0, () => EksSource$, 0]
|
|
1832
|
+
];
|
|
1833
|
+
var ServiceEventMetadata$ = [4, n0, _SEM,
|
|
1834
|
+
0,
|
|
1835
|
+
[_sCer, _sD, _sSA, _sSD, _sRA, _sRD, _sWU, _sISU, _sPA, _sPD, _sFC, _sFU, _sFD, _sFRA, _sFRR, _sAU, _aCs, _aU, _aD],
|
|
1836
|
+
[() => ServiceCreatedMetadata$, () => ServiceDeletedMetadata$, () => ServiceSystemAssociatedMetadata$, () => ServiceSystemDisassociatedMetadata$, () => ServiceResourcesAssociatedMetadata$, () => ServiceResourcesDisassociatedMetadata$, () => ServiceWorkflowUpdatedMetadata$, () => ServiceInputSourcesUpdatedMetadata$, () => ServicePolicyAssociatedMetadata$, () => ServicePolicyDisassociatedMetadata$, () => ServiceFunctionCreatedMetadata$, () => ServiceFunctionUpdatedMetadata$, () => ServiceFunctionDeletedMetadata$, () => ServiceFunctionResourcesAddedMetadata$, () => ServiceFunctionResourcesRemovedMetadata$, () => ServiceAchievabilityUpdatedMetadata$, () => AssertionCreatedMetadata$, () => AssertionUpdatedMetadata$, () => AssertionDeletedMetadata$]
|
|
1837
|
+
];
|
|
1838
|
+
var SystemEventMetadata$ = [4, n0, _SEMy,
|
|
1839
|
+
0,
|
|
1840
|
+
[_sCy, _sDy, _sUJC, _sUJU, _sUJD, _sSAy, _sSDy, _sPAy, _sPDy],
|
|
1841
|
+
[() => SystemCreatedMetadata$, () => SystemDeletedMetadata$, () => SystemUserJourneyCreatedMetadata$, () => SystemUserJourneyUpdatedMetadata$, () => SystemUserJourneyDeletedMetadata$, () => SystemServiceAssociatedMetadata$, () => SystemServiceDisassociatedMetadata$, () => SystemPolicyAssociatedMetadata$, () => SystemPolicyDisassociatedMetadata$]
|
|
1842
|
+
];
|
|
1843
|
+
var CreateAssertion$ = [9, n0, _CA,
|
|
1844
|
+
{ [_h]: ["POST", "/v2/create-assertion", 200] }, () => CreateAssertionRequest$, () => CreateAssertionResponse$
|
|
1845
|
+
];
|
|
1846
|
+
var CreateInputSource$ = [9, n0, _CIS,
|
|
1847
|
+
{ [_h]: ["POST", "/v2/create-input-source", 200] }, () => CreateInputSourceRequest$, () => CreateInputSourceResponse$
|
|
1848
|
+
];
|
|
1849
|
+
var CreatePolicy$ = [9, n0, _CP,
|
|
1850
|
+
{ [_h]: ["POST", "/v2/create-policy", 200] }, () => CreatePolicyRequest$, () => CreatePolicyResponse$
|
|
1851
|
+
];
|
|
1852
|
+
var CreateReport$ = [9, n0, _CR,
|
|
1853
|
+
{ [_h]: ["POST", "/v2/create-report", 200] }, () => CreateReportRequest$, () => CreateReportResponse$
|
|
1854
|
+
];
|
|
1855
|
+
var CreateService$ = [9, n0, _CS,
|
|
1856
|
+
{ [_h]: ["POST", "/v2/create-service", 200] }, () => CreateServiceRequest$, () => CreateServiceResponse$
|
|
1857
|
+
];
|
|
1858
|
+
var CreateServiceFunction$ = [9, n0, _CSF,
|
|
1859
|
+
{ [_h]: ["POST", "/v2/create-service-function", 200] }, () => CreateServiceFunctionRequest$, () => CreateServiceFunctionResponse$
|
|
1860
|
+
];
|
|
1861
|
+
var CreateServiceFunctionResources$ = [9, n0, _CSFRre,
|
|
1862
|
+
{ [_h]: ["POST", "/v2/create-service-function-resources", 200] }, () => CreateServiceFunctionResourcesRequest$, () => CreateServiceFunctionResourcesResponse$
|
|
1863
|
+
];
|
|
1864
|
+
var CreateSystem$ = [9, n0, _CSr,
|
|
1865
|
+
{ [_h]: ["POST", "/v2/create-system", 200] }, () => CreateSystemRequest$, () => CreateSystemResponse$
|
|
1866
|
+
];
|
|
1867
|
+
var CreateUserJourney$ = [9, n0, _CUJ,
|
|
1868
|
+
{ [_h]: ["POST", "/v2/create-user-journey", 200] }, () => CreateUserJourneyRequest$, () => CreateUserJourneyResponse$
|
|
1869
|
+
];
|
|
1870
|
+
var DeleteAssertion$ = [9, n0, _DA,
|
|
1871
|
+
{ [_h]: ["POST", "/v2/delete-assertion", 200] }, () => DeleteAssertionRequest$, () => DeleteAssertionResponse$
|
|
1872
|
+
];
|
|
1873
|
+
var DeleteInputSource$ = [9, n0, _DIS,
|
|
1874
|
+
{ [_h]: ["POST", "/v2/delete-input-source", 200] }, () => DeleteInputSourceRequest$, () => DeleteInputSourceResponse$
|
|
1875
|
+
];
|
|
1876
|
+
var DeletePolicy$ = [9, n0, _DP,
|
|
1877
|
+
{ [_h]: ["POST", "/v2/delete-policy", 200] }, () => DeletePolicyRequest$, () => DeletePolicyResponse$
|
|
1878
|
+
];
|
|
1879
|
+
var DeleteService$ = [9, n0, _DSe,
|
|
1880
|
+
{ [_h]: ["POST", "/v2/delete-service", 200] }, () => DeleteServiceRequest$, () => DeleteServiceResponse$
|
|
1881
|
+
];
|
|
1882
|
+
var DeleteServiceFunction$ = [9, n0, _DSF,
|
|
1883
|
+
{ [_h]: ["POST", "/v2/delete-function", 200] }, () => DeleteServiceFunctionRequest$, () => DeleteServiceFunctionResponse$
|
|
1884
|
+
];
|
|
1885
|
+
var DeleteServiceFunctionResources$ = [9, n0, _DSFRel,
|
|
1886
|
+
{ [_h]: ["POST", "/v2/delete-service-function-resources", 200] }, () => DeleteServiceFunctionResourcesRequest$, () => DeleteServiceFunctionResourcesResponse$
|
|
1887
|
+
];
|
|
1888
|
+
var DeleteSystem$ = [9, n0, _DSel,
|
|
1889
|
+
{ [_h]: ["POST", "/v2/delete-system", 200] }, () => DeleteSystemRequest$, () => DeleteSystemResponse$
|
|
1890
|
+
];
|
|
1891
|
+
var DeleteUserJourney$ = [9, n0, _DUJ,
|
|
1892
|
+
{ [_h]: ["POST", "/v2/delete-user-journey", 200] }, () => DeleteUserJourneyRequest$, () => DeleteUserJourneyResponse$
|
|
1893
|
+
];
|
|
1894
|
+
var GetFailureModeFinding$ = [9, n0, _GFMF,
|
|
1895
|
+
{ [_h]: ["GET", "/v2/get-failure-mode-finding", 200] }, () => GetFailureModeFindingRequest$, () => GetFailureModeFindingResponse$
|
|
1896
|
+
];
|
|
1897
|
+
var GetPolicy$ = [9, n0, _GP,
|
|
1898
|
+
{ [_h]: ["GET", "/v2/get-policy", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
1899
|
+
];
|
|
1900
|
+
var GetService$ = [9, n0, _GS,
|
|
1901
|
+
{ [_h]: ["GET", "/v2/get-service", 200] }, () => GetServiceRequest$, () => GetServiceResponse$
|
|
1902
|
+
];
|
|
1903
|
+
var GetSystem$ = [9, n0, _GSe,
|
|
1904
|
+
{ [_h]: ["GET", "/v2/get-system", 200] }, () => GetSystemRequest$, () => GetSystemResponse$
|
|
1905
|
+
];
|
|
1906
|
+
var GetUserJourney$ = [9, n0, _GUJ,
|
|
1907
|
+
{ [_h]: ["GET", "/v2/get-user-journey", 200] }, () => GetUserJourneyRequest$, () => GetUserJourneyResponse$
|
|
1908
|
+
];
|
|
1909
|
+
var ImportApp$ = [9, n0, _IA,
|
|
1910
|
+
{ [_h]: ["POST", "/v2/import-app", 200] }, () => ImportAppRequest$, () => ImportAppResponse$
|
|
1911
|
+
];
|
|
1912
|
+
var ImportPolicy$ = [9, n0, _IP,
|
|
1913
|
+
{ [_h]: ["POST", "/v2/import-policy", 200] }, () => ImportPolicyRequest$, () => ImportPolicyResponse$
|
|
1914
|
+
];
|
|
1915
|
+
var ListAssertions$ = [9, n0, _LA,
|
|
1916
|
+
{ [_h]: ["GET", "/v2/list-assertions", 200] }, () => ListAssertionsRequest$, () => ListAssertionsResponse$
|
|
1917
|
+
];
|
|
1918
|
+
var ListDependencies$ = [9, n0, _LD,
|
|
1919
|
+
{ [_h]: ["GET", "/v2/list-dependencies", 200] }, () => ListDependenciesRequest$, () => ListDependenciesResponse$
|
|
1920
|
+
];
|
|
1921
|
+
var ListFailureModeAssessments$ = [9, n0, _LFMA,
|
|
1922
|
+
{ [_h]: ["GET", "/v2/list-failure-mode-assessments", 200] }, () => ListFailureModeAssessmentsRequest$, () => ListFailureModeAssessmentsResponse$
|
|
1923
|
+
];
|
|
1924
|
+
var ListFailureModeFindings$ = [9, n0, _LFMF,
|
|
1925
|
+
{ [_h]: ["GET", "/v2/list-failure-mode-findings", 200] }, () => ListFailureModeFindingsRequest$, () => ListFailureModeFindingsResponse$
|
|
1926
|
+
];
|
|
1927
|
+
var ListInputSources$ = [9, n0, _LIS,
|
|
1928
|
+
{ [_h]: ["GET", "/v2/list-input-sources", 200] }, () => ListInputSourcesRequest$, () => ListInputSourcesResponse$
|
|
1929
|
+
];
|
|
1930
|
+
var ListPolicies$ = [9, n0, _LP,
|
|
1931
|
+
{ [_h]: ["GET", "/v2/list-policies", 200] }, () => ListPoliciesRequest$, () => ListPoliciesResponse$
|
|
1932
|
+
];
|
|
1933
|
+
var ListReports$ = [9, n0, _LR,
|
|
1934
|
+
{ [_h]: ["GET", "/v2/list-reports", 200] }, () => ListReportsRequest$, () => ListReportsResponse$
|
|
1935
|
+
];
|
|
1936
|
+
var ListResources$ = [9, n0, _LRi,
|
|
1937
|
+
{ [_h]: ["GET", "/v2/list-resources", 200] }, () => ListResourcesRequest$, () => ListResourcesResponse$
|
|
1938
|
+
];
|
|
1939
|
+
var ListServiceEvents$ = [9, n0, _LSE,
|
|
1940
|
+
{ [_h]: ["GET", "/v2/list-service-events", 200] }, () => ListServiceEventsRequest$, () => ListServiceEventsResponse$
|
|
1941
|
+
];
|
|
1942
|
+
var ListServiceFunctions$ = [9, n0, _LSF,
|
|
1943
|
+
{ [_h]: ["GET", "/v2/list-functions", 200] }, () => ListServiceFunctionsRequest$, () => ListServiceFunctionsResponse$
|
|
1944
|
+
];
|
|
1945
|
+
var ListServices$ = [9, n0, _LS,
|
|
1946
|
+
{ [_h]: ["GET", "/v2/list-services", 200] }, () => ListServicesRequest$, () => ListServicesResponse$
|
|
1947
|
+
];
|
|
1948
|
+
var ListServiceTopologyEdges$ = [9, n0, _LSTE,
|
|
1949
|
+
{ [_h]: ["GET", "/v2/list-service-topology-edges", 200] }, () => ListServiceTopologyEdgesRequest$, () => ListServiceTopologyEdgesResponse$
|
|
1950
|
+
];
|
|
1951
|
+
var ListSystemEvents$ = [9, n0, _LSEi,
|
|
1952
|
+
{ [_h]: ["GET", "/v2/list-system-events", 200] }, () => ListSystemEventsRequest$, () => ListSystemEventsResponse$
|
|
1953
|
+
];
|
|
1954
|
+
var ListSystems$ = [9, n0, _LSi,
|
|
1955
|
+
{ [_h]: ["GET", "/v2/list-systems", 200] }, () => ListSystemsRequest$, () => ListSystemsResponse$
|
|
1956
|
+
];
|
|
1957
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1958
|
+
{ [_h]: ["GET", "/v2/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1959
|
+
];
|
|
1960
|
+
var ListUserJourneys$ = [9, n0, _LUJ,
|
|
1961
|
+
{ [_h]: ["GET", "/v2/list-user-journeys", 200] }, () => ListUserJourneysRequest$, () => ListUserJourneysResponse$
|
|
1962
|
+
];
|
|
1963
|
+
var StartFailureModeAssessment$ = [9, n0, _SFMA,
|
|
1964
|
+
{ [_h]: ["POST", "/v2/start-failure-mode-assessment", 200] }, () => StartFailureModeAssessmentRequest$, () => StartFailureModeAssessmentResponse$
|
|
1965
|
+
];
|
|
1966
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1967
|
+
{ [_h]: ["POST", "/v2/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1968
|
+
];
|
|
1969
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1970
|
+
{ [_h]: ["DELETE", "/v2/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1971
|
+
];
|
|
1972
|
+
var UpdateAssertion$ = [9, n0, _UA,
|
|
1973
|
+
{ [_h]: ["POST", "/v2/update-assertion", 200] }, () => UpdateAssertionRequest$, () => UpdateAssertionResponse$
|
|
1974
|
+
];
|
|
1975
|
+
var UpdateDependency$ = [9, n0, _UD,
|
|
1976
|
+
{ [_h]: ["POST", "/v2/update-dependency", 200] }, () => UpdateDependencyRequest$, () => UpdateDependencyResponse$
|
|
1977
|
+
];
|
|
1978
|
+
var UpdateFailureModeFinding$ = [9, n0, _UFMF,
|
|
1979
|
+
{ [_h]: ["POST", "/v2/update-failure-mode-finding", 200] }, () => UpdateFailureModeFindingRequest$, () => UpdateFailureModeFindingResponse$
|
|
1980
|
+
];
|
|
1981
|
+
var UpdatePolicy$ = [9, n0, _UP,
|
|
1982
|
+
{ [_h]: ["POST", "/v2/update-policy", 200] }, () => UpdatePolicyRequest$, () => UpdatePolicyResponse$
|
|
1983
|
+
];
|
|
1984
|
+
var UpdateService$ = [9, n0, _US,
|
|
1985
|
+
{ [_h]: ["POST", "/v2/update-service", 200] }, () => UpdateServiceRequest$, () => UpdateServiceResponse$
|
|
1986
|
+
];
|
|
1987
|
+
var UpdateServiceFunction$ = [9, n0, _USF,
|
|
1988
|
+
{ [_h]: ["POST", "/v2/update-function", 200] }, () => UpdateServiceFunctionRequest$, () => UpdateServiceFunctionResponse$
|
|
1989
|
+
];
|
|
1990
|
+
var UpdateSystem$ = [9, n0, _USp,
|
|
1991
|
+
{ [_h]: ["POST", "/v2/update-system", 200] }, () => UpdateSystemRequest$, () => UpdateSystemResponse$
|
|
1992
|
+
];
|
|
1993
|
+
var UpdateUserJourney$ = [9, n0, _UUJ,
|
|
1994
|
+
{ [_h]: ["POST", "/v2/update-user-journey", 200] }, () => UpdateUserJourneyRequest$, () => UpdateUserJourneyResponse$
|
|
1995
|
+
];
|
|
1996
|
+
|
|
1997
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1998
|
+
return {
|
|
1999
|
+
apiVersion: "2026-02-17",
|
|
2000
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2001
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2002
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2003
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2004
|
+
extensions: config?.extensions ?? [],
|
|
2005
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultResiliencehubv2HttpAuthSchemeProvider,
|
|
2006
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2007
|
+
{
|
|
2008
|
+
schemeId: "aws.auth#sigv4",
|
|
2009
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2010
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2011
|
+
},
|
|
2012
|
+
],
|
|
2013
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2014
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2015
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2016
|
+
defaultNamespace: "com.amazonaws.resiliencehubv2",
|
|
2017
|
+
errorTypeRegistries,
|
|
2018
|
+
version: "2026-02-17",
|
|
2019
|
+
serviceTarget: "NGRHServiceCore",
|
|
2020
|
+
},
|
|
2021
|
+
serviceId: config?.serviceId ?? "resiliencehubv2",
|
|
2022
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2023
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2024
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
|
|
2028
|
+
const getRuntimeConfig = (config) => {
|
|
2029
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2030
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2031
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2032
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2033
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2034
|
+
const loaderConfig = {
|
|
2035
|
+
profile: config?.profile,
|
|
2036
|
+
logger: clientSharedValues.logger,
|
|
2037
|
+
};
|
|
2038
|
+
return {
|
|
2039
|
+
...clientSharedValues,
|
|
2040
|
+
...config,
|
|
2041
|
+
runtime: "node",
|
|
2042
|
+
defaultsMode,
|
|
2043
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2044
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2045
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2046
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2047
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2048
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2049
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2050
|
+
retryMode: config?.retryMode ??
|
|
2051
|
+
loadConfig({
|
|
2052
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2053
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2054
|
+
}, config),
|
|
2055
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2056
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2057
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2058
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2059
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2062
|
+
|
|
34
2063
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2064
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2065
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1229,89 +3258,349 @@ const SystemEventType = {
|
|
|
1229
3258
|
SYSTEM_USER_JOURNEY_UPDATED: "SYSTEM_USER_JOURNEY_UPDATED",
|
|
1230
3259
|
};
|
|
1231
3260
|
|
|
3261
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3262
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3263
|
+
exports.Achievability$ = Achievability$;
|
|
1232
3264
|
exports.AchievabilityStatus = AchievabilityStatus;
|
|
1233
3265
|
exports.ActorType = ActorType;
|
|
3266
|
+
exports.Assertion$ = Assertion$;
|
|
3267
|
+
exports.AssertionCreatedMetadata$ = AssertionCreatedMetadata$;
|
|
3268
|
+
exports.AssertionDeletedMetadata$ = AssertionDeletedMetadata$;
|
|
1234
3269
|
exports.AssertionSource = AssertionSource;
|
|
3270
|
+
exports.AssertionUpdatedMetadata$ = AssertionUpdatedMetadata$;
|
|
3271
|
+
exports.AssessmentCost$ = AssessmentCost$;
|
|
1235
3272
|
exports.AssessmentErrorCode = AssessmentErrorCode;
|
|
1236
3273
|
exports.AssessmentStatus = AssessmentStatus;
|
|
1237
3274
|
exports.AssessmentStep = AssessmentStep;
|
|
3275
|
+
exports.AssessmentSummary$ = AssessmentSummary$;
|
|
3276
|
+
exports.AssociatedSystem$ = AssociatedSystem$;
|
|
3277
|
+
exports.AvailabilitySlo$ = AvailabilitySlo$;
|
|
3278
|
+
exports.ConflictException = ConflictException;
|
|
3279
|
+
exports.ConflictException$ = ConflictException$;
|
|
1238
3280
|
exports.CostCurrency = CostCurrency;
|
|
3281
|
+
exports.CreateAssertion$ = CreateAssertion$;
|
|
1239
3282
|
exports.CreateAssertionCommand = CreateAssertionCommand;
|
|
3283
|
+
exports.CreateAssertionRequest$ = CreateAssertionRequest$;
|
|
3284
|
+
exports.CreateAssertionResponse$ = CreateAssertionResponse$;
|
|
3285
|
+
exports.CreateInputSource$ = CreateInputSource$;
|
|
1240
3286
|
exports.CreateInputSourceCommand = CreateInputSourceCommand;
|
|
3287
|
+
exports.CreateInputSourceRequest$ = CreateInputSourceRequest$;
|
|
3288
|
+
exports.CreateInputSourceResponse$ = CreateInputSourceResponse$;
|
|
3289
|
+
exports.CreatePolicy$ = CreatePolicy$;
|
|
1241
3290
|
exports.CreatePolicyCommand = CreatePolicyCommand;
|
|
3291
|
+
exports.CreatePolicyRequest$ = CreatePolicyRequest$;
|
|
3292
|
+
exports.CreatePolicyResponse$ = CreatePolicyResponse$;
|
|
3293
|
+
exports.CreateReport$ = CreateReport$;
|
|
1242
3294
|
exports.CreateReportCommand = CreateReportCommand;
|
|
3295
|
+
exports.CreateReportRequest$ = CreateReportRequest$;
|
|
3296
|
+
exports.CreateReportResponse$ = CreateReportResponse$;
|
|
3297
|
+
exports.CreateService$ = CreateService$;
|
|
1243
3298
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
3299
|
+
exports.CreateServiceFunction$ = CreateServiceFunction$;
|
|
1244
3300
|
exports.CreateServiceFunctionCommand = CreateServiceFunctionCommand;
|
|
3301
|
+
exports.CreateServiceFunctionRequest$ = CreateServiceFunctionRequest$;
|
|
3302
|
+
exports.CreateServiceFunctionResources$ = CreateServiceFunctionResources$;
|
|
1245
3303
|
exports.CreateServiceFunctionResourcesCommand = CreateServiceFunctionResourcesCommand;
|
|
3304
|
+
exports.CreateServiceFunctionResourcesRequest$ = CreateServiceFunctionResourcesRequest$;
|
|
3305
|
+
exports.CreateServiceFunctionResourcesResponse$ = CreateServiceFunctionResourcesResponse$;
|
|
3306
|
+
exports.CreateServiceFunctionResponse$ = CreateServiceFunctionResponse$;
|
|
3307
|
+
exports.CreateServiceRequest$ = CreateServiceRequest$;
|
|
3308
|
+
exports.CreateServiceResponse$ = CreateServiceResponse$;
|
|
3309
|
+
exports.CreateSystem$ = CreateSystem$;
|
|
1246
3310
|
exports.CreateSystemCommand = CreateSystemCommand;
|
|
3311
|
+
exports.CreateSystemRequest$ = CreateSystemRequest$;
|
|
3312
|
+
exports.CreateSystemResponse$ = CreateSystemResponse$;
|
|
3313
|
+
exports.CreateUserJourney$ = CreateUserJourney$;
|
|
1247
3314
|
exports.CreateUserJourneyCommand = CreateUserJourneyCommand;
|
|
3315
|
+
exports.CreateUserJourneyRequest$ = CreateUserJourneyRequest$;
|
|
3316
|
+
exports.CreateUserJourneyResponse$ = CreateUserJourneyResponse$;
|
|
3317
|
+
exports.CrossAccountRole$ = CrossAccountRole$;
|
|
3318
|
+
exports.DataRecoveryTargets$ = DataRecoveryTargets$;
|
|
3319
|
+
exports.DeleteAssertion$ = DeleteAssertion$;
|
|
1248
3320
|
exports.DeleteAssertionCommand = DeleteAssertionCommand;
|
|
3321
|
+
exports.DeleteAssertionRequest$ = DeleteAssertionRequest$;
|
|
3322
|
+
exports.DeleteAssertionResponse$ = DeleteAssertionResponse$;
|
|
3323
|
+
exports.DeleteInputSource$ = DeleteInputSource$;
|
|
1249
3324
|
exports.DeleteInputSourceCommand = DeleteInputSourceCommand;
|
|
3325
|
+
exports.DeleteInputSourceRequest$ = DeleteInputSourceRequest$;
|
|
3326
|
+
exports.DeleteInputSourceResponse$ = DeleteInputSourceResponse$;
|
|
3327
|
+
exports.DeletePolicy$ = DeletePolicy$;
|
|
1250
3328
|
exports.DeletePolicyCommand = DeletePolicyCommand;
|
|
3329
|
+
exports.DeletePolicyRequest$ = DeletePolicyRequest$;
|
|
3330
|
+
exports.DeletePolicyResponse$ = DeletePolicyResponse$;
|
|
3331
|
+
exports.DeleteService$ = DeleteService$;
|
|
1251
3332
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
3333
|
+
exports.DeleteServiceFunction$ = DeleteServiceFunction$;
|
|
1252
3334
|
exports.DeleteServiceFunctionCommand = DeleteServiceFunctionCommand;
|
|
3335
|
+
exports.DeleteServiceFunctionRequest$ = DeleteServiceFunctionRequest$;
|
|
3336
|
+
exports.DeleteServiceFunctionResources$ = DeleteServiceFunctionResources$;
|
|
1253
3337
|
exports.DeleteServiceFunctionResourcesCommand = DeleteServiceFunctionResourcesCommand;
|
|
3338
|
+
exports.DeleteServiceFunctionResourcesRequest$ = DeleteServiceFunctionResourcesRequest$;
|
|
3339
|
+
exports.DeleteServiceFunctionResourcesResponse$ = DeleteServiceFunctionResourcesResponse$;
|
|
3340
|
+
exports.DeleteServiceFunctionResponse$ = DeleteServiceFunctionResponse$;
|
|
3341
|
+
exports.DeleteServiceRequest$ = DeleteServiceRequest$;
|
|
3342
|
+
exports.DeleteServiceResponse$ = DeleteServiceResponse$;
|
|
3343
|
+
exports.DeleteSystem$ = DeleteSystem$;
|
|
1254
3344
|
exports.DeleteSystemCommand = DeleteSystemCommand;
|
|
3345
|
+
exports.DeleteSystemRequest$ = DeleteSystemRequest$;
|
|
3346
|
+
exports.DeleteSystemResponse$ = DeleteSystemResponse$;
|
|
3347
|
+
exports.DeleteUserJourney$ = DeleteUserJourney$;
|
|
1255
3348
|
exports.DeleteUserJourneyCommand = DeleteUserJourneyCommand;
|
|
3349
|
+
exports.DeleteUserJourneyRequest$ = DeleteUserJourneyRequest$;
|
|
3350
|
+
exports.DeleteUserJourneyResponse$ = DeleteUserJourneyResponse$;
|
|
1256
3351
|
exports.DependencyCriticality = DependencyCriticality;
|
|
3352
|
+
exports.DependencyDiscoveryConfig$ = DependencyDiscoveryConfig$;
|
|
1257
3353
|
exports.DependencyDiscoveryInput = DependencyDiscoveryInput;
|
|
1258
3354
|
exports.DependencyDiscoveryStatus = DependencyDiscoveryStatus;
|
|
3355
|
+
exports.DependencySummary$ = DependencySummary$;
|
|
3356
|
+
exports.DisasterRecoverySource$ = DisasterRecoverySource$;
|
|
3357
|
+
exports.EdgePropertySummary$ = EdgePropertySummary$;
|
|
3358
|
+
exports.EffectivePolicyValues$ = EffectivePolicyValues$;
|
|
3359
|
+
exports.EksSource$ = EksSource$;
|
|
3360
|
+
exports.EventActor$ = EventActor$;
|
|
3361
|
+
exports.FailedReportOutput$ = FailedReportOutput$;
|
|
1259
3362
|
exports.FailureCategory = FailureCategory;
|
|
3363
|
+
exports.Finding$ = Finding$;
|
|
1260
3364
|
exports.FindingSeverity = FindingSeverity;
|
|
1261
3365
|
exports.FindingStatus = FindingStatus;
|
|
3366
|
+
exports.FindingSummary$ = FindingSummary$;
|
|
3367
|
+
exports.GetFailureModeFinding$ = GetFailureModeFinding$;
|
|
1262
3368
|
exports.GetFailureModeFindingCommand = GetFailureModeFindingCommand;
|
|
3369
|
+
exports.GetFailureModeFindingRequest$ = GetFailureModeFindingRequest$;
|
|
3370
|
+
exports.GetFailureModeFindingResponse$ = GetFailureModeFindingResponse$;
|
|
3371
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
1263
3372
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
3373
|
+
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
3374
|
+
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
3375
|
+
exports.GetService$ = GetService$;
|
|
1264
3376
|
exports.GetServiceCommand = GetServiceCommand;
|
|
3377
|
+
exports.GetServiceRequest$ = GetServiceRequest$;
|
|
3378
|
+
exports.GetServiceResponse$ = GetServiceResponse$;
|
|
3379
|
+
exports.GetSystem$ = GetSystem$;
|
|
1265
3380
|
exports.GetSystemCommand = GetSystemCommand;
|
|
3381
|
+
exports.GetSystemRequest$ = GetSystemRequest$;
|
|
3382
|
+
exports.GetSystemResponse$ = GetSystemResponse$;
|
|
3383
|
+
exports.GetUserJourney$ = GetUserJourney$;
|
|
1266
3384
|
exports.GetUserJourneyCommand = GetUserJourneyCommand;
|
|
3385
|
+
exports.GetUserJourneyRequest$ = GetUserJourneyRequest$;
|
|
3386
|
+
exports.GetUserJourneyResponse$ = GetUserJourneyResponse$;
|
|
3387
|
+
exports.ImportApp$ = ImportApp$;
|
|
1267
3388
|
exports.ImportAppCommand = ImportAppCommand;
|
|
3389
|
+
exports.ImportAppRequest$ = ImportAppRequest$;
|
|
3390
|
+
exports.ImportAppResponse$ = ImportAppResponse$;
|
|
3391
|
+
exports.ImportPolicy$ = ImportPolicy$;
|
|
1268
3392
|
exports.ImportPolicyCommand = ImportPolicyCommand;
|
|
3393
|
+
exports.ImportPolicyRequest$ = ImportPolicyRequest$;
|
|
3394
|
+
exports.ImportPolicyResponse$ = ImportPolicyResponse$;
|
|
3395
|
+
exports.InfrastructureAndCodeRecommendation$ = InfrastructureAndCodeRecommendation$;
|
|
3396
|
+
exports.InputSource$ = InputSource$;
|
|
3397
|
+
exports.InputSourceSummary$ = InputSourceSummary$;
|
|
1269
3398
|
exports.InputSourceType = InputSourceType;
|
|
3399
|
+
exports.InternalServerException = InternalServerException;
|
|
3400
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
3401
|
+
exports.ListAssertions$ = ListAssertions$;
|
|
1270
3402
|
exports.ListAssertionsCommand = ListAssertionsCommand;
|
|
3403
|
+
exports.ListAssertionsRequest$ = ListAssertionsRequest$;
|
|
3404
|
+
exports.ListAssertionsResponse$ = ListAssertionsResponse$;
|
|
3405
|
+
exports.ListDependencies$ = ListDependencies$;
|
|
1271
3406
|
exports.ListDependenciesCommand = ListDependenciesCommand;
|
|
3407
|
+
exports.ListDependenciesRequest$ = ListDependenciesRequest$;
|
|
3408
|
+
exports.ListDependenciesResponse$ = ListDependenciesResponse$;
|
|
3409
|
+
exports.ListFailureModeAssessments$ = ListFailureModeAssessments$;
|
|
1272
3410
|
exports.ListFailureModeAssessmentsCommand = ListFailureModeAssessmentsCommand;
|
|
3411
|
+
exports.ListFailureModeAssessmentsRequest$ = ListFailureModeAssessmentsRequest$;
|
|
3412
|
+
exports.ListFailureModeAssessmentsResponse$ = ListFailureModeAssessmentsResponse$;
|
|
3413
|
+
exports.ListFailureModeFindings$ = ListFailureModeFindings$;
|
|
1273
3414
|
exports.ListFailureModeFindingsCommand = ListFailureModeFindingsCommand;
|
|
3415
|
+
exports.ListFailureModeFindingsRequest$ = ListFailureModeFindingsRequest$;
|
|
3416
|
+
exports.ListFailureModeFindingsResponse$ = ListFailureModeFindingsResponse$;
|
|
3417
|
+
exports.ListInputSources$ = ListInputSources$;
|
|
1274
3418
|
exports.ListInputSourcesCommand = ListInputSourcesCommand;
|
|
3419
|
+
exports.ListInputSourcesRequest$ = ListInputSourcesRequest$;
|
|
3420
|
+
exports.ListInputSourcesResponse$ = ListInputSourcesResponse$;
|
|
3421
|
+
exports.ListPolicies$ = ListPolicies$;
|
|
1275
3422
|
exports.ListPoliciesCommand = ListPoliciesCommand;
|
|
3423
|
+
exports.ListPoliciesRequest$ = ListPoliciesRequest$;
|
|
3424
|
+
exports.ListPoliciesResponse$ = ListPoliciesResponse$;
|
|
3425
|
+
exports.ListReports$ = ListReports$;
|
|
1276
3426
|
exports.ListReportsCommand = ListReportsCommand;
|
|
3427
|
+
exports.ListReportsRequest$ = ListReportsRequest$;
|
|
3428
|
+
exports.ListReportsResponse$ = ListReportsResponse$;
|
|
3429
|
+
exports.ListResources$ = ListResources$;
|
|
1277
3430
|
exports.ListResourcesCommand = ListResourcesCommand;
|
|
3431
|
+
exports.ListResourcesRequest$ = ListResourcesRequest$;
|
|
3432
|
+
exports.ListResourcesResponse$ = ListResourcesResponse$;
|
|
3433
|
+
exports.ListServiceEvents$ = ListServiceEvents$;
|
|
1278
3434
|
exports.ListServiceEventsCommand = ListServiceEventsCommand;
|
|
3435
|
+
exports.ListServiceEventsRequest$ = ListServiceEventsRequest$;
|
|
3436
|
+
exports.ListServiceEventsResponse$ = ListServiceEventsResponse$;
|
|
3437
|
+
exports.ListServiceFunctions$ = ListServiceFunctions$;
|
|
1279
3438
|
exports.ListServiceFunctionsCommand = ListServiceFunctionsCommand;
|
|
3439
|
+
exports.ListServiceFunctionsRequest$ = ListServiceFunctionsRequest$;
|
|
3440
|
+
exports.ListServiceFunctionsResponse$ = ListServiceFunctionsResponse$;
|
|
3441
|
+
exports.ListServiceTopologyEdges$ = ListServiceTopologyEdges$;
|
|
1280
3442
|
exports.ListServiceTopologyEdgesCommand = ListServiceTopologyEdgesCommand;
|
|
3443
|
+
exports.ListServiceTopologyEdgesRequest$ = ListServiceTopologyEdgesRequest$;
|
|
3444
|
+
exports.ListServiceTopologyEdgesResponse$ = ListServiceTopologyEdgesResponse$;
|
|
3445
|
+
exports.ListServices$ = ListServices$;
|
|
1281
3446
|
exports.ListServicesCommand = ListServicesCommand;
|
|
3447
|
+
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
3448
|
+
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
3449
|
+
exports.ListSystemEvents$ = ListSystemEvents$;
|
|
1282
3450
|
exports.ListSystemEventsCommand = ListSystemEventsCommand;
|
|
3451
|
+
exports.ListSystemEventsRequest$ = ListSystemEventsRequest$;
|
|
3452
|
+
exports.ListSystemEventsResponse$ = ListSystemEventsResponse$;
|
|
3453
|
+
exports.ListSystems$ = ListSystems$;
|
|
1283
3454
|
exports.ListSystemsCommand = ListSystemsCommand;
|
|
3455
|
+
exports.ListSystemsRequest$ = ListSystemsRequest$;
|
|
3456
|
+
exports.ListSystemsResponse$ = ListSystemsResponse$;
|
|
3457
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1284
3458
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3459
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3460
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3461
|
+
exports.ListUserJourneys$ = ListUserJourneys$;
|
|
1285
3462
|
exports.ListUserJourneysCommand = ListUserJourneysCommand;
|
|
3463
|
+
exports.ListUserJourneysRequest$ = ListUserJourneysRequest$;
|
|
3464
|
+
exports.ListUserJourneysResponse$ = ListUserJourneysResponse$;
|
|
1286
3465
|
exports.MultiAzDisasterRecoveryApproach = MultiAzDisasterRecoveryApproach;
|
|
3466
|
+
exports.MultiAzTargets$ = MultiAzTargets$;
|
|
1287
3467
|
exports.MultiRegionDisasterRecoveryApproach = MultiRegionDisasterRecoveryApproach;
|
|
3468
|
+
exports.MultiRegionTargets$ = MultiRegionTargets$;
|
|
3469
|
+
exports.ObservabilityRecommendation$ = ObservabilityRecommendation$;
|
|
3470
|
+
exports.PermissionModel$ = PermissionModel$;
|
|
3471
|
+
exports.Policy$ = Policy$;
|
|
1288
3472
|
exports.PolicyComponent = PolicyComponent;
|
|
3473
|
+
exports.PolicySummary$ = PolicySummary$;
|
|
1289
3474
|
exports.PolicyValueSource = PolicyValueSource;
|
|
3475
|
+
exports.QueryDataPoint$ = QueryDataPoint$;
|
|
1290
3476
|
exports.QueryGranularity = QueryGranularity;
|
|
3477
|
+
exports.QueryRange$ = QueryRange$;
|
|
1291
3478
|
exports.ReportGenerationErrorCode = ReportGenerationErrorCode;
|
|
3479
|
+
exports.ReportGenerationResult$ = ReportGenerationResult$;
|
|
1292
3480
|
exports.ReportGenerationStatus = ReportGenerationStatus;
|
|
3481
|
+
exports.ReportOutput$ = ReportOutput$;
|
|
3482
|
+
exports.ReportOutputConfiguration$ = ReportOutputConfiguration$;
|
|
1293
3483
|
exports.ReportType = ReportType;
|
|
1294
3484
|
exports.Resiliencehubv2 = Resiliencehubv2;
|
|
1295
3485
|
exports.Resiliencehubv2Client = Resiliencehubv2Client;
|
|
3486
|
+
exports.Resiliencehubv2ServiceException = Resiliencehubv2ServiceException;
|
|
3487
|
+
exports.Resiliencehubv2ServiceException$ = Resiliencehubv2ServiceException$;
|
|
3488
|
+
exports.Resource$ = Resource$;
|
|
3489
|
+
exports.ResourceConfiguration$ = ResourceConfiguration$;
|
|
1296
3490
|
exports.ResourceDiscoveryErrorCode = ResourceDiscoveryErrorCode;
|
|
1297
3491
|
exports.ResourceDiscoveryRunStatus = ResourceDiscoveryRunStatus;
|
|
3492
|
+
exports.ResourceDiscoveryStatus$ = ResourceDiscoveryStatus$;
|
|
3493
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3494
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3495
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
3496
|
+
exports.S3ReportOutput$ = S3ReportOutput$;
|
|
3497
|
+
exports.S3ReportOutputConfiguration$ = S3ReportOutputConfiguration$;
|
|
3498
|
+
exports.Service$ = Service$;
|
|
3499
|
+
exports.ServiceAchievabilityUpdatedMetadata$ = ServiceAchievabilityUpdatedMetadata$;
|
|
3500
|
+
exports.ServiceCreatedMetadata$ = ServiceCreatedMetadata$;
|
|
3501
|
+
exports.ServiceDeletedMetadata$ = ServiceDeletedMetadata$;
|
|
3502
|
+
exports.ServiceEvent$ = ServiceEvent$;
|
|
3503
|
+
exports.ServiceEventDetails$ = ServiceEventDetails$;
|
|
3504
|
+
exports.ServiceEventMetadata$ = ServiceEventMetadata$;
|
|
1298
3505
|
exports.ServiceEventType = ServiceEventType;
|
|
3506
|
+
exports.ServiceFunction$ = ServiceFunction$;
|
|
3507
|
+
exports.ServiceFunctionCreatedMetadata$ = ServiceFunctionCreatedMetadata$;
|
|
1299
3508
|
exports.ServiceFunctionCriticality = ServiceFunctionCriticality;
|
|
3509
|
+
exports.ServiceFunctionDeletedMetadata$ = ServiceFunctionDeletedMetadata$;
|
|
3510
|
+
exports.ServiceFunctionResourcesAddedMetadata$ = ServiceFunctionResourcesAddedMetadata$;
|
|
3511
|
+
exports.ServiceFunctionResourcesRemovedMetadata$ = ServiceFunctionResourcesRemovedMetadata$;
|
|
1300
3512
|
exports.ServiceFunctionSource = ServiceFunctionSource;
|
|
3513
|
+
exports.ServiceFunctionUpdatedMetadata$ = ServiceFunctionUpdatedMetadata$;
|
|
3514
|
+
exports.ServiceInputSourcesUpdatedMetadata$ = ServiceInputSourcesUpdatedMetadata$;
|
|
3515
|
+
exports.ServicePolicyAssociatedMetadata$ = ServicePolicyAssociatedMetadata$;
|
|
3516
|
+
exports.ServicePolicyDisassociatedMetadata$ = ServicePolicyDisassociatedMetadata$;
|
|
3517
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3518
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3519
|
+
exports.ServiceReference$ = ServiceReference$;
|
|
3520
|
+
exports.ServiceReferenceChanges$ = ServiceReferenceChanges$;
|
|
3521
|
+
exports.ServiceReportConfiguration$ = ServiceReportConfiguration$;
|
|
3522
|
+
exports.ServiceResource$ = ServiceResource$;
|
|
3523
|
+
exports.ServiceResourcesAssociatedMetadata$ = ServiceResourcesAssociatedMetadata$;
|
|
3524
|
+
exports.ServiceResourcesDisassociatedMetadata$ = ServiceResourcesDisassociatedMetadata$;
|
|
3525
|
+
exports.ServiceSummary$ = ServiceSummary$;
|
|
3526
|
+
exports.ServiceSystemAssociatedMetadata$ = ServiceSystemAssociatedMetadata$;
|
|
3527
|
+
exports.ServiceSystemDisassociatedMetadata$ = ServiceSystemDisassociatedMetadata$;
|
|
3528
|
+
exports.ServiceTopologyEdgeSummary$ = ServiceTopologyEdgeSummary$;
|
|
3529
|
+
exports.ServiceWorkflowUpdatedMetadata$ = ServiceWorkflowUpdatedMetadata$;
|
|
3530
|
+
exports.SloSource$ = SloSource$;
|
|
3531
|
+
exports.StartFailureModeAssessment$ = StartFailureModeAssessment$;
|
|
1301
3532
|
exports.StartFailureModeAssessmentCommand = StartFailureModeAssessmentCommand;
|
|
3533
|
+
exports.StartFailureModeAssessmentRequest$ = StartFailureModeAssessmentRequest$;
|
|
3534
|
+
exports.StartFailureModeAssessmentResponse$ = StartFailureModeAssessmentResponse$;
|
|
3535
|
+
exports.StringChange$ = StringChange$;
|
|
3536
|
+
exports.System$ = System$;
|
|
3537
|
+
exports.SystemCreatedMetadata$ = SystemCreatedMetadata$;
|
|
3538
|
+
exports.SystemDeletedMetadata$ = SystemDeletedMetadata$;
|
|
3539
|
+
exports.SystemEvent$ = SystemEvent$;
|
|
3540
|
+
exports.SystemEventDetails$ = SystemEventDetails$;
|
|
3541
|
+
exports.SystemEventMetadata$ = SystemEventMetadata$;
|
|
1302
3542
|
exports.SystemEventType = SystemEventType;
|
|
3543
|
+
exports.SystemPolicyAssociatedMetadata$ = SystemPolicyAssociatedMetadata$;
|
|
3544
|
+
exports.SystemPolicyDisassociatedMetadata$ = SystemPolicyDisassociatedMetadata$;
|
|
3545
|
+
exports.SystemServiceAssociatedMetadata$ = SystemServiceAssociatedMetadata$;
|
|
3546
|
+
exports.SystemServiceDisassociatedMetadata$ = SystemServiceDisassociatedMetadata$;
|
|
3547
|
+
exports.SystemSummary$ = SystemSummary$;
|
|
3548
|
+
exports.SystemUserJourneyCreatedMetadata$ = SystemUserJourneyCreatedMetadata$;
|
|
3549
|
+
exports.SystemUserJourneyDeletedMetadata$ = SystemUserJourneyDeletedMetadata$;
|
|
3550
|
+
exports.SystemUserJourneyUpdatedMetadata$ = SystemUserJourneyUpdatedMetadata$;
|
|
3551
|
+
exports.TagResource$ = TagResource$;
|
|
1303
3552
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3553
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3554
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3555
|
+
exports.TargetSource$ = TargetSource$;
|
|
3556
|
+
exports.TestingRecommendation$ = TestingRecommendation$;
|
|
3557
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3558
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1304
3559
|
exports.TopologyType = TopologyType;
|
|
3560
|
+
exports.UntagResource$ = UntagResource$;
|
|
1305
3561
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3562
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3563
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3564
|
+
exports.UpdateAssertion$ = UpdateAssertion$;
|
|
1306
3565
|
exports.UpdateAssertionCommand = UpdateAssertionCommand;
|
|
3566
|
+
exports.UpdateAssertionRequest$ = UpdateAssertionRequest$;
|
|
3567
|
+
exports.UpdateAssertionResponse$ = UpdateAssertionResponse$;
|
|
3568
|
+
exports.UpdateDependency$ = UpdateDependency$;
|
|
1307
3569
|
exports.UpdateDependencyCommand = UpdateDependencyCommand;
|
|
3570
|
+
exports.UpdateDependencyRequest$ = UpdateDependencyRequest$;
|
|
3571
|
+
exports.UpdateDependencyResponse$ = UpdateDependencyResponse$;
|
|
3572
|
+
exports.UpdateFailureModeFinding$ = UpdateFailureModeFinding$;
|
|
1308
3573
|
exports.UpdateFailureModeFindingCommand = UpdateFailureModeFindingCommand;
|
|
3574
|
+
exports.UpdateFailureModeFindingRequest$ = UpdateFailureModeFindingRequest$;
|
|
3575
|
+
exports.UpdateFailureModeFindingResponse$ = UpdateFailureModeFindingResponse$;
|
|
3576
|
+
exports.UpdatePolicy$ = UpdatePolicy$;
|
|
1309
3577
|
exports.UpdatePolicyCommand = UpdatePolicyCommand;
|
|
3578
|
+
exports.UpdatePolicyRequest$ = UpdatePolicyRequest$;
|
|
3579
|
+
exports.UpdatePolicyResponse$ = UpdatePolicyResponse$;
|
|
3580
|
+
exports.UpdateService$ = UpdateService$;
|
|
1310
3581
|
exports.UpdateServiceCommand = UpdateServiceCommand;
|
|
3582
|
+
exports.UpdateServiceFunction$ = UpdateServiceFunction$;
|
|
1311
3583
|
exports.UpdateServiceFunctionCommand = UpdateServiceFunctionCommand;
|
|
3584
|
+
exports.UpdateServiceFunctionRequest$ = UpdateServiceFunctionRequest$;
|
|
3585
|
+
exports.UpdateServiceFunctionResponse$ = UpdateServiceFunctionResponse$;
|
|
3586
|
+
exports.UpdateServiceRequest$ = UpdateServiceRequest$;
|
|
3587
|
+
exports.UpdateServiceResponse$ = UpdateServiceResponse$;
|
|
3588
|
+
exports.UpdateSystem$ = UpdateSystem$;
|
|
1312
3589
|
exports.UpdateSystemCommand = UpdateSystemCommand;
|
|
3590
|
+
exports.UpdateSystemRequest$ = UpdateSystemRequest$;
|
|
3591
|
+
exports.UpdateSystemResponse$ = UpdateSystemResponse$;
|
|
3592
|
+
exports.UpdateUserJourney$ = UpdateUserJourney$;
|
|
1313
3593
|
exports.UpdateUserJourneyCommand = UpdateUserJourneyCommand;
|
|
3594
|
+
exports.UpdateUserJourneyRequest$ = UpdateUserJourneyRequest$;
|
|
3595
|
+
exports.UpdateUserJourneyResponse$ = UpdateUserJourneyResponse$;
|
|
3596
|
+
exports.UserJourney$ = UserJourney$;
|
|
3597
|
+
exports.UserJourneyChanges$ = UserJourneyChanges$;
|
|
3598
|
+
exports.UserJourneySummary$ = UserJourneySummary$;
|
|
3599
|
+
exports.ValidationException = ValidationException;
|
|
3600
|
+
exports.ValidationException$ = ValidationException$;
|
|
3601
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1314
3602
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3603
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1315
3604
|
exports.paginateListAssertions = paginateListAssertions;
|
|
1316
3605
|
exports.paginateListDependencies = paginateListDependencies;
|
|
1317
3606
|
exports.paginateListFailureModeAssessments = paginateListFailureModeAssessments;
|