aws-sdk-elasticloadbalancingv2 1.102.0 → 1.103.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe3f399b6b3e1dccafbbcbdcd6980ebdeaf4dfa6c4150de3bcef8d2e6165cbb1
4
- data.tar.gz: 2efd75c34f79351d42ec675b6f9eb190024c617dff244fb3d11ef82c362eb11c
3
+ metadata.gz: fdfdae8d36ffe8c267bfc17a8313cd70cc2a170913e6ff2f4a6b9039d0210428
4
+ data.tar.gz: 287547130f60904bcfd1b5e94867630530ee0833fb5e368c86e28150b5851124
5
5
  SHA512:
6
- metadata.gz: 0b67703dbf3374f2fc597848d6ff3f297d227aa4ad255d21304fccb67abef38782232b5c1210555ce0ce69e48955a175a9936209f286a4caefa879e239dc8346
7
- data.tar.gz: a5888e3bd6b2040fab6a160ba55d12a09fd472f3ee807442302382ba09064475b793a182315642ae04ae51354f4d2ffd31642d64abaf328769738f7800935a06
6
+ metadata.gz: dd61cdcb47600d2e84e813cfce55f6c0b751821899dbf0ea750ff155a3ac7d34e2916a5a766d2c1e560941599079776bdb82d0abbd962e6b94856801e15422bb
7
+ data.tar.gz: 78fb9ada8967df7f64ccb58be8e46937ae150369ea022a9ff4f53414ed2efa1ff674819274ed47c1a091819d3f207523a5b596053a1a443aa571213265da4fc4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2024-05-17)
5
+ ------------------
6
+
7
+ * Feature - This release adds dualstack-without-public-ipv4 IP address type for ALB.
8
+
4
9
  1.102.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -999,9 +999,21 @@ module Aws::ElasticLoadBalancingV2
999
999
  # The type of load balancer. The default is `application`.
1000
1000
  #
1001
1001
  # @option params [String] :ip_address_type
1002
- # The type of IP addresses used by the subnets for your load balancer.
1003
- # The possible values are `ipv4` (for IPv4 addresses) and `dualstack`
1004
- # (for IPv4 and IPv6 addresses).
1002
+ # Note: Internal load balancers must use the `ipv4` IP address type.
1003
+ #
1004
+ # \[Application Load Balancers\] The IP address type. The possible
1005
+ # values are `ipv4` (for only IPv4 addresses), `dualstack` (for IPv4 and
1006
+ # IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6 only
1007
+ # public addresses, with private IPv4 and IPv6 addresses).
1008
+ #
1009
+ # \[Network Load Balancers\] The IP address type. The possible values
1010
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
1011
+ # IPv6 addresses). You can’t specify `dualstack` for a load balancer
1012
+ # with a UDP or TCP\_UDP listener.
1013
+ #
1014
+ # \[Gateway Load Balancers\] The IP address type. The possible values
1015
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
1016
+ # IPv6 addresses).
1005
1017
  #
1006
1018
  # @option params [String] :customer_owned_ipv_4_pool
1007
1019
  # \[Application Load Balancers on Outposts\] The ID of the
@@ -1125,7 +1137,7 @@ module Aws::ElasticLoadBalancingV2
1125
1137
  # },
1126
1138
  # ],
1127
1139
  # type: "application", # accepts application, network, gateway
1128
- # ip_address_type: "ipv4", # accepts ipv4, dualstack
1140
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack, dualstack-without-public-ipv4
1129
1141
  # customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
1130
1142
  # })
1131
1143
  #
@@ -1153,7 +1165,7 @@ module Aws::ElasticLoadBalancingV2
1153
1165
  # resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].i_pv_6_address #=> String
1154
1166
  # resp.load_balancers[0].security_groups #=> Array
1155
1167
  # resp.load_balancers[0].security_groups[0] #=> String
