aws-sdk-elasticloadbalancingv2 1.48.0 → 1.53.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0375ef8b924fb7560f632a96dbce09a7d16e2221afe154255bc3d6a2e87745e2
|
4
|
+
data.tar.gz: ea11ed7aa075aa7a135d9710fbfddaf99400e48043180c3fcb278dccdcf9e529
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 607203f2d7950a278654d14cf55d4f188592693f8fd22a9801ffebeac31c749f06cea96ca32428678a4b093d6f0833e0901208f90b359f5be1c8c17741ff3048
|
7
|
+
data.tar.gz: 354f7b04d1555eabdb54f0f2f361f5aca8ae26d577edd94a40e179c5eeb05f9006bf414f4e3b83966d1e4075aca16b969978b95d2f3b8e43dbcac108ab3240a1
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
|
|
45
46
|
#
|
46
47
|
# See {Errors} for more information.
|
47
48
|
#
|
48
|
-
#
|
49
|
+
# @!group service
|
49
50
|
module Aws::ElasticLoadBalancingV2
|
50
51
|
|
51
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.53.0'
|
52
53
|
|
53
54
|
end
|
@@ -85,13 +85,28 @@ module Aws::ElasticLoadBalancingV2
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::ElasticLoadBalancingV2
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -370,7 +385,7 @@ module Aws::ElasticLoadBalancingV2
|
|
370
385
|
|
371
386
|
# Adds the specified tags to the specified Elastic Load Balancing
|
372
387
|
# resource. You can tag your Application Load Balancers, Network Load
|
373
|
-
# Balancers,
|
388
|
+
# Balancers, target groups, listeners, and rules.
|
374
389
|
#
|
375
390
|
# Each tag consists of a key and an optional value. If a resource
|
376
391
|
# already has a tag with the same key, `AddTags` updates its value.
|
@@ -546,6 +561,9 @@ module Aws::ElasticLoadBalancingV2
|
|
546
561
|
#
|
547
562
|
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#alpn-policies
|
548
563
|
#
|
564
|
+
# @option params [Array<Types::Tag>] :tags
|
565
|
+
# The tags to assign to the listener.
|
566
|
+
#
|
549
567
|
# @return [Types::CreateListenerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
550
568
|
#
|
551
569
|
# * {Types::CreateListenerOutput#listeners #listeners} => Array<Types::Listener>
|
@@ -709,6 +727,12 @@ module Aws::ElasticLoadBalancingV2
|
|
709
727
|
# },
|
710
728
|
# ],
|
711
729
|
# alpn_policy: ["AlpnPolicyValue"],
|
730
|
+
# tags: [
|
731
|
+
# {
|
732
|
+
# key: "TagKey", # required
|
733
|
+
# value: "TagValue",
|
734
|
+
# },
|
735
|
+
# ],
|
712
736
|
# })
|
713
737
|
#
|
714
738
|
# @example Response structure
|
@@ -820,6 +844,12 @@ module Aws::ElasticLoadBalancingV2
|
|
820
844
|
# \[Application Load Balancers\] You must specify subnets from at least
|
821
845
|
# two Availability Zones.
|
822
846
|
#
|
847
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
848
|
+
# Outpost subnet.
|
849
|
+
#
|
850
|
+
# \[Application Load Balancers on Local Zones\] You can specify subnets
|
851
|
+
# from one or more Local Zones.
|
852
|
+
#
|
823
853
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
824
854
|
# Availability Zones.
|
825
855
|
#
|
@@ -831,6 +861,12 @@ module Aws::ElasticLoadBalancingV2
|
|
831
861
|
# two Availability Zones. You cannot specify Elastic IP addresses for
|
832
862
|
# your subnets.
|
833
863
|
#
|
864
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
865
|
+
# Outpost subnet.
|
866
|
+
#
|
867
|
+
# \[Application Load Balancers on Local Zones\] You can specify subnets
|
868
|
+
# from one or more Local Zones.
|
869
|
+
#
|
834
870
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
835
871
|
# Availability Zones. You can specify one Elastic IP address per subnet
|
836
872
|
# if you need static IP addresses for your internet-facing load
|
@@ -857,7 +893,7 @@ module Aws::ElasticLoadBalancingV2
|
|
857
893
|
# The default is an Internet-facing load balancer.
|
858
894
|
#
|
859
895
|
# @option params [Array<Types::Tag>] :tags
|
860
|
-
#
|
896
|
+
# The tags to assign to the load balancer.
|
861
897
|
#
|
862
898
|
# @option params [String] :type
|
863
899
|
# The type of load balancer. The default is `application`.
|
@@ -868,6 +904,10 @@ module Aws::ElasticLoadBalancingV2
|
|
868
904
|
# IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses).
|
869
905
|
# Internal load balancers must use `ipv4`.
|
870
906
|
#
|
907
|
+
# @option params [String] :customer_owned_ipv_4_pool
|
908
|
+
# \[Application Load Balancers on Outposts\] The ID of the
|
909
|
+
# customer-owned address pool (CoIP pool).
|
910
|
+
#
|
871
911
|
# @return [Types::CreateLoadBalancerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
872
912
|
#
|
873
913
|
# * {Types::CreateLoadBalancerOutput#load_balancers #load_balancers} => Array<Types::LoadBalancer>
|
@@ -986,6 +1026,7 @@ module Aws::ElasticLoadBalancingV2
|
|
986
1026
|
# ],
|
987
1027
|
# type: "application", # accepts application, network
|
988
1028
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
1029
|
+
# customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
|
989
1030
|
# })
|
990
1031
|
#
|
991
1032
|
# @example Response structure
|
@@ -1004,6 +1045,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1004
1045
|
# resp.load_balancers[0].availability_zones #=> Array
|
1005
1046
|
# resp.load_balancers[0].availability_zones[0].zone_name #=> String
|
1006
1047
|
# resp.load_balancers[0].availability_zones[0].subnet_id #=> String
|
1048
|
+
# resp.load_balancers[0].availability_zones[0].outpost_id #=> String
|
1007
1049
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
1008
1050
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
1009
1051
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
@@ -1011,6 +1053,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1011
1053
|
# resp.load_balancers[0].security_groups #=> Array
|
1012
1054
|
# resp.load_balancers[0].security_groups[0] #=> String
|
1013
1055
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
1056
|
+
# resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
|
1014
1057
|
#
|
1015
1058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancer AWS API Documentation
|
1016
1059
|
#
|
@@ -1076,6 +1119,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1076
1119
|
# \[Application Load Balancer\] If the action type is `fixed-response`,
|
1077
1120
|
# you drop specified client requests and return a custom HTTP response.
|
1078
1121
|
#
|
1122
|
+
# @option params [Array<Types::Tag>] :tags
|
1123
|
+
# The tags to assign to the rule.
|
1124
|
+
#
|
1079
1125
|
# @return [Types::CreateRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1080
1126
|
#
|
1081
1127
|
# * {Types::CreateRuleOutput#rules #rules} => Array<Types::Rule>
|
@@ -1225,6 +1271,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1225
1271
|
# },
|
1226
1272
|
# },
|
1227
1273
|
# ],
|
1274
|
+
# tags: [
|
1275
|
+
# {
|
1276
|
+
# key: "TagKey", # required
|
1277
|
+
# value: "TagValue",
|
1278
|
+
# },
|
1279
|
+
# ],
|
1228
1280
|
# })
|
1229
1281
|
#
|
1230
1282
|
# @example Response structure
|
@@ -1424,6 +1476,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1424
1476
|
#
|
1425
1477
|
# * `lambda` - The target groups contains a single Lambda function.
|
1426
1478
|
#
|
1479
|
+
# @option params [Array<Types::Tag>] :tags
|
1480
|
+
# The tags to assign to the target group.
|
1481
|
+
#
|
1427
1482
|
# @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1428
1483
|
#
|
1429
1484
|
# * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup>
|
@@ -1483,6 +1538,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1483
1538
|
# http_code: "HttpCode", # required
|
1484
1539
|
# },
|
1485
1540
|
# target_type: "instance", # accepts instance, ip, lambda
|
1541
|
+
# tags: [
|
1542
|
+
# {
|
1543
|
+
# key: "TagKey", # required
|
1544
|
+
# value: "TagValue",
|
1545
|
+
# },
|
1546
|
+
# ],
|
1486
1547
|
# })
|
1487
1548
|
#
|
1488
1549
|
# @example Response structure
|
@@ -2107,6 +2168,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2107
2168
|
# resp.load_balancers[0].availability_zones #=> Array
|
2108
2169
|
# resp.load_balancers[0].availability_zones[0].zone_name #=> String
|
2109
2170
|
# resp.load_balancers[0].availability_zones[0].subnet_id #=> String
|
2171
|
+
# resp.load_balancers[0].availability_zones[0].outpost_id #=> String
|
2110
2172
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
2111
2173
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
2112
2174
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
@@ -2114,6 +2176,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2114
2176
|
# resp.load_balancers[0].security_groups #=> Array
|
2115
2177
|
# resp.load_balancers[0].security_groups[0] #=> String
|
2116
2178
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
2179
|
+
# resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
|
2117
2180
|
# resp.next_marker #=> String
|
2118
2181
|
#
|
2119
2182
|
#
|
@@ -2429,9 +2492,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2429
2492
|
req.send_request(options)
|
2430
2493
|
end
|
2431
2494
|
|
2432
|
-
# Describes the tags for the specified
|
2433
|
-
# tags for one or more Application Load Balancers,
|
2434
|
-
# Balancers,
|
2495
|
+
# Describes the tags for the specified Elastic Load Balancing resources.
|
2496
|
+
# You can describe the tags for one or more Application Load Balancers,
|
2497
|
+
# Network Load Balancers, target groups, listeners, or rules.
|
2435
2498
|
#
|
2436
2499
|
# @option params [required, Array<String>] :resource_arns
|
2437
2500
|
# The Amazon Resource Names (ARN) of the resources. You can specify up
|
@@ -3897,7 +3960,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3897
3960
|
end
|
3898
3961
|
|
3899
3962
|
# Removes the specified tags from the specified Elastic Load Balancing
|
3900
|
-
#
|
3963
|
+
# resources. You can remove the tags for one or more Application Load
|
3964
|
+
# Balancers, Network Load Balancers, target groups, listeners, or rules.
|
3901
3965
|
#
|
3902
3966
|
# To list the current tags for your resources, use DescribeTags.
|
3903
3967
|
#
|
@@ -4249,6 +4313,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4249
4313
|
# resp.availability_zones #=> Array
|
4250
4314
|
# resp.availability_zones[0].zone_name #=> String
|
4251
4315
|
# resp.availability_zones[0].subnet_id #=> String
|
4316
|
+
# resp.availability_zones[0].outpost_id #=> String
|
4252
4317
|
# resp.availability_zones[0].load_balancer_addresses #=> Array
|
4253
4318
|
# resp.availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
4254
4319
|
# resp.availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
@@ -4276,7 +4341,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4276
4341
|
params: params,
|
4277
4342
|
config: config)
|
4278
4343
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4279
|
-
context[:gem_version] = '1.
|
4344
|
+
context[:gem_version] = '1.53.0'
|
4280
4345
|
Seahorse::Client::Request.new(handlers, context)
|
4281
4346
|
end
|
4282
4347
|
|
@@ -74,6 +74,7 @@ module Aws::ElasticLoadBalancingV2
|
|
74
74
|
CreateTargetGroupInput = Shapes::StructureShape.new(name: 'CreateTargetGroupInput')
|
75
75
|
CreateTargetGroupOutput = Shapes::StructureShape.new(name: 'CreateTargetGroupOutput')
|
76
76
|
CreatedTime = Shapes::TimestampShape.new(name: 'CreatedTime')
|
77
|
+
CustomerOwnedIpv4Pool = Shapes::StringShape.new(name: 'CustomerOwnedIpv4Pool')
|
77
78
|
DNSName = Shapes::StringShape.new(name: 'DNSName')
|
78
79
|
Default = Shapes::BooleanShape.new(name: 'Default')
|
79
80
|
DeleteListenerInput = Shapes::StructureShape.new(name: 'DeleteListenerInput')
|
@@ -179,6 +180,7 @@ module Aws::ElasticLoadBalancingV2
|
|
179
180
|
ModifyTargetGroupOutput = Shapes::StructureShape.new(name: 'ModifyTargetGroupOutput')
|
180
181
|
Name = Shapes::StringShape.new(name: 'Name')
|
181
182
|
OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
|
183
|
+
OutpostId = Shapes::StringShape.new(name: 'OutpostId')
|
182
184
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
183
185
|
Path = Shapes::StringShape.new(name: 'Path')
|
184
186
|
PathPatternConditionConfig = Shapes::StructureShape.new(name: 'PathPatternConditionConfig')
|
@@ -352,6 +354,7 @@ module Aws::ElasticLoadBalancingV2
|
|
352
354
|
|
353
355
|
AvailabilityZone.add_member(:zone_name, Shapes::ShapeRef.new(shape: ZoneName, location_name: "ZoneName"))
|
354
356
|
AvailabilityZone.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
357
|
+
AvailabilityZone.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, location_name: "OutpostId"))
|
355
358
|
AvailabilityZone.add_member(:load_balancer_addresses, Shapes::ShapeRef.new(shape: LoadBalancerAddresses, location_name: "LoadBalancerAddresses"))
|
356
359
|
AvailabilityZone.struct_class = Types::AvailabilityZone
|
357
360
|
|
@@ -380,6 +383,7 @@ module Aws::ElasticLoadBalancingV2
|
|
380
383
|
CreateListenerInput.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateList, location_name: "Certificates"))
|
381
384
|
CreateListenerInput.add_member(:default_actions, Shapes::ShapeRef.new(shape: Actions, required: true, location_name: "DefaultActions"))
|
382
385
|
CreateListenerInput.add_member(:alpn_policy, Shapes::ShapeRef.new(shape: AlpnPolicyName, location_name: "AlpnPolicy"))
|
386
|
+
CreateListenerInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
383
387
|
CreateListenerInput.struct_class = Types::CreateListenerInput
|
384
388
|
|
385
389
|
CreateListenerOutput.add_member(:listeners, Shapes::ShapeRef.new(shape: Listeners, location_name: "Listeners"))
|
@@ -393,6 +397,7 @@ module Aws::ElasticLoadBalancingV2
|
|
393
397
|
CreateLoadBalancerInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
394
398
|
CreateLoadBalancerInput.add_member(:type, Shapes::ShapeRef.new(shape: LoadBalancerTypeEnum, location_name: "Type"))
|
395
399
|
CreateLoadBalancerInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
400
|
+
CreateLoadBalancerInput.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
|
396
401
|
CreateLoadBalancerInput.struct_class = Types::CreateLoadBalancerInput
|
397
402
|
|
398
403
|
CreateLoadBalancerOutput.add_member(:load_balancers, Shapes::ShapeRef.new(shape: LoadBalancers, location_name: "LoadBalancers"))
|
@@ -402,6 +407,7 @@ module Aws::ElasticLoadBalancingV2
|
|
402
407
|
CreateRuleInput.add_member(:conditions, Shapes::ShapeRef.new(shape: RuleConditionList, required: true, location_name: "Conditions"))
|
403
408
|
CreateRuleInput.add_member(:priority, Shapes::ShapeRef.new(shape: RulePriority, required: true, location_name: "Priority"))
|
404
409
|
CreateRuleInput.add_member(:actions, Shapes::ShapeRef.new(shape: Actions, required: true, location_name: "Actions"))
|
410
|
+
CreateRuleInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
405
411
|
CreateRuleInput.struct_class = Types::CreateRuleInput
|
406
412
|
|
407
413
|
CreateRuleOutput.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, location_name: "Rules"))
|
@@ -421,6 +427,7 @@ module Aws::ElasticLoadBalancingV2
|
|
421
427
|
CreateTargetGroupInput.add_member(:unhealthy_threshold_count, Shapes::ShapeRef.new(shape: HealthCheckThresholdCount, location_name: "UnhealthyThresholdCount"))
|
422
428
|
CreateTargetGroupInput.add_member(:matcher, Shapes::ShapeRef.new(shape: Matcher, location_name: "Matcher"))
|
423
429
|
CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
430
|
+
CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
424
431
|
CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
|
425
432
|
|
426
433
|
CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
|
@@ -623,6 +630,7 @@ module Aws::ElasticLoadBalancingV2
|
|
623
630
|
LoadBalancer.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
624
631
|
LoadBalancer.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "SecurityGroups"))
|
625
632
|
LoadBalancer.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
633
|
+
LoadBalancer.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
|
626
634
|
LoadBalancer.struct_class = Types::LoadBalancer
|
627
635
|
|
628
636
|
LoadBalancerAddress.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "IpAddress"))
|
@@ -999,6 +1007,7 @@ module Aws::ElasticLoadBalancingV2
|
|
999
1007
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLoadBalancerActionException)
|
1000
1008
|
o.errors << Shapes::ShapeRef.new(shape: TooManyUniqueTargetGroupsPerLoadBalancerException)
|
1001
1009
|
o.errors << Shapes::ShapeRef.new(shape: ALPNPolicyNotSupportedException)
|
1010
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
1002
1011
|
end)
|
1003
1012
|
|
1004
1013
|
api.add_operation(:create_load_balancer, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1042,6 +1051,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1042
1051
|
o.errors << Shapes::ShapeRef.new(shape: TooManyActionsException)
|
1043
1052
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLoadBalancerActionException)
|
1044
1053
|
o.errors << Shapes::ShapeRef.new(shape: TooManyUniqueTargetGroupsPerLoadBalancerException)
|
1054
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
1045
1055
|
end)
|
1046
1056
|
|
1047
1057
|
api.add_operation(:create_target_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1053,6 +1063,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1053
1063
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateTargetGroupNameException)
|
1054
1064
|
o.errors << Shapes::ShapeRef.new(shape: TooManyTargetGroupsException)
|
1055
1065
|
o.errors << Shapes::ShapeRef.new(shape: InvalidConfigurationRequestException)
|
1066
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
1056
1067
|
end)
|
1057
1068
|
|
1058
1069
|
api.add_operation(:delete_listener, Seahorse::Model::Operation.new.tap do |o|
|
@@ -438,6 +438,10 @@ module Aws::ElasticLoadBalancingV2
|
|
438
438
|
# Zone.
|
439
439
|
# @return [String]
|
440
440
|
#
|
441
|
+
# @!attribute [rw] outpost_id
|
442
|
+
# \[Application Load Balancers on Outposts\] The ID of the Outpost.
|
443
|
+
# @return [String]
|
444
|
+
#
|
441
445
|
# @!attribute [rw] load_balancer_addresses
|
442
446
|
# \[Network Load Balancers\] If you need static IP addresses for your
|
443
447
|
# load balancer, you can specify one Elastic IP address per
|
@@ -451,6 +455,7 @@ module Aws::ElasticLoadBalancingV2
|
|
451
455
|
class AvailabilityZone < Struct.new(
|
452
456
|
:zone_name,
|
453
457
|
:subnet_id,
|
458
|
+
:outpost_id,
|
454
459
|
:load_balancer_addresses)
|
455
460
|
SENSITIVE = []
|
456
461
|
include Aws::Structure
|
@@ -592,6 +597,12 @@ module Aws::ElasticLoadBalancingV2
|
|
592
597
|
# },
|
593
598
|
# ],
|
594
599
|
# alpn_policy: ["AlpnPolicyValue"],
|
600
|
+
# tags: [
|
601
|
+
# {
|
602
|
+
# key: "TagKey", # required
|
603
|
+
# value: "TagValue",
|
604
|
+
# },
|
605
|
+
# ],
|
595
606
|
# }
|
596
607
|
#
|
597
608
|
# @!attribute [rw] load_balancer_arn
|
@@ -699,6 +710,10 @@ module Aws::ElasticLoadBalancingV2
|
|
699
710
|
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#alpn-policies
|
700
711
|
# @return [Array<String>]
|
701
712
|
#
|
713
|
+
# @!attribute [rw] tags
|
714
|
+
# The tags to assign to the listener.
|
715
|
+
# @return [Array<Types::Tag>]
|
716
|
+
#
|
702
717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateListenerInput AWS API Documentation
|
703
718
|
#
|
704
719
|
class CreateListenerInput < Struct.new(
|
@@ -708,7 +723,8 @@ module Aws::ElasticLoadBalancingV2
|
|
708
723
|
:ssl_policy,
|
709
724
|
:certificates,
|
710
725
|
:default_actions,
|
711
|
-
:alpn_policy
|
726
|
+
:alpn_policy,
|
727
|
+
:tags)
|
712
728
|
SENSITIVE = []
|
713
729
|
include Aws::Structure
|
714
730
|
end
|
@@ -748,6 +764,7 @@ module Aws::ElasticLoadBalancingV2
|
|
748
764
|
# ],
|
749
765
|
# type: "application", # accepts application, network
|
750
766
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
767
|
+
# customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
|
751
768
|
# }
|
752
769
|
#
|
753
770
|
# @!attribute [rw] name
|
@@ -767,6 +784,12 @@ module Aws::ElasticLoadBalancingV2
|
|
767
784
|
# \[Application Load Balancers\] You must specify subnets from at
|
768
785
|
# least two Availability Zones.
|
769
786
|
#
|
787
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
788
|
+
# Outpost subnet.
|
789
|
+
#
|
790
|
+
# \[Application Load Balancers on Local Zones\] You can specify
|
791
|
+
# subnets from one or more Local Zones.
|
792
|
+
#
|
770
793
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
771
794
|
# Availability Zones.
|
772
795
|
# @return [Array<String>]
|
@@ -780,6 +803,12 @@ module Aws::ElasticLoadBalancingV2
|
|
780
803
|
# least two Availability Zones. You cannot specify Elastic IP
|
781
804
|
# addresses for your subnets.
|
782
805
|
#
|
806
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
807
|
+
# Outpost subnet.
|
808
|
+
#
|
809
|
+
# \[Application Load Balancers on Local Zones\] You can specify
|
810
|
+
# subnets from one or more Local Zones.
|
811
|
+
#
|
783
812
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
784
813
|
# Availability Zones. You can specify one Elastic IP address per
|
785
814
|
# subnet if you need static IP addresses for your internet-facing load
|
@@ -809,7 +838,7 @@ module Aws::ElasticLoadBalancingV2
|
|
809
838
|
# @return [String]
|
810
839
|
#
|
811
840
|
# @!attribute [rw] tags
|
812
|
-
#
|
841
|
+
# The tags to assign to the load balancer.
|
813
842
|
# @return [Array<Types::Tag>]
|
814
843
|
#
|
815
844
|
# @!attribute [rw] type
|
@@ -823,6 +852,11 @@ module Aws::ElasticLoadBalancingV2
|
|
823
852
|
# Internal load balancers must use `ipv4`.
|
824
853
|
# @return [String]
|
825
854
|
#
|
855
|
+
# @!attribute [rw] customer_owned_ipv_4_pool
|
856
|
+
# \[Application Load Balancers on Outposts\] The ID of the
|
857
|
+
# customer-owned address pool (CoIP pool).
|
858
|
+
# @return [String]
|
859
|
+
#
|
826
860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancerInput AWS API Documentation
|
827
861
|
#
|
828
862
|
class CreateLoadBalancerInput < Struct.new(
|
@@ -833,7 +867,8 @@ module Aws::ElasticLoadBalancingV2
|
|
833
867
|
:scheme,
|
834
868
|
:tags,
|
835
869
|
:type,
|
836
|
-
:ip_address_type
|
870
|
+
:ip_address_type,
|
871
|
+
:customer_owned_ipv_4_pool)
|
837
872
|
SENSITIVE = []
|
838
873
|
include Aws::Structure
|
839
874
|
end
|
@@ -946,6 +981,12 @@ module Aws::ElasticLoadBalancingV2
|
|
946
981
|
# },
|
947
982
|
# },
|
948
983
|
# ],
|
984
|
+
# tags: [
|
985
|
+
# {
|
986
|
+
# key: "TagKey", # required
|
987
|
+
# value: "TagValue",
|
988
|
+
# },
|
989
|
+
# ],
|
949
990
|
# }
|
950
991
|
#
|
951
992
|
# @!attribute [rw] listener_arn
|
@@ -991,13 +1032,18 @@ module Aws::ElasticLoadBalancingV2
|
|
991
1032
|
# custom HTTP response.
|
992
1033
|
# @return [Array<Types::Action>]
|
993
1034
|
#
|
1035
|
+
# @!attribute [rw] tags
|
1036
|
+
# The tags to assign to the rule.
|
1037
|
+
# @return [Array<Types::Tag>]
|
1038
|
+
#
|
994
1039
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateRuleInput AWS API Documentation
|
995
1040
|
#
|
996
1041
|
class CreateRuleInput < Struct.new(
|
997
1042
|
:listener_arn,
|
998
1043
|
:conditions,
|
999
1044
|
:priority,
|
1000
|
-
:actions
|
1045
|
+
:actions,
|
1046
|
+
:tags)
|
1001
1047
|
SENSITIVE = []
|
1002
1048
|
include Aws::Structure
|
1003
1049
|
end
|
@@ -1034,6 +1080,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1034
1080
|
# http_code: "HttpCode", # required
|
1035
1081
|
# },
|
1036
1082
|
# target_type: "instance", # accepts instance, ip, lambda
|
1083
|
+
# tags: [
|
1084
|
+
# {
|
1085
|
+
# key: "TagKey", # required
|
1086
|
+
# value: "TagValue",
|
1087
|
+
# },
|
1088
|
+
# ],
|
1037
1089
|
# }
|
1038
1090
|
#
|
1039
1091
|
# @!attribute [rw] name
|
@@ -1148,6 +1200,10 @@ module Aws::ElasticLoadBalancingV2
|
|
1148
1200
|
# * `lambda` - The target groups contains a single Lambda function.
|
1149
1201
|
# @return [String]
|
1150
1202
|
#
|
1203
|
+
# @!attribute [rw] tags
|
1204
|
+
# The tags to assign to the target group.
|
1205
|
+
# @return [Array<Types::Tag>]
|
1206
|
+
#
|
1151
1207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroupInput AWS API Documentation
|
1152
1208
|
#
|
1153
1209
|
class CreateTargetGroupInput < Struct.new(
|
@@ -1164,7 +1220,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1164
1220
|
:healthy_threshold_count,
|
1165
1221
|
:unhealthy_threshold_count,
|
1166
1222
|
:matcher,
|
1167
|
-
:target_type
|
1223
|
+
:target_type,
|
1224
|
+
:tags)
|
1168
1225
|
SENSITIVE = []
|
1169
1226
|
include Aws::Structure
|
1170
1227
|
end
|
@@ -2229,7 +2286,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2229
2286
|
# @return [String]
|
2230
2287
|
#
|
2231
2288
|
# @!attribute [rw] availability_zones
|
2232
|
-
# The
|
2289
|
+
# The subnets for the load balancer.
|
2233
2290
|
# @return [Array<Types::AvailabilityZone>]
|
2234
2291
|
#
|
2235
2292
|
# @!attribute [rw] security_groups
|
@@ -2242,6 +2299,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2242
2299
|
# (for IPv4 and IPv6 addresses).
|
2243
2300
|
# @return [String]
|
2244
2301
|
#
|
2302
|
+
# @!attribute [rw] customer_owned_ipv_4_pool
|
2303
|
+
# \[Application Load Balancers on Outposts\] The ID of the
|
2304
|
+
# customer-owned address pool.
|
2305
|
+
# @return [String]
|
2306
|
+
#
|
2245
2307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/LoadBalancer AWS API Documentation
|
2246
2308
|
#
|
2247
2309
|
class LoadBalancer < Struct.new(
|
@@ -2256,7 +2318,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2256
2318
|
:type,
|
2257
2319
|
:availability_zones,
|
2258
2320
|
:security_groups,
|
2259
|
-
:ip_address_type
|
2321
|
+
:ip_address_type,
|
2322
|
+
:customer_owned_ipv_4_pool)
|
2260
2323
|
SENSITIVE = []
|
2261
2324
|
include Aws::Structure
|
2262
2325
|
end
|
@@ -3661,7 +3724,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3661
3724
|
end
|
3662
3725
|
|
3663
3726
|
# @!attribute [rw] availability_zones
|
3664
|
-
# Information about the
|
3727
|
+
# Information about the subnets.
|
3665
3728
|
# @return [Array<Types::AvailabilityZone>]
|
3666
3729
|
#
|
3667
3730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnetsOutput AWS API Documentation
|
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.53.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: 2020-
|
11
|
+
date: 2020-10-02 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|