aws-sdk-elasticloadbalancingv2 1.65.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +18 -7
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +6 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +47 -18
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1760e9d2226a02600366db38b0912840d6e0a546e8e3513ee84556127ea53a88
|
4
|
+
data.tar.gz: e7dc23df5e5212cb31545ecea5d18903c0ec01eee79d95c24689cdac7af1da8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e375251d624f30b095d6a7a45b5c7088d2768ee97c19ed586b2e89598f06758e7d4f031086eceb003f075fa0e0d6b7ee692b3fc0627c3fbc145d0e1b9a33880
|
7
|
+
data.tar.gz: 28d9f6aa26cdccf4a1707946325a289e949b2afdb68f585e6b8b231523e3901e98661d27fc58cbc12914b00c49d4fd9c446e142eb2f67011b594b01d9390ce52
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.69.0 (2021-10-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Enable support for ALB IPv6 Target Groups (IP Address Type)
|
8
|
+
|
9
|
+
1.68.0 (2021-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds new ALB-type target group to facilitate forwarding traffic from NLB to ALB
|
13
|
+
|
14
|
+
1.67.0 (2021-09-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.66.0 (2021-07-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Client Port Preservation ALB Attribute Launch
|
23
|
+
|
4
24
|
1.65.0 (2021-07-28)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.69.0
|
@@ -1355,8 +1355,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1355
1355
|
# @option params [Boolean] :health_check_enabled
|
1356
1356
|
# Indicates whether health checks are enabled. If the target type is
|
1357
1357
|
# `lambda`, health checks are disabled by default but can be enabled. If
|
1358
|
-
# the target type is `instance` or `
|
1359
|
-
# enabled and cannot be disabled.
|
1358
|
+
# the target type is `instance`, `ip`, or `alb`, health checks are
|
1359
|
+
# always enabled and cannot be disabled.
|
1360
1360
|
#
|
1361
1361
|
# @option params [String] :health_check_path
|
1362
1362
|
# \[HTTP/HTTPS health checks\] The destination for health checks on the
|
@@ -1419,9 +1419,16 @@ module Aws::ElasticLoadBalancingV2
|
|
1419
1419
|
#
|
1420
1420
|
# * `lambda` - Register a single Lambda function as a target.
|
1421
1421
|
#
|
1422
|
+
# * `alb` - Register a single Application Load Balancer as a target.
|
1423
|
+
#
|
1422
1424
|
# @option params [Array<Types::Tag>] :tags
|
1423
1425
|
# The tags to assign to the target group.
|
1424
1426
|
#
|
1427
|
+
# @option params [String] :ip_address_type
|
1428
|
+
# The type of IP address used for this target group. The possible values
|
1429
|
+
# are `ipv4` and `ipv6`. This is an optional parameter. If not
|
1430
|
+
# specified, the IP address type defaults to `ipv4`.
|
1431
|
+
#
|
1425
1432
|
# @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1426
1433
|
#
|
1427
1434
|
# * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup>
|
@@ -1482,13 +1489,14 @@ module Aws::ElasticLoadBalancingV2
|
|
1482
1489
|
# http_code: "HttpCode",
|
1483
1490
|
# grpc_code: "GrpcCode",
|
1484
1491
|
# },
|
1485
|
-
# target_type: "instance", # accepts instance, ip, lambda
|
1492
|
+
# target_type: "instance", # accepts instance, ip, lambda, alb
|
1486
1493
|
# tags: [
|
1487
1494
|
# {
|
1488
1495
|
# key: "TagKey", # required
|
1489
1496
|
# value: "TagValue",
|
1490
1497
|
# },
|
1491
1498
|
# ],
|
1499
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6
|
1492
1500
|
# })
|
1493
1501
|
#
|
1494
1502
|
# @example Response structure
|
@@ -1511,8 +1519,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1511
1519
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
1512
1520
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
1513
1521
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
1514
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
1522
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
1515
1523
|
# resp.target_groups[0].protocol_version #=> String
|
1524
|
+
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
1516
1525
|
#
|
1517
1526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
|
1518
1527
|
#
|
@@ -2690,8 +2699,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2690
2699
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
2691
2700
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
2692
2701
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
2693
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
2702
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
2694
2703
|
# resp.target_groups[0].protocol_version #=> String
|
2704
|
+
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
2695
2705
|
# resp.next_marker #=> String
|
2696
2706
|
#
|
2697
2707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
|
@@ -3655,8 +3665,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3655
3665
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
3656
3666
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
3657
3667
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
3658
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
3668
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
3659
3669
|
# resp.target_groups[0].protocol_version #=> String
|
3670
|
+
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
3660
3671
|
#
|
3661
3672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
|
3662
3673
|
#
|
@@ -4272,7 +4283,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4272
4283
|
params: params,
|
4273
4284
|
config: config)
|
4274
4285
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4275
|
-
context[:gem_version] = '1.
|
4286
|
+
context[:gem_version] = '1.69.0'
|
4276
4287
|
Seahorse::Client::Request.new(handlers, context)
|
4277
4288
|
end
|
4278
4289
|
|
@@ -263,6 +263,7 @@ module Aws::ElasticLoadBalancingV2
|
|
263
263
|
TargetGroupAttributeKey = Shapes::StringShape.new(name: 'TargetGroupAttributeKey')
|
264
264
|
TargetGroupAttributeValue = Shapes::StringShape.new(name: 'TargetGroupAttributeValue')
|
265
265
|
TargetGroupAttributes = Shapes::ListShape.new(name: 'TargetGroupAttributes')
|
266
|
+
TargetGroupIpAddressTypeEnum = Shapes::StringShape.new(name: 'TargetGroupIpAddressTypeEnum')
|
266
267
|
TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
|
267
268
|
TargetGroupName = Shapes::StringShape.new(name: 'TargetGroupName')
|
268
269
|
TargetGroupNames = Shapes::ListShape.new(name: 'TargetGroupNames')
|
@@ -432,6 +433,7 @@ module Aws::ElasticLoadBalancingV2
|
|
432
433
|
CreateTargetGroupInput.add_member(:matcher, Shapes::ShapeRef.new(shape: Matcher, location_name: "Matcher"))
|
433
434
|
CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
434
435
|
CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
436
|
+
CreateTargetGroupInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
|
435
437
|
CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
|
436
438
|
|
437
439
|
CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
|
@@ -891,6 +893,7 @@ module Aws::ElasticLoadBalancingV2
|
|
891
893
|
TargetGroup.add_member(:load_balancer_arns, Shapes::ShapeRef.new(shape: LoadBalancerArns, location_name: "LoadBalancerArns"))
|
892
894
|
TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
893
895
|
TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
|
896
|
+
TargetGroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
|
894
897
|
TargetGroup.struct_class = Types::TargetGroup
|
895
898
|
|
896
899
|
TargetGroupArns.member = Shapes::ShapeRef.new(shape: TargetGroupArn)
|
@@ -992,6 +995,8 @@ module Aws::ElasticLoadBalancingV2
|
|
992
995
|
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
993
996
|
o.errors << Shapes::ShapeRef.new(shape: LoadBalancerNotFoundException)
|
994
997
|
o.errors << Shapes::ShapeRef.new(shape: TargetGroupNotFoundException)
|
998
|
+
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
999
|
+
o.errors << Shapes::ShapeRef.new(shape: RuleNotFoundException)
|
995
1000
|
end)
|
996
1001
|
|
997
1002
|
api.add_operation(:create_listener, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1083,6 +1088,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1083
1088
|
o.input = Shapes::ShapeRef.new(shape: DeleteListenerInput)
|
1084
1089
|
o.output = Shapes::ShapeRef.new(shape: DeleteListenerOutput)
|
1085
1090
|
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1091
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1086
1092
|
end)
|
1087
1093
|
|
1088
1094
|
api.add_operation(:delete_load_balancer, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1027,13 +1027,14 @@ module Aws::ElasticLoadBalancingV2
|
|
1027
1027
|
# http_code: "HttpCode",
|
1028
1028
|
# grpc_code: "GrpcCode",
|
1029
1029
|
# },
|
1030
|
-
# target_type: "instance", # accepts instance, ip, lambda
|
1030
|
+
# target_type: "instance", # accepts instance, ip, lambda, alb
|
1031
1031
|
# tags: [
|
1032
1032
|
# {
|
1033
1033
|
# key: "TagKey", # required
|
1034
1034
|
# value: "TagValue",
|
1035
1035
|
# },
|
1036
1036
|
# ],
|
1037
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6
|
1037
1038
|
# }
|
1038
1039
|
#
|
1039
1040
|
# @!attribute [rw] name
|
@@ -1094,8 +1095,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1094
1095
|
# @!attribute [rw] health_check_enabled
|
1095
1096
|
# Indicates whether health checks are enabled. If the target type is
|
1096
1097
|
# `lambda`, health checks are disabled by default but can be enabled.
|
1097
|
-
# If the target type is `instance` or `
|
1098
|
-
# enabled and cannot be disabled.
|
1098
|
+
# If the target type is `instance`, `ip`, or `alb`, health checks are
|
1099
|
+
# always enabled and cannot be disabled.
|
1099
1100
|
# @return [Boolean]
|
1100
1101
|
#
|
1101
1102
|
# @!attribute [rw] health_check_path
|
@@ -1165,12 +1166,20 @@ module Aws::ElasticLoadBalancingV2
|
|
1165
1166
|
# can't specify publicly routable IP addresses.
|
1166
1167
|
#
|
1167
1168
|
# * `lambda` - Register a single Lambda function as a target.
|
1169
|
+
#
|
1170
|
+
# * `alb` - Register a single Application Load Balancer as a target.
|
1168
1171
|
# @return [String]
|
1169
1172
|
#
|
1170
1173
|
# @!attribute [rw] tags
|
1171
1174
|
# The tags to assign to the target group.
|
1172
1175
|
# @return [Array<Types::Tag>]
|
1173
1176
|
#
|
1177
|
+
# @!attribute [rw] ip_address_type
|
1178
|
+
# The type of IP address used for this target group. The possible
|
1179
|
+
# values are `ipv4` and `ipv6`. This is an optional parameter. If not
|
1180
|
+
# specified, the IP address type defaults to `ipv4`.
|
1181
|
+
# @return [String]
|
1182
|
+
#
|
1174
1183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroupInput AWS API Documentation
|
1175
1184
|
#
|
1176
1185
|
class CreateTargetGroupInput < Struct.new(
|
@@ -1189,7 +1198,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1189
1198
|
:unhealthy_threshold_count,
|
1190
1199
|
:matcher,
|
1191
1200
|
:target_type,
|
1192
|
-
:tags
|
1201
|
+
:tags,
|
1202
|
+
:ip_address_type)
|
1193
1203
|
SENSITIVE = []
|
1194
1204
|
include Aws::Structure
|
1195
1205
|
end
|
@@ -2399,22 +2409,27 @@ module Aws::ElasticLoadBalancingV2
|
|
2399
2409
|
# Both headers are in OpenSSL format. The possible values for the
|
2400
2410
|
# attribute are `true` and `false`. The default is `false`.
|
2401
2411
|
#
|
2412
|
+
# * `routing.http.xff_client_port.enabled` - Indicates whether the
|
2413
|
+
# `X-Forwarded-For` header should preserve the source port that the
|
2414
|
+
# client used to connect to the load balancer. The possible values
|
2415
|
+
# are `true` and `false`. The default is `false`.
|
2416
|
+
#
|
2402
2417
|
# * `routing.http2.enabled` - Indicates whether HTTP/2 is enabled. The
|
2403
|
-
#
|
2404
|
-
# Balancing requires that message header names contain
|
2405
|
-
# alphanumeric characters and hyphens.
|
2418
|
+
# possible values are `true` and `false`. The default is `true`.
|
2419
|
+
# Elastic Load Balancing requires that message header names contain
|
2420
|
+
# only alphanumeric characters and hyphens.
|
2406
2421
|
#
|
2407
2422
|
# * `waf.fail_open.enabled` - Indicates whether to allow a WAF-enabled
|
2408
2423
|
# load balancer to route requests to targets if it is unable to
|
2409
|
-
# forward the request to Amazon Web Services WAF. The
|
2410
|
-
# `true`
|
2424
|
+
# forward the request to Amazon Web Services WAF. The possible
|
2425
|
+
# values are `true` and `false`. The default is `false`.
|
2411
2426
|
#
|
2412
2427
|
# The following attribute is supported by Network Load Balancers and
|
2413
2428
|
# Gateway Load Balancers:
|
2414
2429
|
#
|
2415
2430
|
# * `load_balancing.cross_zone.enabled` - Indicates whether cross-zone
|
2416
|
-
# load balancing is enabled. The
|
2417
|
-
# default is `false`.
|
2431
|
+
# load balancing is enabled. The possible values are `true` and
|
2432
|
+
# `false`. The default is `false`.
|
2418
2433
|
#
|
2419
2434
|
# ^
|
2420
2435
|
# @return [String]
|
@@ -2482,6 +2497,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2482
2497
|
#
|
2483
2498
|
# For Network Load Balancers and Gateway Load Balancers, this must be
|
2484
2499
|
# "200–399".
|
2500
|
+
#
|
2501
|
+
# Note that when using shorthand syntax, some values such as commas
|
2502
|
+
# need to be escaped.
|
2485
2503
|
# @return [String]
|
2486
2504
|
#
|
2487
2505
|
# @!attribute [rw] grpc_code
|
@@ -3890,13 +3908,16 @@ module Aws::ElasticLoadBalancingV2
|
|
3890
3908
|
# The ID of the target. If the target type of the target group is
|
3891
3909
|
# `instance`, specify an instance ID. If the target type is `ip`,
|
3892
3910
|
# specify an IP address. If the target type is `lambda`, specify the
|
3893
|
-
# ARN of the Lambda function.
|
3911
|
+
# ARN of the Lambda function. If the target type is `alb`, specify the
|
3912
|
+
# ARN of the Application Load Balancer target.
|
3894
3913
|
# @return [String]
|
3895
3914
|
#
|
3896
3915
|
# @!attribute [rw] port
|
3897
3916
|
# The port on which the target is listening. If the target group
|
3898
|
-
# protocol is GENEVE, the supported port is 6081.
|
3899
|
-
#
|
3917
|
+
# protocol is GENEVE, the supported port is 6081. If the target type
|
3918
|
+
# is `alb`, the targeted Application Load Balancer must have at least
|
3919
|
+
# one listener whose port matches the target group port. Not used if
|
3920
|
+
# the target is a Lambda function.
|
3900
3921
|
# @return [Integer]
|
3901
3922
|
#
|
3902
3923
|
# @!attribute [rw] availability_zone
|
@@ -3906,7 +3927,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3906
3927
|
# load balancer.
|
3907
3928
|
#
|
3908
3929
|
# This parameter is not supported if the target type of the target
|
3909
|
-
# group is `instance`.
|
3930
|
+
# group is `instance` or `alb`.
|
3910
3931
|
#
|
3911
3932
|
# If the target type is `ip` and the IP address is in a subnet of the
|
3912
3933
|
# VPC for the target group, the Availability Zone is automatically
|
@@ -4004,8 +4025,9 @@ module Aws::ElasticLoadBalancingV2
|
|
4004
4025
|
# @!attribute [rw] target_type
|
4005
4026
|
# The type of target that you must specify when registering targets
|
4006
4027
|
# with this target group. The possible values are `instance` (register
|
4007
|
-
# targets by instance ID), `ip` (register targets by IP address),
|
4008
|
-
# `lambda` (register a single Lambda function as a target)
|
4028
|
+
# targets by instance ID), `ip` (register targets by IP address),
|
4029
|
+
# `lambda` (register a single Lambda function as a target), or `alb`
|
4030
|
+
# (register a single Application Load Balancer as a target).
|
4009
4031
|
# @return [String]
|
4010
4032
|
#
|
4011
4033
|
# @!attribute [rw] protocol_version
|
@@ -4013,6 +4035,12 @@ module Aws::ElasticLoadBalancingV2
|
|
4013
4035
|
# are `GRPC`, `HTTP1`, and `HTTP2`.
|
4014
4036
|
# @return [String]
|
4015
4037
|
#
|
4038
|
+
# @!attribute [rw] ip_address_type
|
4039
|
+
# The type of IP address used for this target group. The possible
|
4040
|
+
# values are `ipv4` and `ipv6`. This is an optional parameter. If not
|
4041
|
+
# specified, the IP address type defaults to `ipv4`.
|
4042
|
+
# @return [String]
|
4043
|
+
#
|
4016
4044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
|
4017
4045
|
#
|
4018
4046
|
class TargetGroup < Struct.new(
|
@@ -4032,7 +4060,8 @@ module Aws::ElasticLoadBalancingV2
|
|
4032
4060
|
:matcher,
|
4033
4061
|
:load_balancer_arns,
|
4034
4062
|
:target_type,
|
4035
|
-
:protocol_version
|
4063
|
+
:protocol_version,
|
4064
|
+
:ip_address_type)
|
4036
4065
|
SENSITIVE = []
|
4037
4066
|
include Aws::Structure
|
4038
4067
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticloadbalancingv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.69.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: 2021-
|
11
|
+
date: 2021-10-11 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.120.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.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
78
78
|
- - ">="
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
80
|
+
version: '2.3'
|
81
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
82
|
requirements:
|
83
83
|
- - ">="
|