1156
- # resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
1168
+ # resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack", "dualstack-without-public-ipv4"
1157
1169
  # resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
1158
1170
  # resp.load_balancers[0].enforce_security_group_inbound_rules_on_private_link_traffic #=> String
1159
1171
  #
@@ -2395,7 +2407,7 @@ module Aws::ElasticLoadBalancingV2
2395
2407
  # resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].i_pv_6_address #=> String
2396
2408
  # resp.load_balancers[0].security_groups #=> Array
2397
2409
  # resp.load_balancers[0].security_groups[0] #=> String
2398
- # resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
2410
+ # resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack", "dualstack-without-public-ipv4"
2399
2411
  # resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
2400
2412
  # resp.load_balancers[0].enforce_security_group_inbound_rules_on_private_link_traffic #=> String
2401
2413
  # resp.next_marker #=> String
@@ -4472,10 +4484,21 @@ module Aws::ElasticLoadBalancingV2
4472
4484
  # The Amazon Resource Name (ARN) of the load balancer.
4473
4485
  #
4474
4486
  # @option params [required, String] :ip_address_type
4475
- # The IP address type. The possible values are `ipv4` (for IPv4
4476
- # addresses) and `dualstack` (for IPv4 and IPv6 addresses). You can’t
4477
- # specify `dualstack` for a load balancer with a UDP or TCP\_UDP
4478
- # listener.
4487
+ # Note: Internal load balancers must use the `ipv4` IP address type.
4488
+ #
4489
+ # \[Application Load Balancers\] The IP address type. The possible
4490
+ # values are `ipv4` (for only IPv4 addresses), `dualstack` (for IPv4 and
4491
+ # IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6 only
4492
+ # public addresses, with private IPv4 and IPv6 addresses).
4493
+ #
4494
+ # \[Network Load Balancers\] The IP address type. The possible values
4495
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
4496
+ # IPv6 addresses). You can’t specify `dualstack` for a load balancer
4497
+ # with a UDP or TCP\_UDP listener.
4498
+ #
4499
+ # \[Gateway Load Balancers\] The IP address type. The possible values
4500
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
4501
+ # IPv6 addresses).
4479
4502
  #
4480
4503
  # @return [Types::SetIpAddressTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4481
4504
  #
@@ -4485,12 +4508,12 @@ module Aws::ElasticLoadBalancingV2
4485
4508
  #
4486
4509
  # resp = client.set_ip_address_type({
4487
4510
  # load_balancer_arn: "LoadBalancerArn", # required
4488
- # ip_address_type: "ipv4", # required, accepts ipv4, dualstack
4511
+ # ip_address_type: "ipv4", # required, accepts ipv4, dualstack, dualstack-without-public-ipv4
4489
4512
  # })
4490
4513
  #
4491
4514
  # @example Response structure
4492
4515
  #
4493
- # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
4516
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack", "dualstack-without-public-ipv4"
4494
4517
  #
4495
4518
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetIpAddressType AWS API Documentation
4496
4519
  #
@@ -4763,6 +4786,11 @@ module Aws::ElasticLoadBalancingV2
4763
4786
  # Availability Zones.
4764
4787
  #
4765
4788
  # @option params [String] :ip_address_type
4789
+ # \[Application Load Balancers\] The IP address type. The possible
4790
+ # values are `ipv4` (for only IPv4 addresses), `dualstack` (for IPv4 and
4791
+ # IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6 only
4792
+ # public addresses, with private IPv4 and IPv6 addresses).
4793
+ #
4766
4794
  # \[Network Load Balancers\] The type of IP addresses used by the
4767
4795
  # subnets for your load balancer. The possible values are `ipv4` (for
4768
4796
  # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses). You
@@ -4818,7 +4846,7 @@ module Aws::ElasticLoadBalancingV2
4818
4846
  # i_pv_6_address: "IPv6Address",
4819
4847
  # },
4820
4848
  # ],
