aws-sdk-emr 1.111.0 → 1.113.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-emr/client.rb +31 -11
- data/lib/aws-sdk-emr/client_api.rb +4 -0
- data/lib/aws-sdk-emr/types.rb +24 -5
- data/lib/aws-sdk-emr.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +4 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 349738f32a698f5f4c0ddd1ac5acffd1ac187d485be05a1c1176e1b5f3cb1b23
|
4
|
+
data.tar.gz: 8cc5402d01488ba00eb8f47cabad0507b9cc671b49034ac1d64df503331bb382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0edce3dd2bba79ea356005d305a9d1e8baf944bb877835d45241987412af779cce977e5ce9d078796a0b55b0beaebe8749b3c73dfe6496590c4604f87487ebd
|
7
|
+
data.tar.gz: ef2e723d1d58814e6152f1d2237f1da5c10fdf2a888908ff32329a3aaabdf050156247b2c6311946c9e5f4b7f1f1502c4795308f9874dfa47763cc04629e3207
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.113.0 (2025-07-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds new parameter 'ExtendedSupport' in AWS EMR RunJobFlow, ModifyCluster and DescribeCluster API.
|
8
|
+
|
9
|
+
1.112.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.111.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.113.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::EMR
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::EMR
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::EMR
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::EMR
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::EMR
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -893,8 +903,7 @@ module Aws::EMR
|
|
893
903
|
# The cross reference for the persistent application user interface.
|
894
904
|
#
|
895
905
|
# @option params [String] :profiler_type
|
896
|
-
# The profiler type for the persistent application user interface.
|
897
|
-
# values are SHS, TEZUI, or YTS.
|
906
|
+
# The profiler type for the persistent application user interface.
|
898
907
|
#
|
899
908
|
# @return [Types::CreatePersistentAppUIOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
900
909
|
#
|
@@ -1368,6 +1377,7 @@ module Aws::EMR
|
|
1368
1377
|
# resp.cluster.os_release_label #=> String
|
1369
1378
|
# resp.cluster.ebs_root_volume_iops #=> Integer
|
1370
1379
|
# resp.cluster.ebs_root_volume_throughput #=> Integer
|
1380
|
+
# resp.cluster.extended_support #=> Boolean
|
1371
1381
|
#
|
1372
1382
|
#
|
1373
1383
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2899,20 +2909,26 @@ module Aws::EMR
|
|
2899
2909
|
# `ActionOnFailure` setting may not behave as expected. For more
|
2900
2910
|
# information see Step$ActionOnFailure.
|
2901
2911
|
#
|
2912
|
+
# @option params [Boolean] :extended_support
|
2913
|
+
# Reserved.
|
2914
|
+
#
|
2902
2915
|
# @return [Types::ModifyClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2903
2916
|
#
|
2904
2917
|
# * {Types::ModifyClusterOutput#step_concurrency_level #step_concurrency_level} => Integer
|
2918
|
+
# * {Types::ModifyClusterOutput#extended_support #extended_support} => Boolean
|
2905
2919
|
#
|
2906
2920
|
# @example Request syntax with placeholder values
|
2907
2921
|
#
|
2908
2922
|
# resp = client.modify_cluster({
|
2909
2923
|
# cluster_id: "String", # required
|
2910
2924
|
# step_concurrency_level: 1,
|
2925
|
+
# extended_support: false,
|
2911
2926
|
# })
|
2912
2927
|
#
|
2913
2928
|
# @example Response structure
|
2914
2929
|
#
|
2915
2930
|
# resp.step_concurrency_level #=> Integer
|
2931
|
+
# resp.extended_support #=> Boolean
|
2916
2932
|
#
|
2917
2933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyCluster AWS API Documentation
|
2918
2934
|
#
|
@@ -3713,6 +3729,9 @@ module Aws::EMR
|
|
3713
3729
|
# Linux AMI that is used for each Amazon EC2 instance. Available in
|
3714
3730
|
# Amazon EMR releases 6.15.0 and later.
|
3715
3731
|
#
|
3732
|
+
# @option params [Boolean] :extended_support
|
3733
|
+
# Reserved.
|
3734
|
+
#
|
3716
3735
|
# @return [Types::RunJobFlowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3717
3736
|
#
|
3718
3737
|
# * {Types::RunJobFlowOutput#job_flow_id #job_flow_id} => String
|
@@ -3997,6 +4016,7 @@ module Aws::EMR
|
|
3997
4016
|
# os_release_label: "XmlStringMaxLen256",
|
3998
4017
|
# ebs_root_volume_iops: 1,
|
3999
4018
|
# ebs_root_volume_throughput: 1,
|
4019
|
+
# extended_support: false,
|
4000
4020
|
# })
|
4001
4021
|
#
|
4002
4022
|
# @example Response structure
|
@@ -4497,7 +4517,7 @@ module Aws::EMR
|
|
4497
4517
|
tracer: tracer
|
4498
4518
|
)
|
4499
4519
|
context[:gem_name] = 'aws-sdk-emr'
|
4500
|
-
context[:gem_version] = '1.
|
4520
|
+
context[:gem_version] = '1.113.0'
|
4501
4521
|
Seahorse::Client::Request.new(handlers, context)
|
4502
4522
|
end
|
4503
4523
|
|
@@ -501,6 +501,7 @@ module Aws::EMR
|
|
501
501
|
Cluster.add_member(:os_release_label, Shapes::ShapeRef.new(shape: String, location_name: "OSReleaseLabel"))
|
502
502
|
Cluster.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
|
503
503
|
Cluster.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
|
504
|
+
Cluster.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
|
504
505
|
Cluster.struct_class = Types::Cluster
|
505
506
|
|
506
507
|
ClusterStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ClusterStateChangeReasonCode, location_name: "Code"))
|
@@ -1225,9 +1226,11 @@ module Aws::EMR
|
|
1225
1226
|
|
1226
1227
|
ModifyClusterInput.add_member(:cluster_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterId"))
|
1227
1228
|
ModifyClusterInput.add_member(:step_concurrency_level, Shapes::ShapeRef.new(shape: Integer, location_name: "StepConcurrencyLevel"))
|
1229
|
+
ModifyClusterInput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
|
1228
1230
|
ModifyClusterInput.struct_class = Types::ModifyClusterInput
|
1229
1231
|
|
1230
1232
|
ModifyClusterOutput.add_member(:step_concurrency_level, Shapes::ShapeRef.new(shape: Integer, location_name: "StepConcurrencyLevel"))
|
1233
|
+
ModifyClusterOutput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
|
1231
1234
|
ModifyClusterOutput.struct_class = Types::ModifyClusterOutput
|
1232
1235
|
|
1233
1236
|
ModifyInstanceFleetInput.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, required: true, location_name: "ClusterId"))
|
@@ -1419,6 +1422,7 @@ module Aws::EMR
|
|
1419
1422
|
RunJobFlowInput.add_member(:os_release_label, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "OSReleaseLabel"))
|
1420
1423
|
RunJobFlowInput.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
|
1421
1424
|
RunJobFlowInput.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
|
1425
|
+
RunJobFlowInput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
|
1422
1426
|
RunJobFlowInput.struct_class = Types::RunJobFlowInput
|
1423
1427
|
|
1424
1428
|
RunJobFlowOutput.add_member(:job_flow_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "JobFlowId"))
|
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -794,6 +794,10 @@ module Aws::EMR
|
|
794
794
|
# in Amazon EMR releases 6.15.0 and later.
|
795
795
|
# @return [Integer]
|
796
796
|
#
|
797
|
+
# @!attribute [rw] extended_support
|
798
|
+
# Reserved.
|
799
|
+
# @return [Boolean]
|
800
|
+
#
|
797
801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster AWS API Documentation
|
798
802
|
#
|
799
803
|
class Cluster < Struct.new(
|
@@ -830,7 +834,8 @@ module Aws::EMR
|
|
830
834
|
:placement_groups,
|
831
835
|
:os_release_label,
|
832
836
|
:ebs_root_volume_iops,
|
833
|
-
:ebs_root_volume_throughput
|
837
|
+
:ebs_root_volume_throughput,
|
838
|
+
:extended_support)
|
834
839
|
SENSITIVE = []
|
835
840
|
include Aws::Structure
|
836
841
|
end
|
@@ -1090,7 +1095,6 @@ module Aws::EMR
|
|
1090
1095
|
#
|
1091
1096
|
# @!attribute [rw] profiler_type
|
1092
1097
|
# The profiler type for the persistent application user interface.
|
1093
|
-
# Valid values are SHS, TEZUI, or YTS.
|
1094
1098
|
# @return [String]
|
1095
1099
|
#
|
1096
1100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreatePersistentAppUIInput AWS API Documentation
|
@@ -4729,11 +4733,16 @@ module Aws::EMR
|
|
4729
4733
|
# information see Step$ActionOnFailure.
|
4730
4734
|
# @return [Integer]
|
4731
4735
|
#
|
4736
|
+
# @!attribute [rw] extended_support
|
4737
|
+
# Reserved.
|
4738
|
+
# @return [Boolean]
|
4739
|
+
#
|
4732
4740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyClusterInput AWS API Documentation
|
4733
4741
|
#
|
4734
4742
|
class ModifyClusterInput < Struct.new(
|
4735
4743
|
:cluster_id,
|
4736
|
-
:step_concurrency_level
|
4744
|
+
:step_concurrency_level,
|
4745
|
+
:extended_support)
|
4737
4746
|
SENSITIVE = []
|
4738
4747
|
include Aws::Structure
|
4739
4748
|
end
|
@@ -4742,10 +4751,15 @@ module Aws::EMR
|
|
4742
4751
|
# The number of steps that can be executed concurrently.
|
4743
4752
|
# @return [Integer]
|
4744
4753
|
#
|
4754
|
+
# @!attribute [rw] extended_support
|
4755
|
+
# Reserved.
|
4756
|
+
# @return [Boolean]
|
4757
|
+
#
|
4745
4758
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyClusterOutput AWS API Documentation
|
4746
4759
|
#
|
4747
4760
|
class ModifyClusterOutput < Struct.new(
|
4748
|
-
:step_concurrency_level
|
4761
|
+
:step_concurrency_level,
|
4762
|
+
:extended_support)
|
4749
4763
|
SENSITIVE = []
|
4750
4764
|
include Aws::Structure
|
4751
4765
|
end
|
@@ -5888,6 +5902,10 @@ module Aws::EMR
|
|
5888
5902
|
# in Amazon EMR releases 6.15.0 and later.
|
5889
5903
|
# @return [Integer]
|
5890
5904
|
#
|
5905
|
+
# @!attribute [rw] extended_support
|
5906
|
+
# Reserved.
|
5907
|
+
# @return [Boolean]
|
5908
|
+
#
|
5891
5909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput AWS API Documentation
|
5892
5910
|
#
|
5893
5911
|
class RunJobFlowInput < Struct.new(
|
@@ -5921,7 +5939,8 @@ module Aws::EMR
|
|
5921
5939
|
:auto_termination_policy,
|
5922
5940
|
:os_release_label,
|
5923
5941
|
:ebs_root_volume_iops,
|
5924
|
-
:ebs_root_volume_throughput
|
5942
|
+
:ebs_root_volume_throughput,
|
5943
|
+
:extended_support)
|
5925
5944
|
SENSITIVE = []
|
5926
5945
|
include Aws::Structure
|
5927
5946
|
end
|
data/lib/aws-sdk-emr.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -735,11 +736,13 @@ module Aws
|
|
735
736
|
interface _ModifyClusterResponseSuccess
|
736
737
|
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyClusterOutput]
|
737
738
|
def step_concurrency_level: () -> ::Integer
|
739
|
+
def extended_support: () -> bool
|
738
740
|
end
|
739
741
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMR/Client.html#modify_cluster-instance_method
|
740
742
|
def modify_cluster: (
|
741
743
|
cluster_id: ::String,
|
742
|
-
?step_concurrency_level: ::Integer
|
744
|
+
?step_concurrency_level: ::Integer,
|
745
|
+
?extended_support: bool
|
743
746
|
) -> _ModifyClusterResponseSuccess
|
744
747
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClusterResponseSuccess
|
745
748
|
|
@@ -1237,7 +1240,8 @@ module Aws
|
|
1237
1240
|
},
|
1238
1241
|
?os_release_label: ::String,
|
1239
1242
|
?ebs_root_volume_iops: ::Integer,
|
1240
|
-
?ebs_root_volume_throughput: ::Integer
|
1243
|
+
?ebs_root_volume_throughput: ::Integer,
|
1244
|
+
?extended_support: bool
|
1241
1245
|
) -> _RunJobFlowResponseSuccess
|
1242
1246
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunJobFlowResponseSuccess
|
1243
1247
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -183,6 +183,7 @@ module Aws::EMR
|
|
183
183
|
attr_accessor os_release_label: ::String
|
184
184
|
attr_accessor ebs_root_volume_iops: ::Integer
|
185
185
|
attr_accessor ebs_root_volume_throughput: ::Integer
|
186
|
+
attr_accessor extended_support: bool
|
186
187
|
SENSITIVE: []
|
187
188
|
end
|
188
189
|
|
@@ -1086,11 +1087,13 @@ module Aws::EMR
|
|
1086
1087
|
class ModifyClusterInput
|
1087
1088
|
attr_accessor cluster_id: ::String
|
1088
1089
|
attr_accessor step_concurrency_level: ::Integer
|
1090
|
+
attr_accessor extended_support: bool
|
1089
1091
|
SENSITIVE: []
|
1090
1092
|
end
|
1091
1093
|
|
1092
1094
|
class ModifyClusterOutput
|
1093
1095
|
attr_accessor step_concurrency_level: ::Integer
|
1096
|
+
attr_accessor extended_support: bool
|
1094
1097
|
SENSITIVE: []
|
1095
1098
|
end
|
1096
1099
|
|
@@ -1331,6 +1334,7 @@ module Aws::EMR
|
|
1331
1334
|
attr_accessor os_release_label: ::String
|
1332
1335
|
attr_accessor ebs_root_volume_iops: ::Integer
|
1333
1336
|
attr_accessor ebs_root_volume_throughput: ::Integer
|
1337
|
+
attr_accessor extended_support: bool
|
1334
1338
|
SENSITIVE: []
|
1335
1339
|
end
|
1336
1340
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.113.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|