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