aws-sdk-fis 1.24.0 → 1.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fis/client.rb +378 -5
- data/lib/aws-sdk-fis/client_api.rb +255 -0
- data/lib/aws-sdk-fis/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-fis/endpoints.rb +112 -0
- data/lib/aws-sdk-fis/plugins/endpoints.rb +19 -2
- data/lib/aws-sdk-fis/types.rb +530 -4
- data/lib/aws-sdk-fis.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-fis/types.rb
CHANGED
@@ -168,6 +168,25 @@ module Aws::FIS
|
|
168
168
|
include Aws::Structure
|
169
169
|
end
|
170
170
|
|
171
|
+
# Specifies experiment options for an experiment template.
|
172
|
+
#
|
173
|
+
# @!attribute [rw] account_targeting
|
174
|
+
# Specifies the account targeting setting for experiment options.
|
175
|
+
# @return [String]
|
176
|
+
#
|
177
|
+
# @!attribute [rw] empty_target_resolution_mode
|
178
|
+
# Specifies the empty target resolution mode for experiment options.
|
179
|
+
# @return [String]
|
180
|
+
#
|
181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateExperimentTemplateExperimentOptionsInput AWS API Documentation
|
182
|
+
#
|
183
|
+
class CreateExperimentTemplateExperimentOptionsInput < Struct.new(
|
184
|
+
:account_targeting,
|
185
|
+
:empty_target_resolution_mode)
|
186
|
+
SENSITIVE = []
|
187
|
+
include Aws::Structure
|
188
|
+
end
|
189
|
+
|
171
190
|
# Specifies the configuration for experiment logging.
|
172
191
|
#
|
173
192
|
# @!attribute [rw] cloud_watch_logs_configuration
|
@@ -229,6 +248,10 @@ module Aws::FIS
|
|
229
248
|
# The configuration for experiment logging.
|
230
249
|
# @return [Types::CreateExperimentTemplateLogConfigurationInput]
|
231
250
|
#
|
251
|
+
# @!attribute [rw] experiment_options
|
252
|
+
# The experiment options for the experiment template.
|
253
|
+
# @return [Types::CreateExperimentTemplateExperimentOptionsInput]
|
254
|
+
#
|
232
255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateExperimentTemplateRequest AWS API Documentation
|
233
256
|
#
|
234
257
|
class CreateExperimentTemplateRequest < Struct.new(
|
@@ -239,7 +262,8 @@ module Aws::FIS
|
|
239
262
|
:actions,
|
240
263
|
:role_arn,
|
241
264
|
:tags,
|
242
|
-
:log_configuration
|
265
|
+
:log_configuration,
|
266
|
+
:experiment_options)
|
243
267
|
SENSITIVE = []
|
244
268
|
include Aws::Structure
|
245
269
|
end
|
@@ -341,6 +365,55 @@ module Aws::FIS
|
|
341
365
|
include Aws::Structure
|
342
366
|
end
|
343
367
|
|
368
|
+
# @!attribute [rw] client_token
|
369
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
370
|
+
# idempotency of the request.
|
371
|
+
#
|
372
|
+
# **A suitable default value is auto-generated.** You should normally
|
373
|
+
# not need to pass this option.
|
374
|
+
# @return [String]
|
375
|
+
#
|
376
|
+
# @!attribute [rw] experiment_template_id
|
377
|
+
# The experiment template ID.
|
378
|
+
# @return [String]
|
379
|
+
#
|
380
|
+
# @!attribute [rw] account_id
|
381
|
+
# The AWS account ID of the target account.
|
382
|
+
# @return [String]
|
383
|
+
#
|
384
|
+
# @!attribute [rw] role_arn
|
385
|
+
# The Amazon Resource Name (ARN) of an IAM role for the target
|
386
|
+
# account.
|
387
|
+
# @return [String]
|
388
|
+
#
|
389
|
+
# @!attribute [rw] description
|
390
|
+
# The description of the target account.
|
391
|
+
# @return [String]
|
392
|
+
#
|
393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateTargetAccountConfigurationRequest AWS API Documentation
|
394
|
+
#
|
395
|
+
class CreateTargetAccountConfigurationRequest < Struct.new(
|
396
|
+
:client_token,
|
397
|
+
:experiment_template_id,
|
398
|
+
:account_id,
|
399
|
+
:role_arn,
|
400
|
+
:description)
|
401
|
+
SENSITIVE = []
|
402
|
+
include Aws::Structure
|
403
|
+
end
|
404
|
+
|
405
|
+
# @!attribute [rw] target_account_configuration
|
406
|
+
# Information about the target account configuration.
|
407
|
+
# @return [Types::TargetAccountConfiguration]
|
408
|
+
#
|
409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateTargetAccountConfigurationResponse AWS API Documentation
|
410
|
+
#
|
411
|
+
class CreateTargetAccountConfigurationResponse < Struct.new(
|
412
|
+
:target_account_configuration)
|
413
|
+
SENSITIVE = []
|
414
|
+
include Aws::Structure
|
415
|
+
end
|
416
|
+
|
344
417
|
# @!attribute [rw] id
|
345
418
|
# The ID of the experiment template.
|
346
419
|
# @return [String]
|
@@ -365,6 +438,35 @@ module Aws::FIS
|
|
365
438
|
include Aws::Structure
|
366
439
|
end
|
367
440
|
|
441
|
+
# @!attribute [rw] experiment_template_id
|
442
|
+
# The ID of the experiment template.
|
443
|
+
# @return [String]
|
444
|
+
#
|
445
|
+
# @!attribute [rw] account_id
|
446
|
+
# The AWS account ID of the target account.
|
447
|
+
# @return [String]
|
448
|
+
#
|
449
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/DeleteTargetAccountConfigurationRequest AWS API Documentation
|
450
|
+
#
|
451
|
+
class DeleteTargetAccountConfigurationRequest < Struct.new(
|
452
|
+
:experiment_template_id,
|
453
|
+
:account_id)
|
454
|
+
SENSITIVE = []
|
455
|
+
include Aws::Structure
|
456
|
+
end
|
457
|
+
|
458
|
+
# @!attribute [rw] target_account_configuration
|
459
|
+
# Information about the target account configuration.
|
460
|
+
# @return [Types::TargetAccountConfiguration]
|
461
|
+
#
|
462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/DeleteTargetAccountConfigurationResponse AWS API Documentation
|
463
|
+
#
|
464
|
+
class DeleteTargetAccountConfigurationResponse < Struct.new(
|
465
|
+
:target_account_configuration)
|
466
|
+
SENSITIVE = []
|
467
|
+
include Aws::Structure
|
468
|
+
end
|
469
|
+
|
368
470
|
# Describes an experiment.
|
369
471
|
#
|
370
472
|
# @!attribute [rw] id
|
@@ -416,6 +518,14 @@ module Aws::FIS
|
|
416
518
|
# The configuration for experiment logging.
|
417
519
|
# @return [Types::ExperimentLogConfiguration]
|
418
520
|
#
|
521
|
+
# @!attribute [rw] experiment_options
|
522
|
+
# The experiment options for the experiment.
|
523
|
+
# @return [Types::ExperimentOptions]
|
524
|
+
#
|
525
|
+
# @!attribute [rw] target_account_configurations_count
|
526
|
+
# The count of target account configurations for the experiment.
|
527
|
+
# @return [Integer]
|
528
|
+
#
|
419
529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/Experiment AWS API Documentation
|
420
530
|
#
|
421
531
|
class Experiment < Struct.new(
|
@@ -430,7 +540,9 @@ module Aws::FIS
|
|
430
540
|
:start_time,
|
431
541
|
:end_time,
|
432
542
|
:tags,
|
433
|
-
:log_configuration
|
543
|
+
:log_configuration,
|
544
|
+
:experiment_options,
|
545
|
+
:target_account_configurations_count)
|
434
546
|
SENSITIVE = []
|
435
547
|
include Aws::Structure
|
436
548
|
end
|
@@ -544,6 +656,25 @@ module Aws::FIS
|
|
544
656
|
include Aws::Structure
|
545
657
|
end
|
546
658
|
|
659
|
+
# Describes the options for an experiment.
|
660
|
+
#
|
661
|
+
# @!attribute [rw] account_targeting
|
662
|
+
# The account targeting setting for an experiment.
|
663
|
+
# @return [String]
|
664
|
+
#
|
665
|
+
# @!attribute [rw] empty_target_resolution_mode
|
666
|
+
# The empty target resolution mode for an experiment.
|
667
|
+
# @return [String]
|
668
|
+
#
|
669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentOptions AWS API Documentation
|
670
|
+
#
|
671
|
+
class ExperimentOptions < Struct.new(
|
672
|
+
:account_targeting,
|
673
|
+
:empty_target_resolution_mode)
|
674
|
+
SENSITIVE = []
|
675
|
+
include Aws::Structure
|
676
|
+
end
|
677
|
+
|
547
678
|
# Describes the configuration for experiment logging to Amazon S3.
|
548
679
|
#
|
549
680
|
# @!attribute [rw] bucket_name
|
@@ -676,6 +807,56 @@ module Aws::FIS
|
|
676
807
|
include Aws::Structure
|
677
808
|
end
|
678
809
|
|
810
|
+
# Describes a target account configuration for an experiment.
|
811
|
+
#
|
812
|
+
# @!attribute [rw] role_arn
|
813
|
+
# The Amazon Resource Name (ARN) of an IAM role for the target
|
814
|
+
# account.
|
815
|
+
# @return [String]
|
816
|
+
#
|
817
|
+
# @!attribute [rw] account_id
|
818
|
+
# The AWS account ID of the target account.
|
819
|
+
# @return [String]
|
820
|
+
#
|
821
|
+
# @!attribute [rw] description
|
822
|
+
# The description of the target account.
|
823
|
+
# @return [String]
|
824
|
+
#
|
825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTargetAccountConfiguration AWS API Documentation
|
826
|
+
#
|
827
|
+
class ExperimentTargetAccountConfiguration < Struct.new(
|
828
|
+
:role_arn,
|
829
|
+
:account_id,
|
830
|
+
:description)
|
831
|
+
SENSITIVE = []
|
832
|
+
include Aws::Structure
|
833
|
+
end
|
834
|
+
|
835
|
+
# Provides a summary of a target account configuration.
|
836
|
+
#
|
837
|
+
# @!attribute [rw] role_arn
|
838
|
+
# The Amazon Resource Name (ARN) of an IAM role for the target
|
839
|
+
# account.
|
840
|
+
# @return [String]
|
841
|
+
#
|
842
|
+
# @!attribute [rw] account_id
|
843
|
+
# The AWS account ID of the target account.
|
844
|
+
# @return [String]
|
845
|
+
#
|
846
|
+
# @!attribute [rw] description
|
847
|
+
# The description of the target account.
|
848
|
+
# @return [String]
|
849
|
+
#
|
850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTargetAccountConfigurationSummary AWS API Documentation
|
851
|
+
#
|
852
|
+
class ExperimentTargetAccountConfigurationSummary < Struct.new(
|
853
|
+
:role_arn,
|
854
|
+
:account_id,
|
855
|
+
:description)
|
856
|
+
SENSITIVE = []
|
857
|
+
include Aws::Structure
|
858
|
+
end
|
859
|
+
|
679
860
|
# Describes a filter used for the target resources in an experiment.
|
680
861
|
#
|
681
862
|
# @!attribute [rw] path
|
@@ -737,6 +918,15 @@ module Aws::FIS
|
|
737
918
|
# The configuration for experiment logging.
|
738
919
|
# @return [Types::ExperimentTemplateLogConfiguration]
|
739
920
|
#
|
921
|
+
# @!attribute [rw] experiment_options
|
922
|
+
# The experiment options for an experiment template.
|
923
|
+
# @return [Types::ExperimentTemplateExperimentOptions]
|
924
|
+
#
|
925
|
+
# @!attribute [rw] target_account_configurations_count
|
926
|
+
# The count of target account configurations for the experiment
|
927
|
+
# template.
|
928
|
+
# @return [Integer]
|
929
|
+
#
|
740
930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplate AWS API Documentation
|
741
931
|
#
|
742
932
|
class ExperimentTemplate < Struct.new(
|
@@ -749,7 +939,9 @@ module Aws::FIS
|
|
749
939
|
:last_update_time,
|
750
940
|
:role_arn,
|
751
941
|
:tags,
|
752
|
-
:log_configuration
|
942
|
+
:log_configuration,
|
943
|
+
:experiment_options,
|
944
|
+
:target_account_configurations_count)
|
753
945
|
SENSITIVE = []
|
754
946
|
include Aws::Structure
|
755
947
|
end
|
@@ -821,6 +1013,25 @@ module Aws::FIS
|
|
821
1013
|
include Aws::Structure
|
822
1014
|
end
|
823
1015
|
|
1016
|
+
# Describes the experiment options for an experiment template.
|
1017
|
+
#
|
1018
|
+
# @!attribute [rw] account_targeting
|
1019
|
+
# The account targeting setting for an experiment template.
|
1020
|
+
# @return [String]
|
1021
|
+
#
|
1022
|
+
# @!attribute [rw] empty_target_resolution_mode
|
1023
|
+
# The empty target resolution mode for an experiment template.
|
1024
|
+
# @return [String]
|
1025
|
+
#
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateExperimentOptions AWS API Documentation
|
1027
|
+
#
|
1028
|
+
class ExperimentTemplateExperimentOptions < Struct.new(
|
1029
|
+
:account_targeting,
|
1030
|
+
:empty_target_resolution_mode)
|
1031
|
+
SENSITIVE = []
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
824
1035
|
# Describes the configuration for experiment logging.
|
825
1036
|
#
|
826
1037
|
# @!attribute [rw] cloud_watch_logs_configuration
|
@@ -1072,6 +1283,35 @@ module Aws::FIS
|
|
1072
1283
|
include Aws::Structure
|
1073
1284
|
end
|
1074
1285
|
|
1286
|
+
# @!attribute [rw] experiment_id
|
1287
|
+
# The ID of the experiment.
|
1288
|
+
# @return [String]
|
1289
|
+
#
|
1290
|
+
# @!attribute [rw] account_id
|
1291
|
+
# The AWS account ID of the target account.
|
1292
|
+
# @return [String]
|
1293
|
+
#
|
1294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperimentTargetAccountConfigurationRequest AWS API Documentation
|
1295
|
+
#
|
1296
|
+
class GetExperimentTargetAccountConfigurationRequest < Struct.new(
|
1297
|
+
:experiment_id,
|
1298
|
+
:account_id)
|
1299
|
+
SENSITIVE = []
|
1300
|
+
include Aws::Structure
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
# @!attribute [rw] target_account_configuration
|
1304
|
+
# Information about the target account configuration.
|
1305
|
+
# @return [Types::ExperimentTargetAccountConfiguration]
|
1306
|
+
#
|
1307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperimentTargetAccountConfigurationResponse AWS API Documentation
|
1308
|
+
#
|
1309
|
+
class GetExperimentTargetAccountConfigurationResponse < Struct.new(
|
1310
|
+
:target_account_configuration)
|
1311
|
+
SENSITIVE = []
|
1312
|
+
include Aws::Structure
|
1313
|
+
end
|
1314
|
+
|
1075
1315
|
# @!attribute [rw] id
|
1076
1316
|
# The ID of the experiment template.
|
1077
1317
|
# @return [String]
|
@@ -1096,6 +1336,35 @@ module Aws::FIS
|
|
1096
1336
|
include Aws::Structure
|
1097
1337
|
end
|
1098
1338
|
|
1339
|
+
# @!attribute [rw] experiment_template_id
|
1340
|
+
# The ID of the experiment template.
|
1341
|
+
# @return [String]
|
1342
|
+
#
|
1343
|
+
# @!attribute [rw] account_id
|
1344
|
+
# The AWS account ID of the target account.
|
1345
|
+
# @return [String]
|
1346
|
+
#
|
1347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetTargetAccountConfigurationRequest AWS API Documentation
|
1348
|
+
#
|
1349
|
+
class GetTargetAccountConfigurationRequest < Struct.new(
|
1350
|
+
:experiment_template_id,
|
1351
|
+
:account_id)
|
1352
|
+
SENSITIVE = []
|
1353
|
+
include Aws::Structure
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
# @!attribute [rw] target_account_configuration
|
1357
|
+
# Information about the target account configuration.
|
1358
|
+
# @return [Types::TargetAccountConfiguration]
|
1359
|
+
#
|
1360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetTargetAccountConfigurationResponse AWS API Documentation
|
1361
|
+
#
|
1362
|
+
class GetTargetAccountConfigurationResponse < Struct.new(
|
1363
|
+
:target_account_configuration)
|
1364
|
+
SENSITIVE = []
|
1365
|
+
include Aws::Structure
|
1366
|
+
end
|
1367
|
+
|
1099
1368
|
# @!attribute [rw] resource_type
|
1100
1369
|
# The resource type.
|
1101
1370
|
# @return [String]
|
@@ -1157,6 +1426,88 @@ module Aws::FIS
|
|
1157
1426
|
include Aws::Structure
|
1158
1427
|
end
|
1159
1428
|
|
1429
|
+
# @!attribute [rw] experiment_id
|
1430
|
+
# The ID of the experiment.
|
1431
|
+
# @return [String]
|
1432
|
+
#
|
1433
|
+
# @!attribute [rw] max_results
|
1434
|
+
# The maximum number of results to return with a single call. To
|
1435
|
+
# retrieve the remaining results, make another call with the returned
|
1436
|
+
# nextToken value.
|
1437
|
+
# @return [Integer]
|
1438
|
+
#
|
1439
|
+
# @!attribute [rw] next_token
|
1440
|
+
# The token for the next page of results.
|
1441
|
+
# @return [String]
|
1442
|
+
#
|
1443
|
+
# @!attribute [rw] target_name
|
1444
|
+
# The name of the target.
|
1445
|
+
# @return [String]
|
1446
|
+
#
|
1447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentResolvedTargetsRequest AWS API Documentation
|
1448
|
+
#
|
1449
|
+
class ListExperimentResolvedTargetsRequest < Struct.new(
|
1450
|
+
:experiment_id,
|
1451
|
+
:max_results,
|
1452
|
+
:next_token,
|
1453
|
+
:target_name)
|
1454
|
+
SENSITIVE = []
|
1455
|
+
include Aws::Structure
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
# @!attribute [rw] resolved_targets
|
1459
|
+
# The resolved targets.
|
1460
|
+
# @return [Array<Types::ResolvedTarget>]
|
1461
|
+
#
|
1462
|
+
# @!attribute [rw] next_token
|
1463
|
+
# The token to use to retrieve the next page of results. This value is
|
1464
|
+
# null when there are no more results to return.
|
1465
|
+
# @return [String]
|
1466
|
+
#
|
1467
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentResolvedTargetsResponse AWS API Documentation
|
1468
|
+
#
|
1469
|
+
class ListExperimentResolvedTargetsResponse < Struct.new(
|
1470
|
+
:resolved_targets,
|
1471
|
+
:next_token)
|
1472
|
+
SENSITIVE = []
|
1473
|
+
include Aws::Structure
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
# @!attribute [rw] experiment_id
|
1477
|
+
# The ID of the experiment.
|
1478
|
+
# @return [String]
|
1479
|
+
#
|
1480
|
+
# @!attribute [rw] next_token
|
1481
|
+
# The token for the next page of results.
|
1482
|
+
# @return [String]
|
1483
|
+
#
|
1484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentTargetAccountConfigurationsRequest AWS API Documentation
|
1485
|
+
#
|
1486
|
+
class ListExperimentTargetAccountConfigurationsRequest < Struct.new(
|
1487
|
+
:experiment_id,
|
1488
|
+
:next_token)
|
1489
|
+
SENSITIVE = []
|
1490
|
+
include Aws::Structure
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
# @!attribute [rw] target_account_configurations
|
1494
|
+
# The target account configurations.
|
1495
|
+
# @return [Array<Types::ExperimentTargetAccountConfigurationSummary>]
|
1496
|
+
#
|
1497
|
+
# @!attribute [rw] next_token
|
1498
|
+
# The token to use to retrieve the next page of results. This value is
|
1499
|
+
# null when there are no more results to return.
|
1500
|
+
# @return [String]
|
1501
|
+
#
|
1502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentTargetAccountConfigurationsResponse AWS API Documentation
|
1503
|
+
#
|
1504
|
+
class ListExperimentTargetAccountConfigurationsResponse < Struct.new(
|
1505
|
+
:target_account_configurations,
|
1506
|
+
:next_token)
|
1507
|
+
SENSITIVE = []
|
1508
|
+
include Aws::Structure
|
1509
|
+
end
|
1510
|
+
|
1160
1511
|
# @!attribute [rw] max_results
|
1161
1512
|
# The maximum number of results to return with a single call. To
|
1162
1513
|
# retrieve the remaining results, make another call with the returned
|
@@ -1255,6 +1606,48 @@ module Aws::FIS
|
|
1255
1606
|
include Aws::Structure
|
1256
1607
|
end
|
1257
1608
|
|
1609
|
+
# @!attribute [rw] experiment_template_id
|
1610
|
+
# The ID of the experiment template.
|
1611
|
+
# @return [String]
|
1612
|
+
#
|
1613
|
+
# @!attribute [rw] max_results
|
1614
|
+
# The maximum number of results to return with a single call. To
|
1615
|
+
# retrieve the remaining results, make another call with the returned
|
1616
|
+
# nextToken value.
|
1617
|
+
# @return [Integer]
|
1618
|
+
#
|
1619
|
+
# @!attribute [rw] next_token
|
1620
|
+
# The token for the next page of results.
|
1621
|
+
# @return [String]
|
1622
|
+
#
|
1623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListTargetAccountConfigurationsRequest AWS API Documentation
|
1624
|
+
#
|
1625
|
+
class ListTargetAccountConfigurationsRequest < Struct.new(
|
1626
|
+
:experiment_template_id,
|
1627
|
+
:max_results,
|
1628
|
+
:next_token)
|
1629
|
+
SENSITIVE = []
|
1630
|
+
include Aws::Structure
|
1631
|
+
end
|
1632
|
+
|
1633
|
+
# @!attribute [rw] target_account_configurations
|
1634
|
+
# The target account configurations.
|
1635
|
+
# @return [Array<Types::TargetAccountConfigurationSummary>]
|
1636
|
+
#
|
1637
|
+
# @!attribute [rw] next_token
|
1638
|
+
# The token to use to retrieve the next page of results. This value is
|
1639
|
+
# null when there are no more results to return.
|
1640
|
+
# @return [String]
|
1641
|
+
#
|
1642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListTargetAccountConfigurationsResponse AWS API Documentation
|
1643
|
+
#
|
1644
|
+
class ListTargetAccountConfigurationsResponse < Struct.new(
|
1645
|
+
:target_account_configurations,
|
1646
|
+
:next_token)
|
1647
|
+
SENSITIVE = []
|
1648
|
+
include Aws::Structure
|
1649
|
+
end
|
1650
|
+
|
1258
1651
|
# @!attribute [rw] max_results
|
1259
1652
|
# The maximum number of results to return with a single call. To
|
1260
1653
|
# retrieve the remaining results, make another call with the returned
|
@@ -1292,6 +1685,30 @@ module Aws::FIS
|
|
1292
1685
|
include Aws::Structure
|
1293
1686
|
end
|
1294
1687
|
|
1688
|
+
# Describes a resolved target.
|
1689
|
+
#
|
1690
|
+
# @!attribute [rw] resource_type
|
1691
|
+
# The resource type of the target.
|
1692
|
+
# @return [String]
|
1693
|
+
#
|
1694
|
+
# @!attribute [rw] target_name
|
1695
|
+
# The name of the target.
|
1696
|
+
# @return [String]
|
1697
|
+
#
|
1698
|
+
# @!attribute [rw] target_information
|
1699
|
+
# Information about the target.
|
1700
|
+
# @return [Hash<String,String>]
|
1701
|
+
#
|
1702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ResolvedTarget AWS API Documentation
|
1703
|
+
#
|
1704
|
+
class ResolvedTarget < Struct.new(
|
1705
|
+
:resource_type,
|
1706
|
+
:target_name,
|
1707
|
+
:target_information)
|
1708
|
+
SENSITIVE = []
|
1709
|
+
include Aws::Structure
|
1710
|
+
end
|
1711
|
+
|
1295
1712
|
# The specified resource cannot be found.
|
1296
1713
|
#
|
1297
1714
|
# @!attribute [rw] message
|
@@ -1401,6 +1818,56 @@ module Aws::FIS
|
|
1401
1818
|
#
|
1402
1819
|
class TagResourceResponse < Aws::EmptyStructure; end
|
1403
1820
|
|
1821
|
+
# Describes a target account configuration.
|
1822
|
+
#
|
1823
|
+
# @!attribute [rw] role_arn
|
1824
|
+
# The Amazon Resource Name (ARN) of an IAM role for the target
|
1825
|
+
# account.
|
1826
|
+
# @return [String]
|
1827
|
+
#
|
1828
|
+
# @!attribute [rw] account_id
|
1829
|
+
# The AWS account ID of the target account.
|
1830
|
+
# @return [String]
|
1831
|
+
#
|
1832
|
+
# @!attribute [rw] description
|
1833
|
+
# The description of the target account.
|
1834
|
+
# @return [String]
|
1835
|
+
#
|
1836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/TargetAccountConfiguration AWS API Documentation
|
1837
|
+
#
|
1838
|
+
class TargetAccountConfiguration < Struct.new(
|
1839
|
+
:role_arn,
|
1840
|
+
:account_id,
|
1841
|
+
:description)
|
1842
|
+
SENSITIVE = []
|
1843
|
+
include Aws::Structure
|
1844
|
+
end
|
1845
|
+
|
1846
|
+
# Provides a summary of a target account configuration.
|
1847
|
+
#
|
1848
|
+
# @!attribute [rw] role_arn
|
1849
|
+
# The Amazon Resource Name (ARN) of an IAM role for the target
|
1850
|
+
# account.
|
1851
|
+
# @return [String]
|
1852
|
+
#
|
1853
|
+
# @!attribute [rw] account_id
|
1854
|
+
# The AWS account ID of the target account.
|
1855
|
+
# @return [String]
|
1856
|
+
#
|
1857
|
+
# @!attribute [rw] description
|
1858
|
+
# The description of the target account.
|
1859
|
+
# @return [String]
|
1860
|
+
#
|
1861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/TargetAccountConfigurationSummary AWS API Documentation
|
1862
|
+
#
|
1863
|
+
class TargetAccountConfigurationSummary < Struct.new(
|
1864
|
+
:role_arn,
|
1865
|
+
:account_id,
|
1866
|
+
:description)
|
1867
|
+
SENSITIVE = []
|
1868
|
+
include Aws::Structure
|
1869
|
+
end
|
1870
|
+
|
1404
1871
|
# Describes a resource type.
|
1405
1872
|
#
|
1406
1873
|
# @!attribute [rw] resource_type
|
@@ -1521,6 +1988,20 @@ module Aws::FIS
|
|
1521
1988
|
include Aws::Structure
|
1522
1989
|
end
|
1523
1990
|
|
1991
|
+
# Specifies an experiment option for an experiment template.
|
1992
|
+
#
|
1993
|
+
# @!attribute [rw] empty_target_resolution_mode
|
1994
|
+
# The empty target resolution mode of the experiment template.
|
1995
|
+
# @return [String]
|
1996
|
+
#
|
1997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateExperimentTemplateExperimentOptionsInput AWS API Documentation
|
1998
|
+
#
|
1999
|
+
class UpdateExperimentTemplateExperimentOptionsInput < Struct.new(
|
2000
|
+
:empty_target_resolution_mode)
|
2001
|
+
SENSITIVE = []
|
2002
|
+
include Aws::Structure
|
2003
|
+
end
|
2004
|
+
|
1524
2005
|
# Specifies the configuration for experiment logging.
|
1525
2006
|
#
|
1526
2007
|
# @!attribute [rw] cloud_watch_logs_configuration
|
@@ -1574,6 +2055,10 @@ module Aws::FIS
|
|
1574
2055
|
# The configuration for experiment logging.
|
1575
2056
|
# @return [Types::UpdateExperimentTemplateLogConfigurationInput]
|
1576
2057
|
#
|
2058
|
+
# @!attribute [rw] experiment_options
|
2059
|
+
# The experiment options for the experiment template.
|
2060
|
+
# @return [Types::UpdateExperimentTemplateExperimentOptionsInput]
|
2061
|
+
#
|
1577
2062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateExperimentTemplateRequest AWS API Documentation
|
1578
2063
|
#
|
1579
2064
|
class UpdateExperimentTemplateRequest < Struct.new(
|
@@ -1583,7 +2068,8 @@ module Aws::FIS
|
|
1583
2068
|
:targets,
|
1584
2069
|
:actions,
|
1585
2070
|
:role_arn,
|
1586
|
-
:log_configuration
|
2071
|
+
:log_configuration,
|
2072
|
+
:experiment_options)
|
1587
2073
|
SENSITIVE = []
|
1588
2074
|
include Aws::Structure
|
1589
2075
|
end
|
@@ -1665,6 +2151,46 @@ module Aws::FIS
|
|
1665
2151
|
include Aws::Structure
|
1666
2152
|
end
|
1667
2153
|
|
2154
|
+
# @!attribute [rw] experiment_template_id
|
2155
|
+
# The ID of the experiment template.
|
2156
|
+
# @return [String]
|
2157
|
+
#
|
2158
|
+
# @!attribute [rw] account_id
|
2159
|
+
# The AWS account ID of the target account.
|
2160
|
+
# @return [String]
|
2161
|
+
#
|
2162
|
+
# @!attribute [rw] role_arn
|
2163
|
+
# The Amazon Resource Name (ARN) of an IAM role for the target
|
2164
|
+
# account.
|
2165
|
+
# @return [String]
|
2166
|
+
#
|
2167
|
+
# @!attribute [rw] description
|
2168
|
+
# The description of the target account.
|
2169
|
+
# @return [String]
|
2170
|
+
#
|
2171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateTargetAccountConfigurationRequest AWS API Documentation
|
2172
|
+
#
|
2173
|
+
class UpdateTargetAccountConfigurationRequest < Struct.new(
|
2174
|
+
:experiment_template_id,
|
2175
|
+
:account_id,
|
2176
|
+
:role_arn,
|
2177
|
+
:description)
|
2178
|
+
SENSITIVE = []
|
2179
|
+
include Aws::Structure
|
2180
|
+
end
|
2181
|
+
|
2182
|
+
# @!attribute [rw] target_account_configuration
|
2183
|
+
# Information about the target account configuration.
|
2184
|
+
# @return [Types::TargetAccountConfiguration]
|
2185
|
+
#
|
2186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateTargetAccountConfigurationResponse AWS API Documentation
|
2187
|
+
#
|
2188
|
+
class UpdateTargetAccountConfigurationResponse < Struct.new(
|
2189
|
+
:target_account_configuration)
|
2190
|
+
SENSITIVE = []
|
2191
|
+
include Aws::Structure
|
2192
|
+
end
|
2193
|
+
|
1668
2194
|
# The specified input is not valid, or fails to satisfy the constraints
|
1669
2195
|
# for the request.
|
1670
2196
|
#
|
data/lib/aws-sdk-fis.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|