aws-sdk-forecastservice 1.65.0 → 1.67.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-forecastservice/client.rb +43 -21
- data/lib/aws-sdk-forecastservice/types.rb +33 -33
- data/lib/aws-sdk-forecastservice.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bc19d9dec59acd719c4f1db3df581f257f804bf176b64eb3dbb5d641d92a182
|
4
|
+
data.tar.gz: 8b951334488bbd916fbbfb33088e48012275cb268b0b650849745c50295cc415
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86725857ec98c94c9753bd4c66bed4b450eb3849c1b459c634d865a6ef34bdc86b00dae4242c32d0585c4038d30d81731731f9e94c4f4a73da4a8f33a452755d
|
7
|
+
data.tar.gz: 9bb715aa5d0e05bb2be018b71a75167f79e046933a7f325da1d9c52a6532484afb77f01d0633609011083657ca34cdbc9ef6a535b8be80af5a6c81a82dd11fda
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.66.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.65.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
@@ -257,11 +257,34 @@ module Aws::ForecastService
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -4091,8 +4114,8 @@ module Aws::ForecastService
|
|
4091
4114
|
# For example, to list all dataset import jobs whose status is ACTIVE,
|
4092
4115
|
# you specify the following filter:
|
4093
4116
|
#
|
4094
|
-
# `"Filters": [
|
4095
|
-
#
|
4117
|
+
# `"Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE"
|
4118
|
+
# } ]`
|
4096
4119
|
#
|
4097
4120
|
# @return [Types::ListDatasetImportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4098
4121
|
#
|
@@ -4383,8 +4406,8 @@ module Aws::ForecastService
|
|
4383
4406
|
# For example, to list all jobs that export a forecast named
|
4384
4407
|
# *electricityforecast*, specify the following filter:
|
4385
4408
|
#
|
4386
|
-
# `"Filters": [
|
4387
|
-
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityforecast"
|
4409
|
+
# `"Filters": [ { "Condition": "IS", "Key": "ForecastArn", "Value":
|
4410
|
+
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityforecast" }
|
4388
4411
|
# ]`
|
4389
4412
|
#
|
4390
4413
|
# @return [Types::ListForecastExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -4466,8 +4489,8 @@ module Aws::ForecastService
|
|
4466
4489
|
# For example, to list all forecasts whose status is not ACTIVE, you
|
4467
4490
|
# would specify:
|
4468
4491
|
#
|
4469
|
-
# `"Filters": [
|
4470
|
-
# "ACTIVE"
|
4492
|
+
# `"Filters": [ { "Condition": "IS_NOT", "Key": "Status", "Value":
|
4493
|
+
# "ACTIVE" } ]`
|
4471
4494
|
#
|
4472
4495
|
# @return [Types::ListForecastsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4473
4496
|
#
|
@@ -4557,8 +4580,8 @@ module Aws::ForecastService
|
|
4557
4580
|
# For example, to list only successful monitor evaluations, you would
|
4558
4581
|
# specify:
|
4559
4582
|
#
|
4560
|
-
# `"Filters": [
|
4561
|
-
# "SUCCESS"
|
4583
|
+
# `"Filters": [ { "Condition": "IS", "Key": "EvaluationState", "Value":
|
4584
|
+
# "SUCCESS" } ]`
|
4562
4585
|
#
|
4563
4586
|
# @return [Types::ListMonitorEvaluationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4564
4587
|
#
|
@@ -4646,8 +4669,8 @@ module Aws::ForecastService
|
|
4646
4669
|
# For example, to list all monitors who's status is ACTIVE, you would
|
4647
4670
|
# specify:
|
4648
4671
|
#
|
4649
|
-
# `"Filters": [
|
4650
|
-
#
|
4672
|
+
# `"Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE"
|
4673
|
+
# } ]`
|
4651
4674
|
#
|
4652
4675
|
# @return [Types::ListMonitorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4653
4676
|
#
|
@@ -4807,8 +4830,8 @@ module Aws::ForecastService
|
|
4807
4830
|
# For example, to list all predictors whose status is ACTIVE, you would
|
4808
4831
|
# specify:
|
4809
4832
|
#
|
4810
|
-
# `"Filters": [
|
4811
|
-
#
|
4833
|
+
# `"Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE"
|
4834
|
+
# } ]`
|
4812
4835
|
#
|
4813
4836
|
# @return [Types::ListPredictorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4814
4837
|
#
|
@@ -4923,10 +4946,9 @@ module Aws::ForecastService
|
|
4923
4946
|
# For example, to list all jobs that export a forecast named
|
4924
4947
|
# *electricityWhatIf*, specify the following filter:
|
4925
4948
|
#
|
4926
|
-
# `"Filters": [
|
4949
|
+
# `"Filters": [ { "Condition": "IS", "Key": "WhatIfAnalysisArn",
|
4927
4950
|
# "Value":
|
4928
|
-
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf"
|
4929
|
-
# ]`
|
4951
|
+
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf" } ]`
|
4930
4952
|
#
|
4931
4953
|
# @return [Types::ListWhatIfAnalysesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4932
4954
|
#
|
@@ -5007,10 +5029,10 @@ module Aws::ForecastService
|
|
5007
5029
|
# For example, to list all jobs that export a forecast named
|
5008
5030
|
# *electricityWIFExport*, specify the following filter:
|
5009
5031
|
#
|
5010
|
-
# `"Filters": [
|
5032
|
+
# `"Filters": [ { "Condition": "IS", "Key": "WhatIfForecastExportArn",
|
5011
5033
|
# "Value":
|
5012
|
-
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWIFExport"
|
5013
|
-
#
|
5034
|
+
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWIFExport" }
|
5035
|
+
# ]`
|
5014
5036
|
#
|
5015
5037
|
# @return [Types::ListWhatIfForecastExportsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5016
5038
|
#
|
@@ -5095,10 +5117,10 @@ module Aws::ForecastService
|
|
5095
5117
|
# For example, to list all jobs that export a forecast named
|
5096
5118
|
# *electricityWhatIfForecast*, specify the following filter:
|
5097
5119
|
#
|
5098
|
-
# `"Filters": [
|
5120
|
+
# `"Filters": [ { "Condition": "IS", "Key": "WhatIfForecastArn",
|
5099
5121
|
# "Value":
|
5100
5122
|
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIfForecast"
|
5101
|
-
#
|
5123
|
+
# } ]`
|
5102
5124
|
#
|
5103
5125
|
# @return [Types::ListWhatIfForecastsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5104
5126
|
#
|
@@ -5355,7 +5377,7 @@ module Aws::ForecastService
|
|
5355
5377
|
tracer: tracer
|
5356
5378
|
)
|
5357
5379
|
context[:gem_name] = 'aws-sdk-forecastservice'
|
5358
|
-
context[:gem_version] = '1.
|
5380
|
+
context[:gem_version] = '1.67.0'
|
5359
5381
|
Seahorse::Client::Request.new(handlers, context)
|
5360
5382
|
end
|
5361
5383
|
|
@@ -241,14 +241,14 @@ module Aws::ForecastService
|
|
241
241
|
#
|
242
242
|
# The following is an example using the RETAIL domain:
|
243
243
|
#
|
244
|
-
#
|
244
|
+
# `{`
|
245
245
|
#
|
246
246
|
# `"AttributeName": "demand",`
|
247
247
|
#
|
248
|
-
# `"Transformations":
|
249
|
-
# "backfill": "zero"
|
248
|
+
# `"Transformations": {"aggregation": "sum", "middlefill": "zero",
|
249
|
+
# "backfill": "zero"}`
|
250
250
|
#
|
251
|
-
#
|
251
|
+
# `}`
|
252
252
|
#
|
253
253
|
# @!attribute [rw] attribute_name
|
254
254
|
# The name of the attribute as specified in the schema. Amazon
|
@@ -4122,20 +4122,20 @@ module Aws::ForecastService
|
|
4122
4122
|
#
|
4123
4123
|
# For example:
|
4124
4124
|
#
|
4125
|
-
#
|
4125
|
+
# `{`
|
4126
4126
|
#
|
4127
4127
|
# `"AttributeName": "demand",`
|
4128
4128
|
#
|
4129
|
-
# `FeaturizationPipeline [
|
4129
|
+
# `FeaturizationPipeline [ {`
|
4130
4130
|
#
|
4131
4131
|
# `"FeaturizationMethodName": "filling",`
|
4132
4132
|
#
|
4133
|
-
# `"FeaturizationMethodParameters":
|
4134
|
-
# "nan"
|
4133
|
+
# `"FeaturizationMethodParameters": {"aggregation": "avg", "backfill":
|
4134
|
+
# "nan"}`
|
4135
4135
|
#
|
4136
|
-
#
|
4136
|
+
# `} ]`
|
4137
4137
|
#
|
4138
|
-
#
|
4138
|
+
# `}`
|
4139
4139
|
#
|
4140
4140
|
# @!attribute [rw] attribute_name
|
4141
4141
|
# The name of the schema attribute that specifies the data field to be
|
@@ -4252,14 +4252,14 @@ module Aws::ForecastService
|
|
4252
4252
|
# The following is an example of how you specify a `FeaturizationMethod`
|
4253
4253
|
# object.
|
4254
4254
|
#
|
4255
|
-
#
|
4255
|
+
# `{`
|
4256
4256
|
#
|
4257
4257
|
# `"FeaturizationMethodName": "filling",`
|
4258
4258
|
#
|
4259
|
-
# `"FeaturizationMethodParameters":
|
4260
|
-
# "
|
4259
|
+
# `"FeaturizationMethodParameters": {"aggregation": "sum", "middlefill":
|
4260
|
+
# "zero", "backfill": "zero"}`
|
4261
4261
|
#
|
4262
|
-
#
|
4262
|
+
# `}`
|
4263
4263
|
#
|
4264
4264
|
# @!attribute [rw] featurization_method_name
|
4265
4265
|
# The name of the method. The "filling" method is the only supported
|
@@ -4768,8 +4768,8 @@ module Aws::ForecastService
|
|
4768
4768
|
# For example, to list all dataset import jobs whose status is ACTIVE,
|
4769
4769
|
# you specify the following filter:
|
4770
4770
|
#
|
4771
|
-
# `"Filters": [
|
4772
|
-
# "ACTIVE"
|
4771
|
+
# `"Filters": [ { "Condition": "IS", "Key": "Status", "Value":
|
4772
|
+
# "ACTIVE" } ]`
|
4773
4773
|
# @return [Array<Types::Filter>]
|
4774
4774
|
#
|
4775
4775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListDatasetImportJobsRequest AWS API Documentation
|
@@ -4984,9 +4984,9 @@ module Aws::ForecastService
|
|
4984
4984
|
# For example, to list all jobs that export a forecast named
|
4985
4985
|
# *electricityforecast*, specify the following filter:
|
4986
4986
|
#
|
4987
|
-
# `"Filters": [
|
4987
|
+
# `"Filters": [ { "Condition": "IS", "Key": "ForecastArn", "Value":
|
4988
4988
|
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityforecast"
|
4989
|
-
#
|
4989
|
+
# } ]`
|
4990
4990
|
# @return [Array<Types::Filter>]
|
4991
4991
|
#
|
4992
4992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListForecastExportJobsRequest AWS API Documentation
|
@@ -5048,8 +5048,8 @@ module Aws::ForecastService
|
|
5048
5048
|
# For example, to list all forecasts whose status is not ACTIVE, you
|
5049
5049
|
# would specify:
|
5050
5050
|
#
|
5051
|
-
# `"Filters": [
|
5052
|
-
# "ACTIVE"
|
5051
|
+
# `"Filters": [ { "Condition": "IS_NOT", "Key": "Status", "Value":
|
5052
|
+
# "ACTIVE" } ]`
|
5053
5053
|
# @return [Array<Types::Filter>]
|
5054
5054
|
#
|
5055
5055
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListForecastsRequest AWS API Documentation
|
@@ -5116,8 +5116,8 @@ module Aws::ForecastService
|
|
5116
5116
|
# For example, to list only successful monitor evaluations, you would
|
5117
5117
|
# specify:
|
5118
5118
|
#
|
5119
|
-
# `"Filters": [
|
5120
|
-
# "Value": "SUCCESS"
|
5119
|
+
# `"Filters": [ { "Condition": "IS", "Key": "EvaluationState",
|
5120
|
+
# "Value": "SUCCESS" } ]`
|
5121
5121
|
# @return [Array<Types::Filter>]
|
5122
5122
|
#
|
5123
5123
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListMonitorEvaluationsRequest AWS API Documentation
|
@@ -5189,8 +5189,8 @@ module Aws::ForecastService
|
|
5189
5189
|
# For example, to list all monitors who's status is ACTIVE, you would
|
5190
5190
|
# specify:
|
5191
5191
|
#
|
5192
|
-
# `"Filters": [
|
5193
|
-
# "ACTIVE"
|
5192
|
+
# `"Filters": [ { "Condition": "IS", "Key": "Status", "Value":
|
5193
|
+
# "ACTIVE" } ]`
|
5194
5194
|
# @return [Array<Types::Filter>]
|
5195
5195
|
#
|
5196
5196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListMonitorsRequest AWS API Documentation
|
@@ -5311,8 +5311,8 @@ module Aws::ForecastService
|
|
5311
5311
|
# For example, to list all predictors whose status is ACTIVE, you
|
5312
5312
|
# would specify:
|
5313
5313
|
#
|
5314
|
-
# `"Filters": [
|
5315
|
-
# "ACTIVE"
|
5314
|
+
# `"Filters": [ { "Condition": "IS", "Key": "Status", "Value":
|
5315
|
+
# "ACTIVE" } ]`
|
5316
5316
|
# @return [Array<Types::Filter>]
|
5317
5317
|
#
|
5318
5318
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListPredictorsRequest AWS API Documentation
|
@@ -5400,9 +5400,9 @@ module Aws::ForecastService
|
|
5400
5400
|
# For example, to list all jobs that export a forecast named
|
5401
5401
|
# *electricityWhatIf*, specify the following filter:
|
5402
5402
|
#
|
5403
|
-
# `"Filters": [
|
5403
|
+
# `"Filters": [ { "Condition": "IS", "Key": "WhatIfAnalysisArn",
|
5404
5404
|
# "Value":
|
5405
|
-
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf"
|
5405
|
+
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf" }
|
5406
5406
|
# ]`
|
5407
5407
|
# @return [Array<Types::Filter>]
|
5408
5408
|
#
|
@@ -5467,10 +5467,10 @@ module Aws::ForecastService
|
|
5467
5467
|
# For example, to list all jobs that export a forecast named
|
5468
5468
|
# *electricityWIFExport*, specify the following filter:
|
5469
5469
|
#
|
5470
|
-
# `"Filters": [
|
5471
|
-
# "
|
5470
|
+
# `"Filters": [ { "Condition": "IS", "Key": "WhatIfForecastExportArn",
|
5471
|
+
# "Value":
|
5472
5472
|
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWIFExport"
|
5473
|
-
#
|
5473
|
+
# } ]`
|
5474
5474
|
# @return [Array<Types::Filter>]
|
5475
5475
|
#
|
5476
5476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListWhatIfForecastExportsRequest AWS API Documentation
|
@@ -5534,10 +5534,10 @@ module Aws::ForecastService
|
|
5534
5534
|
# For example, to list all jobs that export a forecast named
|
5535
5535
|
# *electricityWhatIfForecast*, specify the following filter:
|
5536
5536
|
#
|
5537
|
-
# `"Filters": [
|
5537
|
+
# `"Filters": [ { "Condition": "IS", "Key": "WhatIfForecastArn",
|
5538
5538
|
# "Value":
|
5539
5539
|
# "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIfForecast"
|
5540
|
-
#
|
5540
|
+
# } ]`
|
5541
5541
|
# @return [Array<Types::Filter>]
|
5542
5542
|
#
|
5543
5543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListWhatIfForecastsRequest AWS API Documentation
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-forecastservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.67.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:
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|