aws-sdk-elasticloadbalancingv2 1.128.0 → 1.130.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-elasticloadbalancingv2/client.rb +49 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +30 -0
- data/lib/aws-sdk-elasticloadbalancingv2/errors.rb +169 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +66 -3
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/sig/client.rbs +18 -1
- data/sig/types.rbs +19 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7cdb989409d2d0fb8667c4ad64be968e5b0b11fffbc44c3ff702e3ee8508a89
|
4
|
+
data.tar.gz: 63d46c9b89199efa48b48d192a06893d374ca0cdce263df3e31aa490d4a62df3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 416e722d570f459f84876e77cc580eb2fbde25ebebe080f8c29053faa8ab99e2fdb959818f96f28006472cbf46bdd6692c6011ca488a9a178dfcdffd4bad21ba
|
7
|
+
data.tar.gz: 5518adb4eae19be85e3560551a68812e545c122d5d68d9d6697aa64f134c8b1ac7168468a363368f0cc8f6b5bb5657a7d3933d365e524e2c6bd8de7d52cc3b25
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.130.0 (2025-03-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for assigning IP addresses to Application Load Balancers from VPC IP Address Manager pools.
|
8
|
+
|
9
|
+
1.129.0 (2025-03-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.128.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.130.0
|
@@ -1077,6 +1077,10 @@ module Aws::ElasticLoadBalancingV2
|
|
1077
1077
|
# an IPv6 prefix from each subnet for source NAT. The IP address type
|
1078
1078
|
# must be `dualstack`. The default value is `off`.
|
1079
1079
|
#
|
1080
|
+
# @option params [Types::IpamPools] :ipam_pools
|
1081
|
+
# \[Application Load Balancers\] The IPAM pools to use with the load
|
1082
|
+
# balancer.
|
1083
|
+
#
|
1080
1084
|
# @return [Types::CreateLoadBalancerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1081
1085
|
#
|
1082
1086
|
# * {Types::CreateLoadBalancerOutput#load_balancers #load_balancers} => Array<Types::LoadBalancer>
|
@@ -1199,6 +1203,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1199
1203
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack, dualstack-without-public-ipv4
|
1200
1204
|
# customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
|
1201
1205
|
# enable_prefix_for_ipv_6_source_nat: "on", # accepts on, off
|
1206
|
+
# ipam_pools: {
|
1207
|
+
# ipv_4_ipam_pool_id: "IpamPoolId",
|
1208
|
+
# },
|
1202
1209
|
# })
|
1203
1210
|
#
|
1204
1211
|
# @example Response structure
|
@@ -1231,6 +1238,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1231
1238
|
# resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
|
1232
1239
|
# resp.load_balancers[0].enforce_security_group_inbound_rules_on_private_link_traffic #=> String
|
1233
1240
|
# resp.load_balancers[0].enable_prefix_for_ipv_6_source_nat #=> String, one of "on", "off"
|
1241
|
+
# resp.load_balancers[0].ipam_pools.ipv_4_ipam_pool_id #=> String
|
1234
1242
|
#
|
1235
1243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancer AWS API Documentation
|
1236
1244
|
#
|
@@ -2596,6 +2604,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2596
2604
|
# resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
|
2597
2605
|
# resp.load_balancers[0].enforce_security_group_inbound_rules_on_private_link_traffic #=> String
|
2598
2606
|
# resp.load_balancers[0].enable_prefix_for_ipv_6_source_nat #=> String, one of "on", "off"
|
2607
|
+
# resp.load_balancers[0].ipam_pools.ipv_4_ipam_pool_id #=> String
|
2599
2608
|
# resp.next_marker #=> String
|
2600
2609
|
#
|
2601
2610
|
#
|
@@ -3597,6 +3606,45 @@ module Aws::ElasticLoadBalancingV2
|
|
3597
3606
|
req.send_request(options)
|
3598
3607
|
end
|
3599
3608
|
|
3609
|
+
# \[Application Load Balancers\] Modify the IP pool associated to a load
|
3610
|
+
# balancer.
|
3611
|
+
#
|
3612
|
+
# @option params [required, String] :load_balancer_arn
|
3613
|
+
# The Amazon Resource Name (ARN) of the load balancer.
|
3614
|
+
#
|
3615
|
+
# @option params [Types::IpamPools] :ipam_pools
|
3616
|
+
# The IPAM pools to be modified.
|
3617
|
+
#
|
3618
|
+
# @option params [Array<String>] :remove_ipam_pools
|
3619
|
+
# Remove the IP pools in use by the load balancer.
|
3620
|
+
#
|
3621
|
+
# @return [Types::ModifyIpPoolsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3622
|
+
#
|
3623
|
+
# * {Types::ModifyIpPoolsOutput#ipam_pools #ipam_pools} => Types::IpamPools
|
3624
|
+
#
|
3625
|
+
# @example Request syntax with placeholder values
|
3626
|
+
#
|
3627
|
+
# resp = client.modify_ip_pools({
|
3628
|
+
# load_balancer_arn: "LoadBalancerArn", # required
|
3629
|
+
# ipam_pools: {
|
3630
|
+
# ipv_4_ipam_pool_id: "IpamPoolId",
|
3631
|
+
# },
|
3632
|
+
# remove_ipam_pools: ["ipv4"], # accepts ipv4
|
3633
|
+
# })
|
3634
|
+
#
|
3635
|
+
# @example Response structure
|
3636
|
+
#
|
3637
|
+
# resp.ipam_pools.ipv_4_ipam_pool_id #=> String
|
3638
|
+
#
|
3639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyIpPools AWS API Documentation
|
3640
|
+
#
|
3641
|
+
# @overload modify_ip_pools(params = {})
|
3642
|
+
# @param [Hash] params ({})
|
3643
|
+
def modify_ip_pools(params = {}, options = {})
|
3644
|
+
req = build_request(:modify_ip_pools, params)
|
3645
|
+
req.send_request(options)
|
3646
|
+
end
|
3647
|
+
|
3600
3648
|
# Replaces the specified properties of the specified listener. Any
|
3601
3649
|
# properties that you do not specify remain unchanged.
|
3602
3650
|
#
|
@@ -5214,7 +5262,7 @@ module Aws::ElasticLoadBalancingV2
|
|
5214
5262
|
tracer: tracer
|
5215
5263
|
)
|
5216
5264
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
5217
|
-
context[:gem_version] = '1.
|
5265
|
+
context[:gem_version] = '1.130.0'
|
5218
5266
|
Seahorse::Client::Request.new(handlers, context)
|
5219
5267
|
end
|
5220
5268
|
|
@@ -191,6 +191,8 @@ module Aws::ElasticLoadBalancingV2
|
|
191
191
|
InvalidTargetException = Shapes::StructureShape.new(name: 'InvalidTargetException', error: {"code"=>"InvalidTarget", "httpStatusCode"=>400, "senderFault"=>true})
|
192
192
|
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
193
193
|
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
194
|
+
IpamPoolId = Shapes::StringShape.new(name: 'IpamPoolId')
|
195
|
+
IpamPools = Shapes::StructureShape.new(name: 'IpamPools')
|
194
196
|
IsDefault = Shapes::BooleanShape.new(name: 'IsDefault')
|
195
197
|
LastModifiedTime = Shapes::TimestampShape.new(name: 'LastModifiedTime')
|
196
198
|
Limit = Shapes::StructureShape.new(name: 'Limit')
|
@@ -232,6 +234,8 @@ module Aws::ElasticLoadBalancingV2
|
|
232
234
|
Mode = Shapes::StringShape.new(name: 'Mode')
|
233
235
|
ModifyCapacityReservationInput = Shapes::StructureShape.new(name: 'ModifyCapacityReservationInput')
|
234
236
|
ModifyCapacityReservationOutput = Shapes::StructureShape.new(name: 'ModifyCapacityReservationOutput')
|
237
|
+
ModifyIpPoolsInput = Shapes::StructureShape.new(name: 'ModifyIpPoolsInput')
|
238
|
+
ModifyIpPoolsOutput = Shapes::StructureShape.new(name: 'ModifyIpPoolsOutput')
|
235
239
|
ModifyListenerAttributesInput = Shapes::StructureShape.new(name: 'ModifyListenerAttributesInput')
|
236
240
|
ModifyListenerAttributesOutput = Shapes::StructureShape.new(name: 'ModifyListenerAttributesOutput')
|
237
241
|
ModifyListenerInput = Shapes::StructureShape.new(name: 'ModifyListenerInput')
|
@@ -274,6 +278,8 @@ module Aws::ElasticLoadBalancingV2
|
|
274
278
|
RedirectActionStatusCodeEnum = Shapes::StringShape.new(name: 'RedirectActionStatusCodeEnum')
|
275
279
|
RegisterTargetsInput = Shapes::StructureShape.new(name: 'RegisterTargetsInput')
|
276
280
|
RegisterTargetsOutput = Shapes::StructureShape.new(name: 'RegisterTargetsOutput')
|
281
|
+
RemoveIpamPoolEnum = Shapes::StringShape.new(name: 'RemoveIpamPoolEnum')
|
282
|
+
RemoveIpamPools = Shapes::ListShape.new(name: 'RemoveIpamPools')
|
277
283
|
RemoveListenerCertificatesInput = Shapes::StructureShape.new(name: 'RemoveListenerCertificatesInput')
|
278
284
|
RemoveListenerCertificatesOutput = Shapes::StructureShape.new(name: 'RemoveListenerCertificatesOutput')
|
279
285
|
RemoveTagsInput = Shapes::StructureShape.new(name: 'RemoveTagsInput')
|
@@ -544,6 +550,7 @@ module Aws::ElasticLoadBalancingV2
|
|
544
550
|
CreateLoadBalancerInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
545
551
|
CreateLoadBalancerInput.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
|
546
552
|
CreateLoadBalancerInput.add_member(:enable_prefix_for_ipv_6_source_nat, Shapes::ShapeRef.new(shape: EnablePrefixForIpv6SourceNatEnum, location_name: "EnablePrefixForIpv6SourceNat"))
|
553
|
+
CreateLoadBalancerInput.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
|
547
554
|
CreateLoadBalancerInput.struct_class = Types::CreateLoadBalancerInput
|
548
555
|
|
549
556
|
CreateLoadBalancerOutput.add_member(:load_balancers, Shapes::ShapeRef.new(shape: LoadBalancers, location_name: "LoadBalancers"))
|
@@ -846,6 +853,9 @@ module Aws::ElasticLoadBalancingV2
|
|
846
853
|
|
847
854
|
InvalidTargetException.struct_class = Types::InvalidTargetException
|
848
855
|
|
856
|
+
IpamPools.add_member(:ipv_4_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "Ipv4IpamPoolId"))
|
857
|
+
IpamPools.struct_class = Types::IpamPools
|
858
|
+
|
849
859
|
Limit.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
850
860
|
Limit.add_member(:max, Shapes::ShapeRef.new(shape: Max, location_name: "Max"))
|
851
861
|
Limit.struct_class = Types::Limit
|
@@ -894,6 +904,7 @@ module Aws::ElasticLoadBalancingV2
|
|
894
904
|
LoadBalancer.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
|
895
905
|
LoadBalancer.add_member(:enforce_security_group_inbound_rules_on_private_link_traffic, Shapes::ShapeRef.new(shape: EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic, location_name: "EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic"))
|
896
906
|
LoadBalancer.add_member(:enable_prefix_for_ipv_6_source_nat, Shapes::ShapeRef.new(shape: EnablePrefixForIpv6SourceNatEnum, location_name: "EnablePrefixForIpv6SourceNat"))
|
907
|
+
LoadBalancer.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
|
897
908
|
LoadBalancer.struct_class = Types::LoadBalancer
|
898
909
|
|
899
910
|
LoadBalancerAddress.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "IpAddress"))
|
@@ -940,6 +951,14 @@ module Aws::ElasticLoadBalancingV2
|
|
940
951
|
ModifyCapacityReservationOutput.add_member(:capacity_reservation_state, Shapes::ShapeRef.new(shape: ZonalCapacityReservationStates, location_name: "CapacityReservationState"))
|
941
952
|
ModifyCapacityReservationOutput.struct_class = Types::ModifyCapacityReservationOutput
|
942
953
|
|
954
|
+
ModifyIpPoolsInput.add_member(:load_balancer_arn, Shapes::ShapeRef.new(shape: LoadBalancerArn, required: true, location_name: "LoadBalancerArn"))
|
955
|
+
ModifyIpPoolsInput.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
|
956
|
+
ModifyIpPoolsInput.add_member(:remove_ipam_pools, Shapes::ShapeRef.new(shape: RemoveIpamPools, location_name: "RemoveIpamPools"))
|
957
|
+
ModifyIpPoolsInput.struct_class = Types::ModifyIpPoolsInput
|
958
|
+
|
959
|
+
ModifyIpPoolsOutput.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
|
960
|
+
ModifyIpPoolsOutput.struct_class = Types::ModifyIpPoolsOutput
|
961
|
+
|
943
962
|
ModifyListenerAttributesInput.add_member(:listener_arn, Shapes::ShapeRef.new(shape: ListenerArn, required: true, location_name: "ListenerArn"))
|
944
963
|
ModifyListenerAttributesInput.add_member(:attributes, Shapes::ShapeRef.new(shape: ListenerAttributes, required: true, location_name: "Attributes"))
|
945
964
|
ModifyListenerAttributesInput.struct_class = Types::ModifyListenerAttributesInput
|
@@ -1045,6 +1064,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1045
1064
|
|
1046
1065
|
RegisterTargetsOutput.struct_class = Types::RegisterTargetsOutput
|
1047
1066
|
|
1067
|
+
RemoveIpamPools.member = Shapes::ShapeRef.new(shape: RemoveIpamPoolEnum)
|
1068
|
+
|
1048
1069
|
RemoveListenerCertificatesInput.add_member(:listener_arn, Shapes::ShapeRef.new(shape: ListenerArn, required: true, location_name: "ListenerArn"))
|
1049
1070
|
RemoveListenerCertificatesInput.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateList, required: true, location_name: "Certificates"))
|
1050
1071
|
RemoveListenerCertificatesInput.struct_class = Types::RemoveListenerCertificatesInput
|
@@ -1799,6 +1820,15 @@ module Aws::ElasticLoadBalancingV2
|
|
1799
1820
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1800
1821
|
end)
|
1801
1822
|
|
1823
|
+
api.add_operation(:modify_ip_pools, Seahorse::Model::Operation.new.tap do |o|
|
1824
|
+
o.name = "ModifyIpPools"
|
1825
|
+
o.http_method = "POST"
|
1826
|
+
o.http_request_uri = "/"
|
1827
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyIpPoolsInput)
|
1828
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyIpPoolsOutput)
|
1829
|
+
o.errors << Shapes::ShapeRef.new(shape: LoadBalancerNotFoundException)
|
1830
|
+
end)
|
1831
|
+
|
1802
1832
|
api.add_operation(:modify_listener, Seahorse::Model::Operation.new.tap do |o|
|
1803
1833
|
o.name = "ModifyListener"
|
1804
1834
|
o.http_method = "POST"
|
@@ -28,68 +28,127 @@ module Aws::ElasticLoadBalancingV2
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {ALPNPolicyNotSupportedException}
|
31
|
+
# * This error class is not used. `ALPNPolicyNotFound` is used during parsing instead.
|
31
32
|
# * {AllocationIdNotFoundException}
|
33
|
+
# * This error class is not used. `AllocationIdNotFound` is used during parsing instead.
|
32
34
|
# * {AvailabilityZoneNotSupportedException}
|
35
|
+
# * This error class is not used. `AvailabilityZoneNotSupported` is used during parsing instead.
|
33
36
|
# * {CaCertificatesBundleNotFoundException}
|
37
|
+
# * This error class is not used. `CaCertificatesBundleNotFound` is used during parsing instead.
|
34
38
|
# * {CapacityDecreaseRequestsLimitExceededException}
|
39
|
+
# * This error class is not used. `CapacityDecreaseRequestLimitExceeded` is used during parsing instead.
|
35
40
|
# * {CapacityReservationPendingException}
|
41
|
+
# * This error class is not used. `CapacityReservationPending` is used during parsing instead.
|
36
42
|
# * {CapacityUnitsLimitExceededException}
|
43
|
+
# * This error class is not used. `CapacityUnitsLimitExceeded` is used during parsing instead.
|
37
44
|
# * {CertificateNotFoundException}
|
45
|
+
# * This error class is not used. `CertificateNotFound` is used during parsing instead.
|
38
46
|
# * {DeleteAssociationSameAccountException}
|
47
|
+
# * This error class is not used. `DeleteAssociationSameAccount` is used during parsing instead.
|
39
48
|
# * {DuplicateListenerException}
|
49
|
+
# * This error class is not used. `DuplicateListener` is used during parsing instead.
|
40
50
|
# * {DuplicateLoadBalancerNameException}
|
51
|
+
# * This error class is not used. `DuplicateLoadBalancerName` is used during parsing instead.
|
41
52
|
# * {DuplicateTagKeysException}
|
53
|
+
# * This error class is not used. `DuplicateTagKeys` is used during parsing instead.
|
42
54
|
# * {DuplicateTargetGroupNameException}
|
55
|
+
# * This error class is not used. `DuplicateTargetGroupName` is used during parsing instead.
|
43
56
|
# * {DuplicateTrustStoreNameException}
|
57
|
+
# * This error class is not used. `DuplicateTrustStoreName` is used during parsing instead.
|
44
58
|
# * {HealthUnavailableException}
|
59
|
+
# * This error class is not used. `HealthUnavailable` is used during parsing instead.
|
45
60
|
# * {IncompatibleProtocolsException}
|
61
|
+
# * This error class is not used. `IncompatibleProtocols` is used during parsing instead.
|
46
62
|
# * {InsufficientCapacityException}
|
63
|
+
# * This error class is not used. `InsufficientCapacity` is used during parsing instead.
|
47
64
|
# * {InvalidCaCertificatesBundleException}
|
65
|
+
# * This error class is not used. `InvalidCaCertificatesBundle` is used during parsing instead.
|
48
66
|
# * {InvalidConfigurationRequestException}
|
67
|
+
# * This error class is not used. `InvalidConfigurationRequest` is used during parsing instead.
|
49
68
|
# * {InvalidLoadBalancerActionException}
|
69
|
+
# * This error class is not used. `InvalidLoadBalancerAction` is used during parsing instead.
|
50
70
|
# * {InvalidRevocationContentException}
|
71
|
+
# * This error class is not used. `InvalidRevocationContent` is used during parsing instead.
|
51
72
|
# * {InvalidSchemeException}
|
73
|
+
# * This error class is not used. `InvalidScheme` is used during parsing instead.
|
52
74
|
# * {InvalidSecurityGroupException}
|
75
|
+
# * This error class is not used. `InvalidSecurityGroup` is used during parsing instead.
|
53
76
|
# * {InvalidSubnetException}
|
77
|
+
# * This error class is not used. `InvalidSubnet` is used during parsing instead.
|
54
78
|
# * {InvalidTargetException}
|
79
|
+
# * This error class is not used. `InvalidTarget` is used during parsing instead.
|
55
80
|
# * {ListenerNotFoundException}
|
81
|
+
# * This error class is not used. `ListenerNotFound` is used during parsing instead.
|
56
82
|
# * {LoadBalancerNotFoundException}
|
83
|
+
# * This error class is not used. `LoadBalancerNotFound` is used during parsing instead.
|
57
84
|
# * {OperationNotPermittedException}
|
85
|
+
# * This error class is not used. `OperationNotPermitted` is used during parsing instead.
|
58
86
|
# * {PriorRequestNotCompleteException}
|
87
|
+
# * This error class is not used. `PriorRequestNotComplete` is used during parsing instead.
|
59
88
|
# * {PriorityInUseException}
|
89
|
+
# * This error class is not used. `PriorityInUse` is used during parsing instead.
|
60
90
|
# * {ResourceInUseException}
|
91
|
+
# * This error class is not used. `ResourceInUse` is used during parsing instead.
|
61
92
|
# * {ResourceNotFoundException}
|
93
|
+
# * This error class is not used. `ResourceNotFound` is used during parsing instead.
|
62
94
|
# * {RevocationContentNotFoundException}
|
95
|
+
# * This error class is not used. `RevocationContentNotFound` is used during parsing instead.
|
63
96
|
# * {RevocationIdNotFoundException}
|
97
|
+
# * This error class is not used. `RevocationIdNotFound` is used during parsing instead.
|
64
98
|
# * {RuleNotFoundException}
|
99
|
+
# * This error class is not used. `RuleNotFound` is used during parsing instead.
|
65
100
|
# * {SSLPolicyNotFoundException}
|
101
|
+
# * This error class is not used. `SSLPolicyNotFound` is used during parsing instead.
|
66
102
|
# * {SubnetNotFoundException}
|
103
|
+
# * This error class is not used. `SubnetNotFound` is used during parsing instead.
|
67
104
|
# * {TargetGroupAssociationLimitException}
|
105
|
+
# * This error class is not used. `TargetGroupAssociationLimit` is used during parsing instead.
|
68
106
|
# * {TargetGroupNotFoundException}
|
107
|
+
# * This error class is not used. `TargetGroupNotFound` is used during parsing instead.
|
69
108
|
# * {TooManyActionsException}
|
109
|
+
# * This error class is not used. `TooManyActions` is used during parsing instead.
|
70
110
|
# * {TooManyCertificatesException}
|
111
|
+
# * This error class is not used. `TooManyCertificates` is used during parsing instead.
|
71
112
|
# * {TooManyListenersException}
|
113
|
+
# * This error class is not used. `TooManyListeners` is used during parsing instead.
|
72
114
|
# * {TooManyLoadBalancersException}
|
115
|
+
# * This error class is not used. `TooManyLoadBalancers` is used during parsing instead.
|
73
116
|
# * {TooManyRegistrationsForTargetIdException}
|
117
|
+
# * This error class is not used. `TooManyRegistrationsForTargetId` is used during parsing instead.
|
74
118
|
# * {TooManyRulesException}
|
119
|
+
# * This error class is not used. `TooManyRules` is used during parsing instead.
|
75
120
|
# * {TooManyTagsException}
|
121
|
+
# * This error class is not used. `TooManyTags` is used during parsing instead.
|
76
122
|
# * {TooManyTargetGroupsException}
|
123
|
+
# * This error class is not used. `TooManyTargetGroups` is used during parsing instead.
|
77
124
|
# * {TooManyTargetsException}
|
125
|
+
# * This error class is not used. `TooManyTargets` is used during parsing instead.
|
78
126
|
# * {TooManyTrustStoreRevocationEntriesException}
|
127
|
+
# * This error class is not used. `TooManyTrustStoreRevocationEntries` is used during parsing instead.
|
79
128
|
# * {TooManyTrustStoresException}
|
129
|
+
# * This error class is not used. `TooManyTrustStores` is used during parsing instead.
|
80
130
|
# * {TooManyUniqueTargetGroupsPerLoadBalancerException}
|
131
|
+
# * This error class is not used. `TooManyUniqueTargetGroupsPerLoadBalancer` is used during parsing instead.
|
81
132
|
# * {TrustStoreAssociationNotFoundException}
|
133
|
+
# * This error class is not used. `AssociationNotFound` is used during parsing instead.
|
82
134
|
# * {TrustStoreInUseException}
|
135
|
+
# * This error class is not used. `TrustStoreInUse` is used during parsing instead.
|
83
136
|
# * {TrustStoreNotFoundException}
|
137
|
+
# * This error class is not used. `TrustStoreNotFound` is used during parsing instead.
|
84
138
|
# * {TrustStoreNotReadyException}
|
139
|
+
# * This error class is not used. `TrustStoreNotReady` is used during parsing instead.
|
85
140
|
# * {UnsupportedProtocolException}
|
141
|
+
# * This error class is not used. `UnsupportedProtocol` is used during parsing instead.
|
86
142
|
#
|
87
143
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
88
144
|
# if they are not defined above.
|
145
|
+
# Some existing error classes may use a different class name than the one documented.
|
89
146
|
module Errors
|
90
147
|
|
91
148
|
extend Aws::Errors::DynamicErrors
|
92
149
|
|
150
|
+
# @deprecated This error class is not used during parsing.
|
151
|
+
# Please use `ALPNPolicyNotFound` instead.
|
93
152
|
class ALPNPolicyNotSupportedException < ServiceError
|
94
153
|
|
95
154
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -100,6 +159,8 @@ module Aws::ElasticLoadBalancingV2
|
|
100
159
|
end
|
101
160
|
end
|
102
161
|
|
162
|
+
# @deprecated This error class is not used during parsing.
|
163
|
+
# Please use `AllocationIdNotFound` instead.
|
103
164
|
class AllocationIdNotFoundException < ServiceError
|
104
165
|
|
105
166
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -110,6 +171,8 @@ module Aws::ElasticLoadBalancingV2
|
|
110
171
|
end
|
111
172
|
end
|
112
173
|
|
174
|
+
# @deprecated This error class is not used during parsing.
|
175
|
+
# Please use `AvailabilityZoneNotSupported` instead.
|
113
176
|
class AvailabilityZoneNotSupportedException < ServiceError
|
114
177
|
|
115
178
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -120,6 +183,8 @@ module Aws::ElasticLoadBalancingV2
|
|
120
183
|
end
|
121
184
|
end
|
122
185
|
|
186
|
+
# @deprecated This error class is not used during parsing.
|
187
|
+
# Please use `CaCertificatesBundleNotFound` instead.
|
123
188
|
class CaCertificatesBundleNotFoundException < ServiceError
|
124
189
|
|
125
190
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -130,6 +195,8 @@ module Aws::ElasticLoadBalancingV2
|
|
130
195
|
end
|
131
196
|
end
|
132
197
|
|
198
|
+
# @deprecated This error class is not used during parsing.
|
199
|
+
# Please use `CapacityDecreaseRequestLimitExceeded` instead.
|
133
200
|
class CapacityDecreaseRequestsLimitExceededException < ServiceError
|
134
201
|
|
135
202
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -140,6 +207,8 @@ module Aws::ElasticLoadBalancingV2
|
|
140
207
|
end
|
141
208
|
end
|
142
209
|
|
210
|
+
# @deprecated This error class is not used during parsing.
|
211
|
+
# Please use `CapacityReservationPending` instead.
|
143
212
|
class CapacityReservationPendingException < ServiceError
|
144
213
|
|
145
214
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -150,6 +219,8 @@ module Aws::ElasticLoadBalancingV2
|
|
150
219
|
end
|
151
220
|
end
|
152
221
|
|
222
|
+
# @deprecated This error class is not used during parsing.
|
223
|
+
# Please use `CapacityUnitsLimitExceeded` instead.
|
153
224
|
class CapacityUnitsLimitExceededException < ServiceError
|
154
225
|
|
155
226
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -160,6 +231,8 @@ module Aws::ElasticLoadBalancingV2
|
|
160
231
|
end
|
161
232
|
end
|
162
233
|
|
234
|
+
# @deprecated This error class is not used during parsing.
|
235
|
+
# Please use `CertificateNotFound` instead.
|
163
236
|
class CertificateNotFoundException < ServiceError
|
164
237
|
|
165
238
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -170,6 +243,8 @@ module Aws::ElasticLoadBalancingV2
|
|
170
243
|
end
|
171
244
|
end
|
172
245
|
|
246
|
+
# @deprecated This error class is not used during parsing.
|
247
|
+
# Please use `DeleteAssociationSameAccount` instead.
|
173
248
|
class DeleteAssociationSameAccountException < ServiceError
|
174
249
|
|
175
250
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -180,6 +255,8 @@ module Aws::ElasticLoadBalancingV2
|
|
180
255
|
end
|
181
256
|
end
|
182
257
|
|
258
|
+
# @deprecated This error class is not used during parsing.
|
259
|
+
# Please use `DuplicateListener` instead.
|
183
260
|
class DuplicateListenerException < ServiceError
|
184
261
|
|
185
262
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -190,6 +267,8 @@ module Aws::ElasticLoadBalancingV2
|
|
190
267
|
end
|
191
268
|
end
|
192
269
|
|
270
|
+
# @deprecated This error class is not used during parsing.
|
271
|
+
# Please use `DuplicateLoadBalancerName` instead.
|
193
272
|
class DuplicateLoadBalancerNameException < ServiceError
|
194
273
|
|
195
274
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -200,6 +279,8 @@ module Aws::ElasticLoadBalancingV2
|
|
200
279
|
end
|
201
280
|
end
|
202
281
|
|
282
|
+
# @deprecated This error class is not used during parsing.
|
283
|
+
# Please use `DuplicateTagKeys` instead.
|
203
284
|
class DuplicateTagKeysException < ServiceError
|
204
285
|
|
205
286
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -210,6 +291,8 @@ module Aws::ElasticLoadBalancingV2
|
|
210
291
|
end
|
211
292
|
end
|
212
293
|
|
294
|
+
# @deprecated This error class is not used during parsing.
|
295
|
+
# Please use `DuplicateTargetGroupName` instead.
|
213
296
|
class DuplicateTargetGroupNameException < ServiceError
|
214
297
|
|
215
298
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -220,6 +303,8 @@ module Aws::ElasticLoadBalancingV2
|
|
220
303
|
end
|
221
304
|
end
|
222
305
|
|
306
|
+
# @deprecated This error class is not used during parsing.
|
307
|
+
# Please use `DuplicateTrustStoreName` instead.
|
223
308
|
class DuplicateTrustStoreNameException < ServiceError
|
224
309
|
|
225
310
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -230,6 +315,8 @@ module Aws::ElasticLoadBalancingV2
|
|
230
315
|
end
|
231
316
|
end
|
232
317
|
|
318
|
+
# @deprecated This error class is not used during parsing.
|
319
|
+
# Please use `HealthUnavailable` instead.
|
233
320
|
class HealthUnavailableException < ServiceError
|
234
321
|
|
235
322
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -240,6 +327,8 @@ module Aws::ElasticLoadBalancingV2
|
|
240
327
|
end
|
241
328
|
end
|
242
329
|
|
330
|
+
# @deprecated This error class is not used during parsing.
|
331
|
+
# Please use `IncompatibleProtocols` instead.
|
243
332
|
class IncompatibleProtocolsException < ServiceError
|
244
333
|
|
245
334
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -250,6 +339,8 @@ module Aws::ElasticLoadBalancingV2
|
|
250
339
|
end
|
251
340
|
end
|
252
341
|
|
342
|
+
# @deprecated This error class is not used during parsing.
|
343
|
+
# Please use `InsufficientCapacity` instead.
|
253
344
|
class InsufficientCapacityException < ServiceError
|
254
345
|
|
255
346
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -260,6 +351,8 @@ module Aws::ElasticLoadBalancingV2
|
|
260
351
|
end
|
261
352
|
end
|
262
353
|
|
354
|
+
# @deprecated This error class is not used during parsing.
|
355
|
+
# Please use `InvalidCaCertificatesBundle` instead.
|
263
356
|
class InvalidCaCertificatesBundleException < ServiceError
|
264
357
|
|
265
358
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -270,6 +363,8 @@ module Aws::ElasticLoadBalancingV2
|
|
270
363
|
end
|
271
364
|
end
|
272
365
|
|
366
|
+
# @deprecated This error class is not used during parsing.
|
367
|
+
# Please use `InvalidConfigurationRequest` instead.
|
273
368
|
class InvalidConfigurationRequestException < ServiceError
|
274
369
|
|
275
370
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -280,6 +375,8 @@ module Aws::ElasticLoadBalancingV2
|
|
280
375
|
end
|
281
376
|
end
|
282
377
|
|
378
|
+
# @deprecated This error class is not used during parsing.
|
379
|
+
# Please use `InvalidLoadBalancerAction` instead.
|
283
380
|
class InvalidLoadBalancerActionException < ServiceError
|
284
381
|
|
285
382
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -290,6 +387,8 @@ module Aws::ElasticLoadBalancingV2
|
|
290
387
|
end
|
291
388
|
end
|
292
389
|
|
390
|
+
# @deprecated This error class is not used during parsing.
|
391
|
+
# Please use `InvalidRevocationContent` instead.
|
293
392
|
class InvalidRevocationContentException < ServiceError
|
294
393
|
|
295
394
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -300,6 +399,8 @@ module Aws::ElasticLoadBalancingV2
|
|
300
399
|
end
|
301
400
|
end
|
302
401
|
|
402
|
+
# @deprecated This error class is not used during parsing.
|
403
|
+
# Please use `InvalidScheme` instead.
|
303
404
|
class InvalidSchemeException < ServiceError
|
304
405
|
|
305
406
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -310,6 +411,8 @@ module Aws::ElasticLoadBalancingV2
|
|
310
411
|
end
|
311
412
|
end
|
312
413
|
|
414
|
+
# @deprecated This error class is not used during parsing.
|
415
|
+
# Please use `InvalidSecurityGroup` instead.
|
313
416
|
class InvalidSecurityGroupException < ServiceError
|
314
417
|
|
315
418
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -320,6 +423,8 @@ module Aws::ElasticLoadBalancingV2
|
|
320
423
|
end
|
321
424
|
end
|
322
425
|
|
426
|
+
# @deprecated This error class is not used during parsing.
|
427
|
+
# Please use `InvalidSubnet` instead.
|
323
428
|
class InvalidSubnetException < ServiceError
|
324
429
|
|
325
430
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -330,6 +435,8 @@ module Aws::ElasticLoadBalancingV2
|
|
330
435
|
end
|
331
436
|
end
|
332
437
|
|
438
|
+
# @deprecated This error class is not used during parsing.
|
439
|
+
# Please use `InvalidTarget` instead.
|
333
440
|
class InvalidTargetException < ServiceError
|
334
441
|
|
335
442
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -340,6 +447,8 @@ module Aws::ElasticLoadBalancingV2
|
|
340
447
|
end
|
341
448
|
end
|
342
449
|
|
450
|
+
# @deprecated This error class is not used during parsing.
|
451
|
+
# Please use `ListenerNotFound` instead.
|
343
452
|
class ListenerNotFoundException < ServiceError
|
344
453
|
|
345
454
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -350,6 +459,8 @@ module Aws::ElasticLoadBalancingV2
|
|
350
459
|
end
|
351
460
|
end
|
352
461
|
|
462
|
+
# @deprecated This error class is not used during parsing.
|
463
|
+
# Please use `LoadBalancerNotFound` instead.
|
353
464
|
class LoadBalancerNotFoundException < ServiceError
|
354
465
|
|
355
466
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -360,6 +471,8 @@ module Aws::ElasticLoadBalancingV2
|
|
360
471
|
end
|
361
472
|
end
|
362
473
|
|
474
|
+
# @deprecated This error class is not used during parsing.
|
475
|
+
# Please use `OperationNotPermitted` instead.
|
363
476
|
class OperationNotPermittedException < ServiceError
|
364
477
|
|
365
478
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -370,6 +483,8 @@ module Aws::ElasticLoadBalancingV2
|
|
370
483
|
end
|
371
484
|
end
|
372
485
|
|
486
|
+
# @deprecated This error class is not used during parsing.
|
487
|
+
# Please use `PriorRequestNotComplete` instead.
|
373
488
|
class PriorRequestNotCompleteException < ServiceError
|
374
489
|
|
375
490
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -380,6 +495,8 @@ module Aws::ElasticLoadBalancingV2
|
|
380
495
|
end
|
381
496
|
end
|
382
497
|
|
498
|
+
# @deprecated This error class is not used during parsing.
|
499
|
+
# Please use `PriorityInUse` instead.
|
383
500
|
class PriorityInUseException < ServiceError
|
384
501
|
|
385
502
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -390,6 +507,8 @@ module Aws::ElasticLoadBalancingV2
|
|
390
507
|
end
|
391
508
|
end
|
392
509
|
|
510
|
+
# @deprecated This error class is not used during parsing.
|
511
|
+
# Please use `ResourceInUse` instead.
|
393
512
|
class ResourceInUseException < ServiceError
|
394
513
|
|
395
514
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -400,6 +519,8 @@ module Aws::ElasticLoadBalancingV2
|
|
400
519
|
end
|
401
520
|
end
|
402
521
|
|
522
|
+
# @deprecated This error class is not used during parsing.
|
523
|
+
# Please use `ResourceNotFound` instead.
|
403
524
|
class ResourceNotFoundException < ServiceError
|
404
525
|
|
405
526
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -410,6 +531,8 @@ module Aws::ElasticLoadBalancingV2
|
|
410
531
|
end
|
411
532
|
end
|
412
533
|
|
534
|
+
# @deprecated This error class is not used during parsing.
|
535
|
+
# Please use `RevocationContentNotFound` instead.
|
413
536
|
class RevocationContentNotFoundException < ServiceError
|
414
537
|
|
415
538
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -420,6 +543,8 @@ module Aws::ElasticLoadBalancingV2
|
|
420
543
|
end
|
421
544
|
end
|
422
545
|
|
546
|
+
# @deprecated This error class is not used during parsing.
|
547
|
+
# Please use `RevocationIdNotFound` instead.
|
423
548
|
class RevocationIdNotFoundException < ServiceError
|
424
549
|
|
425
550
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -430,6 +555,8 @@ module Aws::ElasticLoadBalancingV2
|
|
430
555
|
end
|
431
556
|
end
|
432
557
|
|
558
|
+
# @deprecated This error class is not used during parsing.
|
559
|
+
# Please use `RuleNotFound` instead.
|
433
560
|
class RuleNotFoundException < ServiceError
|
434
561
|
|
435
562
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -440,6 +567,8 @@ module Aws::ElasticLoadBalancingV2
|
|
440
567
|
end
|
441
568
|
end
|
442
569
|
|
570
|
+
# @deprecated This error class is not used during parsing.
|
571
|
+
# Please use `SSLPolicyNotFound` instead.
|
443
572
|
class SSLPolicyNotFoundException < ServiceError
|
444
573
|
|
445
574
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -450,6 +579,8 @@ module Aws::ElasticLoadBalancingV2
|
|
450
579
|
end
|
451
580
|
end
|
452
581
|
|
582
|
+
# @deprecated This error class is not used during parsing.
|
583
|
+
# Please use `SubnetNotFound` instead.
|
453
584
|
class SubnetNotFoundException < ServiceError
|
454
585
|
|
455
586
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -460,6 +591,8 @@ module Aws::ElasticLoadBalancingV2
|
|
460
591
|
end
|
461
592
|
end
|
462
593
|
|
594
|
+
# @deprecated This error class is not used during parsing.
|
595
|
+
# Please use `TargetGroupAssociationLimit` instead.
|
463
596
|
class TargetGroupAssociationLimitException < ServiceError
|
464
597
|
|
465
598
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -470,6 +603,8 @@ module Aws::ElasticLoadBalancingV2
|
|
470
603
|
end
|
471
604
|
end
|
472
605
|
|
606
|
+
# @deprecated This error class is not used during parsing.
|
607
|
+
# Please use `TargetGroupNotFound` instead.
|
473
608
|
class TargetGroupNotFoundException < ServiceError
|
474
609
|
|
475
610
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -480,6 +615,8 @@ module Aws::ElasticLoadBalancingV2
|
|
480
615
|
end
|
481
616
|
end
|
482
617
|
|
618
|
+
# @deprecated This error class is not used during parsing.
|
619
|
+
# Please use `TooManyActions` instead.
|
483
620
|
class TooManyActionsException < ServiceError
|
484
621
|
|
485
622
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -490,6 +627,8 @@ module Aws::ElasticLoadBalancingV2
|
|
490
627
|
end
|
491
628
|
end
|
492
629
|
|
630
|
+
# @deprecated This error class is not used during parsing.
|
631
|
+
# Please use `TooManyCertificates` instead.
|
493
632
|
class TooManyCertificatesException < ServiceError
|
494
633
|
|
495
634
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -500,6 +639,8 @@ module Aws::ElasticLoadBalancingV2
|
|
500
639
|
end
|
501
640
|
end
|
502
641
|
|
642
|
+
# @deprecated This error class is not used during parsing.
|
643
|
+
# Please use `TooManyListeners` instead.
|
503
644
|
class TooManyListenersException < ServiceError
|
504
645
|
|
505
646
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -510,6 +651,8 @@ module Aws::ElasticLoadBalancingV2
|
|
510
651
|
end
|
511
652
|
end
|
512
653
|
|
654
|
+
# @deprecated This error class is not used during parsing.
|
655
|
+
# Please use `TooManyLoadBalancers` instead.
|
513
656
|
class TooManyLoadBalancersException < ServiceError
|
514
657
|
|
515
658
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -520,6 +663,8 @@ module Aws::ElasticLoadBalancingV2
|
|
520
663
|
end
|
521
664
|
end
|
522
665
|
|
666
|
+
# @deprecated This error class is not used during parsing.
|
667
|
+
# Please use `TooManyRegistrationsForTargetId` instead.
|
523
668
|
class TooManyRegistrationsForTargetIdException < ServiceError
|
524
669
|
|
525
670
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -530,6 +675,8 @@ module Aws::ElasticLoadBalancingV2
|
|
530
675
|
end
|
531
676
|
end
|
532
677
|
|
678
|
+
# @deprecated This error class is not used during parsing.
|
679
|
+
# Please use `TooManyRules` instead.
|
533
680
|
class TooManyRulesException < ServiceError
|
534
681
|
|
535
682
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -540,6 +687,8 @@ module Aws::ElasticLoadBalancingV2
|
|
540
687
|
end
|
541
688
|
end
|
542
689
|
|
690
|
+
# @deprecated This error class is not used during parsing.
|
691
|
+
# Please use `TooManyTags` instead.
|
543
692
|
class TooManyTagsException < ServiceError
|
544
693
|
|
545
694
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -550,6 +699,8 @@ module Aws::ElasticLoadBalancingV2
|
|
550
699
|
end
|
551
700
|
end
|
552
701
|
|
702
|
+
# @deprecated This error class is not used during parsing.
|
703
|
+
# Please use `TooManyTargetGroups` instead.
|
553
704
|
class TooManyTargetGroupsException < ServiceError
|
554
705
|
|
555
706
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -560,6 +711,8 @@ module Aws::ElasticLoadBalancingV2
|
|
560
711
|
end
|
561
712
|
end
|
562
713
|
|
714
|
+
# @deprecated This error class is not used during parsing.
|
715
|
+
# Please use `TooManyTargets` instead.
|
563
716
|
class TooManyTargetsException < ServiceError
|
564
717
|
|
565
718
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -570,6 +723,8 @@ module Aws::ElasticLoadBalancingV2
|
|
570
723
|
end
|
571
724
|
end
|
572
725
|
|
726
|
+
# @deprecated This error class is not used during parsing.
|
727
|
+
# Please use `TooManyTrustStoreRevocationEntries` instead.
|
573
728
|
class TooManyTrustStoreRevocationEntriesException < ServiceError
|
574
729
|
|
575
730
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -580,6 +735,8 @@ module Aws::ElasticLoadBalancingV2
|
|
580
735
|
end
|
581
736
|
end
|
582
737
|
|
738
|
+
# @deprecated This error class is not used during parsing.
|
739
|
+
# Please use `TooManyTrustStores` instead.
|
583
740
|
class TooManyTrustStoresException < ServiceError
|
584
741
|
|
585
742
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -590,6 +747,8 @@ module Aws::ElasticLoadBalancingV2
|
|
590
747
|
end
|
591
748
|
end
|
592
749
|
|
750
|
+
# @deprecated This error class is not used during parsing.
|
751
|
+
# Please use `TooManyUniqueTargetGroupsPerLoadBalancer` instead.
|
593
752
|
class TooManyUniqueTargetGroupsPerLoadBalancerException < ServiceError
|
594
753
|
|
595
754
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -600,6 +759,8 @@ module Aws::ElasticLoadBalancingV2
|
|
600
759
|
end
|
601
760
|
end
|
602
761
|
|
762
|
+
# @deprecated This error class is not used during parsing.
|
763
|
+
# Please use `AssociationNotFound` instead.
|
603
764
|
class TrustStoreAssociationNotFoundException < ServiceError
|
604
765
|
|
605
766
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -610,6 +771,8 @@ module Aws::ElasticLoadBalancingV2
|
|
610
771
|
end
|
611
772
|
end
|
612
773
|
|
774
|
+
# @deprecated This error class is not used during parsing.
|
775
|
+
# Please use `TrustStoreInUse` instead.
|
613
776
|
class TrustStoreInUseException < ServiceError
|
614
777
|
|
615
778
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -620,6 +783,8 @@ module Aws::ElasticLoadBalancingV2
|
|
620
783
|
end
|
621
784
|
end
|
622
785
|
|
786
|
+
# @deprecated This error class is not used during parsing.
|
787
|
+
# Please use `TrustStoreNotFound` instead.
|
623
788
|
class TrustStoreNotFoundException < ServiceError
|
624
789
|
|
625
790
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -630,6 +795,8 @@ module Aws::ElasticLoadBalancingV2
|
|
630
795
|
end
|
631
796
|
end
|
632
797
|
|
798
|
+
# @deprecated This error class is not used during parsing.
|
799
|
+
# Please use `TrustStoreNotReady` instead.
|
633
800
|
class TrustStoreNotReadyException < ServiceError
|
634
801
|
|
635
802
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -640,6 +807,8 @@ module Aws::ElasticLoadBalancingV2
|
|
640
807
|
end
|
641
808
|
end
|
642
809
|
|
810
|
+
# @deprecated This error class is not used during parsing.
|
811
|
+
# Please use `UnsupportedProtocol` instead.
|
643
812
|
class UnsupportedProtocolException < ServiceError
|
644
813
|
|
645
814
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -727,6 +727,11 @@ module Aws::ElasticLoadBalancingV2
|
|
727
727
|
# type must be `dualstack`. The default value is `off`.
|
728
728
|
# @return [String]
|
729
729
|
#
|
730
|
+
# @!attribute [rw] ipam_pools
|
731
|
+
# \[Application Load Balancers\] The IPAM pools to use with the load
|
732
|
+
# balancer.
|
733
|
+
# @return [Types::IpamPools]
|
734
|
+
#
|
730
735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancerInput AWS API Documentation
|
731
736
|
#
|
732
737
|
class CreateLoadBalancerInput < Struct.new(
|
@@ -739,7 +744,8 @@ module Aws::ElasticLoadBalancingV2
|
|
739
744
|
:type,
|
740
745
|
:ip_address_type,
|
741
746
|
:customer_owned_ipv_4_pool,
|
742
|
-
:enable_prefix_for_ipv_6_source_nat
|
747
|
+
:enable_prefix_for_ipv_6_source_nat,
|
748
|
+
:ipam_pools)
|
743
749
|
SENSITIVE = []
|
744
750
|
include Aws::Structure
|
745
751
|
end
|
@@ -2117,6 +2123,22 @@ module Aws::ElasticLoadBalancingV2
|
|
2117
2123
|
#
|
2118
2124
|
class InvalidTargetException < Aws::EmptyStructure; end
|
2119
2125
|
|
2126
|
+
# An IPAM pool is a collection of IP address CIDRs. IPAM pools enable
|
2127
|
+
# you to organize your IP addresses according to your routing and
|
2128
|
+
# security needs.
|
2129
|
+
#
|
2130
|
+
# @!attribute [rw] ipv_4_ipam_pool_id
|
2131
|
+
# The ID of the IPv4 IPAM pool.
|
2132
|
+
# @return [String]
|
2133
|
+
#
|
2134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/IpamPools AWS API Documentation
|
2135
|
+
#
|
2136
|
+
class IpamPools < Struct.new(
|
2137
|
+
:ipv_4_ipam_pool_id)
|
2138
|
+
SENSITIVE = []
|
2139
|
+
include Aws::Structure
|
2140
|
+
end
|
2141
|
+
|
2120
2142
|
# Information about an Elastic Load Balancing resource limit for your
|
2121
2143
|
# Amazon Web Services account.
|
2122
2144
|
#
|
@@ -2442,6 +2464,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2442
2464
|
# type must be `dualstack`. The default value is `off`.
|
2443
2465
|
# @return [String]
|
2444
2466
|
#
|
2467
|
+
# @!attribute [rw] ipam_pools
|
2468
|
+
# \[Application Load Balancers\] The IPAM pool in use by the load
|
2469
|
+
# balancer, if configured.
|
2470
|
+
# @return [Types::IpamPools]
|
2471
|
+
#
|
2445
2472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/LoadBalancer AWS API Documentation
|
2446
2473
|
#
|
2447
2474
|
class LoadBalancer < Struct.new(
|
@@ -2459,7 +2486,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2459
2486
|
:ip_address_type,
|
2460
2487
|
:customer_owned_ipv_4_pool,
|
2461
2488
|
:enforce_security_group_inbound_rules_on_private_link_traffic,
|
2462
|
-
:enable_prefix_for_ipv_6_source_nat
|
2489
|
+
:enable_prefix_for_ipv_6_source_nat,
|
2490
|
+
:ipam_pools)
|
2463
2491
|
SENSITIVE = []
|
2464
2492
|
include Aws::Structure
|
2465
2493
|
end
|
@@ -2774,6 +2802,40 @@ module Aws::ElasticLoadBalancingV2
|
|
2774
2802
|
include Aws::Structure
|
2775
2803
|
end
|
2776
2804
|
|
2805
|
+
# @!attribute [rw] load_balancer_arn
|
2806
|
+
# The Amazon Resource Name (ARN) of the load balancer.
|
2807
|
+
# @return [String]
|
2808
|
+
#
|
2809
|
+
# @!attribute [rw] ipam_pools
|
2810
|
+
# The IPAM pools to be modified.
|
2811
|
+
# @return [Types::IpamPools]
|
2812
|
+
#
|
2813
|
+
# @!attribute [rw] remove_ipam_pools
|
2814
|
+
# Remove the IP pools in use by the load balancer.
|
2815
|
+
# @return [Array<String>]
|
2816
|
+
#
|
2817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyIpPoolsInput AWS API Documentation
|
2818
|
+
#
|
2819
|
+
class ModifyIpPoolsInput < Struct.new(
|
2820
|
+
:load_balancer_arn,
|
2821
|
+
:ipam_pools,
|
2822
|
+
:remove_ipam_pools)
|
2823
|
+
SENSITIVE = []
|
2824
|
+
include Aws::Structure
|
2825
|
+
end
|
2826
|
+
|
2827
|
+
# @!attribute [rw] ipam_pools
|
2828
|
+
# The IPAM pool ID.
|
2829
|
+
# @return [Types::IpamPools]
|
2830
|
+
#
|
2831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyIpPoolsOutput AWS API Documentation
|
2832
|
+
#
|
2833
|
+
class ModifyIpPoolsOutput < Struct.new(
|
2834
|
+
:ipam_pools)
|
2835
|
+
SENSITIVE = []
|
2836
|
+
include Aws::Structure
|
2837
|
+
end
|
2838
|
+
|
2777
2839
|
# @!attribute [rw] listener_arn
|
2778
2840
|
# The Amazon Resource Name (ARN) of the listener.
|
2779
2841
|
# @return [String]
|
@@ -4305,7 +4367,8 @@ module Aws::ElasticLoadBalancingV2
|
|
4305
4367
|
# * `target_health_state.unhealthy.connection_termination.enabled` -
|
4306
4368
|
# Indicates whether the load balancer terminates connections to
|
4307
4369
|
# unhealthy targets. The value is `true` or `false`. The default is
|
4308
|
-
# `true`.
|
4370
|
+
# `true`. This attribute can't be enabled for UDP and TCP\_UDP
|
4371
|
+
# target groups.
|
4309
4372
|
#
|
4310
4373
|
# * `target_health_state.unhealthy.draining_interval_seconds` - The
|
4311
4374
|
# amount of time for Elastic Load Balancing to wait before changing
|
data/sig/client.rbs
CHANGED
@@ -243,7 +243,10 @@ module Aws
|
|
243
243
|
?type: ("application" | "network" | "gateway"),
|
244
244
|
?ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4"),
|
245
245
|
?customer_owned_ipv_4_pool: ::String,
|
246
|
-
?enable_prefix_for_ipv_6_source_nat: ("on" | "off")
|
246
|
+
?enable_prefix_for_ipv_6_source_nat: ("on" | "off"),
|
247
|
+
?ipam_pools: {
|
248
|
+
ipv_4_ipam_pool_id: ::String?
|
249
|
+
}
|
247
250
|
) -> _CreateLoadBalancerResponseSuccess
|
248
251
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoadBalancerResponseSuccess
|
249
252
|
|
@@ -730,6 +733,20 @@ module Aws
|
|
730
733
|
) -> _ModifyCapacityReservationResponseSuccess
|
731
734
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyCapacityReservationResponseSuccess
|
732
735
|
|
736
|
+
interface _ModifyIpPoolsResponseSuccess
|
737
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyIpPoolsOutput]
|
738
|
+
def ipam_pools: () -> Types::IpamPools
|
739
|
+
end
|
740
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#modify_ip_pools-instance_method
|
741
|
+
def modify_ip_pools: (
|
742
|
+
load_balancer_arn: ::String,
|
743
|
+
?ipam_pools: {
|
744
|
+
ipv_4_ipam_pool_id: ::String?
|
745
|
+
},
|
746
|
+
?remove_ipam_pools: Array[("ipv4")]
|
747
|
+
) -> _ModifyIpPoolsResponseSuccess
|
748
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpPoolsResponseSuccess
|
749
|
+
|
733
750
|
interface _ModifyListenerResponseSuccess
|
734
751
|
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyListenerOutput]
|
735
752
|
def listeners: () -> ::Array[Types::Listener]
|
data/sig/types.rbs
CHANGED
@@ -172,6 +172,7 @@ module Aws::ElasticLoadBalancingV2
|
|
172
172
|
attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
|
173
173
|
attr_accessor customer_owned_ipv_4_pool: ::String
|
174
174
|
attr_accessor enable_prefix_for_ipv_6_source_nat: ("on" | "off")
|
175
|
+
attr_accessor ipam_pools: Types::IpamPools
|
175
176
|
SENSITIVE: []
|
176
177
|
end
|
177
178
|
|
@@ -613,6 +614,11 @@ module Aws::ElasticLoadBalancingV2
|
|
613
614
|
class InvalidTargetException < Aws::EmptyStructure
|
614
615
|
end
|
615
616
|
|
617
|
+
class IpamPools
|
618
|
+
attr_accessor ipv_4_ipam_pool_id: ::String
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
616
622
|
class Limit
|
617
623
|
attr_accessor name: ::String
|
618
624
|
attr_accessor max: ::String
|
@@ -657,6 +663,7 @@ module Aws::ElasticLoadBalancingV2
|
|
657
663
|
attr_accessor customer_owned_ipv_4_pool: ::String
|
658
664
|
attr_accessor enforce_security_group_inbound_rules_on_private_link_traffic: ::String
|
659
665
|
attr_accessor enable_prefix_for_ipv_6_source_nat: ("on" | "off")
|
666
|
+
attr_accessor ipam_pools: Types::IpamPools
|
660
667
|
SENSITIVE: []
|
661
668
|
end
|
662
669
|
|
@@ -709,6 +716,18 @@ module Aws::ElasticLoadBalancingV2
|
|
709
716
|
SENSITIVE: []
|
710
717
|
end
|
711
718
|
|
719
|
+
class ModifyIpPoolsInput
|
720
|
+
attr_accessor load_balancer_arn: ::String
|
721
|
+
attr_accessor ipam_pools: Types::IpamPools
|
722
|
+
attr_accessor remove_ipam_pools: ::Array[("ipv4")]
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class ModifyIpPoolsOutput
|
727
|
+
attr_accessor ipam_pools: Types::IpamPools
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
712
731
|
class ModifyListenerAttributesInput
|
713
732
|
attr_accessor listener_arn: ::String
|
714
733
|
attr_accessor attributes: ::Array[Types::ListenerAttribute]
|
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.130.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-
|
11
|
+
date: 2025-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|