aws-sdk-fis 1.26.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ module Aws::FIS
11
11
  module Types
12
12
 
13
13
  # Describes an action. For more information, see [FIS actions][1] in the
14
- # *Fault Injection Simulator User Guide*.
14
+ # *Fault Injection Service User Guide*.
15
15
  #
16
16
  #
17
17
  #
@@ -21,6 +21,10 @@ module Aws::FIS
21
21
  # The ID of the action.
22
22
  # @return [String]
23
23
  #
24
+ # @!attribute [rw] arn
25
+ # The Amazon Resource Name (ARN) of the action.
26
+ # @return [String]
27
+ #
24
28
  # @!attribute [rw] description
25
29
  # The description for the action.
26
30
  # @return [String]
@@ -41,6 +45,7 @@ module Aws::FIS
41
45
  #
42
46
  class Action < Struct.new(
43
47
  :id,
48
+ :arn,
44
49
  :description,
45
50
  :parameters,
46
51
  :targets,
@@ -74,6 +79,10 @@ module Aws::FIS
74
79
  # The ID of the action.
75
80
  # @return [String]
76
81
  #
82
+ # @!attribute [rw] arn
83
+ # The Amazon Resource Name (ARN) of the action.
84
+ # @return [String]
85
+ #
77
86
  # @!attribute [rw] description
78
87
  # The description for the action.
79
88
  # @return [String]
@@ -90,6 +99,7 @@ module Aws::FIS
90
99
  #
91
100
  class ActionSummary < Struct.new(
92
101
  :id,
102
+ :arn,
93
103
  :description,
94
104
  :targets,
95
105
  :tags)
@@ -126,8 +136,8 @@ module Aws::FIS
126
136
 
127
137
  # Specifies an action for an experiment template.
128
138
  #
129
- # For more information, see [Actions][1] in the *Fault Injection
130
- # Simulator User Guide*.
139
+ # For more information, see [Actions][1] in the *Fault Injection Service
140
+ # User Guide*.
131
141
  #
132
142
  #
133
143
  #
@@ -306,8 +316,8 @@ module Aws::FIS
306
316
  # Amazon Resource Name (ARN) or at least one resource tag. You cannot
307
317
  # specify both ARNs and tags.
308
318
  #
309
- # For more information, see [Targets][1] in the *Fault Injection
310
- # Simulator User Guide*.
319
+ # For more information, see [Targets][1] in the *Fault Injection Service
320
+ # User Guide*.
311
321
  #
312
322
  #
313
323
  #
@@ -378,7 +388,7 @@ module Aws::FIS
378
388
  # @return [String]
379
389
  #
380
390
  # @!attribute [rw] account_id
381
- # The AWS account ID of the target account.
391
+ # The Amazon Web Services account ID of the target account.
382
392
  # @return [String]
383
393
  #
384
394
  # @!attribute [rw] role_arn
@@ -443,7 +453,7 @@ module Aws::FIS
443
453
  # @return [String]
444
454
  #
445
455
  # @!attribute [rw] account_id
446
- # The AWS account ID of the target account.
456
+ # The Amazon Web Services account ID of the target account.
447
457
  # @return [String]
448
458
  #
449
459
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/DeleteTargetAccountConfigurationRequest AWS API Documentation
@@ -473,6 +483,10 @@ module Aws::FIS
473
483
  # The ID of the experiment.
474
484
  # @return [String]
475
485
  #
486
+ # @!attribute [rw] arn
487
+ # The Amazon Resource Name (ARN) of the experiment.
488
+ # @return [String]
489
+ #
476
490
  # @!attribute [rw] experiment_template_id
477
491
  # The ID of the experiment template.
478
492
  # @return [String]
@@ -530,6 +544,7 @@ module Aws::FIS
530
544
  #
531
545
  class Experiment < Struct.new(
532
546
  :id,
547
+ :arn,
533
548
  :experiment_template_id,
534
549
  :role_arn,
535
550
  :state,
@@ -666,11 +681,17 @@ module Aws::FIS
666
681
  # The empty target resolution mode for an experiment.
667
682
  # @return [String]
668
683
  #
684
+ # @!attribute [rw] actions_mode
685
+ # The actions mode of the experiment that is set from the
686
+ # StartExperiment API command.
687
+ # @return [String]
688
+ #
669
689
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentOptions AWS API Documentation
670
690
  #
671
691
  class ExperimentOptions < Struct.new(
672
692
  :account_targeting,
673
- :empty_target_resolution_mode)
693
+ :empty_target_resolution_mode,
694
+ :actions_mode)
674
695
  SENSITIVE = []
675
696
  include Aws::Structure
676
697
  end
@@ -739,6 +760,10 @@ module Aws::FIS
739
760
  # The ID of the experiment.
740
761
  # @return [String]
741
762
  #
763
+ # @!attribute [rw] arn
764
+ # The Amazon Resource Name (ARN) of the experiment.
765
+ # @return [String]
766
+ #
742
767
  # @!attribute [rw] experiment_template_id
743
768
  # The ID of the experiment template.
744
769
  # @return [String]
@@ -755,14 +780,20 @@ module Aws::FIS
755
780
  # The tags for the experiment.
756
781
  # @return [Hash<String,String>]
757
782
  #
783
+ # @!attribute [rw] experiment_options
784
+ # The experiment options for the experiment.
785
+ # @return [Types::ExperimentOptions]
786
+ #
758
787
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentSummary AWS API Documentation
759
788
  #
760
789
  class ExperimentSummary < Struct.new(
761
790
  :id,
791
+ :arn,
762
792
  :experiment_template_id,
763
793
  :state,
764
794
  :creation_time,
765
- :tags)
795
+ :tags,
796
+ :experiment_options)
766
797
  SENSITIVE = []
