@aws-sdk/client-fis 3.952.0 → 3.953.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.
Files changed (46) hide show
  1. package/dist-cjs/index.js +486 -342
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateExperimentTemplateCommand.js +2 -2
  4. package/dist-es/commands/CreateTargetAccountConfigurationCommand.js +2 -2
  5. package/dist-es/commands/DeleteExperimentTemplateCommand.js +2 -2
  6. package/dist-es/commands/DeleteTargetAccountConfigurationCommand.js +2 -2
  7. package/dist-es/commands/GetActionCommand.js +2 -2
  8. package/dist-es/commands/GetExperimentCommand.js +2 -2
  9. package/dist-es/commands/GetExperimentTargetAccountConfigurationCommand.js +2 -2
  10. package/dist-es/commands/GetExperimentTemplateCommand.js +2 -2
  11. package/dist-es/commands/GetSafetyLeverCommand.js +2 -2
  12. package/dist-es/commands/GetTargetAccountConfigurationCommand.js +2 -2
  13. package/dist-es/commands/GetTargetResourceTypeCommand.js +2 -2
  14. package/dist-es/commands/ListActionsCommand.js +2 -2
  15. package/dist-es/commands/ListExperimentResolvedTargetsCommand.js +2 -2
  16. package/dist-es/commands/ListExperimentTargetAccountConfigurationsCommand.js +2 -2
  17. package/dist-es/commands/ListExperimentTemplatesCommand.js +2 -2
  18. package/dist-es/commands/ListExperimentsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-es/commands/ListTargetAccountConfigurationsCommand.js +2 -2
  21. package/dist-es/commands/ListTargetResourceTypesCommand.js +2 -2
  22. package/dist-es/commands/StartExperimentCommand.js +2 -2
  23. package/dist-es/commands/StopExperimentCommand.js +2 -2
  24. package/dist-es/commands/TagResourceCommand.js +2 -2
  25. package/dist-es/commands/UntagResourceCommand.js +2 -2
  26. package/dist-es/commands/UpdateExperimentTemplateCommand.js +2 -2
  27. package/dist-es/commands/UpdateSafetyLeverStateCommand.js +2 -2
  28. package/dist-es/commands/UpdateTargetAccountConfigurationCommand.js +2 -2
  29. package/dist-es/index.js +1 -0
  30. package/dist-es/runtimeConfig.shared.js +6 -1
  31. package/dist-es/schemas/schemas_0.js +318 -329
  32. package/dist-types/FisClient.d.ts +1 -10
  33. package/dist-types/index.d.ts +1 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  35. package/dist-types/runtimeConfig.d.ts +6 -2
  36. package/dist-types/runtimeConfig.native.d.ts +6 -2
  37. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  38. package/dist-types/schemas/schemas_0.d.ts +156 -199
  39. package/dist-types/ts3.4/FisClient.d.ts +0 -4
  40. package/dist-types/ts3.4/index.d.ts +1 -0
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  45. package/dist-types/ts3.4/schemas/schemas_0.d.ts +155 -200
  46. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class FisClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let FisServiceException$1 = class FisServiceException extends smithyClient.ServiceException {
113
+ class FisServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, FisServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let ConflictException$1 = class ConflictException extends FisServiceException$1 {
120
+ class ConflictException extends FisServiceException {
121
121
  name = "ConflictException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let ConflictException$1 = class ConflictException extends FisServiceException$1
128
128
  });
129
129
  Object.setPrototypeOf(this, ConflictException.prototype);
130
130
  }
131
- };
132
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends FisServiceException$1 {
131
+ }
132
+ class ResourceNotFoundException extends FisServiceException {
133
133
  name = "ResourceNotFoundException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends FisSer
140
140
  });
141
141
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
142
142
  }
143
- };
144
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends FisServiceException$1 {
143
+ }
144
+ class ServiceQuotaExceededException extends FisServiceException {
145
145
  name = "ServiceQuotaExceededException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
152
152
  });
153
153
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
154
154
  }
155
- };
156
- let ValidationException$1 = class ValidationException extends FisServiceException$1 {
155
+ }
156
+ class ValidationException extends FisServiceException {
157
157
  name = "ValidationException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,7 +164,7 @@ let ValidationException$1 = class ValidationException extends FisServiceExceptio
164
164
  });
165
165
  Object.setPrototypeOf(this, ValidationException.prototype);
166
166
  }
167
- };
167
+ }
168
168
 
169
169
  const _A = "Action";
170
170
  const _AP = "ActionParameter";
@@ -431,7 +431,7 @@ const _ta = "tags";
431
431
  const _v = "value";
432
432
  const _va = "values";
433
433
  const n0 = "com.amazonaws.fis";
