aws-sdk-fis 1.42.0 → 1.44.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fis/client.rb +101 -1
- data/lib/aws-sdk-fis/client_api.rb +123 -0
- data/lib/aws-sdk-fis/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-fis/endpoints.rb +2 -284
- data/lib/aws-sdk-fis/plugins/endpoints.rb +1 -58
- data/lib/aws-sdk-fis/types.rb +438 -4
- data/lib/aws-sdk-fis.rb +1 -1
- data/sig/client.rbs +34 -0
- data/sig/types.rbs +124 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -65,6 +65,14 @@ module Aws::FIS
|
|
65
65
|
SENSITIVE: []
|
66
66
|
end
|
67
67
|
|
68
|
+
class CreateExperimentTemplateReportConfigurationInput
|
69
|
+
attr_accessor outputs: Types::ExperimentTemplateReportConfigurationOutputsInput
|
70
|
+
attr_accessor data_sources: Types::ExperimentTemplateReportConfigurationDataSourcesInput
|
71
|
+
attr_accessor pre_experiment_duration: ::String
|
72
|
+
attr_accessor post_experiment_duration: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
68
76
|
class CreateExperimentTemplateRequest
|
69
77
|
attr_accessor client_token: ::String
|
70
78
|
attr_accessor description: ::String
|
@@ -75,6 +83,7 @@ module Aws::FIS
|
|
75
83
|
attr_accessor tags: ::Hash[::String, ::String]
|
76
84
|
attr_accessor log_configuration: Types::CreateExperimentTemplateLogConfigurationInput
|
77
85
|
attr_accessor experiment_options: Types::CreateExperimentTemplateExperimentOptionsInput
|
86
|
+
attr_accessor experiment_report_configuration: Types::CreateExperimentTemplateReportConfigurationInput
|
78
87
|
SENSITIVE: []
|
79
88
|
end
|
80
89
|
|
@@ -150,6 +159,8 @@ module Aws::FIS
|
|
150
159
|
attr_accessor log_configuration: Types::ExperimentLogConfiguration
|
151
160
|
attr_accessor experiment_options: Types::ExperimentOptions
|
152
161
|
attr_accessor target_account_configurations_count: ::Integer
|
162
|
+
attr_accessor experiment_report_configuration: Types::ExperimentReportConfiguration
|
163
|
+
attr_accessor experiment_report: Types::ExperimentReport
|
153
164
|
SENSITIVE: []
|
154
165
|
end
|
155
166
|
|
@@ -197,6 +208,59 @@ module Aws::FIS
|
|
197
208
|
SENSITIVE: []
|
198
209
|
end
|
199
210
|
|
211
|
+
class ExperimentReport
|
212
|
+
attr_accessor state: Types::ExperimentReportState
|
213
|
+
attr_accessor s3_reports: ::Array[Types::ExperimentReportS3Report]
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class ExperimentReportConfiguration
|
218
|
+
attr_accessor outputs: Types::ExperimentReportConfigurationOutputs
|
219
|
+
attr_accessor data_sources: Types::ExperimentReportConfigurationDataSources
|
220
|
+
attr_accessor pre_experiment_duration: ::String
|
221
|
+
attr_accessor post_experiment_duration: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class ExperimentReportConfigurationCloudWatchDashboard
|
226
|
+
attr_accessor dashboard_identifier: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class ExperimentReportConfigurationDataSources
|
231
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::ExperimentReportConfigurationCloudWatchDashboard]
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class ExperimentReportConfigurationOutputs
|
236
|
+
attr_accessor s3_configuration: Types::ExperimentReportConfigurationOutputsS3Configuration
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class ExperimentReportConfigurationOutputsS3Configuration
|
241
|
+
attr_accessor bucket_name: ::String
|
242
|
+
attr_accessor prefix: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class ExperimentReportError
|
247
|
+
attr_accessor code: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class ExperimentReportS3Report
|
252
|
+
attr_accessor arn: ::String
|
253
|
+
attr_accessor report_type: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class ExperimentReportState
|
258
|
+
attr_accessor status: ("pending" | "running" | "completed" | "cancelled" | "failed")
|
259
|
+
attr_accessor reason: ::String
|
260
|
+
attr_accessor error: Types::ExperimentReportError
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
200
264
|
class ExperimentS3LogConfiguration
|
201
265
|
attr_accessor bucket_name: ::String
|
202
266
|
attr_accessor prefix: ::String
|
@@ -271,6 +335,7 @@ module Aws::FIS
|
|
271
335
|
attr_accessor log_configuration: Types::ExperimentTemplateLogConfiguration
|
272
336
|
attr_accessor experiment_options: Types::ExperimentTemplateExperimentOptions
|
273
337
|
attr_accessor target_account_configurations_count: ::Integer
|
338
|
+
attr_accessor experiment_report_configuration: Types::ExperimentTemplateReportConfiguration
|
274
339
|
SENSITIVE: []
|
275
340
|
end
|
276
341
|
|
@@ -306,6 +371,39 @@ module Aws::FIS
|
|
306
371
|
SENSITIVE: []
|
307
372
|
end
|
308
373
|
|
374
|
+
class ExperimentTemplateReportConfiguration
|
375
|
+
attr_accessor outputs: Types::ExperimentTemplateReportConfigurationOutputs
|
376
|
+
attr_accessor data_sources: Types::ExperimentTemplateReportConfigurationDataSources
|
377
|
+
attr_accessor pre_experiment_duration: ::String
|
378
|
+
attr_accessor post_experiment_duration: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class ExperimentTemplateReportConfigurationCloudWatchDashboard
|
383
|
+
attr_accessor dashboard_identifier: ::String
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class ExperimentTemplateReportConfigurationDataSources
|
388
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::ExperimentTemplateReportConfigurationCloudWatchDashboard]
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class ExperimentTemplateReportConfigurationDataSourcesInput
|
393
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::ReportConfigurationCloudWatchDashboardInput]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class ExperimentTemplateReportConfigurationOutputs
|
398
|
+
attr_accessor s3_configuration: Types::ReportConfigurationS3Output
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class ExperimentTemplateReportConfigurationOutputsInput
|
403
|
+
attr_accessor s3_configuration: Types::ReportConfigurationS3OutputInput
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
309
407
|
class ExperimentTemplateS3LogConfiguration
|
310
408
|
attr_accessor bucket_name: ::String
|
311
409
|
attr_accessor prefix: ::String
|
@@ -526,6 +624,23 @@ module Aws::FIS
|
|
526
624
|
SENSITIVE: []
|
527
625
|
end
|
528
626
|
|
627
|
+
class ReportConfigurationCloudWatchDashboardInput
|
628
|
+
attr_accessor dashboard_identifier: ::String
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class ReportConfigurationS3Output
|
633
|
+
attr_accessor bucket_name: ::String
|
634
|
+
attr_accessor prefix: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class ReportConfigurationS3OutputInput
|
639
|
+
attr_accessor bucket_name: ::String
|
640
|
+
attr_accessor prefix: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
529
644
|
class ResolvedTarget
|
530
645
|
attr_accessor resource_type: ::String
|
531
646
|
attr_accessor target_name: ::String
|
@@ -656,6 +771,14 @@ module Aws::FIS
|
|
656
771
|
SENSITIVE: []
|
657
772
|
end
|
658
773
|
|
774
|
+
class UpdateExperimentTemplateReportConfigurationInput
|
775
|
+
attr_accessor outputs: Types::ExperimentTemplateReportConfigurationOutputsInput
|
776
|
+
attr_accessor data_sources: Types::ExperimentTemplateReportConfigurationDataSourcesInput
|
777
|
+
attr_accessor pre_experiment_duration: ::String
|
778
|
+
attr_accessor post_experiment_duration: ::String
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
659
782
|
class UpdateExperimentTemplateRequest
|
660
783
|
attr_accessor id: ::String
|
661
784
|
attr_accessor description: ::String
|
@@ -665,6 +788,7 @@ module Aws::FIS
|
|
665
788
|
attr_accessor role_arn: ::String
|
666
789
|
attr_accessor log_configuration: Types::UpdateExperimentTemplateLogConfigurationInput
|
667
790
|
attr_accessor experiment_options: Types::UpdateExperimentTemplateExperimentOptionsInput
|
791
|
+
attr_accessor experiment_report_configuration: Types::UpdateExperimentTemplateReportConfigurationInput
|
668
792
|
SENSITIVE: []
|
669
793
|
end
|
670
794
|
|
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.44.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: 2024-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|