aws-sdk-fis 1.46.0 → 1.47.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d35bda24fd6ee79c647fb4d6182596aab8db067b7282df0f3d56970db63dc943
4
- data.tar.gz: 3878ff7c0bb18a468fcb25c64ddec52ef1f6df4f1b176d96ed59704550f9cd95
3
+ metadata.gz: d35477d49ce1661c8aa76b210764f17cb6fdc8062614e73cd048dc8d79a679e2
4
+ data.tar.gz: 72467d1f11912dd961f2773093e9a5e22d236f4f84123b000a5d2046cc809e75
5
5
  SHA512:
6
- metadata.gz: c2afd6cae34c165df2231f29c865343bebd3c0e25b6e28e26fb11ab114d7d67cfb3259f8221d85f8a8211bd222ff63aff26b1b33c2d849a983b991c8935cf44a
7
- data.tar.gz: d6a7dcab654550740938a9eae40aba4902d18b9bcc1e911d059cec9a6cd53044e04cb9c9ee89c88d9acecf31ae77a3f65bcf47bc86bb65b45b8e7fecc5ec2d0e
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.46.0
1
+ 1.47.0
@@ -597,7 +597,7 @@ module Aws::FIS
597
597
  # outputs: {
598
598
  # s3_configuration: {
599
599
  # bucket_name: "S3BucketName",
600
- # prefix: "S3ObjectKey",
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: "S3ObjectKey",
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.46.0'
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: S3ObjectKey, location_name: "prefix"))
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: S3ObjectKey, location_name: "prefix"))
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: S3ObjectKey, location_name: "prefix"))
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
@@ -54,7 +54,7 @@ module Aws::FIS
54
54
  autoload :EndpointProvider, 'aws-sdk-fis/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-fis/endpoints'
56
56
 
57
- GEM_VERSION = '1.46.0'
57
+ GEM_VERSION = '1.47.0'
58
58
 
59
59
  end
60
60
 
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.46.0
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-06 00:00:00.000000000 Z
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