4821
- # ip_address_type: "ipv4", # accepts ipv4, dualstack
4849
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack, dualstack-without-public-ipv4
4822
4850
  # })
4823
4851
  #
4824
4852
  # @example Response structure
@@ -4832,7 +4860,7 @@ module Aws::ElasticLoadBalancingV2
4832
4860
  # resp.availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
4833
4861
  # resp.availability_zones[0].load_balancer_addresses[0].private_i_pv_4_address #=> String
4834
4862
  # resp.availability_zones[0].load_balancer_addresses[0].i_pv_6_address #=> String
4835
- # resp.ip_address_type #=> String, one of "ipv4", "dualstack"
4863
+ # resp.ip_address_type #=> String, one of "ipv4", "dualstack", "dualstack-without-public-ipv4"
4836
4864
  #
4837
4865
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnets AWS API Documentation
4838
4866
  #
@@ -4856,7 +4884,7 @@ module Aws::ElasticLoadBalancingV2
4856
4884
  params: params,
4857
4885
  config: config)
4858
4886
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4859
- context[:gem_version] = '1.102.0'
4887
+ context[:gem_version] = '1.103.0'
4860
4888
  Seahorse::Client::Request.new(handlers, context)
4861
4889
  end
4862
4890
 
@@ -1199,6 +1199,7 @@ module Aws::ElasticLoadBalancingV2
1199
1199
  "apiVersion" => "2015-12-01",
1200
1200
  "endpointPrefix" => "elasticloadbalancing",
1201
1201
  "protocol" => "query",
1202
+ "protocols" => ["query"],
1202
1203
  "serviceAbbreviation" => "Elastic Load Balancing v2",
1203
1204
  "serviceFullName" => "Elastic Load Balancing",
1204
1205
  "serviceId" => "Elastic Load Balancing v2",
@@ -636,9 +636,21 @@ module Aws::ElasticLoadBalancingV2
636
636
  # @return [String]
637
637
  #
638
638
  # @!attribute [rw] ip_address_type
639
- # The type of IP addresses used by the subnets for your load balancer.
640
- # The possible values are `ipv4` (for IPv4 addresses) and `dualstack`
641
- # (for IPv4 and IPv6 addresses).
639
+ # Note: Internal load balancers must use the `ipv4` IP address type.
640
+ #
641
+ # \[Application Load Balancers\] The IP address type. The possible
642
+ # values are `ipv4` (for only IPv4 addresses), `dualstack` (for IPv4
643
+ # and IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6
644
+ # only public addresses, with private IPv4 and IPv6 addresses).
645
+ #
646
+ # \[Network Load Balancers\] The IP address type. The possible values
647
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
648
+ # IPv6 addresses). You can’t specify `dualstack` for a load balancer
649
+ # with a UDP or TCP\_UDP listener.
650
+ #
651
+ # \[Gateway Load Balancers\] The IP address type. The possible values
652
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
653
+ # IPv6 addresses).
642
654
  # @return [String]
643
655
  #
644
656
  # @!attribute [rw] customer_owned_ipv_4_pool
@@ -2107,9 +2119,17 @@ module Aws::ElasticLoadBalancingV2
2107
2119
  # @return [Array<String>]
2108
2120
  #
2109
2121
  # @!attribute [rw] ip_address_type
2110
- # The type of IP addresses used by the subnets for your load balancer.
2111
- # The possible values are `ipv4` (for IPv4 addresses) and `dualstack`
2112
- # (for IPv4 and IPv6 addresses).
2122
+ # \[Application Load Balancers\] The type of IP addresses used for
2123
+ # public or private connections by the subnets attached to your load
2124
+ # balancer. The possible values are `ipv4` (for only IPv4 addresses),
2125
+ # `dualstack` (for IPv4 and IPv6 addresses), and
2126
+ # `dualstack-without-public-ipv4` (for IPv6 only public addresses,
2127
+ # with private IPv4 and IPv6 addresses).
2128
+ #
2129
+ # \[Network Load Balancers and Gateway Load Balancers\] The type of IP
2130
+ # addresses used for public or private connections by the subnets
2131
+ # attached to your load balancer. The possible values are `ipv4` (for
2132
+ # only IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses).
2113
2133
  # @return [String]