767
798
  include Aws::Structure
768
799
  end
@@ -815,7 +846,7 @@ module Aws::FIS
815
846
  # @return [String]
816
847
  #
817
848
  # @!attribute [rw] account_id
818
- # The AWS account ID of the target account.
849
+ # The Amazon Web Services account ID of the target account.
819
850
  # @return [String]
820
851
  #
821
852
  # @!attribute [rw] description
@@ -840,7 +871,7 @@ module Aws::FIS
840
871
  # @return [String]
841
872
  #
842
873
  # @!attribute [rw] account_id
843
- # The AWS account ID of the target account.
874
+ # The Amazon Web Services account ID of the target account.
844
875
  # @return [String]
845
876
  #
846
877
  # @!attribute [rw] description
@@ -882,6 +913,10 @@ module Aws::FIS
882
913
  # The ID of the experiment template.
883
914
  # @return [String]
884
915
  #
916
+ # @!attribute [rw] arn
917
+ # The Amazon Resource Name (ARN) of the experiment template.
918
+ # @return [String]
919
+ #
885
920
  # @!attribute [rw] description
886
921
  # The description for the experiment template.
887
922
  # @return [String]
@@ -931,6 +966,7 @@ module Aws::FIS
931
966
  #
932
967
  class ExperimentTemplate < Struct.new(
933
968
  :id,
969
+ :arn,
934
970
  :description,
935
971
  :targets,
936
972
  :actions,
@@ -1120,6 +1156,10 @@ module Aws::FIS
1120
1156
  # The ID of the experiment template.
1121
1157
  # @return [String]
1122
1158
  #
1159
+ # @!attribute [rw] arn
1160
+ # The Amazon Resource Name (ARN) of the experiment template.
1161
+ # @return [String]
1162
+ #
1123
1163
  # @!attribute [rw] description
1124
1164
  # The description of the experiment template.
1125
1165
  # @return [String]
@@ -1140,6 +1180,7 @@ module Aws::FIS
1140
1180
  #
1141
1181
  class ExperimentTemplateSummary < Struct.new(
1142
1182
  :id,
1183
+ :arn,
1143
1184
  :description,
1144
1185
  :creation_time,
1145
1186
  :last_update_time,
@@ -1212,7 +1253,7 @@ module Aws::FIS
1212
1253
  # template.
1213
1254
  #
1214
1255
  # For more information, see [Resource filters][1] in the *Fault
1215
- # Injection Simulator User Guide*.
1256
+ # Injection Service User Guide*.
1216
1257
  #
1217
1258
  #
1218
1259
  #
@@ -1288,7 +1329,7 @@ module Aws::FIS
1288
1329
  # @return [String]
1289
1330
  #
1290
1331
  # @!attribute [rw] account_id
1291
- # The AWS account ID of the target account.
1332
+ # The Amazon Web Services account ID of the target account.
1292
1333
  # @return [String]
1293
1334
  #
1294
1335
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperimentTargetAccountConfigurationRequest AWS API Documentation
@@ -1341,7 +1382,7 @@ module Aws::FIS
1341
1382
  # @return [String]
1342
1383
  #
1343
1384
  # @!attribute [rw] account_id
1344
- # The AWS account ID of the target account.
1385
+ # The Amazon Web Services account ID of the target account.
1345
1386
  # @return [String]
1346
1387
  #
1347
1388
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetTargetAccountConfigurationRequest AWS API Documentation
@@ -1555,11 +1596,16 @@ module Aws::FIS
1555
1596
  # The token for the next page of results.
1556
1597
  # @return [String]
1557
1598
  #
1599
+ # @!attribute [rw] experiment_template_id
1600
+ # The ID of the experiment template.
1601
+ # @return [String]
1602
+ #
1558
1603
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentsRequest AWS API Documentation
1559
1604
  #
1560
1605
  class ListExperimentsRequest < Struct.new(
1561
1606
  :max_results,
1562
- :next_token)
1607
+ :next_token,
1608
+ :experiment_template_id)
1563
1609
  SENSITIVE = []
1564
1610
  include Aws::Structure
1565
1611
  end
@@ -1735,6 +1781,20 @@ module Aws::FIS
1735
1781
  include Aws::Structure
1736
1782
  end
1737
1783
 
1784
+ # Specifies experiment options for running an experiment.
1785
+ #
1786
+ # @!attribute [rw] actions_mode
1787
+ # Specifies the actions mode for experiment options.
1788
+ # @return [String]
1789
+ #
1790
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/StartExperimentExperimentOptionsInput AWS API Documentation
1791
+ #
1792
+ class StartExperimentExperimentOptionsInput < Struct.new(
1793
+ :actions_mode)
1794
+ SENSITIVE = []
1795
+ include Aws::Structure
1796
+ end
1797
+
1738
1798
  # @!attribute [rw] client_token
1739
1799
  # Unique, case-sensitive identifier that you provide to ensure the
1740
1800
  # idempotency of the request.
@@ -1747,6 +1807,10 @@ module Aws::FIS
1747
1807
  # The ID of the experiment template.
1748
1808
  # @return [String]
1749
1809
  #
1810
+ # @!attribute [rw] experiment_options
1811
+ # The experiment options for running the experiment.
1812
+ # @return [Types::StartExperimentExperimentOptionsInput]
1813
+ #
1750
1814
  # @!attribute [rw] tags
1751
1815
  # The tags to apply to the experiment.
1752
1816
  # @return [Hash<String,String>]
@@ -1756,6 +1820,7 @@ module Aws::FIS
1756
1820
  class StartExperimentRequest < Struct.new(
1757
1821
  :client_token,
1758
1822
  :experiment_template_id,
1823
+ :experiment_options,
1759
1824
  :tags)
1760
1825
  SENSITIVE = []
1761
1826
  include Aws::Structure
@@ -1826,7 +1891,7 @@ module Aws::FIS
1826
1891
  # @return [String]
1827
1892
  #
1828
1893
  # @!attribute [rw] account_id
1829
- # The AWS account ID of the target account.
1894
+ # The Amazon Web Services account ID of the target account.
1830
1895
  # @return [String]
1831
1896
  #
1832
1897
  # @!attribute [rw] description
@@ -1851,7 +1916,7 @@ module Aws::FIS
1851
1916
  # @return [String]
1852
1917
  #
1853
1918
  # @!attribute [rw] account_id
1854
- # The AWS account ID of the target account.
1919
+ # The Amazon Web Services account ID of the target account.
1855
1920
  # @return [String]
1856
1921
  #
1857
1922
  # @!attribute [rw] description
@@ -2156,7 +2221,7 @@ module Aws::FIS
2156
2221
  # @return [String]
2157
2222
  #
2158
2223
  # @!attribute [rw] account_id
2159
- # The AWS account ID of the target account.
2224
+ # The Amazon Web Services account ID of the target account.
2160
2225
  # @return [String]
2161
2226
  #
2162
2227
  # @!attribute [rw] role_arn
data/lib/aws-sdk-fis.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-fis/customizations'
52
52
  # @!group service
53
53
  module Aws::FIS
54
54
 
55
- GEM_VERSION = '1.26.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  end