@aws-sdk/client-fis 3.1075.0 → 3.1077.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultFisHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateExperimentTemplate$, CreateTargetAccountConfiguration$, DeleteExperimentTemplate$, DeleteTargetAccountConfiguration$, GetAction$, GetExperiment$, GetExperimentTargetAccountConfiguration$, GetExperimentTemplate$, GetSafetyLever$, GetTargetAccountConfiguration$, GetTargetResourceType$, ListActions$, ListExperimentResolvedTargets$, ListExperiments$, ListExperimentTargetAccountConfigurations$, ListExperimentTemplates$, ListTagsForResource$, ListTargetAccountConfigurations$, ListTargetResourceTypes$, StartExperiment$, StopExperiment$, TagResource$, UntagResource$, UpdateExperimentTemplate$, UpdateSafetyLeverState$, UpdateTargetAccountConfiguration$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { FisServiceException } = require("./models/FisServiceException");
18
- exports.FisServiceException = FisServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultFisHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "fis",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultFisHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1276 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
86
+ ["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [g, i],
93
+ ["https://fis-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://fis.{Region}.amazonaws.com", i],
96
+ ["https://fis-fips.{Region}.{PartitionResult#dnsSuffix}", i],
97
+ [a, "FIPS is enabled but this partition does not support FIPS"],
98
+ ["https://fis.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
99
+ [a, "DualStack is enabled but this partition does not support DualStack"],
100
+ ["https://fis.{Region}.{PartitionResult#dnsSuffix}", i],
101
+ [a, "Invalid Configuration: Missing Region"]
102
+ ]
103
+ };
104
+ const root = 2;
105
+ const r = 100_000_000;
106
+ const nodes = new Int32Array([
107
+ -1, 1, -1,
108
+ 0, 13, 3,
109
+ 1, 4, r + 12,
110
+ 2, 5, r + 12,
111
+ 3, 8, 6,
112
+ 4, 7, r + 11,
113
+ 5, r + 9, r + 10,
114
+ 4, 11, 9,
115
+ 6, 10, r + 8,
116
+ 7, r + 6, r + 7,
117
+ 5, 12, r + 5,
118
+ 6, r + 4, r + 5,
119
+ 3, r + 1, 14,
120
+ 4, r + 2, r + 3,
121
+ ]);
122
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
123
+
124
+ const cache = new EndpointCache({
125
+ size: 50,
126
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
127
+ });
128
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
129
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
130
+ endpointParams: endpointParams,
131
+ logger: context.logger,
132
+ }));
133
+ };
134
+ customEndpointFunctions.aws = awsEndpointFunctions;
135
+
136
+ class FisServiceException extends ServiceException {
137
+ constructor(options) {
138
+ super(options);
139
+ Object.setPrototypeOf(this, FisServiceException.prototype);
140
+ }
141
+ }
142
+
143
+ class ConflictException extends FisServiceException {
144
+ name = "ConflictException";
145
+ $fault = "client";
146
+ constructor(opts) {
147
+ super({
148
+ name: "ConflictException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ Object.setPrototypeOf(this, ConflictException.prototype);
153
+ }
154
+ }
155
+ class ResourceNotFoundException extends FisServiceException {
156
+ name = "ResourceNotFoundException";
157
+ $fault = "client";
158
+ constructor(opts) {
159
+ super({
160
+ name: "ResourceNotFoundException",
161
+ $fault: "client",
162
+ ...opts,
163
+ });
164
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
165
+ }
166
+ }
167
+ class ServiceQuotaExceededException extends FisServiceException {
168
+ name = "ServiceQuotaExceededException";
169
+ $fault = "client";
170
+ constructor(opts) {
171
+ super({
172
+ name: "ServiceQuotaExceededException",
173
+ $fault: "client",
174
+ ...opts,
175
+ });
176
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
177
+ }
178
+ }
179
+ class ValidationException extends FisServiceException {
180
+ name = "ValidationException";
181
+ $fault = "client";
182
+ constructor(opts) {
183
+ super({
184
+ name: "ValidationException",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ Object.setPrototypeOf(this, ValidationException.prototype);
189
+ }
190
+ }
191
+
192
+ const _A = "Action";
193
+ const _AP = "ActionParameter";
194
+ const _APM = "ActionParameterMap";
195
+ const _AS = "ActionSummary";
196
+ const _ASL = "ActionSummaryList";
197
+ const _AT = "ActionTarget";
198
+ const _ATM = "ActionTargetMap";
199
+ const _CE = "ConflictException";
200
+ const _CET = "CreateExperimentTemplate";
201
+ const _CETAI = "CreateExperimentTemplateActionInput";
202
+ const _CETAIM = "CreateExperimentTemplateActionInputMap";
203
+ const _CETEOI = "CreateExperimentTemplateExperimentOptionsInput";
204
+ const _CETLCI = "CreateExperimentTemplateLogConfigurationInput";
205
+ const _CETR = "CreateExperimentTemplateRequest";
206
+ const _CETRCI = "CreateExperimentTemplateReportConfigurationInput";
207
+ const _CETRr = "CreateExperimentTemplateResponse";
208
+ const _CETSCI = "CreateExperimentTemplateStopConditionInput";
209
+ const _CETSCIL = "CreateExperimentTemplateStopConditionInputList";
210
+ const _CETTI = "CreateExperimentTemplateTargetInput";
211
+ const _CETTIM = "CreateExperimentTemplateTargetInputMap";
212
+ const _CTAC = "CreateTargetAccountConfiguration";
213
+ const _CTACR = "CreateTargetAccountConfigurationRequest";
214
+ const _CTACRr = "CreateTargetAccountConfigurationResponse";
215
+ const _DET = "DeleteExperimentTemplate";
216
+ const _DETR = "DeleteExperimentTemplateRequest";
217
+ const _DETRe = "DeleteExperimentTemplateResponse";
218
+ const _DTAC = "DeleteTargetAccountConfiguration";
219
+ const _DTACR = "DeleteTargetAccountConfigurationRequest";
220
+ const _DTACRe = "DeleteTargetAccountConfigurationResponse";
221
+ const _E = "Experiment";
222
+ const _EA = "ExperimentAction";
223
+ const _EAM = "ExperimentActionMap";
224
+ const _EAS = "ExperimentActionState";
225
+ const _ECWLLC = "ExperimentCloudWatchLogsLogConfiguration";
226
+ const _EE = "ExperimentError";
227
+ const _ELC = "ExperimentLogConfiguration";
228
+ const _EO = "ExperimentOptions";
229
+ const _ER = "ExperimentReport";
230
+ const _ERC = "ExperimentReportConfiguration";
231
+ const _ERCCWD = "ExperimentReportConfigurationCloudWatchDashboard";
232
+ const _ERCCWDL = "ExperimentReportConfigurationCloudWatchDashboardList";
233
+ const _ERCDS = "ExperimentReportConfigurationDataSources";
234
+ const _ERCO = "ExperimentReportConfigurationOutputs";
235
+ const _ERCOSC = "ExperimentReportConfigurationOutputsS3Configuration";
236
+ const _ERE = "ExperimentReportError";
237
+ const _ERS = "ExperimentReportState";
238
+ const _ERSR = "ExperimentReportS3Report";
239
+ const _ERSRL = "ExperimentReportS3ReportList";
240
+ const _ES = "ExperimentState";
241
+ const _ESC = "ExperimentStopCondition";
242
+ const _ESCL = "ExperimentStopConditionList";
243
+ const _ESL = "ExperimentSummaryList";
244
+ const _ESLC = "ExperimentS3LogConfiguration";
245
+ const _ESx = "ExperimentSummary";
246
+ const _ET = "ExperimentTarget";
247
+ const _ETA = "ExperimentTemplateAction";
248
+ const _ETAC = "ExperimentTargetAccountConfiguration";
249
+ const _ETACL = "ExperimentTargetAccountConfigurationList";
250
+ const _ETACS = "ExperimentTargetAccountConfigurationSummary";
251
+ const _ETAM = "ExperimentTemplateActionMap";
252
+ const _ETCWLLC = "ExperimentTemplateCloudWatchLogsLogConfiguration";
253
+ const _ETCWLLCI = "ExperimentTemplateCloudWatchLogsLogConfigurationInput";
254
+ const _ETEO = "ExperimentTemplateExperimentOptions";
255
+ const _ETF = "ExperimentTargetFilter";
256
+ const _ETFL = "ExperimentTargetFilterList";
257
+ const _ETLC = "ExperimentTemplateLogConfiguration";
258
+ const _ETM = "ExperimentTargetMap";
259
+ const _ETRC = "ExperimentTemplateReportConfiguration";
260
+ const _ETRCCWD = "ExperimentTemplateReportConfigurationCloudWatchDashboard";
261
+ const _ETRCCWDL = "ExperimentTemplateReportConfigurationCloudWatchDashboardList";
262
+ const _ETRCDS = "ExperimentTemplateReportConfigurationDataSources";
263
+ const _ETRCDSI = "ExperimentTemplateReportConfigurationDataSourcesInput";
264
+ const _ETRCO = "ExperimentTemplateReportConfigurationOutputs";
265
+ const _ETRCOI = "ExperimentTemplateReportConfigurationOutputsInput";
266
+ const _ETS = "ExperimentTemplateSummary";
267
+ const _ETSC = "ExperimentTemplateStopCondition";
268
+ const _ETSCL = "ExperimentTemplateStopConditionList";
269
+ const _ETSL = "ExperimentTemplateSummaryList";
270
+ const _ETSLC = "ExperimentTemplateS3LogConfiguration";
271
+ const _ETSLCI = "ExperimentTemplateS3LogConfigurationInput";
272
+ const _ETT = "ExperimentTemplateTarget";
273
+ const _ETTF = "ExperimentTemplateTargetFilter";
274
+ const _ETTFIL = "ExperimentTemplateTargetFilterInputList";
275
+ const _ETTFL = "ExperimentTemplateTargetFilterList";
276
+ const _ETTIF = "ExperimentTemplateTargetInputFilter";
277
+ const _ETTM = "ExperimentTemplateTargetMap";
278
+ const _ETx = "ExperimentTemplate";
279
+ const _GA = "GetAction";
280
+ const _GAR = "GetActionRequest";
281
+ const _GARe = "GetActionResponse";
282
+ const _GE = "GetExperiment";
283
+ const _GER = "GetExperimentRequest";
284
+ const _GERe = "GetExperimentResponse";
285
+ const _GET = "GetExperimentTemplate";
286
+ const _GETAC = "GetExperimentTargetAccountConfiguration";
287
+ const _GETACR = "GetExperimentTargetAccountConfigurationRequest";
288
+ const _GETACRe = "GetExperimentTargetAccountConfigurationResponse";
289
+ const _GETR = "GetExperimentTemplateRequest";
290
+ const _GETRe = "GetExperimentTemplateResponse";
291
+ const _GSL = "GetSafetyLever";
292
+ const _GSLR = "GetSafetyLeverRequest";
293
+ const _GSLRe = "GetSafetyLeverResponse";
294
+ const _GTAC = "GetTargetAccountConfiguration";
295
+ const _GTACR = "GetTargetAccountConfigurationRequest";
296
+ const _GTACRe = "GetTargetAccountConfigurationResponse";
297
+ const _GTRT = "GetTargetResourceType";
298
+ const _GTRTR = "GetTargetResourceTypeRequest";
299
+ const _GTRTRe = "GetTargetResourceTypeResponse";
300
+ const _LA = "ListActions";
301
+ const _LAR = "ListActionsRequest";
302
+ const _LARi = "ListActionsResponse";
303
+ const _LE = "ListExperiments";
304
+ const _LER = "ListExperimentsRequest";
305
+ const _LERT = "ListExperimentResolvedTargets";
306
+ const _LERTR = "ListExperimentResolvedTargetsRequest";
307
+ const _LERTRi = "ListExperimentResolvedTargetsResponse";
308
+ const _LERi = "ListExperimentsResponse";
309
+ const _LET = "ListExperimentTemplates";
310
+ const _LETAC = "ListExperimentTargetAccountConfigurations";
311
+ const _LETACR = "ListExperimentTargetAccountConfigurationsRequest";
312
+ const _LETACRi = "ListExperimentTargetAccountConfigurationsResponse";
313
+ const _LETR = "ListExperimentTemplatesRequest";
314
+ const _LETRi = "ListExperimentTemplatesResponse";
315
+ const _LTAC = "ListTargetAccountConfigurations";
316
+ const _LTACR = "ListTargetAccountConfigurationsRequest";
317
+ const _LTACRi = "ListTargetAccountConfigurationsResponse";
318
+ const _LTFR = "ListTagsForResource";
319
+ const _LTFRR = "ListTagsForResourceRequest";
320
+ const _LTFRRi = "ListTagsForResourceResponse";
321
+ const _LTRT = "ListTargetResourceTypes";
322
+ const _LTRTR = "ListTargetResourceTypesRequest";
323
+ const _LTRTRi = "ListTargetResourceTypesResponse";
324
+ const _RCCWDI = "ReportConfigurationCloudWatchDashboardInput";
325
+ const _RCCWDIL = "ReportConfigurationCloudWatchDashboardInputList";
326
+ const _RCSO = "ReportConfigurationS3Output";
327
+ const _RCSOI = "ReportConfigurationS3OutputInput";
328
+ const _RNFE = "ResourceNotFoundException";
329
+ const _RT = "ResolvedTarget";
330
+ const _RTL = "ResolvedTargetList";
331
+ const _SE = "StartExperiment";
332
+ const _SEEOI = "StartExperimentExperimentOptionsInput";
333
+ const _SER = "StartExperimentRequest";
334
+ const _SERt = "StartExperimentResponse";
335
+ const _SERto = "StopExperimentRequest";
336
+ const _SERtop = "StopExperimentResponse";
337
+ const _SEt = "StopExperiment";
338
+ const _SL = "SafetyLever";
339
+ const _SLS = "SafetyLeverState";
340
+ const _SQEE = "ServiceQuotaExceededException";
341
+ const _TAC = "TargetAccountConfiguration";
342
+ const _TACL = "TargetAccountConfigurationList";
343
+ const _TACS = "TargetAccountConfigurationSummary";
344
+ const _TR = "TagResource";
345
+ const _TRR = "TagResourceRequest";
346
+ const _TRRa = "TagResourceResponse";
347
+ const _TRT = "TargetResourceType";
348
+ const _TRTP = "TargetResourceTypeParameter";
349
+ const _TRTPM = "TargetResourceTypeParameterMap";
350
+ const _TRTS = "TargetResourceTypeSummary";
351
+ const _TRTSL = "TargetResourceTypeSummaryList";
352
+ const _UET = "UpdateExperimentTemplate";
353
+ const _UETAII = "UpdateExperimentTemplateActionInputItem";
354
+ const _UETAIM = "UpdateExperimentTemplateActionInputMap";
355
+ const _UETEOI = "UpdateExperimentTemplateExperimentOptionsInput";
356
+ const _UETLCI = "UpdateExperimentTemplateLogConfigurationInput";
357
+ const _UETR = "UpdateExperimentTemplateRequest";
358
+ const _UETRCI = "UpdateExperimentTemplateReportConfigurationInput";
359
+ const _UETRp = "UpdateExperimentTemplateResponse";
360
+ const _UETSCI = "UpdateExperimentTemplateStopConditionInput";
361
+ const _UETSCIL = "UpdateExperimentTemplateStopConditionInputList";
362
+ const _UETTI = "UpdateExperimentTemplateTargetInput";
363
+ const _UETTIM = "UpdateExperimentTemplateTargetInputMap";
364
+ const _UR = "UntagResource";
365
+ const _URR = "UntagResourceRequest";
366
+ const _URRn = "UntagResourceResponse";
367
+ const _USLS = "UpdateSafetyLeverState";
368
+ const _USLSI = "UpdateSafetyLeverStateInput";
369
+ const _USLSR = "UpdateSafetyLeverStateRequest";
370
+ const _USLSRp = "UpdateSafetyLeverStateResponse";
371
+ const _UTAC = "UpdateTargetAccountConfiguration";
372
+ const _UTACR = "UpdateTargetAccountConfigurationRequest";
373
+ const _UTACRp = "UpdateTargetAccountConfigurationResponse";
374
+ const _VE = "ValidationException";
375
+ const _a = "arn";
376
+ const _aI = "actionId";
377
+ const _aIc = "accountId";
378
+ const _aM = "actionsMode";
379
+ const _aQE = "awsQueryError";
380
+ const _aT = "accountTargeting";
381
+ const _ac = "actions";
382
+ const _act = "action";
383
+ const _bN = "bucketName";
384
+ const _c = "client";
385
+ const _cT = "clientToken";
386
+ const _cTr = "creationTime";
387
+ const _cWD = "cloudWatchDashboards";
388
+ const _cWLC = "cloudWatchLogsConfiguration";
389
+ const _co = "code";
390
+ const _d = "description";
391
+ const _dI = "dashboardIdentifier";
392
+ const _dS = "dataSources";
393
+ const _e = "error";
394
+ const _eI = "experimentId";
395
+ const _eO = "experimentOptions";
396
+ const _eR = "experimentReport";
397
+ const _eRC = "experimentReportConfiguration";
398
+ const _eT = "experimentTemplate";
399
+ const _eTI = "experimentTemplateId";
400
+ const _eTRM = "emptyTargetResolutionMode";
401
+ const _eTn = "endTime";
402
+ const _eTx = "experimentTemplates";
403
+ const _ex = "experiment";
404
+ const _exp = "experiments";
405
+ const _f = "filters";
406
+ const _h = "http";
407
+ const _hE = "httpError";
408
+ const _hQ = "httpQuery";
409
+ const _i = "id";
410
+ const _l = "location";
411
+ const _lC = "logConfiguration";
412
+ const _lGA = "logGroupArn";
413
+ const _lSV = "logSchemaVersion";
414
+ const _lUT = "lastUpdateTime";
415
+ const _m = "message";
416
+ const _mR = "maxResults";
417
+ const _nT = "nextToken";
418
+ const _o = "outputs";
419
+ const _p = "parameters";
420
+ const _pED = "preExperimentDuration";
421
+ const _pEDo = "postExperimentDuration";
422
+ const _pa = "path";
423
+ const _pr = "prefix";
424
+ const _r = "required";
425
+ const _rA = "roleArn";
426
+ const _rAe = "resourceArns";
427
+ const _rAes = "resourceArn";
428
+ const _rT = "resourceType";
429
+ const _rTe = "resourceTags";
430
+ const _rTep = "reportType";
431
+ const _rTes = "resolvedTargets";
432
+ const _re = "reason";
433
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.fis";
434
+ const _sA = "startAfter";
435
+ const _sC = "s3Configuration";
436
+ const _sCt = "stopConditions";
437
+ const _sL = "safetyLever";
438
+ const _sM = "selectionMode";
439
+ const _sR = "s3Reports";
440
+ const _sT = "startTime";
441
+ const _so = "source";
442
+ const _st = "state";
443
+ const _sta = "status";
444
+ const _t = "targets";
445
+ const _tAC = "targetAccountConfiguration";
446
+ const _tACC = "targetAccountConfigurationsCount";
447
+ const _tACa = "targetAccountConfigurations";
448
+ const _tI = "targetInformation";
449
+ const _tK = "tagKeys";
450
+ const _tN = "targetName";
451
+ const _tRT = "targetResourceType";
452
+ const _tRTa = "targetResourceTypes";
453
+ const _ta = "tags";
454
+ const _v = "value";
455
+ const _va = "values";
456
+ const n0 = "com.amazonaws.fis";
457
+ const _s_registry = TypeRegistry.for(_s);
458
+ var FisServiceException$ = [-3, _s, "FisServiceException", 0, [], []];
459
+ _s_registry.registerError(FisServiceException$, FisServiceException);
460
+ const n0_registry = TypeRegistry.for(n0);
461
+ var ConflictException$ = [-3, n0, _CE,
462
+ { [_aQE]: [`ConflictException`, 409], [_e]: _c, [_hE]: 409 },
463
+ [_m],
464
+ [0]
465
+ ];
466
+ n0_registry.registerError(ConflictException$, ConflictException);
467
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
468
+ { [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
469
+ [_m],
470
+ [0]
471
+ ];
472
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
473
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
474
+ { [_aQE]: [`ServiceQuotaExceededException`, 402], [_e]: _c, [_hE]: 402 },
475
+ [_m],
476
+ [0]
477
+ ];
478
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
479
+ var ValidationException$ = [-3, n0, _VE,
480
+ { [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
481
+ [_m],
482
+ [0]
483
+ ];
484
+ n0_registry.registerError(ValidationException$, ValidationException);
485
+ const errorTypeRegistries = [
486
+ _s_registry,
487
+ n0_registry,
488
+ ];
489
+ var Action$ = [3, n0, _A,
490
+ 0,
491
+ [_i, _a, _d, _p, _t, _ta],
492
+ [0, 0, 0, () => ActionParameterMap, () => ActionTargetMap, 128 | 0]
493
+ ];
494
+ var ActionParameter$ = [3, n0, _AP,
495
+ 0,
496
+ [_d, _r],
497
+ [0, 2]
498
+ ];
499
+ var ActionSummary$ = [3, n0, _AS,
500
+ 0,
501
+ [_i, _a, _d, _t, _ta],
502
+ [0, 0, 0, () => ActionTargetMap, 128 | 0]
503
+ ];
504
+ var ActionTarget$ = [3, n0, _AT,
505
+ 0,
506
+ [_rT],
507
+ [0]
508
+ ];
509
+ var CreateExperimentTemplateActionInput$ = [3, n0, _CETAI,
510
+ 0,
511
+ [_aI, _d, _p, _t, _sA],
512
+ [0, 0, 128 | 0, 128 | 0, 64 | 0], 1
513
+ ];
514
+ var CreateExperimentTemplateExperimentOptionsInput$ = [3, n0, _CETEOI,
515
+ 0,
516
+ [_aT, _eTRM],
517
+ [0, 0]
518
+ ];
519
+ var CreateExperimentTemplateLogConfigurationInput$ = [3, n0, _CETLCI,
520
+ 0,
521
+ [_lSV, _cWLC, _sC],
522
+ [1, () => ExperimentTemplateCloudWatchLogsLogConfigurationInput$, () => ExperimentTemplateS3LogConfigurationInput$], 1
523
+ ];
524
+ var CreateExperimentTemplateReportConfigurationInput$ = [3, n0, _CETRCI,
525
+ 0,
526
+ [_o, _dS, _pED, _pEDo],
527
+ [() => ExperimentTemplateReportConfigurationOutputsInput$, () => ExperimentTemplateReportConfigurationDataSourcesInput$, 0, 0]
528
+ ];
529
+ var CreateExperimentTemplateRequest$ = [3, n0, _CETR,
530
+ 0,
531
+ [_d, _sCt, _ac, _rA, _cT, _t, _ta, _lC, _eO, _eRC],
532
+ [0, () => CreateExperimentTemplateStopConditionInputList, () => CreateExperimentTemplateActionInputMap, 0, [0, 4], () => CreateExperimentTemplateTargetInputMap, 128 | 0, () => CreateExperimentTemplateLogConfigurationInput$, () => CreateExperimentTemplateExperimentOptionsInput$, () => CreateExperimentTemplateReportConfigurationInput$], 4
533
+ ];
534
+ var CreateExperimentTemplateResponse$ = [3, n0, _CETRr,
535
+ 0,
536
+ [_eT],
537
+ [() => ExperimentTemplate$]
538
+ ];
539
+ var CreateExperimentTemplateStopConditionInput$ = [3, n0, _CETSCI,
540
+ 0,
541
+ [_so, _v],
542
+ [0, 0], 1
543
+ ];
544
+ var CreateExperimentTemplateTargetInput$ = [3, n0, _CETTI,
545
+ 0,
546
+ [_rT, _sM, _rAe, _rTe, _f, _p],
547
+ [0, 0, 64 | 0, 128 | 0, () => ExperimentTemplateTargetFilterInputList, 128 | 0], 2
548
+ ];
549
+ var CreateTargetAccountConfigurationRequest$ = [3, n0, _CTACR,
550
+ 0,
551
+ [_eTI, _aIc, _rA, _cT, _d],
552
+ [[0, 1], [0, 1], 0, [0, 4], 0], 3
553
+ ];
554
+ var CreateTargetAccountConfigurationResponse$ = [3, n0, _CTACRr,
555
+ 0,
556
+ [_tAC],
557
+ [() => TargetAccountConfiguration$]
558
+ ];
559
+ var DeleteExperimentTemplateRequest$ = [3, n0, _DETR,
560
+ 0,
561
+ [_i],
562
+ [[0, 1]], 1
563
+ ];
564
+ var DeleteExperimentTemplateResponse$ = [3, n0, _DETRe,
565
+ 0,
566
+ [_eT],
567
+ [() => ExperimentTemplate$]
568
+ ];
569
+ var DeleteTargetAccountConfigurationRequest$ = [3, n0, _DTACR,
570
+ 0,
571
+ [_eTI, _aIc],
572
+ [[0, 1], [0, 1]], 2
573
+ ];
574
+ var DeleteTargetAccountConfigurationResponse$ = [3, n0, _DTACRe,
575
+ 0,
576
+ [_tAC],
577
+ [() => TargetAccountConfiguration$]
578
+ ];
579
+ var Experiment$ = [3, n0, _E,
580
+ 0,
581
+ [_i, _a, _eTI, _rA, _st, _t, _ac, _sCt, _cTr, _sT, _eTn, _ta, _lC, _eO, _tACC, _eRC, _eR],
582
+ [0, 0, 0, 0, () => ExperimentState$, () => ExperimentTargetMap, () => ExperimentActionMap, () => ExperimentStopConditionList, 4, 4, 4, 128 | 0, () => ExperimentLogConfiguration$, () => ExperimentOptions$, 1, () => ExperimentReportConfiguration$, () => ExperimentReport$]
583
+ ];
584
+ var ExperimentAction$ = [3, n0, _EA,
585
+ 0,
586
+ [_aI, _d, _p, _t, _sA, _st, _sT, _eTn],
587
+ [0, 0, 128 | 0, 128 | 0, 64 | 0, () => ExperimentActionState$, 4, 4]
588
+ ];
589
+ var ExperimentActionState$ = [3, n0, _EAS,
590
+ 0,
591
+ [_sta, _re],
592
+ [0, 0]
593
+ ];
594
+ var ExperimentCloudWatchLogsLogConfiguration$ = [3, n0, _ECWLLC,
595
+ 0,
596
+ [_lGA],
597
+ [0]
598
+ ];
599
+ var ExperimentError$ = [3, n0, _EE,
600
+ 0,
601
+ [_aIc, _co, _l],
602
+ [0, 0, 0]
603
+ ];
604
+ var ExperimentLogConfiguration$ = [3, n0, _ELC,
605
+ 0,
606
+ [_cWLC, _sC, _lSV],
607
+ [() => ExperimentCloudWatchLogsLogConfiguration$, () => ExperimentS3LogConfiguration$, 1]
608
+ ];
609
+ var ExperimentOptions$ = [3, n0, _EO,
610
+ 0,
611
+ [_aT, _eTRM, _aM],
612
+ [0, 0, 0]
613
+ ];
614
+ var ExperimentReport$ = [3, n0, _ER,
615
+ 0,
616
+ [_st, _sR],
617
+ [() => ExperimentReportState$, () => ExperimentReportS3ReportList]
618
+ ];
619
+ var ExperimentReportConfiguration$ = [3, n0, _ERC,
620
+ 0,
621
+ [_o, _dS, _pED, _pEDo],
622
+ [() => ExperimentReportConfigurationOutputs$, () => ExperimentReportConfigurationDataSources$, 0, 0]
623
+ ];
624
+ var ExperimentReportConfigurationCloudWatchDashboard$ = [3, n0, _ERCCWD,
625
+ 0,
626
+ [_dI],
627
+ [0]
628
+ ];
629
+ var ExperimentReportConfigurationDataSources$ = [3, n0, _ERCDS,
630
+ 0,
631
+ [_cWD],
632
+ [() => ExperimentReportConfigurationCloudWatchDashboardList]
633
+ ];
634
+ var ExperimentReportConfigurationOutputs$ = [3, n0, _ERCO,
635
+ 0,
636
+ [_sC],
637
+ [() => ExperimentReportConfigurationOutputsS3Configuration$]
638
+ ];
639
+ var ExperimentReportConfigurationOutputsS3Configuration$ = [3, n0, _ERCOSC,
640
+ 0,
641
+ [_bN, _pr],
642
+ [0, 0]
643
+ ];
644
+ var ExperimentReportError$ = [3, n0, _ERE,
645
+ 0,
646
+ [_co],
647
+ [0]
648
+ ];
649
+ var ExperimentReportS3Report$ = [3, n0, _ERSR,
650
+ 0,
651
+ [_a, _rTep],
652
+ [0, 0]
653
+ ];
654
+ var ExperimentReportState$ = [3, n0, _ERS,
655
+ 0,
656
+ [_sta, _re, _e],
657
+ [0, 0, () => ExperimentReportError$]
658
+ ];
659
+ var ExperimentS3LogConfiguration$ = [3, n0, _ESLC,
660
+ 0,
661
+ [_bN, _pr],
662
+ [0, 0]
663
+ ];
664
+ var ExperimentState$ = [3, n0, _ES,
665
+ 0,
666
+ [_sta, _re, _e],
667
+ [0, 0, () => ExperimentError$]
668
+ ];
669
+ var ExperimentStopCondition$ = [3, n0, _ESC,
670
+ 0,
671
+ [_so, _v],
672
+ [0, 0]
673
+ ];
674
+ var ExperimentSummary$ = [3, n0, _ESx,
675
+ 0,
676
+ [_i, _a, _eTI, _st, _cTr, _ta, _eO],
677
+ [0, 0, 0, () => ExperimentState$, 4, 128 | 0, () => ExperimentOptions$]
678
+ ];
679
+ var ExperimentTarget$ = [3, n0, _ET,
680
+ 0,
681
+ [_rT, _rAe, _rTe, _f, _sM, _p],
682
+ [0, 64 | 0, 128 | 0, () => ExperimentTargetFilterList, 0, 128 | 0]
683
+ ];
684
+ var ExperimentTargetAccountConfiguration$ = [3, n0, _ETAC,
685
+ 0,
686
+ [_rA, _aIc, _d],
687
+ [0, 0, 0]
688
+ ];
689
+ var ExperimentTargetAccountConfigurationSummary$ = [3, n0, _ETACS,
690
+ 0,
691
+ [_rA, _aIc, _d],
692
+ [0, 0, 0]
693
+ ];
694
+ var ExperimentTargetFilter$ = [3, n0, _ETF,
695
+ 0,
696
+ [_pa, _va],
697
+ [0, 64 | 0]
698
+ ];
699
+ var ExperimentTemplate$ = [3, n0, _ETx,
700
+ 0,
701
+ [_i, _a, _d, _t, _ac, _sCt, _cTr, _lUT, _rA, _ta, _lC, _eO, _tACC, _eRC],
702
+ [0, 0, 0, () => ExperimentTemplateTargetMap, () => ExperimentTemplateActionMap, () => ExperimentTemplateStopConditionList, 4, 4, 0, 128 | 0, () => ExperimentTemplateLogConfiguration$, () => ExperimentTemplateExperimentOptions$, 1, () => ExperimentTemplateReportConfiguration$]
703
+ ];
704
+ var ExperimentTemplateAction$ = [3, n0, _ETA,
705
+ 0,
706
+ [_aI, _d, _p, _t, _sA],
707
+ [0, 0, 128 | 0, 128 | 0, 64 | 0]
708
+ ];
709
+ var ExperimentTemplateCloudWatchLogsLogConfiguration$ = [3, n0, _ETCWLLC,
710
+ 0,
711
+ [_lGA],
712
+ [0]
713
+ ];
714
+ var ExperimentTemplateCloudWatchLogsLogConfigurationInput$ = [3, n0, _ETCWLLCI,
715
+ 0,
716
+ [_lGA],
717
+ [0], 1
718
+ ];
719
+ var ExperimentTemplateExperimentOptions$ = [3, n0, _ETEO,
720
+ 0,
721
+ [_aT, _eTRM],
722
+ [0, 0]
723
+ ];
724
+ var ExperimentTemplateLogConfiguration$ = [3, n0, _ETLC,
725
+ 0,
726
+ [_cWLC, _sC, _lSV],
727
+ [() => ExperimentTemplateCloudWatchLogsLogConfiguration$, () => ExperimentTemplateS3LogConfiguration$, 1]
728
+ ];
729
+ var ExperimentTemplateReportConfiguration$ = [3, n0, _ETRC,
730
+ 0,
731
+ [_o, _dS, _pED, _pEDo],
732
+ [() => ExperimentTemplateReportConfigurationOutputs$, () => ExperimentTemplateReportConfigurationDataSources$, 0, 0]
733
+ ];
734
+ var ExperimentTemplateReportConfigurationCloudWatchDashboard$ = [3, n0, _ETRCCWD,
735
+ 0,
736
+ [_dI],
737
+ [0]
738
+ ];
739
+ var ExperimentTemplateReportConfigurationDataSources$ = [3, n0, _ETRCDS,
740
+ 0,
741
+ [_cWD],
742
+ [() => ExperimentTemplateReportConfigurationCloudWatchDashboardList]
743
+ ];
744
+ var ExperimentTemplateReportConfigurationDataSourcesInput$ = [3, n0, _ETRCDSI,
745
+ 0,
746
+ [_cWD],
747
+ [() => ReportConfigurationCloudWatchDashboardInputList]
748
+ ];
749
+ var ExperimentTemplateReportConfigurationOutputs$ = [3, n0, _ETRCO,
750
+ 0,
751
+ [_sC],
752
+ [() => ReportConfigurationS3Output$]
753
+ ];
754
+ var ExperimentTemplateReportConfigurationOutputsInput$ = [3, n0, _ETRCOI,
755
+ 0,
756
+ [_sC],
757
+ [() => ReportConfigurationS3OutputInput$]
758
+ ];
759
+ var ExperimentTemplateS3LogConfiguration$ = [3, n0, _ETSLC,
760
+ 0,
761
+ [_bN, _pr],
762
+ [0, 0]
763
+ ];
764
+ var ExperimentTemplateS3LogConfigurationInput$ = [3, n0, _ETSLCI,
765
+ 0,
766
+ [_bN, _pr],
767
+ [0, 0], 1
768
+ ];
769
+ var ExperimentTemplateStopCondition$ = [3, n0, _ETSC,
770
+ 0,
771
+ [_so, _v],
772
+ [0, 0]
773
+ ];
774
+ var ExperimentTemplateSummary$ = [3, n0, _ETS,
775
+ 0,
776
+ [_i, _a, _d, _cTr, _lUT, _ta],
777
+ [0, 0, 0, 4, 4, 128 | 0]
778
+ ];
779
+ var ExperimentTemplateTarget$ = [3, n0, _ETT,
780
+ 0,
781
+ [_rT, _rAe, _rTe, _f, _sM, _p],
782
+ [0, 64 | 0, 128 | 0, () => ExperimentTemplateTargetFilterList, 0, 128 | 0]
783
+ ];
784
+ var ExperimentTemplateTargetFilter$ = [3, n0, _ETTF,
785
+ 0,
786
+ [_pa, _va],
787
+ [0, 64 | 0]
788
+ ];
789
+ var ExperimentTemplateTargetInputFilter$ = [3, n0, _ETTIF,
790
+ 0,
791
+ [_pa, _va],
792
+ [0, 64 | 0], 2
793
+ ];
794
+ var GetActionRequest$ = [3, n0, _GAR,
795
+ 0,
796
+ [_i],
797
+ [[0, 1]], 1
798
+ ];
799
+ var GetActionResponse$ = [3, n0, _GARe,
800
+ 0,
801
+ [_act],
802
+ [() => Action$]
803
+ ];
804
+ var GetExperimentRequest$ = [3, n0, _GER,
805
+ 0,
806
+ [_i],
807
+ [[0, 1]], 1
808
+ ];
809
+ var GetExperimentResponse$ = [3, n0, _GERe,
810
+ 0,
811
+ [_ex],
812
+ [() => Experiment$]
813
+ ];
814
+ var GetExperimentTargetAccountConfigurationRequest$ = [3, n0, _GETACR,
815
+ 0,
816
+ [_eI, _aIc],
817
+ [[0, 1], [0, 1]], 2
818
+ ];
819
+ var GetExperimentTargetAccountConfigurationResponse$ = [3, n0, _GETACRe,
820
+ 0,
821
+ [_tAC],
822
+ [() => ExperimentTargetAccountConfiguration$]
823
+ ];
824
+ var GetExperimentTemplateRequest$ = [3, n0, _GETR,
825
+ 0,
826
+ [_i],
827
+ [[0, 1]], 1
828
+ ];
829
+ var GetExperimentTemplateResponse$ = [3, n0, _GETRe,
830
+ 0,
831
+ [_eT],
832
+ [() => ExperimentTemplate$]
833
+ ];
834
+ var GetSafetyLeverRequest$ = [3, n0, _GSLR,
835
+ 0,
836
+ [_i],
837
+ [[0, 1]], 1
838
+ ];
839
+ var GetSafetyLeverResponse$ = [3, n0, _GSLRe,
840
+ 0,
841
+ [_sL],
842
+ [() => SafetyLever$]
843
+ ];
844
+ var GetTargetAccountConfigurationRequest$ = [3, n0, _GTACR,
845
+ 0,
846
+ [_eTI, _aIc],
847
+ [[0, 1], [0, 1]], 2
848
+ ];
849
+ var GetTargetAccountConfigurationResponse$ = [3, n0, _GTACRe,
850
+ 0,
851
+ [_tAC],
852
+ [() => TargetAccountConfiguration$]
853
+ ];
854
+ var GetTargetResourceTypeRequest$ = [3, n0, _GTRTR,
855
+ 0,
856
+ [_rT],
857
+ [[0, 1]], 1
858
+ ];
859
+ var GetTargetResourceTypeResponse$ = [3, n0, _GTRTRe,
860
+ 0,
861
+ [_tRT],
862
+ [() => TargetResourceType$]
863
+ ];
864
+ var ListActionsRequest$ = [3, n0, _LAR,
865
+ 0,
866
+ [_mR, _nT],
867
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
868
+ ];
869
+ var ListActionsResponse$ = [3, n0, _LARi,
870
+ 0,
871
+ [_ac, _nT],
872
+ [() => ActionSummaryList, 0]
873
+ ];
874
+ var ListExperimentResolvedTargetsRequest$ = [3, n0, _LERTR,
875
+ 0,
876
+ [_eI, _mR, _nT, _tN],
877
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _tN }]], 1
878
+ ];
879
+ var ListExperimentResolvedTargetsResponse$ = [3, n0, _LERTRi,
880
+ 0,
881
+ [_rTes, _nT],
882
+ [() => ResolvedTargetList, 0]
883
+ ];
884
+ var ListExperimentsRequest$ = [3, n0, _LER,
885
+ 0,
886
+ [_mR, _nT, _eTI],
887
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _eTI }]]
888
+ ];
889
+ var ListExperimentsResponse$ = [3, n0, _LERi,
890
+ 0,
891
+ [_exp, _nT],
892
+ [() => ExperimentSummaryList, 0]
893
+ ];
894
+ var ListExperimentTargetAccountConfigurationsRequest$ = [3, n0, _LETACR,
895
+ 0,
896
+ [_eI, _nT],
897
+ [[0, 1], [0, { [_hQ]: _nT }]], 1
898
+ ];
899
+ var ListExperimentTargetAccountConfigurationsResponse$ = [3, n0, _LETACRi,
900
+ 0,
901
+ [_tACa, _nT],
902
+ [() => ExperimentTargetAccountConfigurationList, 0]
903
+ ];
904
+ var ListExperimentTemplatesRequest$ = [3, n0, _LETR,
905
+ 0,
906
+ [_mR, _nT],
907
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
908
+ ];
909
+ var ListExperimentTemplatesResponse$ = [3, n0, _LETRi,
910
+ 0,
911
+ [_eTx, _nT],
912
+ [() => ExperimentTemplateSummaryList, 0]
913
+ ];
914
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
915
+ 0,
916
+ [_rAes],
917
+ [[0, 1]], 1
918
+ ];
919
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
920
+ 0,
921
+ [_ta],
922
+ [128 | 0]
923
+ ];
924
+ var ListTargetAccountConfigurationsRequest$ = [3, n0, _LTACR,
925
+ 0,
926
+ [_eTI, _mR, _nT],
927
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
928
+ ];
929
+ var ListTargetAccountConfigurationsResponse$ = [3, n0, _LTACRi,
930
+ 0,
931
+ [_tACa, _nT],
932
+ [() => TargetAccountConfigurationList, 0]
933
+ ];
934
+ var ListTargetResourceTypesRequest$ = [3, n0, _LTRTR,
935
+ 0,
936
+ [_mR, _nT],
937
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
938
+ ];
939
+ var ListTargetResourceTypesResponse$ = [3, n0, _LTRTRi,
940
+ 0,
941
+ [_tRTa, _nT],
942
+ [() => TargetResourceTypeSummaryList, 0]
943
+ ];
944
+ var ReportConfigurationCloudWatchDashboardInput$ = [3, n0, _RCCWDI,
945
+ 0,
946
+ [_dI],
947
+ [0]
948
+ ];
949
+ var ReportConfigurationS3Output$ = [3, n0, _RCSO,
950
+ 0,
951
+ [_bN, _pr],
952
+ [0, 0]
953
+ ];
954
+ var ReportConfigurationS3OutputInput$ = [3, n0, _RCSOI,
955
+ 0,
956
+ [_bN, _pr],
957
+ [0, 0]
958
+ ];
959
+ var ResolvedTarget$ = [3, n0, _RT,
960
+ 0,
961
+ [_rT, _tN, _tI],
962
+ [0, 0, 128 | 0]
963
+ ];
964
+ var SafetyLever$ = [3, n0, _SL,
965
+ 0,
966
+ [_i, _a, _st],
967
+ [0, 0, () => SafetyLeverState$]
968
+ ];
969
+ var SafetyLeverState$ = [3, n0, _SLS,
970
+ 0,
971
+ [_sta, _re],
972
+ [0, 0]
973
+ ];
974
+ var StartExperimentExperimentOptionsInput$ = [3, n0, _SEEOI,
975
+ 0,
976
+ [_aM],
977
+ [0]
978
+ ];
979
+ var StartExperimentRequest$ = [3, n0, _SER,
980
+ 0,
981
+ [_eTI, _cT, _eO, _ta],
982
+ [0, [0, 4], () => StartExperimentExperimentOptionsInput$, 128 | 0], 1
983
+ ];
984
+ var StartExperimentResponse$ = [3, n0, _SERt,
985
+ 0,
986
+ [_ex],
987
+ [() => Experiment$]
988
+ ];
989
+ var StopExperimentRequest$ = [3, n0, _SERto,
990
+ 0,
991
+ [_i],
992
+ [[0, 1]], 1
993
+ ];
994
+ var StopExperimentResponse$ = [3, n0, _SERtop,
995
+ 0,
996
+ [_ex],
997
+ [() => Experiment$]
998
+ ];
999
+ var TagResourceRequest$ = [3, n0, _TRR,
1000
+ 0,
1001
+ [_rAes, _ta],
1002
+ [[0, 1], 128 | 0], 2
1003
+ ];
1004
+ var TagResourceResponse$ = [3, n0, _TRRa,
1005
+ 0,
1006
+ [],
1007
+ []
1008
+ ];
1009
+ var TargetAccountConfiguration$ = [3, n0, _TAC,
1010
+ 0,
1011
+ [_rA, _aIc, _d],
1012
+ [0, 0, 0]
1013
+ ];
1014
+ var TargetAccountConfigurationSummary$ = [3, n0, _TACS,
1015
+ 0,
1016
+ [_rA, _aIc, _d],
1017
+ [0, 0, 0]
1018
+ ];
1019
+ var TargetResourceType$ = [3, n0, _TRT,
1020
+ 0,
1021
+ [_rT, _d, _p],
1022
+ [0, 0, () => TargetResourceTypeParameterMap]
1023
+ ];
1024
+ var TargetResourceTypeParameter$ = [3, n0, _TRTP,
1025
+ 0,
1026
+ [_d, _r],
1027
+ [0, 2]
1028
+ ];
1029
+ var TargetResourceTypeSummary$ = [3, n0, _TRTS,
1030
+ 0,
1031
+ [_rT, _d],
1032
+ [0, 0]
1033
+ ];
1034
+ var UntagResourceRequest$ = [3, n0, _URR,
1035
+ 0,
1036
+ [_rAes, _tK],
1037
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 1
1038
+ ];
1039
+ var UntagResourceResponse$ = [3, n0, _URRn,
1040
+ 0,
1041
+ [],
1042
+ []
1043
+ ];
1044
+ var UpdateExperimentTemplateActionInputItem$ = [3, n0, _UETAII,
1045
+ 0,
1046
+ [_aI, _d, _p, _t, _sA],
1047
+ [0, 0, 128 | 0, 128 | 0, 64 | 0]
1048
+ ];
1049
+ var UpdateExperimentTemplateExperimentOptionsInput$ = [3, n0, _UETEOI,
1050
+ 0,
1051
+ [_eTRM],
1052
+ [0]
1053
+ ];
1054
+ var UpdateExperimentTemplateLogConfigurationInput$ = [3, n0, _UETLCI,
1055
+ 0,
1056
+ [_cWLC, _sC, _lSV],
1057
+ [() => ExperimentTemplateCloudWatchLogsLogConfigurationInput$, () => ExperimentTemplateS3LogConfigurationInput$, 1]
1058
+ ];
1059
+ var UpdateExperimentTemplateReportConfigurationInput$ = [3, n0, _UETRCI,
1060
+ 0,
1061
+ [_o, _dS, _pED, _pEDo],
1062
+ [() => ExperimentTemplateReportConfigurationOutputsInput$, () => ExperimentTemplateReportConfigurationDataSourcesInput$, 0, 0]
1063
+ ];
1064
+ var UpdateExperimentTemplateRequest$ = [3, n0, _UETR,
1065
+ 0,
1066
+ [_i, _d, _sCt, _t, _ac, _rA, _lC, _eO, _eRC],
1067
+ [[0, 1], 0, () => UpdateExperimentTemplateStopConditionInputList, () => UpdateExperimentTemplateTargetInputMap, () => UpdateExperimentTemplateActionInputMap, 0, () => UpdateExperimentTemplateLogConfigurationInput$, () => UpdateExperimentTemplateExperimentOptionsInput$, () => UpdateExperimentTemplateReportConfigurationInput$], 1
1068
+ ];
1069
+ var UpdateExperimentTemplateResponse$ = [3, n0, _UETRp,
1070
+ 0,
1071
+ [_eT],
1072
+ [() => ExperimentTemplate$]
1073
+ ];
1074
+ var UpdateExperimentTemplateStopConditionInput$ = [3, n0, _UETSCI,
1075
+ 0,
1076
+ [_so, _v],
1077
+ [0, 0], 1
1078
+ ];
1079
+ var UpdateExperimentTemplateTargetInput$ = [3, n0, _UETTI,
1080
+ 0,
1081
+ [_rT, _sM, _rAe, _rTe, _f, _p],
1082
+ [0, 0, 64 | 0, 128 | 0, () => ExperimentTemplateTargetFilterInputList, 128 | 0], 2
1083
+ ];
1084
+ var UpdateSafetyLeverStateInput$ = [3, n0, _USLSI,
1085
+ 0,
1086
+ [_sta, _re],
1087
+ [0, 0], 2
1088
+ ];
1089
+ var UpdateSafetyLeverStateRequest$ = [3, n0, _USLSR,
1090
+ 0,
1091
+ [_i, _st],
1092
+ [[0, 1], () => UpdateSafetyLeverStateInput$], 2
1093
+ ];
1094
+ var UpdateSafetyLeverStateResponse$ = [3, n0, _USLSRp,
1095
+ 0,
1096
+ [_sL],
1097
+ [() => SafetyLever$]
1098
+ ];
1099
+ var UpdateTargetAccountConfigurationRequest$ = [3, n0, _UTACR,
1100
+ 0,
1101
+ [_eTI, _aIc, _rA, _d],
1102
+ [[0, 1], [0, 1], 0, 0], 2
1103
+ ];
1104
+ var UpdateTargetAccountConfigurationResponse$ = [3, n0, _UTACRp,
1105
+ 0,
1106
+ [_tAC],
1107
+ [() => TargetAccountConfiguration$]
1108
+ ];
1109
+ var ActionSummaryList = [1, n0, _ASL,
1110
+ 0, () => ActionSummary$
1111
+ ];
1112
+ var CreateExperimentTemplateStopConditionInputList = [1, n0, _CETSCIL,
1113
+ 0, () => CreateExperimentTemplateStopConditionInput$
1114
+ ];
1115
+ var ExperimentReportConfigurationCloudWatchDashboardList = [1, n0, _ERCCWDL,
1116
+ 0, () => ExperimentReportConfigurationCloudWatchDashboard$
1117
+ ];
1118
+ var ExperimentReportS3ReportList = [1, n0, _ERSRL,
1119
+ 0, () => ExperimentReportS3Report$
1120
+ ];
1121
+ var ExperimentStopConditionList = [1, n0, _ESCL,
1122
+ 0, () => ExperimentStopCondition$
1123
+ ];
1124
+ var ExperimentSummaryList = [1, n0, _ESL,
1125
+ 0, () => ExperimentSummary$
1126
+ ];
1127
+ var ExperimentTargetAccountConfigurationList = [1, n0, _ETACL,
1128
+ 0, () => ExperimentTargetAccountConfigurationSummary$
1129
+ ];
1130
+ var ExperimentTargetFilterList = [1, n0, _ETFL,
1131
+ 0, () => ExperimentTargetFilter$
1132
+ ];
1133
+ var ExperimentTemplateReportConfigurationCloudWatchDashboardList = [1, n0, _ETRCCWDL,
1134
+ 0, () => ExperimentTemplateReportConfigurationCloudWatchDashboard$
1135
+ ];
1136
+ var ExperimentTemplateStopConditionList = [1, n0, _ETSCL,
1137
+ 0, () => ExperimentTemplateStopCondition$
1138
+ ];
1139
+ var ExperimentTemplateSummaryList = [1, n0, _ETSL,
1140
+ 0, () => ExperimentTemplateSummary$
1141
+ ];
1142
+ var ExperimentTemplateTargetFilterInputList = [1, n0, _ETTFIL,
1143
+ 0, () => ExperimentTemplateTargetInputFilter$
1144
+ ];
1145
+ var ExperimentTemplateTargetFilterList = [1, n0, _ETTFL,
1146
+ 0, () => ExperimentTemplateTargetFilter$
1147
+ ];
1148
+ var ReportConfigurationCloudWatchDashboardInputList = [1, n0, _RCCWDIL,
1149
+ 0, () => ReportConfigurationCloudWatchDashboardInput$
1150
+ ];
1151
+ var ResolvedTargetList = [1, n0, _RTL,
1152
+ 0, () => ResolvedTarget$
1153
+ ];
1154
+ var TargetAccountConfigurationList = [1, n0, _TACL,
1155
+ 0, () => TargetAccountConfigurationSummary$
1156
+ ];
1157
+ var TargetResourceTypeSummaryList = [1, n0, _TRTSL,
1158
+ 0, () => TargetResourceTypeSummary$
1159
+ ];
1160
+ var UpdateExperimentTemplateStopConditionInputList = [1, n0, _UETSCIL,
1161
+ 0, () => UpdateExperimentTemplateStopConditionInput$
1162
+ ];
1163
+ var ActionParameterMap = [2, n0, _APM,
1164
+ 0, 0, () => ActionParameter$
1165
+ ];
1166
+ var ActionTargetMap = [2, n0, _ATM,
1167
+ 0, 0, () => ActionTarget$
1168
+ ];
1169
+ var CreateExperimentTemplateActionInputMap = [2, n0, _CETAIM,
1170
+ 0, 0, () => CreateExperimentTemplateActionInput$
1171
+ ];
1172
+ var CreateExperimentTemplateTargetInputMap = [2, n0, _CETTIM,
1173
+ 0, 0, () => CreateExperimentTemplateTargetInput$
1174
+ ];
1175
+ var ExperimentActionMap = [2, n0, _EAM,
1176
+ 0, 0, () => ExperimentAction$
1177
+ ];
1178
+ var ExperimentTargetMap = [2, n0, _ETM,
1179
+ 0, 0, () => ExperimentTarget$
1180
+ ];
1181
+ var ExperimentTemplateActionMap = [2, n0, _ETAM,
1182
+ 0, 0, () => ExperimentTemplateAction$
1183
+ ];
1184
+ var ExperimentTemplateTargetMap = [2, n0, _ETTM,
1185
+ 0, 0, () => ExperimentTemplateTarget$
1186
+ ];
1187
+ var TargetResourceTypeParameterMap = [2, n0, _TRTPM,
1188
+ 0, 0, () => TargetResourceTypeParameter$
1189
+ ];
1190
+ var UpdateExperimentTemplateActionInputMap = [2, n0, _UETAIM,
1191
+ 0, 0, () => UpdateExperimentTemplateActionInputItem$
1192
+ ];
1193
+ var UpdateExperimentTemplateTargetInputMap = [2, n0, _UETTIM,
1194
+ 0, 0, () => UpdateExperimentTemplateTargetInput$
1195
+ ];
1196
+ var CreateExperimentTemplate$ = [9, n0, _CET,
1197
+ { [_h]: ["POST", "/experimentTemplates", 200] }, () => CreateExperimentTemplateRequest$, () => CreateExperimentTemplateResponse$
1198
+ ];
1199
+ var CreateTargetAccountConfiguration$ = [9, n0, _CTAC,
1200
+ { [_h]: ["POST", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] }, () => CreateTargetAccountConfigurationRequest$, () => CreateTargetAccountConfigurationResponse$
1201
+ ];
1202
+ var DeleteExperimentTemplate$ = [9, n0, _DET,
1203
+ { [_h]: ["DELETE", "/experimentTemplates/{id}", 200] }, () => DeleteExperimentTemplateRequest$, () => DeleteExperimentTemplateResponse$
1204
+ ];
1205
+ var DeleteTargetAccountConfiguration$ = [9, n0, _DTAC,
1206
+ { [_h]: ["DELETE", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] }, () => DeleteTargetAccountConfigurationRequest$, () => DeleteTargetAccountConfigurationResponse$
1207
+ ];
1208
+ var GetAction$ = [9, n0, _GA,
1209
+ { [_h]: ["GET", "/actions/{id}", 200] }, () => GetActionRequest$, () => GetActionResponse$
1210
+ ];
1211
+ var GetExperiment$ = [9, n0, _GE,
1212
+ { [_h]: ["GET", "/experiments/{id}", 200] }, () => GetExperimentRequest$, () => GetExperimentResponse$
1213
+ ];
1214
+ var GetExperimentTargetAccountConfiguration$ = [9, n0, _GETAC,
1215
+ { [_h]: ["GET", "/experiments/{experimentId}/targetAccountConfigurations/{accountId}", 200] }, () => GetExperimentTargetAccountConfigurationRequest$, () => GetExperimentTargetAccountConfigurationResponse$
1216
+ ];
1217
+ var GetExperimentTemplate$ = [9, n0, _GET,
1218
+ { [_h]: ["GET", "/experimentTemplates/{id}", 200] }, () => GetExperimentTemplateRequest$, () => GetExperimentTemplateResponse$
1219
+ ];
1220
+ var GetSafetyLever$ = [9, n0, _GSL,
1221
+ { [_h]: ["GET", "/safetyLevers/{id}", 200] }, () => GetSafetyLeverRequest$, () => GetSafetyLeverResponse$
1222
+ ];
1223
+ var GetTargetAccountConfiguration$ = [9, n0, _GTAC,
1224
+ { [_h]: ["GET", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] }, () => GetTargetAccountConfigurationRequest$, () => GetTargetAccountConfigurationResponse$
1225
+ ];
1226
+ var GetTargetResourceType$ = [9, n0, _GTRT,
1227
+ { [_h]: ["GET", "/targetResourceTypes/{resourceType}", 200] }, () => GetTargetResourceTypeRequest$, () => GetTargetResourceTypeResponse$
1228
+ ];
1229
+ var ListActions$ = [9, n0, _LA,
1230
+ { [_h]: ["GET", "/actions", 200] }, () => ListActionsRequest$, () => ListActionsResponse$
1231
+ ];
1232
+ var ListExperimentResolvedTargets$ = [9, n0, _LERT,
1233
+ { [_h]: ["GET", "/experiments/{experimentId}/resolvedTargets", 200] }, () => ListExperimentResolvedTargetsRequest$, () => ListExperimentResolvedTargetsResponse$
1234
+ ];
1235
+ var ListExperiments$ = [9, n0, _LE,
1236
+ { [_h]: ["GET", "/experiments", 200] }, () => ListExperimentsRequest$, () => ListExperimentsResponse$
1237
+ ];
1238
+ var ListExperimentTargetAccountConfigurations$ = [9, n0, _LETAC,
1239
+ { [_h]: ["GET", "/experiments/{experimentId}/targetAccountConfigurations", 200] }, () => ListExperimentTargetAccountConfigurationsRequest$, () => ListExperimentTargetAccountConfigurationsResponse$
1240
+ ];
1241
+ var ListExperimentTemplates$ = [9, n0, _LET,
1242
+ { [_h]: ["GET", "/experimentTemplates", 200] }, () => ListExperimentTemplatesRequest$, () => ListExperimentTemplatesResponse$
1243
+ ];
1244
+ var ListTagsForResource$ = [9, n0, _LTFR,
1245
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1246
+ ];
1247
+ var ListTargetAccountConfigurations$ = [9, n0, _LTAC,
1248
+ { [_h]: ["GET", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations", 200] }, () => ListTargetAccountConfigurationsRequest$, () => ListTargetAccountConfigurationsResponse$
1249
+ ];
1250
+ var ListTargetResourceTypes$ = [9, n0, _LTRT,
1251
+ { [_h]: ["GET", "/targetResourceTypes", 200] }, () => ListTargetResourceTypesRequest$, () => ListTargetResourceTypesResponse$
1252
+ ];
1253
+ var StartExperiment$ = [9, n0, _SE,
1254
+ { [_h]: ["POST", "/experiments", 200] }, () => StartExperimentRequest$, () => StartExperimentResponse$
1255
+ ];
1256
+ var StopExperiment$ = [9, n0, _SEt,
1257
+ { [_h]: ["DELETE", "/experiments/{id}", 200] }, () => StopExperimentRequest$, () => StopExperimentResponse$
1258
+ ];
1259
+ var TagResource$ = [9, n0, _TR,
1260
+ { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1261
+ ];
1262
+ var UntagResource$ = [9, n0, _UR,
1263
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1264
+ ];
1265
+ var UpdateExperimentTemplate$ = [9, n0, _UET,
1266
+ { [_h]: ["PATCH", "/experimentTemplates/{id}", 200] }, () => UpdateExperimentTemplateRequest$, () => UpdateExperimentTemplateResponse$
1267
+ ];
1268
+ var UpdateSafetyLeverState$ = [9, n0, _USLS,
1269
+ { [_h]: ["PATCH", "/safetyLevers/{id}/state", 200] }, () => UpdateSafetyLeverStateRequest$, () => UpdateSafetyLeverStateResponse$
1270
+ ];
1271
+ var UpdateTargetAccountConfiguration$ = [9, n0, _UTAC,
1272
+ { [_h]: ["PATCH", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] }, () => UpdateTargetAccountConfigurationRequest$, () => UpdateTargetAccountConfigurationResponse$
1273
+ ];
1274
+
1275
+ const getRuntimeConfig$1 = (config) => {
1276
+ return {
1277
+ apiVersion: "2020-12-01",
1278
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1279
+ base64Encoder: config?.base64Encoder ?? toBase64,
1280
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1281
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1282
+ extensions: config?.extensions ?? [],
1283
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultFisHttpAuthSchemeProvider,
1284
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1285
+ {
1286
+ schemeId: "aws.auth#sigv4",
1287
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1288
+ signer: new AwsSdkSigV4Signer(),
1289
+ },
1290
+ ],
1291
+ logger: config?.logger ?? new NoOpLogger(),
1292
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1293
+ protocolSettings: config?.protocolSettings ?? {
1294
+ defaultNamespace: "com.amazonaws.fis",
1295
+ errorTypeRegistries,
1296
+ version: "2020-12-01",
1297
+ serviceTarget: "FaultInjectionSimulator",
1298
+ },
1299
+ serviceId: config?.serviceId ?? "fis",
1300
+ sha256: config?.sha256 ?? Sha256,
1301
+ urlParser: config?.urlParser ?? parseUrl,
1302
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1303
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1304
+ };
1305
+ };
1306
+
1307
+ const getRuntimeConfig = (config) => {
1308
+ emitWarningIfUnsupportedVersion(process.version);
1309
+ const defaultsMode = resolveDefaultsModeConfig(config);
1310
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1311
+ const clientSharedValues = getRuntimeConfig$1(config);
1312
+ emitWarningIfUnsupportedVersion$1(process.version);
1313
+ const loaderConfig = {
1314
+ profile: config?.profile,
1315
+ logger: clientSharedValues.logger,
1316
+ };
1317
+ return {
1318
+ ...clientSharedValues,
1319
+ ...config,
1320
+ runtime: "node",
1321
+ defaultsMode,
1322
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1323
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1324
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1325
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1326
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1327
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1328
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1329
+ retryMode: config?.retryMode ??
1330
+ loadConfig({
1331
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1332
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1333
+ }, config),
1334
+ streamCollector: config?.streamCollector ?? streamCollector,
1335
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1336
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1337
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1338
+ };
1339
+ };
1340
+
34
1341
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1342
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1343
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -526,41 +1833,202 @@ const SafetyLeverStatusInput = {
526
1833
  };
527
1834
 
528
1835
  exports.AccountTargeting = AccountTargeting;
1836
+ exports.Action$ = Action$;
1837
+ exports.ActionParameter$ = ActionParameter$;
1838
+ exports.ActionSummary$ = ActionSummary$;
1839
+ exports.ActionTarget$ = ActionTarget$;
529
1840
  exports.ActionsMode = ActionsMode;
1841
+ exports.ConflictException = ConflictException;
1842
+ exports.ConflictException$ = ConflictException$;
1843
+ exports.CreateExperimentTemplate$ = CreateExperimentTemplate$;
1844
+ exports.CreateExperimentTemplateActionInput$ = CreateExperimentTemplateActionInput$;
530
1845
  exports.CreateExperimentTemplateCommand = CreateExperimentTemplateCommand;
1846
+ exports.CreateExperimentTemplateExperimentOptionsInput$ = CreateExperimentTemplateExperimentOptionsInput$;
1847
+ exports.CreateExperimentTemplateLogConfigurationInput$ = CreateExperimentTemplateLogConfigurationInput$;
1848
+ exports.CreateExperimentTemplateReportConfigurationInput$ = CreateExperimentTemplateReportConfigurationInput$;
1849
+ exports.CreateExperimentTemplateRequest$ = CreateExperimentTemplateRequest$;
1850
+ exports.CreateExperimentTemplateResponse$ = CreateExperimentTemplateResponse$;
1851
+ exports.CreateExperimentTemplateStopConditionInput$ = CreateExperimentTemplateStopConditionInput$;
1852
+ exports.CreateExperimentTemplateTargetInput$ = CreateExperimentTemplateTargetInput$;
1853
+ exports.CreateTargetAccountConfiguration$ = CreateTargetAccountConfiguration$;
531
1854
  exports.CreateTargetAccountConfigurationCommand = CreateTargetAccountConfigurationCommand;
1855
+ exports.CreateTargetAccountConfigurationRequest$ = CreateTargetAccountConfigurationRequest$;
1856
+ exports.CreateTargetAccountConfigurationResponse$ = CreateTargetAccountConfigurationResponse$;
1857
+ exports.DeleteExperimentTemplate$ = DeleteExperimentTemplate$;
532
1858
  exports.DeleteExperimentTemplateCommand = DeleteExperimentTemplateCommand;
1859
+ exports.DeleteExperimentTemplateRequest$ = DeleteExperimentTemplateRequest$;
1860
+ exports.DeleteExperimentTemplateResponse$ = DeleteExperimentTemplateResponse$;
1861
+ exports.DeleteTargetAccountConfiguration$ = DeleteTargetAccountConfiguration$;
533
1862
  exports.DeleteTargetAccountConfigurationCommand = DeleteTargetAccountConfigurationCommand;
1863
+ exports.DeleteTargetAccountConfigurationRequest$ = DeleteTargetAccountConfigurationRequest$;
1864
+ exports.DeleteTargetAccountConfigurationResponse$ = DeleteTargetAccountConfigurationResponse$;
534
1865
  exports.EmptyTargetResolutionMode = EmptyTargetResolutionMode;
1866
+ exports.Experiment$ = Experiment$;
1867
+ exports.ExperimentAction$ = ExperimentAction$;
1868
+ exports.ExperimentActionState$ = ExperimentActionState$;
535
1869
  exports.ExperimentActionStatus = ExperimentActionStatus;
1870
+ exports.ExperimentCloudWatchLogsLogConfiguration$ = ExperimentCloudWatchLogsLogConfiguration$;
1871
+ exports.ExperimentError$ = ExperimentError$;
1872
+ exports.ExperimentLogConfiguration$ = ExperimentLogConfiguration$;
1873
+ exports.ExperimentOptions$ = ExperimentOptions$;
1874
+ exports.ExperimentReport$ = ExperimentReport$;
1875
+ exports.ExperimentReportConfiguration$ = ExperimentReportConfiguration$;
1876
+ exports.ExperimentReportConfigurationCloudWatchDashboard$ = ExperimentReportConfigurationCloudWatchDashboard$;
1877
+ exports.ExperimentReportConfigurationDataSources$ = ExperimentReportConfigurationDataSources$;
1878
+ exports.ExperimentReportConfigurationOutputs$ = ExperimentReportConfigurationOutputs$;
1879
+ exports.ExperimentReportConfigurationOutputsS3Configuration$ = ExperimentReportConfigurationOutputsS3Configuration$;
1880
+ exports.ExperimentReportError$ = ExperimentReportError$;
1881
+ exports.ExperimentReportS3Report$ = ExperimentReportS3Report$;
1882
+ exports.ExperimentReportState$ = ExperimentReportState$;
536
1883
  exports.ExperimentReportStatus = ExperimentReportStatus;
1884
+ exports.ExperimentS3LogConfiguration$ = ExperimentS3LogConfiguration$;
1885
+ exports.ExperimentState$ = ExperimentState$;
537
1886
  exports.ExperimentStatus = ExperimentStatus;
1887
+ exports.ExperimentStopCondition$ = ExperimentStopCondition$;
1888
+ exports.ExperimentSummary$ = ExperimentSummary$;
1889
+ exports.ExperimentTarget$ = ExperimentTarget$;
1890
+ exports.ExperimentTargetAccountConfiguration$ = ExperimentTargetAccountConfiguration$;
1891
+ exports.ExperimentTargetAccountConfigurationSummary$ = ExperimentTargetAccountConfigurationSummary$;
1892
+ exports.ExperimentTargetFilter$ = ExperimentTargetFilter$;
1893
+ exports.ExperimentTemplate$ = ExperimentTemplate$;
1894
+ exports.ExperimentTemplateAction$ = ExperimentTemplateAction$;
1895
+ exports.ExperimentTemplateCloudWatchLogsLogConfiguration$ = ExperimentTemplateCloudWatchLogsLogConfiguration$;
1896
+ exports.ExperimentTemplateCloudWatchLogsLogConfigurationInput$ = ExperimentTemplateCloudWatchLogsLogConfigurationInput$;
1897
+ exports.ExperimentTemplateExperimentOptions$ = ExperimentTemplateExperimentOptions$;
1898
+ exports.ExperimentTemplateLogConfiguration$ = ExperimentTemplateLogConfiguration$;
1899
+ exports.ExperimentTemplateReportConfiguration$ = ExperimentTemplateReportConfiguration$;
1900
+ exports.ExperimentTemplateReportConfigurationCloudWatchDashboard$ = ExperimentTemplateReportConfigurationCloudWatchDashboard$;
1901
+ exports.ExperimentTemplateReportConfigurationDataSources$ = ExperimentTemplateReportConfigurationDataSources$;
1902
+ exports.ExperimentTemplateReportConfigurationDataSourcesInput$ = ExperimentTemplateReportConfigurationDataSourcesInput$;
1903
+ exports.ExperimentTemplateReportConfigurationOutputs$ = ExperimentTemplateReportConfigurationOutputs$;
1904
+ exports.ExperimentTemplateReportConfigurationOutputsInput$ = ExperimentTemplateReportConfigurationOutputsInput$;
1905
+ exports.ExperimentTemplateS3LogConfiguration$ = ExperimentTemplateS3LogConfiguration$;
1906
+ exports.ExperimentTemplateS3LogConfigurationInput$ = ExperimentTemplateS3LogConfigurationInput$;
1907
+ exports.ExperimentTemplateStopCondition$ = ExperimentTemplateStopCondition$;
1908
+ exports.ExperimentTemplateSummary$ = ExperimentTemplateSummary$;
1909
+ exports.ExperimentTemplateTarget$ = ExperimentTemplateTarget$;
1910
+ exports.ExperimentTemplateTargetFilter$ = ExperimentTemplateTargetFilter$;
1911
+ exports.ExperimentTemplateTargetInputFilter$ = ExperimentTemplateTargetInputFilter$;
538
1912
  exports.Fis = Fis;
539
1913
  exports.FisClient = FisClient;
1914
+ exports.FisServiceException = FisServiceException;
1915
+ exports.FisServiceException$ = FisServiceException$;
1916
+ exports.GetAction$ = GetAction$;
540
1917
  exports.GetActionCommand = GetActionCommand;
1918
+ exports.GetActionRequest$ = GetActionRequest$;
1919
+ exports.GetActionResponse$ = GetActionResponse$;
1920
+ exports.GetExperiment$ = GetExperiment$;
541
1921
  exports.GetExperimentCommand = GetExperimentCommand;
1922
+ exports.GetExperimentRequest$ = GetExperimentRequest$;
1923
+ exports.GetExperimentResponse$ = GetExperimentResponse$;
1924
+ exports.GetExperimentTargetAccountConfiguration$ = GetExperimentTargetAccountConfiguration$;
542
1925
  exports.GetExperimentTargetAccountConfigurationCommand = GetExperimentTargetAccountConfigurationCommand;
1926
+ exports.GetExperimentTargetAccountConfigurationRequest$ = GetExperimentTargetAccountConfigurationRequest$;
1927
+ exports.GetExperimentTargetAccountConfigurationResponse$ = GetExperimentTargetAccountConfigurationResponse$;
1928
+ exports.GetExperimentTemplate$ = GetExperimentTemplate$;
543
1929
  exports.GetExperimentTemplateCommand = GetExperimentTemplateCommand;
1930
+ exports.GetExperimentTemplateRequest$ = GetExperimentTemplateRequest$;
1931
+ exports.GetExperimentTemplateResponse$ = GetExperimentTemplateResponse$;
1932
+ exports.GetSafetyLever$ = GetSafetyLever$;
544
1933
  exports.GetSafetyLeverCommand = GetSafetyLeverCommand;
1934
+ exports.GetSafetyLeverRequest$ = GetSafetyLeverRequest$;
1935
+ exports.GetSafetyLeverResponse$ = GetSafetyLeverResponse$;
1936
+ exports.GetTargetAccountConfiguration$ = GetTargetAccountConfiguration$;
545
1937
  exports.GetTargetAccountConfigurationCommand = GetTargetAccountConfigurationCommand;
1938
+ exports.GetTargetAccountConfigurationRequest$ = GetTargetAccountConfigurationRequest$;
1939
+ exports.GetTargetAccountConfigurationResponse$ = GetTargetAccountConfigurationResponse$;
1940
+ exports.GetTargetResourceType$ = GetTargetResourceType$;
546
1941
  exports.GetTargetResourceTypeCommand = GetTargetResourceTypeCommand;
1942
+ exports.GetTargetResourceTypeRequest$ = GetTargetResourceTypeRequest$;
1943
+ exports.GetTargetResourceTypeResponse$ = GetTargetResourceTypeResponse$;
1944
+ exports.ListActions$ = ListActions$;
547
1945
  exports.ListActionsCommand = ListActionsCommand;
1946
+ exports.ListActionsRequest$ = ListActionsRequest$;
1947
+ exports.ListActionsResponse$ = ListActionsResponse$;
1948
+ exports.ListExperimentResolvedTargets$ = ListExperimentResolvedTargets$;
548
1949
  exports.ListExperimentResolvedTargetsCommand = ListExperimentResolvedTargetsCommand;
1950
+ exports.ListExperimentResolvedTargetsRequest$ = ListExperimentResolvedTargetsRequest$;
1951
+ exports.ListExperimentResolvedTargetsResponse$ = ListExperimentResolvedTargetsResponse$;
1952
+ exports.ListExperimentTargetAccountConfigurations$ = ListExperimentTargetAccountConfigurations$;
549
1953
  exports.ListExperimentTargetAccountConfigurationsCommand = ListExperimentTargetAccountConfigurationsCommand;
1954
+ exports.ListExperimentTargetAccountConfigurationsRequest$ = ListExperimentTargetAccountConfigurationsRequest$;
1955
+ exports.ListExperimentTargetAccountConfigurationsResponse$ = ListExperimentTargetAccountConfigurationsResponse$;
1956
+ exports.ListExperimentTemplates$ = ListExperimentTemplates$;
550
1957
  exports.ListExperimentTemplatesCommand = ListExperimentTemplatesCommand;
1958
+ exports.ListExperimentTemplatesRequest$ = ListExperimentTemplatesRequest$;
1959
+ exports.ListExperimentTemplatesResponse$ = ListExperimentTemplatesResponse$;
1960
+ exports.ListExperiments$ = ListExperiments$;
551
1961
  exports.ListExperimentsCommand = ListExperimentsCommand;
1962
+ exports.ListExperimentsRequest$ = ListExperimentsRequest$;
1963
+ exports.ListExperimentsResponse$ = ListExperimentsResponse$;
1964
+ exports.ListTagsForResource$ = ListTagsForResource$;
552
1965
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1966
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1967
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1968
+ exports.ListTargetAccountConfigurations$ = ListTargetAccountConfigurations$;
553
1969
  exports.ListTargetAccountConfigurationsCommand = ListTargetAccountConfigurationsCommand;
1970
+ exports.ListTargetAccountConfigurationsRequest$ = ListTargetAccountConfigurationsRequest$;
1971
+ exports.ListTargetAccountConfigurationsResponse$ = ListTargetAccountConfigurationsResponse$;
1972
+ exports.ListTargetResourceTypes$ = ListTargetResourceTypes$;
554
1973
  exports.ListTargetResourceTypesCommand = ListTargetResourceTypesCommand;
1974
+ exports.ListTargetResourceTypesRequest$ = ListTargetResourceTypesRequest$;
1975
+ exports.ListTargetResourceTypesResponse$ = ListTargetResourceTypesResponse$;
1976
+ exports.ReportConfigurationCloudWatchDashboardInput$ = ReportConfigurationCloudWatchDashboardInput$;
1977
+ exports.ReportConfigurationS3Output$ = ReportConfigurationS3Output$;
1978
+ exports.ReportConfigurationS3OutputInput$ = ReportConfigurationS3OutputInput$;
1979
+ exports.ResolvedTarget$ = ResolvedTarget$;
1980
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1981
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1982
+ exports.SafetyLever$ = SafetyLever$;
1983
+ exports.SafetyLeverState$ = SafetyLeverState$;
555
1984
  exports.SafetyLeverStatus = SafetyLeverStatus;
556
1985
  exports.SafetyLeverStatusInput = SafetyLeverStatusInput;
1986
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1987
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1988
+ exports.StartExperiment$ = StartExperiment$;
557
1989
  exports.StartExperimentCommand = StartExperimentCommand;
1990
+ exports.StartExperimentExperimentOptionsInput$ = StartExperimentExperimentOptionsInput$;
1991
+ exports.StartExperimentRequest$ = StartExperimentRequest$;
1992
+ exports.StartExperimentResponse$ = StartExperimentResponse$;
1993
+ exports.StopExperiment$ = StopExperiment$;
558
1994
  exports.StopExperimentCommand = StopExperimentCommand;
1995
+ exports.StopExperimentRequest$ = StopExperimentRequest$;
1996
+ exports.StopExperimentResponse$ = StopExperimentResponse$;
1997
+ exports.TagResource$ = TagResource$;
559
1998
  exports.TagResourceCommand = TagResourceCommand;
1999
+ exports.TagResourceRequest$ = TagResourceRequest$;
2000
+ exports.TagResourceResponse$ = TagResourceResponse$;
2001
+ exports.TargetAccountConfiguration$ = TargetAccountConfiguration$;
2002
+ exports.TargetAccountConfigurationSummary$ = TargetAccountConfigurationSummary$;
2003
+ exports.TargetResourceType$ = TargetResourceType$;
2004
+ exports.TargetResourceTypeParameter$ = TargetResourceTypeParameter$;
2005
+ exports.TargetResourceTypeSummary$ = TargetResourceTypeSummary$;
2006
+ exports.UntagResource$ = UntagResource$;
560
2007
  exports.UntagResourceCommand = UntagResourceCommand;
2008
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2009
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2010
+ exports.UpdateExperimentTemplate$ = UpdateExperimentTemplate$;
2011
+ exports.UpdateExperimentTemplateActionInputItem$ = UpdateExperimentTemplateActionInputItem$;
561
2012
  exports.UpdateExperimentTemplateCommand = UpdateExperimentTemplateCommand;
2013
+ exports.UpdateExperimentTemplateExperimentOptionsInput$ = UpdateExperimentTemplateExperimentOptionsInput$;
2014
+ exports.UpdateExperimentTemplateLogConfigurationInput$ = UpdateExperimentTemplateLogConfigurationInput$;
2015
+ exports.UpdateExperimentTemplateReportConfigurationInput$ = UpdateExperimentTemplateReportConfigurationInput$;
2016
+ exports.UpdateExperimentTemplateRequest$ = UpdateExperimentTemplateRequest$;
2017
+ exports.UpdateExperimentTemplateResponse$ = UpdateExperimentTemplateResponse$;
2018
+ exports.UpdateExperimentTemplateStopConditionInput$ = UpdateExperimentTemplateStopConditionInput$;
2019
+ exports.UpdateExperimentTemplateTargetInput$ = UpdateExperimentTemplateTargetInput$;
2020
+ exports.UpdateSafetyLeverState$ = UpdateSafetyLeverState$;
562
2021
  exports.UpdateSafetyLeverStateCommand = UpdateSafetyLeverStateCommand;
2022
+ exports.UpdateSafetyLeverStateInput$ = UpdateSafetyLeverStateInput$;
2023
+ exports.UpdateSafetyLeverStateRequest$ = UpdateSafetyLeverStateRequest$;
2024
+ exports.UpdateSafetyLeverStateResponse$ = UpdateSafetyLeverStateResponse$;
2025
+ exports.UpdateTargetAccountConfiguration$ = UpdateTargetAccountConfiguration$;
563
2026
  exports.UpdateTargetAccountConfigurationCommand = UpdateTargetAccountConfigurationCommand;
2027
+ exports.UpdateTargetAccountConfigurationRequest$ = UpdateTargetAccountConfigurationRequest$;
2028
+ exports.UpdateTargetAccountConfigurationResponse$ = UpdateTargetAccountConfigurationResponse$;
2029
+ exports.ValidationException = ValidationException;
2030
+ exports.ValidationException$ = ValidationException$;
2031
+ exports.errorTypeRegistries = errorTypeRegistries;
564
2032
  exports.paginateListActions = paginateListActions;
565
2033
  exports.paginateListExperimentResolvedTargets = paginateListExperimentResolvedTargets;
566
2034
  exports.paginateListExperimentTemplates = paginateListExperimentTemplates;