2114
2134
  #
2115
2135
  # @!attribute [rw] customer_owned_ipv_4_pool
@@ -3207,10 +3227,21 @@ module Aws::ElasticLoadBalancingV2
3207
3227
  # @return [String]
3208
3228
  #
3209
3229
  # @!attribute [rw] ip_address_type
3210
- # The IP address type. The possible values are `ipv4` (for IPv4
3211
- # addresses) and `dualstack` (for IPv4 and IPv6 addresses). You can’t
3212
- # specify `dualstack` for a load balancer with a UDP or TCP\_UDP
3213
- # listener.
3230
+ # Note: Internal load balancers must use the `ipv4` IP address type.
3231
+ #
3232
+ # \[Application Load Balancers\] The IP address type. The possible
3233
+ # values are `ipv4` (for only IPv4 addresses), `dualstack` (for IPv4
3234
+ # and IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6
3235
+ # only public addresses, with private IPv4 and IPv6 addresses).
3236
+ #
3237
+ # \[Network Load Balancers\] The IP address type. The possible values
3238
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
3239
+ # IPv6 addresses). You can’t specify `dualstack` for a load balancer
3240
+ # with a UDP or TCP\_UDP listener.
3241
+ #
3242
+ # \[Gateway Load Balancers\] The IP address type. The possible values
3243
+ # are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
3244
+ # IPv6 addresses).
3214
3245
  # @return [String]
3215
3246
  #
3216
3247
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetIpAddressTypeInput AWS API Documentation
@@ -3354,6 +3385,11 @@ module Aws::ElasticLoadBalancingV2
3354
3385
  # @return [Array<Types::SubnetMapping>]
3355
3386
  #
3356
3387
  # @!attribute [rw] ip_address_type
3388
+ # \[Application Load Balancers\] The IP address type. The possible
3389
+ # values are `ipv4` (for only IPv4 addresses), `dualstack` (for IPv4
3390
+ # and IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6
3391
+ # only public addresses, with private IPv4 and IPv6 addresses).
3392
+ #
3357
3393
  # \[Network Load Balancers\] The type of IP addresses used by the
3358
3394
  # subnets for your load balancer. The possible values are `ipv4` (for
3359
3395
  # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses). You
@@ -3381,6 +3417,8 @@ module Aws::ElasticLoadBalancingV2
3381
3417
  # @return [Array<Types::AvailabilityZone>]
3382
3418
  #
3383
3419
  # @!attribute [rw] ip_address_type
3420
+ # \[Application Load Balancers\] The IP address type.
3421
+ #
3384
3422
  # \[Network Load Balancers\] The IP address type.
3385
3423
  #
3386
3424
  # \[Gateway Load Balancers\] The IP address type.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticLoadBalancingV2
55
55
 
56
- GEM_VERSION = '1.102.0'
56
+ GEM_VERSION = '1.103.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -233,7 +233,7 @@ module Aws
233
233
  },
234
234
  ],
235
235
  ?type: ("application" | "network" | "gateway"),
236
- ?ip_address_type: ("ipv4" | "dualstack"),
236
+ ?ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4"),
237
237
  ?customer_owned_ipv_4_pool: ::String
238
238
  ) -> _CreateLoadBalancerResponseSuccess
239
239
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoadBalancerResponseSuccess
@@ -958,12 +958,12 @@ module Aws
958
958
 
959
959
  interface _SetIpAddressTypeResponseSuccess
960
960
  include ::Seahorse::Client::_ResponseSuccess[Types::SetIpAddressTypeOutput]