434
- var Action = [
434
+ var Action$ = [
435
435
  3,
436
436
  n0,
437
437
  _A,
@@ -439,8 +439,8 @@ var Action = [
439
439
  [_i, _a, _d, _p, _t, _ta],
440
440
  [0, 0, 0, () => ActionParameterMap, () => ActionTargetMap, 128 | 0],
441
441
  ];
442
- var ActionParameter = [3, n0, _AP, 0, [_d, _r], [0, 2]];
443
- var ActionSummary = [
442
+ var ActionParameter$ = [3, n0, _AP, 0, [_d, _r], [0, 2]];
443
+ var ActionSummary$ = [
444
444
  3,
445
445
  n0,
446
446
  _AS,
@@ -448,8 +448,8 @@ var ActionSummary = [
448
448
  [_i, _a, _d, _t, _ta],
449
449
  [0, 0, 0, () => ActionTargetMap, 128 | 0],
450
450
  ];
451
- var ActionTarget = [3, n0, _AT, 0, [_rT], [0]];
452
- var ConflictException = [
451
+ var ActionTarget$ = [3, n0, _AT, 0, [_rT], [0]];
452
+ var ConflictException$ = [
453
453
  -3,
454
454
  n0,
455
455
  _CE,
@@ -457,8 +457,8 @@ var ConflictException = [
457
457
  [_m],
458
458
  [0],
459
459
  ];
460
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
461
- var CreateExperimentTemplateActionInput = [
460
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
461
+ var CreateExperimentTemplateActionInput$ = [
462
462
  3,
463
463
  n0,
464
464
  _CETAI,
@@ -466,7 +466,7 @@ var CreateExperimentTemplateActionInput = [
466
466
  [_aI, _d, _p, _t, _sA],
467
467
  [0, 0, 128 | 0, 128 | 0, 64 | 0],
468
468
  ];
469
- var CreateExperimentTemplateExperimentOptionsInput = [
469
+ var CreateExperimentTemplateExperimentOptionsInput$ = [
470
470
  3,
471
471
  n0,
472
472
  _CETEOI,
@@ -474,28 +474,28 @@ var CreateExperimentTemplateExperimentOptionsInput = [
474
474
  [_aT, _eTRM],
475
475
  [0, 0],
476
476
  ];
477
- var CreateExperimentTemplateLogConfigurationInput = [
477
+ var CreateExperimentTemplateLogConfigurationInput$ = [
478
478
  3,
479
479
  n0,
480
480
  _CETLCI,
481
481
  0,
482
482
  [_cWLC, _sC, _lSV],
483
- [() => ExperimentTemplateCloudWatchLogsLogConfigurationInput, () => ExperimentTemplateS3LogConfigurationInput, 1],
483
+ [() => ExperimentTemplateCloudWatchLogsLogConfigurationInput$, () => ExperimentTemplateS3LogConfigurationInput$, 1],
484
484
  ];
485
- var CreateExperimentTemplateReportConfigurationInput = [
485
+ var CreateExperimentTemplateReportConfigurationInput$ = [
486
486
  3,
487
487
  n0,
488
488
  _CETRCI,
489
489
  0,
490
490
  [_o, _dS, _pED, _pEDo],
491
491
  [
492
- () => ExperimentTemplateReportConfigurationOutputsInput,
493
- () => ExperimentTemplateReportConfigurationDataSourcesInput,
492
+ () => ExperimentTemplateReportConfigurationOutputsInput$,
493
+ () => ExperimentTemplateReportConfigurationDataSourcesInput$,
494
494
  0,
495
495
  0,
496
496
  ],
497
497
  ];
498
- var CreateExperimentTemplateRequest = [
498
+ var CreateExperimentTemplateRequest$ = [
499
499
  3,
500
500
  n0,
501
501
  _CETR,
@@ -509,21 +509,21 @@ var CreateExperimentTemplateRequest = [
509
509
  () => CreateExperimentTemplateActionInputMap,
510
510
  0,
511
511
  128 | 0,
512
- () => CreateExperimentTemplateLogConfigurationInput,
513
- () => CreateExperimentTemplateExperimentOptionsInput,
514
- () => CreateExperimentTemplateReportConfigurationInput,
512
+ () => CreateExperimentTemplateLogConfigurationInput$,
513
+ () => CreateExperimentTemplateExperimentOptionsInput$,
514
+ () => CreateExperimentTemplateReportConfigurationInput$,
515
515
  ],
516
516
  ];
517
- var CreateExperimentTemplateResponse = [
517
+ var CreateExperimentTemplateResponse$ = [
518
518
  3,
519
519
  n0,
520
520
  _CETRr,
521
521
  0,
522
522
  [_eT],
523
- [() => ExperimentTemplate],
523
+ [() => ExperimentTemplate$],
524
524
  ];
525
- var CreateExperimentTemplateStopConditionInput = [3, n0, _CETSCI, 0, [_s, _v], [0, 0]];
526
- var CreateExperimentTemplateTargetInput = [
525
+ var CreateExperimentTemplateStopConditionInput$ = [3, n0, _CETSCI, 0, [_s, _v], [0, 0]];
526
+ var CreateExperimentTemplateTargetInput$ = [
527
527
  3,
528
528
  n0,
529
529
  _CETTI,
@@ -531,7 +531,7 @@ var CreateExperimentTemplateTargetInput = [
531
531
  [_rT, _rAe, _rTe, _f, _sM, _p],
532
532
  [0, 64 | 0, 128 | 0, () => ExperimentTemplateTargetFilterInputList, 0, 128 | 0],
533
533
  ];
534
- var CreateTargetAccountConfigurationRequest = [
534
+ var CreateTargetAccountConfigurationRequest$ = [
535
535
  3,
536
536
  n0,
537
537
  _CTACR,
@@ -539,24 +539,24 @@ var CreateTargetAccountConfigurationRequest = [
539
539
  [_cT, _eTI, _aIc, _rA, _d],
540
540
  [[0, 4], [0, 1], [0, 1], 0, 0],
541
541
  ];
542
- var CreateTargetAccountConfigurationResponse = [
542
+ var CreateTargetAccountConfigurationResponse$ = [
543
543
  3,
544
544
  n0,
545
545
  _CTACRr,
546
546
  0,
547
547
  [_tAC],
548
- [() => TargetAccountConfiguration],
548
+ [() => TargetAccountConfiguration$],
549
549
  ];
550
- var DeleteExperimentTemplateRequest = [3, n0, _DETR, 0, [_i], [[0, 1]]];
551
- var DeleteExperimentTemplateResponse = [
550
+ var DeleteExperimentTemplateRequest$ = [3, n0, _DETR, 0, [_i], [[0, 1]]];
551
+ var DeleteExperimentTemplateResponse$ = [
552
552
  3,
553
553
  n0,
554
554
  _DETRe,
555
555
  0,
556
556
  [_eT],
557
- [() => ExperimentTemplate],
557
+ [() => ExperimentTemplate$],
558
558
  ];
559
- var DeleteTargetAccountConfigurationRequest = [
559
+ var DeleteTargetAccountConfigurationRequest$ = [
560
560
  3,
561
561
  n0,
562
562
  _DTACR,
@@ -567,15 +567,15 @@ var DeleteTargetAccountConfigurationRequest = [
567
567
  [0, 1],
568
568
  ],
569
569
  ];
570
- var DeleteTargetAccountConfigurationResponse = [
570
+ var DeleteTargetAccountConfigurationResponse$ = [
571
571
  3,
572
572
  n0,
573
573
  _DTACRe,
574
574
  0,
575
575
  [_tAC],
576
- [() => TargetAccountConfiguration],
576
+ [() => TargetAccountConfiguration$],
577
577
  ];
578
- var Experiment = [
578
+ var Experiment$ = [
579
579
  3,
580
580
  n0,
581
581
  _E,
@@ -586,7 +586,7 @@ var Experiment = [
586
586
  0,
587
587
  0,
588
588
  0,
589
- () => ExperimentState,
589
+ () => ExperimentState$,
590
590
  () => ExperimentTargetMap,
591
591
  () => ExperimentActionMap,
592
592
  () => ExperimentStopConditionList,
@@ -594,51 +594,51 @@ var Experiment = [
594
594
  4,
595
595
  4,
596
596
  128 | 0,
597
- () => ExperimentLogConfiguration,
598
- () => ExperimentOptions,
597
+ () => ExperimentLogConfiguration$,
598
+ () => ExperimentOptions$,
599
599
  1,
600
- () => ExperimentReportConfiguration,
601
- () => ExperimentReport,
600
+ () => ExperimentReportConfiguration$,
601
+ () => ExperimentReport$,
602
602
  ],
603
603
  ];
604
- var ExperimentAction = [
604
+ var ExperimentAction$ = [
605
605
  3,
606
606
  n0,
607
607
  _EA,
608
608
  0,
609
609
  [_aI, _d, _p, _t, _sA, _st, _sT, _eTn],
610
- [0, 0, 128 | 0, 128 | 0, 64 | 0, () => ExperimentActionState, 4, 4],
610
+ [0, 0, 128 | 0, 128 | 0, 64 | 0, () => ExperimentActionState$, 4, 4],
611
611
  ];
612
- var ExperimentActionState = [3, n0, _EAS, 0, [_sta, _re], [0, 0]];
613
- var ExperimentCloudWatchLogsLogConfiguration = [3, n0, _ECWLLC, 0, [_lGA], [0]];
614
- var ExperimentError = [3, n0, _EE, 0, [_aIc, _co, _l], [0, 0, 0]];
615
- var ExperimentLogConfiguration = [
612
+ var ExperimentActionState$ = [3, n0, _EAS, 0, [_sta, _re], [0, 0]];
613
+ var ExperimentCloudWatchLogsLogConfiguration$ = [3, n0, _ECWLLC, 0, [_lGA], [0]];
614
+ var ExperimentError$ = [3, n0, _EE, 0, [_aIc, _co, _l], [0, 0, 0]];
615
+ var ExperimentLogConfiguration$ = [
616
616
  3,
617
617
  n0,
618
618
  _ELC,
619
619
  0,
620
620
  [_cWLC, _sC, _lSV],
621
- [() => ExperimentCloudWatchLogsLogConfiguration, () => ExperimentS3LogConfiguration, 1],
621
+ [() => ExperimentCloudWatchLogsLogConfiguration$, () => ExperimentS3LogConfiguration$, 1],
622
622
  ];
623
- var ExperimentOptions = [3, n0, _EO, 0, [_aT, _eTRM, _aM], [0, 0, 0]];
624
- var ExperimentReport = [
623
+ var ExperimentOptions$ = [3, n0, _EO, 0, [_aT, _eTRM, _aM], [0, 0, 0]];
624
+ var ExperimentReport$ = [
625
625
  3,
626
626
  n0,
627
627
  _ER,
628
628
  0,
629
629
  [_st, _sR],
630
- [() => ExperimentReportState, () => ExperimentReportS3ReportList],
630
+ [() => ExperimentReportState$, () => ExperimentReportS3ReportList],
631
631
  ];
632
- var ExperimentReportConfiguration = [
632
+ var ExperimentReportConfiguration$ = [
633
633
  3,
634
634
  n0,
635
635
  _ERC,
636
636
  0,
637
637
  [_o, _dS, _pED, _pEDo],
638
- [() => ExperimentReportConfigurationOutputs, () => ExperimentReportConfigurationDataSources, 0, 0],
638
+ [() => ExperimentReportConfigurationOutputs$, () => ExperimentReportConfigurationDataSources$, 0, 0],
639
639
  ];
640
- var ExperimentReportConfigurationCloudWatchDashboard = [3, n0, _ERCCWD, 0, [_dI], [0]];
641
- var ExperimentReportConfigurationDataSources = [
640
+ var ExperimentReportConfigurationCloudWatchDashboard$ = [3, n0, _ERCCWD, 0, [_dI], [0]];
641
+ var ExperimentReportConfigurationDataSources$ = [
642
642
  3,
643
643
  n0,
644
644
  _ERCDS,
@@ -646,15 +646,15 @@ var ExperimentReportConfigurationDataSources = [
646
646
  [_cWD],
647
647
  [() => ExperimentReportConfigurationCloudWatchDashboardList],
648
648
  ];
649
- var ExperimentReportConfigurationOutputs = [
649
+ var ExperimentReportConfigurationOutputs$ = [
650
650
  3,
651
651
  n0,
652
652
  _ERCO,
653
653
  0,
654
654
  [_sC],
655
- [() => ExperimentReportConfigurationOutputsS3Configuration],
655
+ [() => ExperimentReportConfigurationOutputsS3Configuration$],
656
656
  ];
657
- var ExperimentReportConfigurationOutputsS3Configuration = [
657
+ var ExperimentReportConfigurationOutputsS3Configuration$ = [
658
658
  3,
659
659
  n0,
660
660
  _ERCOSC,
@@ -662,28 +662,28 @@ var ExperimentReportConfigurationOutputsS3Configuration = [
662
662
  [_bN, _pr],
663
663
  [0, 0],
664
664
  ];
665
- var ExperimentReportError = [3, n0, _ERE, 0, [_co], [0]];
666
- var ExperimentReportS3Report = [3, n0, _ERSR, 0, [_a, _rTep], [0, 0]];
667
- var ExperimentReportState = [
665
+ var ExperimentReportError$ = [3, n0, _ERE, 0, [_co], [0]];
666
+ var ExperimentReportS3Report$ = [3, n0, _ERSR, 0, [_a, _rTep], [0, 0]];
667
+ var ExperimentReportState$ = [
668
668
  3,
669
669
  n0,
670
670
  _ERS,
671
671
  0,
672
672
  [_sta, _re, _e],
673
- [0, 0, () => ExperimentReportError],
673
+ [0, 0, () => ExperimentReportError$],
674
674
  ];
675
- var ExperimentS3LogConfiguration = [3, n0, _ESLC, 0, [_bN, _pr], [0, 0]];
676
- var ExperimentState = [3, n0, _ES, 0, [_sta, _re, _e], [0, 0, () => ExperimentError]];
677
- var ExperimentStopCondition = [3, n0, _ESC, 0, [_s, _v], [0, 0]];
678
- var ExperimentSummary = [
675
+ var ExperimentS3LogConfiguration$ = [3, n0, _ESLC, 0, [_bN, _pr], [0, 0]];
676
+ var ExperimentState$ = [3, n0, _ES, 0, [_sta, _re, _e], [0, 0, () => ExperimentError$]];
677
+ var ExperimentStopCondition$ = [3, n0, _ESC, 0, [_s, _v], [0, 0]];
678
+ var ExperimentSummary$ = [
679
679
  3,
680
680
  n0,
681
681
  _ESx,
682
682
  0,
683
683
  [_i, _a, _eTI, _st, _cTr, _ta, _eO],
684
- [0, 0, 0, () => ExperimentState, 4, 128 | 0, () => ExperimentOptions],
684
+ [0, 0, 0, () => ExperimentState$, 4, 128 | 0, () => ExperimentOptions$],
685
685
  ];
686
- var ExperimentTarget = [
686
+ var ExperimentTarget$ = [
687
687
  3,
688
688
  n0,
689
689
  _ET,
@@ -691,8 +691,8 @@ var ExperimentTarget = [
691
691
  [_rT, _rAe, _rTe, _f, _sM, _p],
692
692
  [0, 64 | 0, 128 | 0, () => ExperimentTargetFilterList, 0, 128 | 0],
693
693
  ];
694
- var ExperimentTargetAccountConfiguration = [3, n0, _ETAC, 0, [_rA, _aIc, _d], [0, 0, 0]];
695
- var ExperimentTargetAccountConfigurationSummary = [
694
+ var ExperimentTargetAccountConfiguration$ = [3, n0, _ETAC, 0, [_rA, _aIc, _d], [0, 0, 0]];
695
+ var ExperimentTargetAccountConfigurationSummary$ = [
696
696
  3,
697
697
  n0,
698
698
  _ETACS,
@@ -700,8 +700,8 @@ var ExperimentTargetAccountConfigurationSummary = [
700
700
  [_rA, _aIc, _d],
701
701
  [0, 0, 0],
702
702
  ];
703
- var ExperimentTargetFilter = [3, n0, _ETF, 0, [_pa, _va], [0, 64 | 0]];
704
- var ExperimentTemplate = [
703
+ var ExperimentTargetFilter$ = [3, n0, _ETF, 0, [_pa, _va], [0, 64 | 0]];
704
+ var ExperimentTemplate$ = [
705
705
  3,
706
706
  n0,
707
707
  _ETx,
@@ -718,13 +718,13 @@ var ExperimentTemplate = [
718
718
  4,
719
719
  0,
720
720
  128 | 0,
721
- () => ExperimentTemplateLogConfiguration,
722
- () => ExperimentTemplateExperimentOptions,
721
+ () => ExperimentTemplateLogConfiguration$,
722
+ () => ExperimentTemplateExperimentOptions$,
723
723
  1,
724
- () => ExperimentTemplateReportConfiguration,
724
+ () => ExperimentTemplateReportConfiguration$,
725
725
  ],
726
726
  ];
727
- var ExperimentTemplateAction = [
727
+ var ExperimentTemplateAction$ = [
728
728
  3,
729
729
  n0,
730
730
  _ETA,
@@ -732,8 +732,8 @@ var ExperimentTemplateAction = [
732
732
  [_aI, _d, _p, _t, _sA],
733
733
  [0, 0, 128 | 0, 128 | 0, 64 | 0],
734
734
  ];
735
- var ExperimentTemplateCloudWatchLogsLogConfiguration = [3, n0, _ETCWLLC, 0, [_lGA], [0]];
736
- var ExperimentTemplateCloudWatchLogsLogConfigurationInput = [
735
+ var ExperimentTemplateCloudWatchLogsLogConfiguration$ = [3, n0, _ETCWLLC, 0, [_lGA], [0]];
736
+ var ExperimentTemplateCloudWatchLogsLogConfigurationInput$ = [
737
737
  3,
738
738
  n0,
739
739
  _ETCWLLCI,
@@ -741,24 +741,24 @@ var ExperimentTemplateCloudWatchLogsLogConfigurationInput = [
741
741
  [_lGA],
742
742
  [0],
743
743
  ];
744
- var ExperimentTemplateExperimentOptions = [3, n0, _ETEO, 0, [_aT, _eTRM], [0, 0]];
745
- var ExperimentTemplateLogConfiguration = [
744
+ var ExperimentTemplateExperimentOptions$ = [3, n0, _ETEO, 0, [_aT, _eTRM], [0, 0]];
745
+ var ExperimentTemplateLogConfiguration$ = [
746
746
  3,
747
747
  n0,
748
748
  _ETLC,
749
749
  0,
750
750
  [_cWLC, _sC, _lSV],
751
- [() => ExperimentTemplateCloudWatchLogsLogConfiguration, () => ExperimentTemplateS3LogConfiguration, 1],
751
+ [() => ExperimentTemplateCloudWatchLogsLogConfiguration$, () => ExperimentTemplateS3LogConfiguration$, 1],
752
752
  ];
753
- var ExperimentTemplateReportConfiguration = [
753
+ var ExperimentTemplateReportConfiguration$ = [
754
754
  3,
755
755
  n0,
756
756
  _ETRC,
757
757
  0,
758
758
  [_o, _dS, _pED, _pEDo],
759
- [() => ExperimentTemplateReportConfigurationOutputs, () => ExperimentTemplateReportConfigurationDataSources, 0, 0],
759
+ [() => ExperimentTemplateReportConfigurationOutputs$, () => ExperimentTemplateReportConfigurationDataSources$, 0, 0],
760
760
  ];
761
- var ExperimentTemplateReportConfigurationCloudWatchDashboard = [
761
+ var ExperimentTemplateReportConfigurationCloudWatchDashboard$ = [
762
762
  3,
763
763
  n0,
764
764
  _ETRCCWD,
@@ -766,7 +766,7 @@ var ExperimentTemplateReportConfigurationCloudWatchDashboard = [
766
766
  [_dI],
767
767
  [0],
768
768
  ];
769
- var ExperimentTemplateReportConfigurationDataSources = [
769
+ var ExperimentTemplateReportConfigurationDataSources$ = [
770
770
  3,
771
771
  n0,
772
772
  _ETRCDS,
@@ -774,7 +774,7 @@ var ExperimentTemplateReportConfigurationDataSources = [
774
774
  [_cWD],
775
775
  [() => ExperimentTemplateReportConfigurationCloudWatchDashboardList],
776
776
  ];
777
- var ExperimentTemplateReportConfigurationDataSourcesInput = [
777
+ var ExperimentTemplateReportConfigurationDataSourcesInput$ = [
778
778
  3,
779
779
  n0,
780
780
  _ETRCDSI,
@@ -782,26 +782,26 @@ var ExperimentTemplateReportConfigurationDataSourcesInput = [
782
782
  [_cWD],
783
783
  [() => ReportConfigurationCloudWatchDashboardInputList],
784
784
  ];
785
- var ExperimentTemplateReportConfigurationOutputs = [
785
+ var ExperimentTemplateReportConfigurationOutputs$ = [
786
786
  3,
787
787
  n0,
788
788
  _ETRCO,
789
789
  0,
790
790
  [_sC],
791
- [() => ReportConfigurationS3Output],
791
+ [() => ReportConfigurationS3Output$],
792
792
  ];
793
- var ExperimentTemplateReportConfigurationOutputsInput = [
793
+ var ExperimentTemplateReportConfigurationOutputsInput$ = [
794
794
  3,
795
795
  n0,
796
796
  _ETRCOI,
797
797
  0,
798
798
  [_sC],
799
- [() => ReportConfigurationS3OutputInput],
799
+ [() => ReportConfigurationS3OutputInput$],
800
800
  ];
801
- var ExperimentTemplateS3LogConfiguration = [3, n0, _ETSLC, 0, [_bN, _pr], [0, 0]];
802
- var ExperimentTemplateS3LogConfigurationInput = [3, n0, _ETSLCI, 0, [_bN, _pr], [0, 0]];
803
- var ExperimentTemplateStopCondition = [3, n0, _ETSC, 0, [_s, _v], [0, 0]];
804
- var ExperimentTemplateSummary = [
801
+ var ExperimentTemplateS3LogConfiguration$ = [3, n0, _ETSLC, 0, [_bN, _pr], [0, 0]];
802
+ var ExperimentTemplateS3LogConfigurationInput$ = [3, n0, _ETSLCI, 0, [_bN, _pr], [0, 0]];
803
+ var ExperimentTemplateStopCondition$ = [3, n0, _ETSC, 0, [_s, _v], [0, 0]];
804
+ var ExperimentTemplateSummary$ = [
805
805
  3,
806
806
  n0,
807
807
  _ETS,
@@ -809,7 +809,7 @@ var ExperimentTemplateSummary = [
809
809
  [_i, _a, _d, _cTr, _lUT, _ta],
810
810
  [0, 0, 0, 4, 4, 128 | 0],
811
811
  ];
812
- var ExperimentTemplateTarget = [
812
+ var ExperimentTemplateTarget$ = [
813
813
  3,
814
814
  n0,
815
815
  _ETT,
@@ -817,13 +817,13 @@ var ExperimentTemplateTarget = [
817
817
  [_rT, _rAe, _rTe, _f, _sM, _p],
818
818
  [0, 64 | 0, 128 | 0, () => ExperimentTemplateTargetFilterList, 0, 128 | 0],
819
819
  ];
820
- var ExperimentTemplateTargetFilter = [3, n0, _ETTF, 0, [_pa, _va], [0, 64 | 0]];
821
- var ExperimentTemplateTargetInputFilter = [3, n0, _ETTIF, 0, [_pa, _va], [0, 64 | 0]];
822
- var GetActionRequest = [3, n0, _GAR, 0, [_i], [[0, 1]]];
823
- var GetActionResponse = [3, n0, _GARe, 0, [_act], [() => Action]];
824
- var GetExperimentRequest = [3, n0, _GER, 0, [_i], [[0, 1]]];
825
- var GetExperimentResponse = [3, n0, _GERe, 0, [_ex], [() => Experiment]];
826
- var GetExperimentTargetAccountConfigurationRequest = [
820
+ var ExperimentTemplateTargetFilter$ = [3, n0, _ETTF, 0, [_pa, _va], [0, 64 | 0]];
821
+ var ExperimentTemplateTargetInputFilter$ = [3, n0, _ETTIF, 0, [_pa, _va], [0, 64 | 0]];
822
+ var GetActionRequest$ = [3, n0, _GAR, 0, [_i], [[0, 1]]];
823
+ var GetActionResponse$ = [3, n0, _GARe, 0, [_act], [() => Action$]];
824
+ var GetExperimentRequest$ = [3, n0, _GER, 0, [_i], [[0, 1]]];
825
+ var GetExperimentResponse$ = [3, n0, _GERe, 0, [_ex], [() => Experiment$]];
826
+ var GetExperimentTargetAccountConfigurationRequest$ = [
827
827
  3,
828
828
  n0,
829
829
  _GETACR,
@@ -834,19 +834,26 @@ var GetExperimentTargetAccountConfigurationRequest = [
834
834
  [0, 1],
835
835
  ],
836
836
  ];
837
- var GetExperimentTargetAccountConfigurationResponse = [
837
+ var GetExperimentTargetAccountConfigurationResponse$ = [
838
838
  3,
839
839
  n0,
840
840
  _GETACRe,
841
841
  0,
842
842
  [_tAC],
843
- [() => ExperimentTargetAccountConfiguration],
843
+ [() => ExperimentTargetAccountConfiguration$],
844
844
  ];
845
- var GetExperimentTemplateRequest = [3, n0, _GETR, 0, [_i], [[0, 1]]];
846
- var GetExperimentTemplateResponse = [3, n0, _GETRe, 0, [_eT], [() => ExperimentTemplate]];
847
- var GetSafetyLeverRequest = [3, n0, _GSLR, 0, [_i], [[0, 1]]];
848
- var GetSafetyLeverResponse = [3, n0, _GSLRe, 0, [_sL], [() => SafetyLever]];
849
- var GetTargetAccountConfigurationRequest = [
845
+ var GetExperimentTemplateRequest$ = [3, n0, _GETR, 0, [_i], [[0, 1]]];
846
+ var GetExperimentTemplateResponse$ = [
847
+ 3,
848
+ n0,
849
+ _GETRe,
850
+ 0,
851
+ [_eT],
852
+ [() => ExperimentTemplate$],
853
+ ];
854
+ var GetSafetyLeverRequest$ = [3, n0, _GSLR, 0, [_i], [[0, 1]]];
855
+ var GetSafetyLeverResponse$ = [3, n0, _GSLRe, 0, [_sL], [() => SafetyLever$]];
856
+ var GetTargetAccountConfigurationRequest$ = [
850
857
  3,
851
858
  n0,
852
859
  _GTACR,
@@ -857,24 +864,24 @@ var GetTargetAccountConfigurationRequest = [
857
864
  [0, 1],
858
865
  ],
859
866
  ];
860
- var GetTargetAccountConfigurationResponse = [
867
+ var GetTargetAccountConfigurationResponse$ = [
861
868
  3,
862
869
  n0,
863
870
  _GTACRe,
864
871
  0,
865
872
  [_tAC],
866
- [() => TargetAccountConfiguration],
873
+ [() => TargetAccountConfiguration$],
867
874
  ];
868
- var GetTargetResourceTypeRequest = [3, n0, _GTRTR, 0, [_rT], [[0, 1]]];
869
- var GetTargetResourceTypeResponse = [
875
+ var GetTargetResourceTypeRequest$ = [3, n0, _GTRTR, 0, [_rT], [[0, 1]]];
876
+ var GetTargetResourceTypeResponse$ = [
870
877
  3,
871
878
  n0,
872
879
  _GTRTRe,
873
880
  0,
874
881
  [_tRT],
875
- [() => TargetResourceType],
882
+ [() => TargetResourceType$],
876
883
  ];
877
- var ListActionsRequest = [
884
+ var ListActionsRequest$ = [
878
885
  3,
879
886
  n0,
880
887
  _LAR,
@@ -885,8 +892,8 @@ var ListActionsRequest = [
885
892
  [0, { [_hQ]: _nT }],
886
893
  ],
887
894
  ];
888
- var ListActionsResponse = [3, n0, _LARi, 0, [_ac, _nT], [() => ActionSummaryList, 0]];
889
- var ListExperimentResolvedTargetsRequest = [
895
+ var ListActionsResponse$ = [3, n0, _LARi, 0, [_ac, _nT], [() => ActionSummaryList, 0]];
896
+ var ListExperimentResolvedTargetsRequest$ = [
890
897
  3,
891
898
  n0,
892
899
  _LERTR,
@@ -899,7 +906,7 @@ var ListExperimentResolvedTargetsRequest = [
899
906
  [0, { [_hQ]: _tN }],
900
907
  ],
901
908
  ];
902
- var ListExperimentResolvedTargetsResponse = [
909
+ var ListExperimentResolvedTargetsResponse$ = [
903
910
  3,
904
911
  n0,
905
912
  _LERTRi,
@@ -907,7 +914,7 @@ var ListExperimentResolvedTargetsResponse = [
907
914
  [_rTes, _nT],
908
915
  [() => ResolvedTargetList, 0],
909
916
  ];
910
- var ListExperimentsRequest = [
917
+ var ListExperimentsRequest$ = [
911
918
  3,
912
919
  n0,
913
920
  _LER,
@@ -919,7 +926,7 @@ var ListExperimentsRequest = [
919
926
  [0, { [_hQ]: _eTI }],
920
927
  ],
921
928
  ];
922
- var ListExperimentsResponse = [
929
+ var ListExperimentsResponse$ = [
923
930
  3,
924
931
  n0,
925
932
  _LERi,
@@ -927,7 +934,7 @@ var ListExperimentsResponse = [
927
934
  [_exp, _nT],
928
935
  [() => ExperimentSummaryList, 0],
929
936
  ];
930
- var ListExperimentTargetAccountConfigurationsRequest = [
937
+ var ListExperimentTargetAccountConfigurationsRequest$ = [
931
938
  3,
932
939
  n0,
933
940
  _LETACR,
@@ -938,7 +945,7 @@ var ListExperimentTargetAccountConfigurationsRequest = [
938
945
  [0, { [_hQ]: _nT }],
939
946
  ],
940
947
  ];
941
- var ListExperimentTargetAccountConfigurationsResponse = [
948
+ var ListExperimentTargetAccountConfigurationsResponse$ = [
942
949
  3,
943
950
  n0,
944
951
  _LETACRi,
@@ -946,7 +953,7 @@ var ListExperimentTargetAccountConfigurationsResponse = [
946
953
  [_tACa, _nT],
947
954
  [() => ExperimentTargetAccountConfigurationList, 0],
948
955
  ];
949
- var ListExperimentTemplatesRequest = [
956
+ var ListExperimentTemplatesRequest$ = [
950
957
  3,
951
958
  n0,
952
959
  _LETR,
@@ -957,7 +964,7 @@ var ListExperimentTemplatesRequest = [
957
964
  [0, { [_hQ]: _nT }],
958
965
  ],
959
966
  ];
960
- var ListExperimentTemplatesResponse = [
967
+ var ListExperimentTemplatesResponse$ = [
961
968
  3,
962
969
  n0,
963
970
  _LETRi,
@@ -965,9 +972,9 @@ var ListExperimentTemplatesResponse = [
965
972
  [_eTx, _nT],
966
973
  [() => ExperimentTemplateSummaryList, 0],
967
974
  ];
968
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAes], [[0, 1]]];
969
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
970
- var ListTargetAccountConfigurationsRequest = [
975
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAes], [[0, 1]]];
976
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
977
+ var ListTargetAccountConfigurationsRequest$ = [
971
978
  3,
972
979
  n0,
973
980
  _LTACR,
@@ -979,7 +986,7 @@ var ListTargetAccountConfigurationsRequest = [
979
986
  [0, { [_hQ]: _nT }],
980
987
  ],
981
988
  ];
982
- var ListTargetAccountConfigurationsResponse = [
989
+ var ListTargetAccountConfigurationsResponse$ = [
983
990
  3,
984
991
  n0,
985
992
  _LTACRi,
@@ -987,7 +994,7 @@ var ListTargetAccountConfigurationsResponse = [
987
994
  [_tACa, _nT],
988
995
  [() => TargetAccountConfigurationList, 0],
989
996
  ];
990
- var ListTargetResourceTypesRequest = [
997
+ var ListTargetResourceTypesRequest$ = [
991
998
  3,
992
999
  n0,
993
1000
  _LTRTR,
@@ -998,7 +1005,7 @@ var ListTargetResourceTypesRequest = [
998
1005
  [0, { [_hQ]: _nT }],
999
1006
  ],
1000
1007
  ];
1001
- var ListTargetResourceTypesResponse = [
1008
+ var ListTargetResourceTypesResponse$ = [
1002
1009
  3,
1003
1010
  n0,
1004
1011
  _LTRTRi,
@@ -1006,11 +1013,11 @@ var ListTargetResourceTypesResponse = [
1006
1013
  [_tRTa, _nT],
1007
1014
  [() => TargetResourceTypeSummaryList, 0],
1008
1015
  ];
1009
- var ReportConfigurationCloudWatchDashboardInput = [3, n0, _RCCWDI, 0, [_dI], [0]];
1010
- var ReportConfigurationS3Output = [3, n0, _RCSO, 0, [_bN, _pr], [0, 0]];
1011
- var ReportConfigurationS3OutputInput = [3, n0, _RCSOI, 0, [_bN, _pr], [0, 0]];
1012
- var ResolvedTarget = [3, n0, _RT, 0, [_rT, _tN, _tI], [0, 0, 128 | 0]];
1013
- var ResourceNotFoundException = [
1016
+ var ReportConfigurationCloudWatchDashboardInput$ = [3, n0, _RCCWDI, 0, [_dI], [0]];
1017
+ var ReportConfigurationS3Output$ = [3, n0, _RCSO, 0, [_bN, _pr], [0, 0]];
1018
+ var ReportConfigurationS3OutputInput$ = [3, n0, _RCSOI, 0, [_bN, _pr], [0, 0]];
1019
+ var ResolvedTarget$ = [3, n0, _RT, 0, [_rT, _tN, _tI], [0, 0, 128 | 0]];
1020
+ var ResourceNotFoundException$ = [
1014
1021
  -3,
1015
1022
  n0,
1016
1023
  _RNFE,
@@ -1018,10 +1025,10 @@ var ResourceNotFoundException = [
1018
1025
  [_m],
1019
1026
  [0],
1020
1027
  ];
1021
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1022
- var SafetyLever = [3, n0, _SL, 0, [_i, _a, _st], [0, 0, () => SafetyLeverState]];
1023
- var SafetyLeverState = [3, n0, _SLS, 0, [_sta, _re], [0, 0]];
1024
- var ServiceQuotaExceededException = [
1028
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1029
+ var SafetyLever$ = [3, n0, _SL, 0, [_i, _a, _st], [0, 0, () => SafetyLeverState$]];
1030
+ var SafetyLeverState$ = [3, n0, _SLS, 0, [_sta, _re], [0, 0]];
1031
+ var ServiceQuotaExceededException$ = [
1025
1032
  -3,
1026
1033
  n0,
1027
1034
  _SQEE,
@@ -1029,24 +1036,24 @@ var ServiceQuotaExceededException = [
1029
1036
  [_m],
1030
1037
  [0],
1031
1038
  ];
1032
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1033
- var StartExperimentExperimentOptionsInput = [3, n0, _SEEOI, 0, [_aM], [0]];
1034
- var StartExperimentRequest = [
1039
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1040
+ var StartExperimentExperimentOptionsInput$ = [3, n0, _SEEOI, 0, [_aM], [0]];
1041
+ var StartExperimentRequest$ = [
1035
1042
  3,
1036
1043
  n0,
1037
1044
  _SER,
1038
1045
  0,
1039
1046
  [_cT, _eTI, _eO, _ta],
1040
- [[0, 4], 0, () => StartExperimentExperimentOptionsInput, 128 | 0],
1047
+ [[0, 4], 0, () => StartExperimentExperimentOptionsInput$, 128 | 0],
1041
1048
  ];
1042
- var StartExperimentResponse = [3, n0, _SERt, 0, [_ex], [() => Experiment]];
1043
- var StopExperimentRequest = [3, n0, _SERto, 0, [_i], [[0, 1]]];
1044
- var StopExperimentResponse = [3, n0, _SERtop, 0, [_ex], [() => Experiment]];
1045
- var TagResourceRequest = [3, n0, _TRR, 0, [_rAes, _ta], [[0, 1], 128 | 0]];
1046
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1047
- var TargetAccountConfiguration = [3, n0, _TAC, 0, [_rA, _aIc, _d], [0, 0, 0]];
1048
- var TargetAccountConfigurationSummary = [3, n0, _TACS, 0, [_rA, _aIc, _d], [0, 0, 0]];
1049
- var TargetResourceType = [
1049
+ var StartExperimentResponse$ = [3, n0, _SERt, 0, [_ex], [() => Experiment$]];
1050
+ var StopExperimentRequest$ = [3, n0, _SERto, 0, [_i], [[0, 1]]];
1051
+ var StopExperimentResponse$ = [3, n0, _SERtop, 0, [_ex], [() => Experiment$]];
1052
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAes, _ta], [[0, 1], 128 | 0]];
1053
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1054
+ var TargetAccountConfiguration$ = [3, n0, _TAC, 0, [_rA, _aIc, _d], [0, 0, 0]];
1055
+ var TargetAccountConfigurationSummary$ = [3, n0, _TACS, 0, [_rA, _aIc, _d], [0, 0, 0]];
1056
+ var TargetResourceType$ = [
1050
1057
  3,
1051
1058
  n0,
1052
1059
  _TRT,
@@ -1054,9 +1061,9 @@ var TargetResourceType = [
1054
1061
  [_rT, _d, _p],
1055
1062
  [0, 0, () => TargetResourceTypeParameterMap],
1056
1063
  ];
1057
- var TargetResourceTypeParameter = [3, n0, _TRTP, 0, [_d, _r], [0, 2]];
1058
- var TargetResourceTypeSummary = [3, n0, _TRTS, 0, [_rT, _d], [0, 0]];
1059
- var UntagResourceRequest = [
1064
+ var TargetResourceTypeParameter$ = [3, n0, _TRTP, 0, [_d, _r], [0, 2]];
1065
+ var TargetResourceTypeSummary$ = [3, n0, _TRTS, 0, [_rT, _d], [0, 0]];
1066
+ var UntagResourceRequest$ = [
1060
1067
  3,
1061
1068
  n0,
1062
1069
  _URR,
@@ -1067,8 +1074,8 @@ var UntagResourceRequest = [
1067
1074
  [64 | 0, { [_hQ]: _tK }],
1068
1075
  ],
1069
1076
  ];
1070
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1071
- var UpdateExperimentTemplateActionInputItem = [
1077
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1078
+ var UpdateExperimentTemplateActionInputItem$ = [
1072
1079
  3,
1073
1080
  n0,
1074
1081
  _UETAII,
@@ -1076,29 +1083,29 @@ var UpdateExperimentTemplateActionInputItem = [
1076
1083
  [_aI, _d, _p, _t, _sA],
1077
1084
  [0, 0, 128 | 0, 128 | 0, 64 | 0],
1078
1085
  ];
1079
- var UpdateExperimentTemplateExperimentOptionsInput = [3, n0, _UETEOI, 0, [_eTRM], [0]];
1080
- var UpdateExperimentTemplateLogConfigurationInput = [
1086
+ var UpdateExperimentTemplateExperimentOptionsInput$ = [3, n0, _UETEOI, 0, [_eTRM], [0]];
1087
+ var UpdateExperimentTemplateLogConfigurationInput$ = [
1081
1088
  3,
1082
1089
  n0,
1083
1090
  _UETLCI,
1084
1091
  0,
1085
1092
  [_cWLC, _sC, _lSV],
1086
- [() => ExperimentTemplateCloudWatchLogsLogConfigurationInput, () => ExperimentTemplateS3LogConfigurationInput, 1],
1093
+ [() => ExperimentTemplateCloudWatchLogsLogConfigurationInput$, () => ExperimentTemplateS3LogConfigurationInput$, 1],
1087
1094
  ];
1088
- var UpdateExperimentTemplateReportConfigurationInput = [
1095
+ var UpdateExperimentTemplateReportConfigurationInput$ = [
1089
1096
  3,
1090
1097
  n0,
1091
1098
  _UETRCI,
1092
1099
  0,
1093
1100
  [_o, _dS, _pED, _pEDo],
1094
1101
  [
1095
- () => ExperimentTemplateReportConfigurationOutputsInput,
1096
- () => ExperimentTemplateReportConfigurationDataSourcesInput,
1102
+ () => ExperimentTemplateReportConfigurationOutputsInput$,
1103
+ () => ExperimentTemplateReportConfigurationDataSourcesInput$,
1097
1104
  0,
1098
1105
  0,
1099
1106
  ],
1100
1107
  ];
1101
- var UpdateExperimentTemplateRequest = [
1108
+ var UpdateExperimentTemplateRequest$ = [
1102
1109
  3,
1103
1110
  n0,
1104
1111
  _UETR,
@@ -1111,21 +1118,21 @@ var UpdateExperimentTemplateRequest = [
1111
1118
  () => UpdateExperimentTemplateTargetInputMap,
1112
1119
  () => UpdateExperimentTemplateActionInputMap,
1113
1120
  0,
1114
- () => UpdateExperimentTemplateLogConfigurationInput,
1115
- () => UpdateExperimentTemplateExperimentOptionsInput,
1116
- () => UpdateExperimentTemplateReportConfigurationInput,
1121
+ () => UpdateExperimentTemplateLogConfigurationInput$,
1122
+ () => UpdateExperimentTemplateExperimentOptionsInput$,
1123
+ () => UpdateExperimentTemplateReportConfigurationInput$,
1117
1124
  ],
1118
1125
  ];
1119
- var UpdateExperimentTemplateResponse = [
1126
+ var UpdateExperimentTemplateResponse$ = [
1120
1127
  3,
1121
1128
  n0,
1122
1129
  _UETRp,
1123
1130
  0,
1124
1131
  [_eT],
1125
- [() => ExperimentTemplate],
1132
+ [() => ExperimentTemplate$],
1126
1133
  ];
1127
- var UpdateExperimentTemplateStopConditionInput = [3, n0, _UETSCI, 0, [_s, _v], [0, 0]];
1128
- var UpdateExperimentTemplateTargetInput = [
1134
+ var UpdateExperimentTemplateStopConditionInput$ = [3, n0, _UETSCI, 0, [_s, _v], [0, 0]];
1135
+ var UpdateExperimentTemplateTargetInput$ = [
1129
1136
  3,
1130
1137
  n0,
1131
1138
  _UETTI,
@@ -1133,17 +1140,17 @@ var UpdateExperimentTemplateTargetInput = [
1133
1140
  [_rT, _rAe, _rTe, _f, _sM, _p],
1134
1141
  [0, 64 | 0, 128 | 0, () => ExperimentTemplateTargetFilterInputList, 0, 128 | 0],
1135
1142
  ];
1136
- var UpdateSafetyLeverStateInput = [3, n0, _USLSI, 0, [_sta, _re], [0, 0]];
1137
- var UpdateSafetyLeverStateRequest = [
1143
+ var UpdateSafetyLeverStateInput$ = [3, n0, _USLSI, 0, [_sta, _re], [0, 0]];
1144
+ var UpdateSafetyLeverStateRequest$ = [
1138
1145
  3,
1139
1146
  n0,
1140
1147
  _USLSR,
1141
1148
  0,
1142
1149
  [_i, _st],
1143
- [[0, 1], () => UpdateSafetyLeverStateInput],
1150
+ [[0, 1], () => UpdateSafetyLeverStateInput$],
1144
1151
  ];
1145
- var UpdateSafetyLeverStateResponse = [3, n0, _USLSRp, 0, [_sL], [() => SafetyLever]];
1146
- var UpdateTargetAccountConfigurationRequest = [
1152
+ var UpdateSafetyLeverStateResponse$ = [3, n0, _USLSRp, 0, [_sL], [() => SafetyLever$]];
1153
+ var UpdateTargetAccountConfigurationRequest$ = [
1147
1154
  3,
1148
1155
  n0,
1149
1156
  _UTACR,
@@ -1151,15 +1158,15 @@ var UpdateTargetAccountConfigurationRequest = [
1151
1158
  [_eTI, _aIc, _rA, _d],
1152
1159
  [[0, 1], [0, 1], 0, 0],
1153
1160
  ];
1154
- var UpdateTargetAccountConfigurationResponse = [
1161
+ var UpdateTargetAccountConfigurationResponse$ = [
1155
1162
  3,
1156
1163
  n0,
1157
1164
  _UTACRp,
1158
1165
  0,
1159
1166
  [_tAC],
1160
- [() => TargetAccountConfiguration],
1167
+ [() => TargetAccountConfiguration$],
1161
1168
  ];
1162
- var ValidationException = [
1169
+ var ValidationException$ = [
1163
1170
  -3,
1164
1171
  n0,
1165
1172
  _VE,
@@ -1167,96 +1174,78 @@ var ValidationException = [
1167
1174
  [_m],
1168
1175
  [0],
1169
1176
  ];
1170
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1171
- var FisServiceException = [-3, _sm, "FisServiceException", 0, [], []];
1172
- schema.TypeRegistry.for(_sm).registerError(FisServiceException, FisServiceException$1);
1173
- var ActionSummaryList = [1, n0, _ASL, 0, () => ActionSummary];
1177
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1178
+ var FisServiceException$ = [-3, _sm, "FisServiceException", 0, [], []];
1179
+ schema.TypeRegistry.for(_sm).registerError(FisServiceException$, FisServiceException);
1180
+ var ActionSummaryList = [1, n0, _ASL, 0, () => ActionSummary$];
1174
1181
  var CreateExperimentTemplateStopConditionInputList = [
1175
1182
  1,
1176
1183
  n0,
1177
1184
  _CETSCIL,
1178
1185
  0,
1179
- () => CreateExperimentTemplateStopConditionInput,
1186
+ () => CreateExperimentTemplateStopConditionInput$,
1180
1187
  ];
1181
1188
  var ExperimentReportConfigurationCloudWatchDashboardList = [
1182
1189
  1,
1183
1190
  n0,
1184
1191
  _ERCCWDL,
1185
1192
  0,
1186
- () => ExperimentReportConfigurationCloudWatchDashboard,
1193
+ () => ExperimentReportConfigurationCloudWatchDashboard$,
1187
1194
  ];
1188
- var ExperimentReportS3ReportList = [1, n0, _ERSRL, 0, () => ExperimentReportS3Report];
1189
- var ExperimentStopConditionList = [1, n0, _ESCL, 0, () => ExperimentStopCondition];
1190
- var ExperimentSummaryList = [1, n0, _ESL, 0, () => ExperimentSummary];
1195
+ var ExperimentReportS3ReportList = [1, n0, _ERSRL, 0, () => ExperimentReportS3Report$];
1196
+ var ExperimentStopConditionList = [1, n0, _ESCL, 0, () => ExperimentStopCondition$];
1197
+ var ExperimentSummaryList = [1, n0, _ESL, 0, () => ExperimentSummary$];
1191
1198
  var ExperimentTargetAccountConfigurationList = [
1192
1199
  1,
1193
1200
  n0,
1194
1201
  _ETACL,
1195
1202
  0,
1196
- () => ExperimentTargetAccountConfigurationSummary,
1203
+ () => ExperimentTargetAccountConfigurationSummary$,
1197
1204
  ];
1198
- var ExperimentTargetFilterList = [1, n0, _ETFL, 0, () => ExperimentTargetFilter];
1205
+ var ExperimentTargetFilterList = [1, n0, _ETFL, 0, () => ExperimentTargetFilter$];
1199
1206
  var ExperimentTemplateReportConfigurationCloudWatchDashboardList = [
1200
1207
  1,
1201
1208
  n0,
1202
1209
  _ETRCCWDL,
1203
1210
  0,
1204
- () => ExperimentTemplateReportConfigurationCloudWatchDashboard,
1211
+ () => ExperimentTemplateReportConfigurationCloudWatchDashboard$,
1205
1212
  ];
1206
- var ExperimentTemplateStopConditionList = [
1207
- 1,
1208
- n0,
1209
- _ETSCL,
1210
- 0,
1211
- () => ExperimentTemplateStopCondition,
1212
- ];
1213
- var ExperimentTemplateSummaryList = [1, n0, _ETSL, 0, () => ExperimentTemplateSummary];
1213
+ var ExperimentTemplateStopConditionList = [1, n0, _ETSCL, 0, () => ExperimentTemplateStopCondition$];
1214
+ var ExperimentTemplateSummaryList = [1, n0, _ETSL, 0, () => ExperimentTemplateSummary$];
1214
1215
  var ExperimentTemplateTargetFilterInputList = [
1215
1216
  1,
1216
1217
  n0,
1217
1218
  _ETTFIL,
1218
1219
  0,
1219
- () => ExperimentTemplateTargetInputFilter,
1220
- ];
1221
- var ExperimentTemplateTargetFilterList = [
1222
- 1,
1223
- n0,
1224
- _ETTFL,
1225
- 0,
1226
- () => ExperimentTemplateTargetFilter,
1220
+ () => ExperimentTemplateTargetInputFilter$,
1227
1221
  ];
1222
+ var ExperimentTemplateTargetFilterList = [1, n0, _ETTFL, 0, () => ExperimentTemplateTargetFilter$];
1228
1223
  var ReportConfigurationCloudWatchDashboardInputList = [
1229
1224
  1,
1230
1225
  n0,
1231
1226
  _RCCWDIL,
1232
1227
  0,
1233
- () => ReportConfigurationCloudWatchDashboardInput,
1234
- ];
1235
- var ResolvedTargetList = [1, n0, _RTL, 0, () => ResolvedTarget];
1236
- var TargetAccountConfigurationList = [
1237
- 1,
1238
- n0,
1239
- _TACL,
1240
- 0,
1241
- () => TargetAccountConfigurationSummary,
1228
+ () => ReportConfigurationCloudWatchDashboardInput$,
1242
1229
  ];
1243
- var TargetResourceTypeSummaryList = [1, n0, _TRTSL, 0, () => TargetResourceTypeSummary];
1230
+ var ResolvedTargetList = [1, n0, _RTL, 0, () => ResolvedTarget$];
1231
+ var TargetAccountConfigurationList = [1, n0, _TACL, 0, () => TargetAccountConfigurationSummary$];
1232
+ var TargetResourceTypeSummaryList = [1, n0, _TRTSL, 0, () => TargetResourceTypeSummary$];
1244
1233
  var UpdateExperimentTemplateStopConditionInputList = [
1245
1234
  1,
1246
1235
  n0,
1247
1236
  _UETSCIL,
1248
1237
  0,
1249
- () => UpdateExperimentTemplateStopConditionInput,
1238
+ () => UpdateExperimentTemplateStopConditionInput$,
1250
1239
  ];
1251
- var ActionParameterMap = [2, n0, _APM, 0, 0, () => ActionParameter];
1252
- var ActionTargetMap = [2, n0, _ATM, 0, 0, () => ActionTarget];
1240
+ var ActionParameterMap = [2, n0, _APM, 0, 0, () => ActionParameter$];
1241
+ var ActionTargetMap = [2, n0, _ATM, 0, 0, () => ActionTarget$];
1253
1242
  var CreateExperimentTemplateActionInputMap = [
1254
1243
  2,
1255
1244
  n0,
1256
1245
  _CETAIM,
1257
1246
  0,
1258
1247
  0,
1259
- () => CreateExperimentTemplateActionInput,
1248
+ () => CreateExperimentTemplateActionInput$,
1260
1249
  ];
1261
1250
  var CreateExperimentTemplateTargetInputMap = [
1262
1251
  2,
@@ -1264,20 +1253,20 @@ var CreateExperimentTemplateTargetInputMap = [
1264
1253
  _CETTIM,
1265
1254
  0,
1266
1255
  0,
1267
- () => CreateExperimentTemplateTargetInput,
1256
+ () => CreateExperimentTemplateTargetInput$,
1268
1257
  ];
1269
- var ExperimentActionMap = [2, n0, _EAM, 0, 0, () => ExperimentAction];
1270
- var ExperimentTargetMap = [2, n0, _ETM, 0, 0, () => ExperimentTarget];
1271
- var ExperimentTemplateActionMap = [2, n0, _ETAM, 0, 0, () => ExperimentTemplateAction];
1272
- var ExperimentTemplateTargetMap = [2, n0, _ETTM, 0, 0, () => ExperimentTemplateTarget];
1273
- var TargetResourceTypeParameterMap = [2, n0, _TRTPM, 0, 0, () => TargetResourceTypeParameter];
1258
+ var ExperimentActionMap = [2, n0, _EAM, 0, 0, () => ExperimentAction$];
1259
+ var ExperimentTargetMap = [2, n0, _ETM, 0, 0, () => ExperimentTarget$];
1260
+ var ExperimentTemplateActionMap = [2, n0, _ETAM, 0, 0, () => ExperimentTemplateAction$];
1261
+ var ExperimentTemplateTargetMap = [2, n0, _ETTM, 0, 0, () => ExperimentTemplateTarget$];
1262
+ var TargetResourceTypeParameterMap = [2, n0, _TRTPM, 0, 0, () => TargetResourceTypeParameter$];
1274
1263
  var UpdateExperimentTemplateActionInputMap = [
1275
1264
  2,
1276
1265
  n0,
1277
1266
  _UETAIM,
1278
1267
  0,
1279
1268
  0,
1280
- () => UpdateExperimentTemplateActionInputItem,
1269
+ () => UpdateExperimentTemplateActionInputItem$,
1281
1270
  ];
1282
1271
  var UpdateExperimentTemplateTargetInputMap = [
1283
1272
  2,
@@ -1285,215 +1274,215 @@ var UpdateExperimentTemplateTargetInputMap = [
1285
1274
  _UETTIM,
1286
1275
  0,
1287
1276
  0,
1288
- () => UpdateExperimentTemplateTargetInput,
1277
+ () => UpdateExperimentTemplateTargetInput$,
1289
1278
  ];
1290
- var CreateExperimentTemplate = [
1279
+ var CreateExperimentTemplate$ = [
1291
1280
  9,
1292
1281
  n0,
1293
1282
  _CET,
1294
1283
  { [_h]: ["POST", "/experimentTemplates", 200] },
1295
- () => CreateExperimentTemplateRequest,
1296
- () => CreateExperimentTemplateResponse,
1284
+ () => CreateExperimentTemplateRequest$,
1285
+ () => CreateExperimentTemplateResponse$,
1297
1286
  ];
1298
- var CreateTargetAccountConfiguration = [
1287
+ var CreateTargetAccountConfiguration$ = [
1299
1288
  9,
1300
1289
  n0,
1301
1290
  _CTAC,
1302
1291
  { [_h]: ["POST", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] },
1303
- () => CreateTargetAccountConfigurationRequest,
1304
- () => CreateTargetAccountConfigurationResponse,
1292
+ () => CreateTargetAccountConfigurationRequest$,
1293
+ () => CreateTargetAccountConfigurationResponse$,
1305
1294
  ];
1306
- var DeleteExperimentTemplate = [
1295
+ var DeleteExperimentTemplate$ = [
1307
1296
  9,
1308
1297
  n0,
1309
1298
  _DET,
1310
1299
  { [_h]: ["DELETE", "/experimentTemplates/{id}", 200] },
1311
- () => DeleteExperimentTemplateRequest,
1312
- () => DeleteExperimentTemplateResponse,
1300
+ () => DeleteExperimentTemplateRequest$,
1301
+ () => DeleteExperimentTemplateResponse$,
1313
1302
  ];
1314
- var DeleteTargetAccountConfiguration = [
1303
+ var DeleteTargetAccountConfiguration$ = [
1315
1304
  9,
1316
1305
  n0,
1317
1306
  _DTAC,
1318
1307
  { [_h]: ["DELETE", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] },
1319
- () => DeleteTargetAccountConfigurationRequest,
1320
- () => DeleteTargetAccountConfigurationResponse,
1308
+ () => DeleteTargetAccountConfigurationRequest$,
1309
+ () => DeleteTargetAccountConfigurationResponse$,
1321
1310
  ];
1322
- var GetAction = [
1311
+ var GetAction$ = [
1323
1312
  9,
1324
1313
  n0,
1325
1314
  _GA,
1326
1315
  { [_h]: ["GET", "/actions/{id}", 200] },
1327
- () => GetActionRequest,
1328
- () => GetActionResponse,
1316
+ () => GetActionRequest$,
1317
+ () => GetActionResponse$,
1329
1318
  ];
1330
- var GetExperiment = [
1319
+ var GetExperiment$ = [
1331
1320
  9,
1332
1321
  n0,
1333
1322
  _GE,
1334
1323
  { [_h]: ["GET", "/experiments/{id}", 200] },
1335
- () => GetExperimentRequest,
1336
- () => GetExperimentResponse,
1324
+ () => GetExperimentRequest$,
1325
+ () => GetExperimentResponse$,
1337
1326
  ];
1338
- var GetExperimentTargetAccountConfiguration = [
1327
+ var GetExperimentTargetAccountConfiguration$ = [
1339
1328
  9,
1340
1329
  n0,
1341
1330
  _GETAC,
1342
1331
  { [_h]: ["GET", "/experiments/{experimentId}/targetAccountConfigurations/{accountId}", 200] },
1343
- () => GetExperimentTargetAccountConfigurationRequest,
1344
- () => GetExperimentTargetAccountConfigurationResponse,
1332
+ () => GetExperimentTargetAccountConfigurationRequest$,
1333
+ () => GetExperimentTargetAccountConfigurationResponse$,
1345
1334
  ];
1346
- var GetExperimentTemplate = [
1335
+ var GetExperimentTemplate$ = [
1347
1336
  9,
1348
1337
  n0,
1349
1338
  _GET,
1350
1339
  { [_h]: ["GET", "/experimentTemplates/{id}", 200] },
1351
- () => GetExperimentTemplateRequest,
1352
- () => GetExperimentTemplateResponse,
1340
+ () => GetExperimentTemplateRequest$,
1341
+ () => GetExperimentTemplateResponse$,
1353
1342
  ];
1354
- var GetSafetyLever = [
1343
+ var GetSafetyLever$ = [
1355
1344
  9,
1356
1345
  n0,
1357
1346
  _GSL,
1358
1347
  { [_h]: ["GET", "/safetyLevers/{id}", 200] },
1359
- () => GetSafetyLeverRequest,
1360
- () => GetSafetyLeverResponse,
1348
+ () => GetSafetyLeverRequest$,
1349
+ () => GetSafetyLeverResponse$,
1361
1350
  ];
1362
- var GetTargetAccountConfiguration = [
1351
+ var GetTargetAccountConfiguration$ = [
1363
1352
  9,
1364
1353
  n0,
1365
1354
  _GTAC,
1366
1355
  { [_h]: ["GET", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] },
1367
- () => GetTargetAccountConfigurationRequest,
1368
- () => GetTargetAccountConfigurationResponse,
1356
+ () => GetTargetAccountConfigurationRequest$,
1357
+ () => GetTargetAccountConfigurationResponse$,
1369
1358
  ];
1370
- var GetTargetResourceType = [
1359
+ var GetTargetResourceType$ = [
1371
1360
  9,
1372
1361
  n0,
1373
1362
  _GTRT,
1374
1363
  { [_h]: ["GET", "/targetResourceTypes/{resourceType}", 200] },
1375
- () => GetTargetResourceTypeRequest,
1376
- () => GetTargetResourceTypeResponse,
1364
+ () => GetTargetResourceTypeRequest$,
1365
+ () => GetTargetResourceTypeResponse$,
1377
1366
  ];
1378
- var ListActions = [
1367
+ var ListActions$ = [
1379
1368
  9,
1380
1369
  n0,
1381
1370
  _LA,
1382
1371
  { [_h]: ["GET", "/actions", 200] },
1383
- () => ListActionsRequest,
1384
- () => ListActionsResponse,
1372
+ () => ListActionsRequest$,
1373
+ () => ListActionsResponse$,
1385
1374
  ];
1386
- var ListExperimentResolvedTargets = [
1375
+ var ListExperimentResolvedTargets$ = [
1387
1376
  9,
1388
1377
  n0,
1389
1378
  _LERT,
1390
1379
  { [_h]: ["GET", "/experiments/{experimentId}/resolvedTargets", 200] },
1391
- () => ListExperimentResolvedTargetsRequest,
1392
- () => ListExperimentResolvedTargetsResponse,
1380
+ () => ListExperimentResolvedTargetsRequest$,
1381
+ () => ListExperimentResolvedTargetsResponse$,
1393
1382
  ];
1394
- var ListExperiments = [
1383
+ var ListExperiments$ = [
1395
1384
  9,
1396
1385
  n0,
1397
1386
  _LE,
1398
1387
  { [_h]: ["GET", "/experiments", 200] },
1399
- () => ListExperimentsRequest,
1400
- () => ListExperimentsResponse,
1388
+ () => ListExperimentsRequest$,
1389
+ () => ListExperimentsResponse$,
1401
1390
  ];
1402
- var ListExperimentTargetAccountConfigurations = [
1391
+ var ListExperimentTargetAccountConfigurations$ = [
1403
1392
  9,
1404
1393
  n0,
1405
1394
  _LETAC,
1406
1395
  { [_h]: ["GET", "/experiments/{experimentId}/targetAccountConfigurations", 200] },
1407
- () => ListExperimentTargetAccountConfigurationsRequest,
1408
- () => ListExperimentTargetAccountConfigurationsResponse,
1396
+ () => ListExperimentTargetAccountConfigurationsRequest$,
1397
+ () => ListExperimentTargetAccountConfigurationsResponse$,
1409
1398
  ];
1410
- var ListExperimentTemplates = [
1399
+ var ListExperimentTemplates$ = [
1411
1400
  9,
1412
1401
  n0,
1413
1402
  _LET,
1414
1403
  { [_h]: ["GET", "/experimentTemplates", 200] },
1415
- () => ListExperimentTemplatesRequest,
1416
- () => ListExperimentTemplatesResponse,
1404
+ () => ListExperimentTemplatesRequest$,
1405
+ () => ListExperimentTemplatesResponse$,
1417
1406
  ];
1418
- var ListTagsForResource = [
1407
+ var ListTagsForResource$ = [
1419
1408
  9,
1420
1409
  n0,
1421
1410
  _LTFR,
1422
1411
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
1423
- () => ListTagsForResourceRequest,
1424
- () => ListTagsForResourceResponse,
1412
+ () => ListTagsForResourceRequest$,
1413
+ () => ListTagsForResourceResponse$,
1425
1414
  ];
1426
- var ListTargetAccountConfigurations = [
1415
+ var ListTargetAccountConfigurations$ = [
1427
1416
  9,
1428
1417
  n0,
1429
1418
  _LTAC,
1430
1419
  { [_h]: ["GET", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations", 200] },
1431
- () => ListTargetAccountConfigurationsRequest,
1432
- () => ListTargetAccountConfigurationsResponse,
1420
+ () => ListTargetAccountConfigurationsRequest$,
1421
+ () => ListTargetAccountConfigurationsResponse$,
1433
1422
  ];
1434
- var ListTargetResourceTypes = [
1423
+ var ListTargetResourceTypes$ = [
1435
1424
  9,
1436
1425
  n0,
1437
1426
  _LTRT,
1438
1427
  { [_h]: ["GET", "/targetResourceTypes", 200] },
1439
- () => ListTargetResourceTypesRequest,
1440
- () => ListTargetResourceTypesResponse,
1428
+ () => ListTargetResourceTypesRequest$,
1429
+ () => ListTargetResourceTypesResponse$,
1441
1430
  ];
1442
- var StartExperiment = [
1431
+ var StartExperiment$ = [
1443
1432
  9,
1444
1433
  n0,
1445
1434
  _SE,
1446
1435
  { [_h]: ["POST", "/experiments", 200] },
1447
- () => StartExperimentRequest,
1448
- () => StartExperimentResponse,
1436
+ () => StartExperimentRequest$,
1437
+ () => StartExperimentResponse$,
1449
1438
  ];
1450
- var StopExperiment = [
1439
+ var StopExperiment$ = [
1451
1440
  9,
1452
1441
  n0,
1453
1442
  _SEt,
1454
1443
  { [_h]: ["DELETE", "/experiments/{id}", 200] },
1455
- () => StopExperimentRequest,
1456
- () => StopExperimentResponse,
1444
+ () => StopExperimentRequest$,
1445
+ () => StopExperimentResponse$,
1457
1446
  ];
1458
- var TagResource = [
1447
+ var TagResource$ = [
1459
1448
  9,
1460
1449
  n0,
1461
1450
  _TR,
1462
1451
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
1463
- () => TagResourceRequest,
1464
- () => TagResourceResponse,
1452
+ () => TagResourceRequest$,
1453
+ () => TagResourceResponse$,
1465
1454
  ];
1466
- var UntagResource = [
1455
+ var UntagResource$ = [
1467
1456
  9,
1468
1457
  n0,
1469
1458
  _UR,
1470
1459
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
1471
- () => UntagResourceRequest,
1472
- () => UntagResourceResponse,
1460
+ () => UntagResourceRequest$,
1461
+ () => UntagResourceResponse$,
1473
1462
  ];
1474
- var UpdateExperimentTemplate = [
1463
+ var UpdateExperimentTemplate$ = [
1475
1464
  9,
1476
1465
  n0,
1477
1466
  _UET,
1478
1467
  { [_h]: ["PATCH", "/experimentTemplates/{id}", 200] },
1479
- () => UpdateExperimentTemplateRequest,
1480
- () => UpdateExperimentTemplateResponse,
1468
+ () => UpdateExperimentTemplateRequest$,
1469
+ () => UpdateExperimentTemplateResponse$,
1481
1470
  ];
1482
- var UpdateSafetyLeverState = [
1471
+ var UpdateSafetyLeverState$ = [
1483
1472
  9,
1484
1473
  n0,
1485
1474
  _USLS,
1486
1475
  { [_h]: ["PATCH", "/safetyLevers/{id}/state", 200] },
1487
- () => UpdateSafetyLeverStateRequest,
1488
- () => UpdateSafetyLeverStateResponse,
1476
+ () => UpdateSafetyLeverStateRequest$,
1477
+ () => UpdateSafetyLeverStateResponse$,
1489
1478
  ];
1490
- var UpdateTargetAccountConfiguration = [
1479
+ var UpdateTargetAccountConfiguration$ = [
1491
1480
  9,
1492
1481
  n0,
1493
1482
  _UTAC,
1494
1483
  { [_h]: ["PATCH", "/experimentTemplates/{experimentTemplateId}/targetAccountConfigurations/{accountId}", 200] },
1495
- () => UpdateTargetAccountConfigurationRequest,
1496
- () => UpdateTargetAccountConfigurationResponse,
1484
+ () => UpdateTargetAccountConfigurationRequest$,
1485
+ () => UpdateTargetAccountConfigurationResponse$,
1497
1486
  ];
1498
1487
 
1499
1488
  class CreateExperimentTemplateCommand extends smithyClient.Command
@@ -1504,7 +1493,7 @@ class CreateExperimentTemplateCommand extends smithyClient.Command
1504
1493
  })
1505
1494
  .s("FaultInjectionSimulator", "CreateExperimentTemplate", {})
1506
1495
  .n("FisClient", "CreateExperimentTemplateCommand")
1507
- .sc(CreateExperimentTemplate)
1496
+ .sc(CreateExperimentTemplate$)
1508
1497
  .build() {
1509
1498
  }
1510
1499
 
@@ -1516,7 +1505,7 @@ class CreateTargetAccountConfigurationCommand extends smithyClient.Command
1516
1505
  })
1517
1506
  .s("FaultInjectionSimulator", "CreateTargetAccountConfiguration", {})
1518
1507
  .n("FisClient", "CreateTargetAccountConfigurationCommand")
1519
- .sc(CreateTargetAccountConfiguration)
1508
+ .sc(CreateTargetAccountConfiguration$)
1520
1509
  .build() {
1521
1510
  }
1522
1511
 
@@ -1528,7 +1517,7 @@ class DeleteExperimentTemplateCommand extends smithyClient.Command
1528
1517
  })
1529
1518
  .s("FaultInjectionSimulator", "DeleteExperimentTemplate", {})
1530
1519
  .n("FisClient", "DeleteExperimentTemplateCommand")
1531
- .sc(DeleteExperimentTemplate)
1520
+ .sc(DeleteExperimentTemplate$)
1532
1521
  .build() {
1533
1522
  }
1534
1523
 
@@ -1540,7 +1529,7 @@ class DeleteTargetAccountConfigurationCommand extends smithyClient.Command
1540
1529
  })
1541
1530
  .s("FaultInjectionSimulator", "DeleteTargetAccountConfiguration", {})
1542
1531
  .n("FisClient", "DeleteTargetAccountConfigurationCommand")
1543
- .sc(DeleteTargetAccountConfiguration)
1532
+ .sc(DeleteTargetAccountConfiguration$)
1544
1533
  .build() {
1545
1534
  }
1546
1535
 
@@ -1552,7 +1541,7 @@ class GetActionCommand extends smithyClient.Command
1552
1541
  })
1553
1542
  .s("FaultInjectionSimulator", "GetAction", {})
1554
1543
  .n("FisClient", "GetActionCommand")
1555
- .sc(GetAction)
1544
+ .sc(GetAction$)
1556
1545
  .build() {
1557
1546
  }
1558
1547
 
@@ -1564,7 +1553,7 @@ class GetExperimentCommand extends smithyClient.Command
1564
1553
  })
1565
1554
  .s("FaultInjectionSimulator", "GetExperiment", {})
1566
1555
  .n("FisClient", "GetExperimentCommand")
1567
- .sc(GetExperiment)
1556
+ .sc(GetExperiment$)
1568
1557
  .build() {
1569
1558
  }
1570
1559
 
@@ -1576,7 +1565,7 @@ class GetExperimentTargetAccountConfigurationCommand extends smithyClient.Comman
1576
1565
  })
1577
1566
  .s("FaultInjectionSimulator", "GetExperimentTargetAccountConfiguration", {})
1578
1567
  .n("FisClient", "GetExperimentTargetAccountConfigurationCommand")
1579
- .sc(GetExperimentTargetAccountConfiguration)
1568
+ .sc(GetExperimentTargetAccountConfiguration$)
1580
1569
  .build() {
1581
1570
  }
1582
1571
 
@@ -1588,7 +1577,7 @@ class GetExperimentTemplateCommand extends smithyClient.Command
1588
1577
  })
1589
1578
  .s("FaultInjectionSimulator", "GetExperimentTemplate", {})
1590
1579
  .n("FisClient", "GetExperimentTemplateCommand")
1591
- .sc(GetExperimentTemplate)
1580
+ .sc(GetExperimentTemplate$)
1592
1581
  .build() {
1593
1582
  }
1594
1583
 
@@ -1600,7 +1589,7 @@ class GetSafetyLeverCommand extends smithyClient.Command
1600
1589
  })
1601
1590
  .s("FaultInjectionSimulator", "GetSafetyLever", {})
1602
1591
  .n("FisClient", "GetSafetyLeverCommand")
1603
- .sc(GetSafetyLever)
1592
+ .sc(GetSafetyLever$)
1604
1593
  .build() {
1605
1594
  }
1606
1595
 
@@ -1612,7 +1601,7 @@ class GetTargetAccountConfigurationCommand extends smithyClient.Command
1612
1601
  })
1613
1602
  .s("FaultInjectionSimulator", "GetTargetAccountConfiguration", {})
1614
1603
  .n("FisClient", "GetTargetAccountConfigurationCommand")
1615
- .sc(GetTargetAccountConfiguration)
1604
+ .sc(GetTargetAccountConfiguration$)
1616
1605
  .build() {
1617
1606
  }
1618
1607
 
@@ -1624,7 +1613,7 @@ class GetTargetResourceTypeCommand extends smithyClient.Command
1624
1613
  })
1625
1614
  .s("FaultInjectionSimulator", "GetTargetResourceType", {})
1626
1615
  .n("FisClient", "GetTargetResourceTypeCommand")
1627
- .sc(GetTargetResourceType)
1616
+ .sc(GetTargetResourceType$)
1628
1617
  .build() {
1629
1618
  }
1630
1619
 
@@ -1636,7 +1625,7 @@ class ListActionsCommand extends smithyClient.Command
1636
1625
  })
1637
1626
  .s("FaultInjectionSimulator", "ListActions", {})
1638
1627
  .n("FisClient", "ListActionsCommand")
1639
- .sc(ListActions)
1628
+ .sc(ListActions$)
1640
1629
  .build() {
1641
1630
  }
1642
1631
 
@@ -1648,7 +1637,7 @@ class ListExperimentResolvedTargetsCommand extends smithyClient.Command
1648
1637
  })
1649
1638
  .s("FaultInjectionSimulator", "ListExperimentResolvedTargets", {})
1650
1639
  .n("FisClient", "ListExperimentResolvedTargetsCommand")
1651
- .sc(ListExperimentResolvedTargets)
1640
+ .sc(ListExperimentResolvedTargets$)
1652
1641
  .build() {
1653
1642
  }
1654
1643
 
@@ -1660,7 +1649,7 @@ class ListExperimentsCommand extends smithyClient.Command
1660
1649
  })
1661
1650
  .s("FaultInjectionSimulator", "ListExperiments", {})
1662
1651
  .n("FisClient", "ListExperimentsCommand")
1663
- .sc(ListExperiments)
1652
+ .sc(ListExperiments$)
1664
1653
  .build() {
1665
1654
  }
1666
1655
 
@@ -1672,7 +1661,7 @@ class ListExperimentTargetAccountConfigurationsCommand extends smithyClient.Comm
1672
1661
  })
1673
1662
  .s("FaultInjectionSimulator", "ListExperimentTargetAccountConfigurations", {})
1674
1663
  .n("FisClient", "ListExperimentTargetAccountConfigurationsCommand")
1675
- .sc(ListExperimentTargetAccountConfigurations)
1664
+ .sc(ListExperimentTargetAccountConfigurations$)
1676
1665
  .build() {
1677
1666
  }
1678
1667
 
@@ -1684,7 +1673,7 @@ class ListExperimentTemplatesCommand extends smithyClient.Command
1684
1673
  })
1685
1674
  .s("FaultInjectionSimulator", "ListExperimentTemplates", {})
1686
1675
  .n("FisClient", "ListExperimentTemplatesCommand")
1687
- .sc(ListExperimentTemplates)
1676
+ .sc(ListExperimentTemplates$)
1688
1677
  .build() {
1689
1678
  }
1690
1679
 
@@ -1696,7 +1685,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1696
1685
  })
1697
1686
  .s("FaultInjectionSimulator", "ListTagsForResource", {})
1698
1687
  .n("FisClient", "ListTagsForResourceCommand")
1699
- .sc(ListTagsForResource)
1688
+ .sc(ListTagsForResource$)
1700
1689
  .build() {
1701
1690
  }
1702
1691
 
@@ -1708,7 +1697,7 @@ class ListTargetAccountConfigurationsCommand extends smithyClient.Command
1708
1697
  })
1709
1698
  .s("FaultInjectionSimulator", "ListTargetAccountConfigurations", {})
1710
1699
  .n("FisClient", "ListTargetAccountConfigurationsCommand")
1711
- .sc(ListTargetAccountConfigurations)
1700
+ .sc(ListTargetAccountConfigurations$)
1712
1701
  .build() {
1713
1702
  }
1714
1703
 
@@ -1720,7 +1709,7 @@ class ListTargetResourceTypesCommand extends smithyClient.Command
1720
1709
  })
1721
1710
  .s("FaultInjectionSimulator", "ListTargetResourceTypes", {})
1722
1711
  .n("FisClient", "ListTargetResourceTypesCommand")
1723
- .sc(ListTargetResourceTypes)
1712
+ .sc(ListTargetResourceTypes$)
1724
1713
  .build() {
1725
1714
  }
1726
1715
 
@@ -1732,7 +1721,7 @@ class StartExperimentCommand extends smithyClient.Command
1732
1721
  })
1733
1722
  .s("FaultInjectionSimulator", "StartExperiment", {})
1734
1723
  .n("FisClient", "StartExperimentCommand")
1735
- .sc(StartExperiment)
1724
+ .sc(StartExperiment$)
1736
1725
  .build() {
1737
1726
  }
1738
1727
 
@@ -1744,7 +1733,7 @@ class StopExperimentCommand extends smithyClient.Command
1744
1733
  })
1745
1734
  .s("FaultInjectionSimulator", "StopExperiment", {})
1746
1735
  .n("FisClient", "StopExperimentCommand")
1747
- .sc(StopExperiment)
1736
+ .sc(StopExperiment$)
1748
1737
  .build() {
1749
1738
  }
1750
1739
 
@@ -1756,7 +1745,7 @@ class TagResourceCommand extends smithyClient.Command
1756
1745
  })
1757
1746
  .s("FaultInjectionSimulator", "TagResource", {})
1758
1747
  .n("FisClient", "TagResourceCommand")
1759
- .sc(TagResource)
1748
+ .sc(TagResource$)
1760
1749
  .build() {
1761
1750
  }
1762
1751
 
@@ -1768,7 +1757,7 @@ class UntagResourceCommand extends smithyClient.Command
1768
1757
  })
1769
1758
  .s("FaultInjectionSimulator", "UntagResource", {})
1770
1759
  .n("FisClient", "UntagResourceCommand")
1771
- .sc(UntagResource)
1760
+ .sc(UntagResource$)
1772
1761
  .build() {
1773
1762
  }
1774
1763
 
@@ -1780,7 +1769,7 @@ class UpdateExperimentTemplateCommand extends smithyClient.Command
1780
1769
  })
1781
1770
  .s("FaultInjectionSimulator", "UpdateExperimentTemplate", {})
1782
1771
  .n("FisClient", "UpdateExperimentTemplateCommand")
1783
- .sc(UpdateExperimentTemplate)
1772
+ .sc(UpdateExperimentTemplate$)
1784
1773
  .build() {
1785
1774
  }
1786
1775
 
@@ -1792,7 +1781,7 @@ class UpdateSafetyLeverStateCommand extends smithyClient.Command
1792
1781
  })
1793
1782
  .s("FaultInjectionSimulator", "UpdateSafetyLeverState", {})
1794
1783
  .n("FisClient", "UpdateSafetyLeverStateCommand")
1795
- .sc(UpdateSafetyLeverState)
1784
+ .sc(UpdateSafetyLeverState$)
1796
1785
  .build() {
1797
1786
  }
1798
1787
 
@@ -1804,7 +1793,7 @@ class UpdateTargetAccountConfigurationCommand extends smithyClient.Command
1804
1793
  })
1805
1794
  .s("FaultInjectionSimulator", "UpdateTargetAccountConfiguration", {})
1806
1795
  .n("FisClient", "UpdateTargetAccountConfigurationCommand")
1807
- .sc(UpdateTargetAccountConfiguration)
1796
+ .sc(UpdateTargetAccountConfiguration$)
1808
1797
  .build() {
1809
1798
  }
1810
1799
 
@@ -1911,46 +1900,201 @@ Object.defineProperty(exports, "__Client", {
1911
1900
  get: function () { return smithyClient.Client; }
1912
1901
  });
1913
1902
  exports.AccountTargeting = AccountTargeting;
1903
+ exports.Action$ = Action$;
1904
+ exports.ActionParameter$ = ActionParameter$;
1905
+ exports.ActionSummary$ = ActionSummary$;
1906
+ exports.ActionTarget$ = ActionTarget$;
1914
1907
  exports.ActionsMode = ActionsMode;
1915
- exports.ConflictException = ConflictException$1;
1908
+ exports.ConflictException = ConflictException;
1909
+ exports.ConflictException$ = ConflictException$;
1910
+ exports.CreateExperimentTemplate$ = CreateExperimentTemplate$;
1911
+ exports.CreateExperimentTemplateActionInput$ = CreateExperimentTemplateActionInput$;
1916
1912
  exports.CreateExperimentTemplateCommand = CreateExperimentTemplateCommand;
1913
+ exports.CreateExperimentTemplateExperimentOptionsInput$ = CreateExperimentTemplateExperimentOptionsInput$;
1914
+ exports.CreateExperimentTemplateLogConfigurationInput$ = CreateExperimentTemplateLogConfigurationInput$;
1915
+ exports.CreateExperimentTemplateReportConfigurationInput$ = CreateExperimentTemplateReportConfigurationInput$;
1916
+ exports.CreateExperimentTemplateRequest$ = CreateExperimentTemplateRequest$;
1917
+ exports.CreateExperimentTemplateResponse$ = CreateExperimentTemplateResponse$;
1918
+ exports.CreateExperimentTemplateStopConditionInput$ = CreateExperimentTemplateStopConditionInput$;
1919
+ exports.CreateExperimentTemplateTargetInput$ = CreateExperimentTemplateTargetInput$;
1920
+ exports.CreateTargetAccountConfiguration$ = CreateTargetAccountConfiguration$;
1917
1921
  exports.CreateTargetAccountConfigurationCommand = CreateTargetAccountConfigurationCommand;
1922
+ exports.CreateTargetAccountConfigurationRequest$ = CreateTargetAccountConfigurationRequest$;
1923
+ exports.CreateTargetAccountConfigurationResponse$ = CreateTargetAccountConfigurationResponse$;
1924
+ exports.DeleteExperimentTemplate$ = DeleteExperimentTemplate$;
1918
1925
  exports.DeleteExperimentTemplateCommand = DeleteExperimentTemplateCommand;
1926
+ exports.DeleteExperimentTemplateRequest$ = DeleteExperimentTemplateRequest$;
1927
+ exports.DeleteExperimentTemplateResponse$ = DeleteExperimentTemplateResponse$;
1928
+ exports.DeleteTargetAccountConfiguration$ = DeleteTargetAccountConfiguration$;
1919
1929
  exports.DeleteTargetAccountConfigurationCommand = DeleteTargetAccountConfigurationCommand;
1930
+ exports.DeleteTargetAccountConfigurationRequest$ = DeleteTargetAccountConfigurationRequest$;
1931
+ exports.DeleteTargetAccountConfigurationResponse$ = DeleteTargetAccountConfigurationResponse$;
1920
1932
  exports.EmptyTargetResolutionMode = EmptyTargetResolutionMode;
1933
+ exports.Experiment$ = Experiment$;
1934
+ exports.ExperimentAction$ = ExperimentAction$;
1935
+ exports.ExperimentActionState$ = ExperimentActionState$;
1921
1936
  exports.ExperimentActionStatus = ExperimentActionStatus;
1937
+ exports.ExperimentCloudWatchLogsLogConfiguration$ = ExperimentCloudWatchLogsLogConfiguration$;
1938
+ exports.ExperimentError$ = ExperimentError$;
1939
+ exports.ExperimentLogConfiguration$ = ExperimentLogConfiguration$;
1940
+ exports.ExperimentOptions$ = ExperimentOptions$;
1941
+ exports.ExperimentReport$ = ExperimentReport$;
1942
+ exports.ExperimentReportConfiguration$ = ExperimentReportConfiguration$;
1943
+ exports.ExperimentReportConfigurationCloudWatchDashboard$ = ExperimentReportConfigurationCloudWatchDashboard$;
1944
+ exports.ExperimentReportConfigurationDataSources$ = ExperimentReportConfigurationDataSources$;
1945
+ exports.ExperimentReportConfigurationOutputs$ = ExperimentReportConfigurationOutputs$;
1946
+ exports.ExperimentReportConfigurationOutputsS3Configuration$ = ExperimentReportConfigurationOutputsS3Configuration$;
1947
+ exports.ExperimentReportError$ = ExperimentReportError$;
1948
+ exports.ExperimentReportS3Report$ = ExperimentReportS3Report$;
1949
+ exports.ExperimentReportState$ = ExperimentReportState$;
1922
1950
  exports.ExperimentReportStatus = ExperimentReportStatus;
1951
+ exports.ExperimentS3LogConfiguration$ = ExperimentS3LogConfiguration$;
1952
+ exports.ExperimentState$ = ExperimentState$;
1923
1953
  exports.ExperimentStatus = ExperimentStatus;
1954
+ exports.ExperimentStopCondition$ = ExperimentStopCondition$;
1955
+ exports.ExperimentSummary$ = ExperimentSummary$;
1956
+ exports.ExperimentTarget$ = ExperimentTarget$;
1957
+ exports.ExperimentTargetAccountConfiguration$ = ExperimentTargetAccountConfiguration$;
1958
+ exports.ExperimentTargetAccountConfigurationSummary$ = ExperimentTargetAccountConfigurationSummary$;
1959
+ exports.ExperimentTargetFilter$ = ExperimentTargetFilter$;
1960
+ exports.ExperimentTemplate$ = ExperimentTemplate$;
1961
+ exports.ExperimentTemplateAction$ = ExperimentTemplateAction$;
1962
+ exports.ExperimentTemplateCloudWatchLogsLogConfiguration$ = ExperimentTemplateCloudWatchLogsLogConfiguration$;
1963
+ exports.ExperimentTemplateCloudWatchLogsLogConfigurationInput$ = ExperimentTemplateCloudWatchLogsLogConfigurationInput$;
1964
+ exports.ExperimentTemplateExperimentOptions$ = ExperimentTemplateExperimentOptions$;
1965
+ exports.ExperimentTemplateLogConfiguration$ = ExperimentTemplateLogConfiguration$;
1966
+ exports.ExperimentTemplateReportConfiguration$ = ExperimentTemplateReportConfiguration$;
1967
+ exports.ExperimentTemplateReportConfigurationCloudWatchDashboard$ = ExperimentTemplateReportConfigurationCloudWatchDashboard$;
1968
+ exports.ExperimentTemplateReportConfigurationDataSources$ = ExperimentTemplateReportConfigurationDataSources$;
1969
+ exports.ExperimentTemplateReportConfigurationDataSourcesInput$ = ExperimentTemplateReportConfigurationDataSourcesInput$;
1970
+ exports.ExperimentTemplateReportConfigurationOutputs$ = ExperimentTemplateReportConfigurationOutputs$;
1971
+ exports.ExperimentTemplateReportConfigurationOutputsInput$ = ExperimentTemplateReportConfigurationOutputsInput$;
1972
+ exports.ExperimentTemplateS3LogConfiguration$ = ExperimentTemplateS3LogConfiguration$;
1973
+ exports.ExperimentTemplateS3LogConfigurationInput$ = ExperimentTemplateS3LogConfigurationInput$;
1974
+ exports.ExperimentTemplateStopCondition$ = ExperimentTemplateStopCondition$;
1975
+ exports.ExperimentTemplateSummary$ = ExperimentTemplateSummary$;
1976
+ exports.ExperimentTemplateTarget$ = ExperimentTemplateTarget$;
1977
+ exports.ExperimentTemplateTargetFilter$ = ExperimentTemplateTargetFilter$;
1978
+ exports.ExperimentTemplateTargetInputFilter$ = ExperimentTemplateTargetInputFilter$;
1924
1979
  exports.Fis = Fis;
1925
1980
  exports.FisClient = FisClient;
1926
- exports.FisServiceException = FisServiceException$1;
1981
+ exports.FisServiceException = FisServiceException;
1982
+ exports.FisServiceException$ = FisServiceException$;
1983
+ exports.GetAction$ = GetAction$;
1927
1984
  exports.GetActionCommand = GetActionCommand;
1985
+ exports.GetActionRequest$ = GetActionRequest$;
1986
+ exports.GetActionResponse$ = GetActionResponse$;
1987
+ exports.GetExperiment$ = GetExperiment$;
1928
1988
  exports.GetExperimentCommand = GetExperimentCommand;
1989
+ exports.GetExperimentRequest$ = GetExperimentRequest$;
1990
+ exports.GetExperimentResponse$ = GetExperimentResponse$;
1991
+ exports.GetExperimentTargetAccountConfiguration$ = GetExperimentTargetAccountConfiguration$;
1929
1992
  exports.GetExperimentTargetAccountConfigurationCommand = GetExperimentTargetAccountConfigurationCommand;
1993
+ exports.GetExperimentTargetAccountConfigurationRequest$ = GetExperimentTargetAccountConfigurationRequest$;
1994
+ exports.GetExperimentTargetAccountConfigurationResponse$ = GetExperimentTargetAccountConfigurationResponse$;
1995
+ exports.GetExperimentTemplate$ = GetExperimentTemplate$;
1930
1996
  exports.GetExperimentTemplateCommand = GetExperimentTemplateCommand;
1997
+ exports.GetExperimentTemplateRequest$ = GetExperimentTemplateRequest$;
1998
+ exports.GetExperimentTemplateResponse$ = GetExperimentTemplateResponse$;
1999
+ exports.GetSafetyLever$ = GetSafetyLever$;
1931
2000
  exports.GetSafetyLeverCommand = GetSafetyLeverCommand;
2001
+ exports.GetSafetyLeverRequest$ = GetSafetyLeverRequest$;
2002
+ exports.GetSafetyLeverResponse$ = GetSafetyLeverResponse$;
2003
+ exports.GetTargetAccountConfiguration$ = GetTargetAccountConfiguration$;
1932
2004
  exports.GetTargetAccountConfigurationCommand = GetTargetAccountConfigurationCommand;
2005
+ exports.GetTargetAccountConfigurationRequest$ = GetTargetAccountConfigurationRequest$;
2006
+ exports.GetTargetAccountConfigurationResponse$ = GetTargetAccountConfigurationResponse$;
2007
+ exports.GetTargetResourceType$ = GetTargetResourceType$;
1933
2008
  exports.GetTargetResourceTypeCommand = GetTargetResourceTypeCommand;
2009
+ exports.GetTargetResourceTypeRequest$ = GetTargetResourceTypeRequest$;
2010
+ exports.GetTargetResourceTypeResponse$ = GetTargetResourceTypeResponse$;
2011
+ exports.ListActions$ = ListActions$;
1934
2012
  exports.ListActionsCommand = ListActionsCommand;
2013
+ exports.ListActionsRequest$ = ListActionsRequest$;
2014
+ exports.ListActionsResponse$ = ListActionsResponse$;
2015
+ exports.ListExperimentResolvedTargets$ = ListExperimentResolvedTargets$;
1935
2016
  exports.ListExperimentResolvedTargetsCommand = ListExperimentResolvedTargetsCommand;
2017
+ exports.ListExperimentResolvedTargetsRequest$ = ListExperimentResolvedTargetsRequest$;
2018
+ exports.ListExperimentResolvedTargetsResponse$ = ListExperimentResolvedTargetsResponse$;
2019
+ exports.ListExperimentTargetAccountConfigurations$ = ListExperimentTargetAccountConfigurations$;
1936
2020
  exports.ListExperimentTargetAccountConfigurationsCommand = ListExperimentTargetAccountConfigurationsCommand;
2021
+ exports.ListExperimentTargetAccountConfigurationsRequest$ = ListExperimentTargetAccountConfigurationsRequest$;
2022
+ exports.ListExperimentTargetAccountConfigurationsResponse$ = ListExperimentTargetAccountConfigurationsResponse$;
2023
+ exports.ListExperimentTemplates$ = ListExperimentTemplates$;
1937
2024
  exports.ListExperimentTemplatesCommand = ListExperimentTemplatesCommand;
2025
+ exports.ListExperimentTemplatesRequest$ = ListExperimentTemplatesRequest$;
2026
+ exports.ListExperimentTemplatesResponse$ = ListExperimentTemplatesResponse$;
2027
+ exports.ListExperiments$ = ListExperiments$;
1938
2028
  exports.ListExperimentsCommand = ListExperimentsCommand;
2029
+ exports.ListExperimentsRequest$ = ListExperimentsRequest$;
2030
+ exports.ListExperimentsResponse$ = ListExperimentsResponse$;
2031
+ exports.ListTagsForResource$ = ListTagsForResource$;
1939
2032
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2033
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2034
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2035
+ exports.ListTargetAccountConfigurations$ = ListTargetAccountConfigurations$;
1940
2036
  exports.ListTargetAccountConfigurationsCommand = ListTargetAccountConfigurationsCommand;
2037
+ exports.ListTargetAccountConfigurationsRequest$ = ListTargetAccountConfigurationsRequest$;
2038
+ exports.ListTargetAccountConfigurationsResponse$ = ListTargetAccountConfigurationsResponse$;
2039
+ exports.ListTargetResourceTypes$ = ListTargetResourceTypes$;
1941
2040
  exports.ListTargetResourceTypesCommand = ListTargetResourceTypesCommand;
1942
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2041
+ exports.ListTargetResourceTypesRequest$ = ListTargetResourceTypesRequest$;
2042
+ exports.ListTargetResourceTypesResponse$ = ListTargetResourceTypesResponse$;
2043
+ exports.ReportConfigurationCloudWatchDashboardInput$ = ReportConfigurationCloudWatchDashboardInput$;
2044
+ exports.ReportConfigurationS3Output$ = ReportConfigurationS3Output$;
2045
+ exports.ReportConfigurationS3OutputInput$ = ReportConfigurationS3OutputInput$;
2046
+ exports.ResolvedTarget$ = ResolvedTarget$;
2047
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2048
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2049
+ exports.SafetyLever$ = SafetyLever$;
2050
+ exports.SafetyLeverState$ = SafetyLeverState$;
1943
2051
  exports.SafetyLeverStatus = SafetyLeverStatus;
1944
2052
  exports.SafetyLeverStatusInput = SafetyLeverStatusInput;
1945
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2053
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2054
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2055
+ exports.StartExperiment$ = StartExperiment$;
1946
2056
  exports.StartExperimentCommand = StartExperimentCommand;
2057
+ exports.StartExperimentExperimentOptionsInput$ = StartExperimentExperimentOptionsInput$;
2058
+ exports.StartExperimentRequest$ = StartExperimentRequest$;
2059
+ exports.StartExperimentResponse$ = StartExperimentResponse$;
2060
+ exports.StopExperiment$ = StopExperiment$;
1947
2061
  exports.StopExperimentCommand = StopExperimentCommand;
2062
+ exports.StopExperimentRequest$ = StopExperimentRequest$;
2063
+ exports.StopExperimentResponse$ = StopExperimentResponse$;
2064
+ exports.TagResource$ = TagResource$;
1948
2065
  exports.TagResourceCommand = TagResourceCommand;
2066
+ exports.TagResourceRequest$ = TagResourceRequest$;
2067
+ exports.TagResourceResponse$ = TagResourceResponse$;
2068
+ exports.TargetAccountConfiguration$ = TargetAccountConfiguration$;
2069
+ exports.TargetAccountConfigurationSummary$ = TargetAccountConfigurationSummary$;
2070
+ exports.TargetResourceType$ = TargetResourceType$;
2071
+ exports.TargetResourceTypeParameter$ = TargetResourceTypeParameter$;
2072
+ exports.TargetResourceTypeSummary$ = TargetResourceTypeSummary$;
2073
+ exports.UntagResource$ = UntagResource$;
1949
2074
  exports.UntagResourceCommand = UntagResourceCommand;
2075
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2076
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2077
+ exports.UpdateExperimentTemplate$ = UpdateExperimentTemplate$;
2078
+ exports.UpdateExperimentTemplateActionInputItem$ = UpdateExperimentTemplateActionInputItem$;
1950
2079
  exports.UpdateExperimentTemplateCommand = UpdateExperimentTemplateCommand;
2080
+ exports.UpdateExperimentTemplateExperimentOptionsInput$ = UpdateExperimentTemplateExperimentOptionsInput$;
2081
+ exports.UpdateExperimentTemplateLogConfigurationInput$ = UpdateExperimentTemplateLogConfigurationInput$;
2082
+ exports.UpdateExperimentTemplateReportConfigurationInput$ = UpdateExperimentTemplateReportConfigurationInput$;
2083
+ exports.UpdateExperimentTemplateRequest$ = UpdateExperimentTemplateRequest$;
2084
+ exports.UpdateExperimentTemplateResponse$ = UpdateExperimentTemplateResponse$;
2085
+ exports.UpdateExperimentTemplateStopConditionInput$ = UpdateExperimentTemplateStopConditionInput$;
2086
+ exports.UpdateExperimentTemplateTargetInput$ = UpdateExperimentTemplateTargetInput$;
2087
+ exports.UpdateSafetyLeverState$ = UpdateSafetyLeverState$;
1951
2088
  exports.UpdateSafetyLeverStateCommand = UpdateSafetyLeverStateCommand;
2089
+ exports.UpdateSafetyLeverStateInput$ = UpdateSafetyLeverStateInput$;
2090
+ exports.UpdateSafetyLeverStateRequest$ = UpdateSafetyLeverStateRequest$;
2091
+ exports.UpdateSafetyLeverStateResponse$ = UpdateSafetyLeverStateResponse$;
2092
+ exports.UpdateTargetAccountConfiguration$ = UpdateTargetAccountConfiguration$;
1952
2093
  exports.UpdateTargetAccountConfigurationCommand = UpdateTargetAccountConfigurationCommand;
1953
- exports.ValidationException = ValidationException$1;
2094
+ exports.UpdateTargetAccountConfigurationRequest$ = UpdateTargetAccountConfigurationRequest$;
2095
+ exports.UpdateTargetAccountConfigurationResponse$ = UpdateTargetAccountConfigurationResponse$;
2096
+ exports.ValidationException = ValidationException;
2097
+ exports.ValidationException$ = ValidationException$;
1954
2098
  exports.paginateListActions = paginateListActions;
1955
2099
  exports.paginateListExperimentResolvedTargets = paginateListExperimentResolvedTargets;
1956
2100
  exports.paginateListExperimentTemplates = paginateListExperimentTemplates;