aws-sdk-fis 1.46.0 → 1.47.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fis/client.rb +3 -3
- data/lib/aws-sdk-fis/client_api.rb +4 -3
- data/lib/aws-sdk-fis.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d35477d49ce1661c8aa76b210764f17cb6fdc8062614e73cd048dc8d79a679e2
|
4
|
+
data.tar.gz: 72467d1f11912dd961f2773093e9a5e22d236f4f84123b000a5d2046cc809e75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 181168ea9a6670582f7650f5402e65b7646626233ec314e0d9ace1c5149d5a60116fd44b9535634e26dba876ce3f6f9afd5641708559780645f2a282482c28d5
|
7
|
+
data.tar.gz: 1accd6a1526264433c16de800a886d5a6b054a6d8ef0b5c19d82c543fbd0f089e180b1c0c00b7852bfc79d4025ebbc724776883d9b91a82016a47d363004e8c9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2025-02-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds auto-pagination for the following operations: ListActions, ListExperimentTemplates, ListTargetAccountConfigurations, ListExperiments, ListExperimentResolvedTargets, ListTargetResourceTypes. Reduces length constraints of prefixes for logConfiguration and experimentReportConfiguration.
|
8
|
+
|
4
9
|
1.46.0 (2025-02-06)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
data/lib/aws-sdk-fis/client.rb
CHANGED
@@ -597,7 +597,7 @@ module Aws::FIS
|
|
597
597
|
# outputs: {
|
598
598
|
# s3_configuration: {
|
599
599
|
# bucket_name: "S3BucketName",
|
600
|
-
# prefix: "
|
600
|
+
# prefix: "ReportConfigurationS3OutputPrefix",
|
601
601
|
# },
|
602
602
|
# },
|
603
603
|
# data_sources: {
|
@@ -1866,7 +1866,7 @@ module Aws::FIS
|
|
1866
1866
|
# outputs: {
|
1867
1867
|
# s3_configuration: {
|
1868
1868
|
# bucket_name: "S3BucketName",
|
1869
|
-
# prefix: "
|
1869
|
+
# prefix: "ReportConfigurationS3OutputPrefix",
|
1870
1870
|
# },
|
1871
1871
|
# },
|
1872
1872
|
# data_sources: {
|
@@ -2038,7 +2038,7 @@ module Aws::FIS
|
|
2038
2038
|
tracer: tracer
|
2039
2039
|
)
|
2040
2040
|
context[:gem_name] = 'aws-sdk-fis'
|
2041
|
-
context[:gem_version] = '1.
|
2041
|
+
context[:gem_version] = '1.47.0'
|
2042
2042
|
Seahorse::Client::Request.new(handlers, context)
|
2043
2043
|
end
|
2044
2044
|
|
@@ -208,6 +208,7 @@ module Aws::FIS
|
|
208
208
|
ReportConfigurationDuration = Shapes::StringShape.new(name: 'ReportConfigurationDuration')
|
209
209
|
ReportConfigurationS3Output = Shapes::StructureShape.new(name: 'ReportConfigurationS3Output')
|
210
210
|
ReportConfigurationS3OutputInput = Shapes::StructureShape.new(name: 'ReportConfigurationS3OutputInput')
|
211
|
+
ReportConfigurationS3OutputPrefix = Shapes::StringShape.new(name: 'ReportConfigurationS3OutputPrefix')
|
211
212
|
ResolvedTarget = Shapes::StructureShape.new(name: 'ResolvedTarget')
|
212
213
|
ResolvedTargetList = Shapes::ListShape.new(name: 'ResolvedTargetList')
|
213
214
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
@@ -473,7 +474,7 @@ module Aws::FIS
|
|
473
474
|
ExperimentReportConfigurationOutputs.struct_class = Types::ExperimentReportConfigurationOutputs
|
474
475
|
|
475
476
|
ExperimentReportConfigurationOutputsS3Configuration.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
476
|
-
ExperimentReportConfigurationOutputsS3Configuration.add_member(:prefix, Shapes::ShapeRef.new(shape:
|
477
|
+
ExperimentReportConfigurationOutputsS3Configuration.add_member(:prefix, Shapes::ShapeRef.new(shape: ReportConfigurationS3OutputPrefix, location_name: "prefix"))
|
477
478
|
ExperimentReportConfigurationOutputsS3Configuration.struct_class = Types::ExperimentReportConfigurationOutputsS3Configuration
|
478
479
|
|
479
480
|
ExperimentReportError.add_member(:code, Shapes::ShapeRef.new(shape: ExperimentReportErrorCode, location_name: "code"))
|
@@ -790,11 +791,11 @@ module Aws::FIS
|
|
790
791
|
ReportConfigurationCloudWatchDashboardInputList.member = Shapes::ShapeRef.new(shape: ReportConfigurationCloudWatchDashboardInput)
|
791
792
|
|
792
793
|
ReportConfigurationS3Output.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
793
|
-
ReportConfigurationS3Output.add_member(:prefix, Shapes::ShapeRef.new(shape:
|
794
|
+
ReportConfigurationS3Output.add_member(:prefix, Shapes::ShapeRef.new(shape: ReportConfigurationS3OutputPrefix, location_name: "prefix"))
|
794
795
|
ReportConfigurationS3Output.struct_class = Types::ReportConfigurationS3Output
|
795
796
|
|
796
797
|
ReportConfigurationS3OutputInput.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
797
|
-
ReportConfigurationS3OutputInput.add_member(:prefix, Shapes::ShapeRef.new(shape:
|
798
|
+
ReportConfigurationS3OutputInput.add_member(:prefix, Shapes::ShapeRef.new(shape: ReportConfigurationS3OutputPrefix, location_name: "prefix"))
|
798
799
|
ReportConfigurationS3OutputInput.struct_class = Types::ReportConfigurationS3OutputInput
|
799
800
|
|
800
801
|
ResolvedTarget.add_member(:resource_type, Shapes::ShapeRef.new(shape: TargetResourceTypeId, location_name: "resourceType"))
|
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.47.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: 2025-02-
|
11
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|