961
- def ip_address_type: () -> ("ipv4" | "dualstack")
961
+ def ip_address_type: () -> ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
962
962
  end
963
963
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#set_ip_address_type-instance_method
964
964
  def set_ip_address_type: (
965
965
  load_balancer_arn: ::String,
966
- ip_address_type: ("ipv4" | "dualstack")
966
+ ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
967
967
  ) -> _SetIpAddressTypeResponseSuccess
968
968
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetIpAddressTypeResponseSuccess
969
969
 
@@ -998,7 +998,7 @@ module Aws
998
998
  interface _SetSubnetsResponseSuccess
999
999
  include ::Seahorse::Client::_ResponseSuccess[Types::SetSubnetsOutput]
1000
1000
  def availability_zones: () -> ::Array[Types::AvailabilityZone]
1001
- def ip_address_type: () -> ("ipv4" | "dualstack")
1001
+ def ip_address_type: () -> ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
1002
1002
  end
1003
1003
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#set_subnets-instance_method
1004
1004
  def set_subnets: (
@@ -1012,7 +1012,7 @@ module Aws
1012
1012
  i_pv_6_address: ::String?
1013
1013
  },
1014
1014
  ],
1015
- ?ip_address_type: ("ipv4" | "dualstack")
1015
+ ?ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
1016
1016
  ) -> _SetSubnetsResponseSuccess
1017
1017
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetSubnetsResponseSuccess
1018
1018
 
data/sig/types.rbs CHANGED
@@ -146,7 +146,7 @@ module Aws::ElasticLoadBalancingV2
146
146
  attr_accessor scheme: ("internet-facing" | "internal")
147
147
  attr_accessor tags: ::Array[Types::Tag]
148
148
  attr_accessor type: ("application" | "network" | "gateway")
149
- attr_accessor ip_address_type: ("ipv4" | "dualstack")
149
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
150
150
  attr_accessor customer_owned_ipv_4_pool: ::String
151
151
  SENSITIVE: []
152
152
  end
@@ -575,7 +575,7 @@ module Aws::ElasticLoadBalancingV2
575
575
  attr_accessor type: ("application" | "network" | "gateway")
576
576
  attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
577
577
  attr_accessor security_groups: ::Array[::String]
578
- attr_accessor ip_address_type: ("ipv4" | "dualstack")
578
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
579
579
  attr_accessor customer_owned_ipv_4_pool: ::String
580
580
  attr_accessor enforce_security_group_inbound_rules_on_private_link_traffic: ::String
581
581
  SENSITIVE: []
@@ -820,12 +820,12 @@ module Aws::ElasticLoadBalancingV2
820
820
 
821
821
  class SetIpAddressTypeInput
822
822
  attr_accessor load_balancer_arn: ::String
823
- attr_accessor ip_address_type: ("ipv4" | "dualstack")
823
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
824
824
  SENSITIVE: []
825
825
  end
826
826
 
827
827
  class SetIpAddressTypeOutput
828
- attr_accessor ip_address_type: ("ipv4" | "dualstack")
828
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
829
829
  SENSITIVE: []
830
830
  end
831
831
 
@@ -856,13 +856,13 @@ module Aws::ElasticLoadBalancingV2
856
856
  attr_accessor load_balancer_arn: ::String
857
857
  attr_accessor subnets: ::Array[::String]
858
858
  attr_accessor subnet_mappings: ::Array[Types::SubnetMapping]
859
- attr_accessor ip_address_type: ("ipv4" | "dualstack")
859
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
860
860
  SENSITIVE: []
861
861
  end
862
862
 
863
863
  class SetSubnetsOutput
864
864
  attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
865
- attr_accessor ip_address_type: ("ipv4" | "dualstack")
865
+ attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
866
866
  SENSITIVE: []
867
867
  end
868
868
 
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.102.0
4
+ version: 1.103.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: 2024-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core