aws-sdk-elasticloadbalancing 1.23.1 → 1.28.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/lib/aws-sdk-elasticloadbalancing.rb +5 -2
- data/lib/aws-sdk-elasticloadbalancing/client.rb +51 -34
- data/lib/aws-sdk-elasticloadbalancing/client_api.rb +2 -0
- data/lib/aws-sdk-elasticloadbalancing/customizations.rb +1 -0
- data/lib/aws-sdk-elasticloadbalancing/errors.rb +2 -0
- data/lib/aws-sdk-elasticloadbalancing/resource.rb +2 -0
- data/lib/aws-sdk-elasticloadbalancing/types.rb +99 -15
- data/lib/aws-sdk-elasticloadbalancing/waiters.rb +2 -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: 342274eb8be71efa54b30dff153697b369be7f5d87f6d6b9083efcb8011f9bb0
|
|
4
|
+
data.tar.gz: ed4757b66dcc8bfd97bcc181f6570a98dfd5e46e71b220f5f48075e2ac7610fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72987b04b7930d629ba6feecc06c09c36a588bbd66ae57ae3c6693d83de6de6657063ff040948f46d0302e7aeb3af0bf699414fcbdc6da0f203045019781945d
|
|
7
|
+
data.tar.gz: 24c65a6a437df8dfb927a3411d67399048160c04cdc7f45b710ecd236e9ecd95528f43a16ea1659c8bdb14517d72fbc39bd1c271a5090a423125d1c42a0747d7
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-elasticloadbalancing/customizations'
|
|
|
43
46
|
#
|
|
44
47
|
# See {Errors} for more information.
|
|
45
48
|
#
|
|
46
|
-
#
|
|
49
|
+
# @!group service
|
|
47
50
|
module Aws::ElasticLoadBalancing
|
|
48
51
|
|
|
49
|
-
GEM_VERSION = '1.
|
|
52
|
+
GEM_VERSION = '1.28.0'
|
|
50
53
|
|
|
51
54
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -83,13 +85,28 @@ module Aws::ElasticLoadBalancing
|
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
84
86
|
# credentials.
|
|
85
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
|
+
#
|
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
88
104
|
#
|
|
89
|
-
# * `Aws::
|
|
90
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
91
107
|
#
|
|
92
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
93
110
|
#
|
|
94
111
|
# When `:credentials` are not configured directly, the following
|
|
95
112
|
# locations will be searched for credentials:
|
|
@@ -99,10 +116,10 @@ module Aws::ElasticLoadBalancing
|
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
100
117
|
# * `~/.aws/credentials`
|
|
101
118
|
# * `~/.aws/config`
|
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
103
|
-
# very aggressive. Construct and pass an instance of
|
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
|
105
|
-
# 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.
|
|
106
123
|
#
|
|
107
124
|
# @option options [required, String] :region
|
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -322,7 +339,7 @@ module Aws::ElasticLoadBalancing
|
|
|
322
339
|
#
|
|
323
340
|
#
|
|
324
341
|
#
|
|
325
|
-
# [1]:
|
|
342
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
|
|
326
343
|
#
|
|
327
344
|
# @option params [required, Array<String>] :load_balancer_names
|
|
328
345
|
# The name of the load balancer. You can specify one load balancer only.
|
|
@@ -383,7 +400,7 @@ module Aws::ElasticLoadBalancing
|
|
|
383
400
|
#
|
|
384
401
|
#
|
|
385
402
|
#
|
|
386
|
-
# [1]:
|
|
403
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-groups.html#elb-vpc-security-groups
|
|
387
404
|
#
|
|
388
405
|
# @option params [required, String] :load_balancer_name
|
|
389
406
|
# The name of the load balancer.
|
|
@@ -445,7 +462,7 @@ module Aws::ElasticLoadBalancing
|
|
|
445
462
|
#
|
|
446
463
|
#
|
|
447
464
|
#
|
|
448
|
-
# [1]:
|
|
465
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-manage-subnets.html
|
|
449
466
|
#
|
|
450
467
|
# @option params [required, String] :load_balancer_name
|
|
451
468
|
# The name of the load balancer.
|
|
@@ -507,7 +524,7 @@ module Aws::ElasticLoadBalancing
|
|
|
507
524
|
#
|
|
508
525
|
#
|
|
509
526
|
#
|
|
510
|
-
# [1]:
|
|
527
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-healthchecks.html
|
|
511
528
|
#
|
|
512
529
|
# @option params [required, String] :load_balancer_name
|
|
513
530
|
# The name of the load balancer.
|
|
@@ -595,7 +612,7 @@ module Aws::ElasticLoadBalancing
|
|
|
595
612
|
#
|
|
596
613
|
#
|
|
597
614
|
#
|
|
598
|
-
# [1]:
|
|
615
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-application
|
|
599
616
|
#
|
|
600
617
|
# @option params [required, String] :load_balancer_name
|
|
601
618
|
# The name of the load balancer.
|
|
@@ -661,7 +678,7 @@ module Aws::ElasticLoadBalancing
|
|
|
661
678
|
#
|
|
662
679
|
#
|
|
663
680
|
#
|
|
664
|
-
# [1]:
|
|
681
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-duration
|
|
665
682
|
#
|
|
666
683
|
# @option params [required, String] :load_balancer_name
|
|
667
684
|
# The name of the load balancer.
|
|
@@ -725,7 +742,7 @@ module Aws::ElasticLoadBalancing
|
|
|
725
742
|
#
|
|
726
743
|
#
|
|
727
744
|
#
|
|
728
|
-
# [1]:
|
|
745
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html
|
|
729
746
|
#
|
|
730
747
|
# @option params [required, String] :load_balancer_name
|
|
731
748
|
# The name of the load balancer.
|
|
@@ -743,7 +760,7 @@ module Aws::ElasticLoadBalancing
|
|
|
743
760
|
#
|
|
744
761
|
#
|
|
745
762
|
#
|
|
746
|
-
# [1]:
|
|
763
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
|
|
747
764
|
#
|
|
748
765
|
# @option params [Array<String>] :availability_zones
|
|
749
766
|
# One or more Availability Zones from the same region as the load
|
|
@@ -776,7 +793,7 @@ module Aws::ElasticLoadBalancing
|
|
|
776
793
|
#
|
|
777
794
|
#
|
|
778
795
|
#
|
|
779
|
-
# [1]:
|
|
796
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme
|
|
780
797
|
#
|
|
781
798
|
# @option params [Array<Types::Tag>] :tags
|
|
782
799
|
# A list of tags to assign to the load balancer.
|
|
@@ -786,7 +803,7 @@ module Aws::ElasticLoadBalancing
|
|
|
786
803
|
#
|
|
787
804
|
#
|
|
788
805
|
#
|
|
789
|
-
# [1]:
|
|
806
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
|
|
790
807
|
#
|
|
791
808
|
# @return [Types::CreateAccessPointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
792
809
|
#
|
|
@@ -985,7 +1002,7 @@ module Aws::ElasticLoadBalancing
|
|
|
985
1002
|
#
|
|
986
1003
|
#
|
|
987
1004
|
#
|
|
988
|
-
# [1]:
|
|
1005
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
|
|
989
1006
|
#
|
|
990
1007
|
# @option params [required, String] :load_balancer_name
|
|
991
1008
|
# The name of the load balancer.
|
|
@@ -1277,7 +1294,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1277
1294
|
#
|
|
1278
1295
|
#
|
|
1279
1296
|
#
|
|
1280
|
-
# [1]:
|
|
1297
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-deregister-register-instances.html
|
|
1281
1298
|
#
|
|
1282
1299
|
# @option params [required, String] :load_balancer_name
|
|
1283
1300
|
# The name of the load balancer.
|
|
@@ -1348,7 +1365,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1348
1365
|
#
|
|
1349
1366
|
#
|
|
1350
1367
|
#
|
|
1351
|
-
# [1]:
|
|
1368
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html
|
|
1352
1369
|
#
|
|
1353
1370
|
# @option params [String] :marker
|
|
1354
1371
|
# The marker for the next set of results. (You received this marker from
|
|
@@ -2005,7 +2022,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2005
2022
|
#
|
|
2006
2023
|
#
|
|
2007
2024
|
#
|
|
2008
|
-
# [1]:
|
|
2025
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-az.html
|
|
2009
2026
|
#
|
|
2010
2027
|
# @option params [required, String] :load_balancer_name
|
|
2011
2028
|
# The name of the load balancer.
|
|
@@ -2070,7 +2087,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2070
2087
|
#
|
|
2071
2088
|
#
|
|
2072
2089
|
#
|
|
2073
|
-
# [1]:
|
|
2090
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-az.html
|
|
2074
2091
|
#
|
|
2075
2092
|
# @option params [required, String] :load_balancer_name
|
|
2076
2093
|
# The name of the load balancer.
|
|
@@ -2145,10 +2162,10 @@ module Aws::ElasticLoadBalancing
|
|
|
2145
2162
|
#
|
|
2146
2163
|
#
|
|
2147
2164
|
#
|
|
2148
|
-
# [1]:
|
|
2149
|
-
# [2]:
|
|
2150
|
-
# [3]:
|
|
2151
|
-
# [4]:
|
|
2165
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html
|
|
2166
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html
|
|
2167
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/access-log-collection.html
|
|
2168
|
+
# [4]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html
|
|
2152
2169
|
#
|
|
2153
2170
|
# @option params [required, String] :load_balancer_name
|
|
2154
2171
|
# The name of the load balancer.
|
|
@@ -2292,7 +2309,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2292
2309
|
#
|
|
2293
2310
|
#
|
|
2294
2311
|
#
|
|
2295
|
-
# [1]:
|
|
2312
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-deregister-register-instances.html
|
|
2296
2313
|
#
|
|
2297
2314
|
# @option params [required, String] :load_balancer_name
|
|
2298
2315
|
# The name of the load balancer.
|
|
@@ -2415,7 +2432,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2415
2432
|
#
|
|
2416
2433
|
#
|
|
2417
2434
|
#
|
|
2418
|
-
# [1]:
|
|
2435
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-update-ssl-cert.html
|
|
2419
2436
|
#
|
|
2420
2437
|
# @option params [required, String] :load_balancer_name
|
|
2421
2438
|
# The name of the load balancer.
|
|
@@ -2477,8 +2494,8 @@ module Aws::ElasticLoadBalancing
|
|
|
2477
2494
|
#
|
|
2478
2495
|
#
|
|
2479
2496
|
#
|
|
2480
|
-
# [1]:
|
|
2481
|
-
# [2]:
|
|
2497
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-create-https-ssl-load-balancer.html#configure_backendauth_clt
|
|
2498
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-proxy-protocol.html
|
|
2482
2499
|
#
|
|
2483
2500
|
# @option params [required, String] :load_balancer_name
|
|
2484
2501
|
# The name of the load balancer.
|
|
@@ -2535,9 +2552,9 @@ module Aws::ElasticLoadBalancing
|
|
|
2535
2552
|
#
|
|
2536
2553
|
#
|
|
2537
2554
|
#
|
|
2538
|
-
# [1]:
|
|
2539
|
-
# [2]:
|
|
2540
|
-
# [3]:
|
|
2555
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/ssl-config-update.html
|
|
2556
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-duration
|
|
2557
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-application
|
|
2541
2558
|
#
|
|
2542
2559
|
# @option params [required, String] :load_balancer_name
|
|
2543
2560
|
# The name of the load balancer.
|
|
@@ -2595,7 +2612,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2595
2612
|
params: params,
|
|
2596
2613
|
config: config)
|
|
2597
2614
|
context[:gem_name] = 'aws-sdk-elasticloadbalancing'
|
|
2598
|
-
context[:gem_version] = '1.
|
|
2615
|
+
context[:gem_version] = '1.28.0'
|
|
2599
2616
|
Seahorse::Client::Request.new(handlers, context)
|
|
2600
2617
|
end
|
|
2601
2618
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -48,6 +50,7 @@ module Aws::ElasticLoadBalancing
|
|
|
48
50
|
:s3_bucket_name,
|
|
49
51
|
:emit_interval,
|
|
50
52
|
:s3_bucket_prefix)
|
|
53
|
+
SENSITIVE = []
|
|
51
54
|
include Aws::Structure
|
|
52
55
|
end
|
|
53
56
|
|
|
@@ -81,6 +84,7 @@ module Aws::ElasticLoadBalancing
|
|
|
81
84
|
class AddAvailabilityZonesInput < Struct.new(
|
|
82
85
|
:load_balancer_name,
|
|
83
86
|
:availability_zones)
|
|
87
|
+
SENSITIVE = []
|
|
84
88
|
include Aws::Structure
|
|
85
89
|
end
|
|
86
90
|
|
|
@@ -94,6 +98,7 @@ module Aws::ElasticLoadBalancing
|
|
|
94
98
|
#
|
|
95
99
|
class AddAvailabilityZonesOutput < Struct.new(
|
|
96
100
|
:availability_zones)
|
|
101
|
+
SENSITIVE = []
|
|
97
102
|
include Aws::Structure
|
|
98
103
|
end
|
|
99
104
|
|
|
@@ -126,6 +131,7 @@ module Aws::ElasticLoadBalancing
|
|
|
126
131
|
class AddTagsInput < Struct.new(
|
|
127
132
|
:load_balancer_names,
|
|
128
133
|
:tags)
|
|
134
|
+
SENSITIVE = []
|
|
129
135
|
include Aws::Structure
|
|
130
136
|
end
|
|
131
137
|
|
|
@@ -135,7 +141,7 @@ module Aws::ElasticLoadBalancing
|
|
|
135
141
|
#
|
|
136
142
|
class AddTagsOutput < Aws::EmptyStructure; end
|
|
137
143
|
|
|
138
|
-
#
|
|
144
|
+
# Information about additional load balancer attributes.
|
|
139
145
|
#
|
|
140
146
|
# @note When making an API call, you may pass AdditionalAttribute
|
|
141
147
|
# data as a hash:
|
|
@@ -146,11 +152,20 @@ module Aws::ElasticLoadBalancing
|
|
|
146
152
|
# }
|
|
147
153
|
#
|
|
148
154
|
# @!attribute [rw] key
|
|
149
|
-
#
|
|
155
|
+
# The name of the attribute.
|
|
156
|
+
#
|
|
157
|
+
# The following attribute is supported.
|
|
158
|
+
#
|
|
159
|
+
# * `elb.http.desyncmitigationmode` - Determines how the load balancer
|
|
160
|
+
# handles requests that might pose a security risk to your
|
|
161
|
+
# application. The possible values are `monitor`, `defensive`, and
|
|
162
|
+
# `strictest`. The default is `defensive`.
|
|
163
|
+
#
|
|
164
|
+
# ^
|
|
150
165
|
# @return [String]
|
|
151
166
|
#
|
|
152
167
|
# @!attribute [rw] value
|
|
153
|
-
# This
|
|
168
|
+
# This value of the attribute.
|
|
154
169
|
# @return [String]
|
|
155
170
|
#
|
|
156
171
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/AdditionalAttribute AWS API Documentation
|
|
@@ -158,6 +173,7 @@ module Aws::ElasticLoadBalancing
|
|
|
158
173
|
class AdditionalAttribute < Struct.new(
|
|
159
174
|
:key,
|
|
160
175
|
:value)
|
|
176
|
+
SENSITIVE = []
|
|
161
177
|
include Aws::Structure
|
|
162
178
|
end
|
|
163
179
|
|
|
@@ -178,6 +194,7 @@ module Aws::ElasticLoadBalancing
|
|
|
178
194
|
class AppCookieStickinessPolicy < Struct.new(
|
|
179
195
|
:policy_name,
|
|
180
196
|
:cookie_name)
|
|
197
|
+
SENSITIVE = []
|
|
181
198
|
include Aws::Structure
|
|
182
199
|
end
|
|
183
200
|
|
|
@@ -205,6 +222,7 @@ module Aws::ElasticLoadBalancing
|
|
|
205
222
|
class ApplySecurityGroupsToLoadBalancerInput < Struct.new(
|
|
206
223
|
:load_balancer_name,
|
|
207
224
|
:security_groups)
|
|
225
|
+
SENSITIVE = []
|
|
208
226
|
include Aws::Structure
|
|
209
227
|
end
|
|
210
228
|
|
|
@@ -218,6 +236,7 @@ module Aws::ElasticLoadBalancing
|
|
|
218
236
|
#
|
|
219
237
|
class ApplySecurityGroupsToLoadBalancerOutput < Struct.new(
|
|
220
238
|
:security_groups)
|
|
239
|
+
SENSITIVE = []
|
|
221
240
|
include Aws::Structure
|
|
222
241
|
end
|
|
223
242
|
|
|
@@ -245,6 +264,7 @@ module Aws::ElasticLoadBalancing
|
|
|
245
264
|
class AttachLoadBalancerToSubnetsInput < Struct.new(
|
|
246
265
|
:load_balancer_name,
|
|
247
266
|
:subnets)
|
|
267
|
+
SENSITIVE = []
|
|
248
268
|
include Aws::Structure
|
|
249
269
|
end
|
|
250
270
|
|
|
@@ -258,6 +278,7 @@ module Aws::ElasticLoadBalancing
|
|
|
258
278
|
#
|
|
259
279
|
class AttachLoadBalancerToSubnetsOutput < Struct.new(
|
|
260
280
|
:subnets)
|
|
281
|
+
SENSITIVE = []
|
|
261
282
|
include Aws::Structure
|
|
262
283
|
end
|
|
263
284
|
|
|
@@ -276,6 +297,7 @@ module Aws::ElasticLoadBalancing
|
|
|
276
297
|
class BackendServerDescription < Struct.new(
|
|
277
298
|
:instance_port,
|
|
278
299
|
:policy_names)
|
|
300
|
+
SENSITIVE = []
|
|
279
301
|
include Aws::Structure
|
|
280
302
|
end
|
|
281
303
|
|
|
@@ -317,6 +339,7 @@ module Aws::ElasticLoadBalancing
|
|
|
317
339
|
class ConfigureHealthCheckInput < Struct.new(
|
|
318
340
|
:load_balancer_name,
|
|
319
341
|
:health_check)
|
|
342
|
+
SENSITIVE = []
|
|
320
343
|
include Aws::Structure
|
|
321
344
|
end
|
|
322
345
|
|
|
@@ -330,6 +353,7 @@ module Aws::ElasticLoadBalancing
|
|
|
330
353
|
#
|
|
331
354
|
class ConfigureHealthCheckOutput < Struct.new(
|
|
332
355
|
:health_check)
|
|
356
|
+
SENSITIVE = []
|
|
333
357
|
include Aws::Structure
|
|
334
358
|
end
|
|
335
359
|
|
|
@@ -358,6 +382,7 @@ module Aws::ElasticLoadBalancing
|
|
|
358
382
|
class ConnectionDraining < Struct.new(
|
|
359
383
|
:enabled,
|
|
360
384
|
:timeout)
|
|
385
|
+
SENSITIVE = []
|
|
361
386
|
include Aws::Structure
|
|
362
387
|
end
|
|
363
388
|
|
|
@@ -380,6 +405,7 @@ module Aws::ElasticLoadBalancing
|
|
|
380
405
|
#
|
|
381
406
|
class ConnectionSettings < Struct.new(
|
|
382
407
|
:idle_timeout)
|
|
408
|
+
SENSITIVE = []
|
|
383
409
|
include Aws::Structure
|
|
384
410
|
end
|
|
385
411
|
|
|
@@ -428,7 +454,7 @@ module Aws::ElasticLoadBalancing
|
|
|
428
454
|
#
|
|
429
455
|
#
|
|
430
456
|
#
|
|
431
|
-
# [1]:
|
|
457
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
|
|
432
458
|
# @return [Array<Types::Listener>]
|
|
433
459
|
#
|
|
434
460
|
# @!attribute [rw] availability_zones
|
|
@@ -465,7 +491,7 @@ module Aws::ElasticLoadBalancing
|
|
|
465
491
|
#
|
|
466
492
|
#
|
|
467
493
|
#
|
|
468
|
-
# [1]:
|
|
494
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme
|
|
469
495
|
# @return [String]
|
|
470
496
|
#
|
|
471
497
|
# @!attribute [rw] tags
|
|
@@ -476,7 +502,7 @@ module Aws::ElasticLoadBalancing
|
|
|
476
502
|
#
|
|
477
503
|
#
|
|
478
504
|
#
|
|
479
|
-
# [1]:
|
|
505
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
|
|
480
506
|
# @return [Array<Types::Tag>]
|
|
481
507
|
#
|
|
482
508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/CreateAccessPointInput AWS API Documentation
|
|
@@ -489,6 +515,7 @@ module Aws::ElasticLoadBalancing
|
|
|
489
515
|
:security_groups,
|
|
490
516
|
:scheme,
|
|
491
517
|
:tags)
|
|
518
|
+
SENSITIVE = []
|
|
492
519
|
include Aws::Structure
|
|
493
520
|
end
|
|
494
521
|
|
|
@@ -502,6 +529,7 @@ module Aws::ElasticLoadBalancing
|
|
|
502
529
|
#
|
|
503
530
|
class CreateAccessPointOutput < Struct.new(
|
|
504
531
|
:dns_name)
|
|
532
|
+
SENSITIVE = []
|
|
505
533
|
include Aws::Structure
|
|
506
534
|
end
|
|
507
535
|
|
|
@@ -536,6 +564,7 @@ module Aws::ElasticLoadBalancing
|
|
|
536
564
|
:load_balancer_name,
|
|
537
565
|
:policy_name,
|
|
538
566
|
:cookie_name)
|
|
567
|
+
SENSITIVE = []
|
|
539
568
|
include Aws::Structure
|
|
540
569
|
end
|
|
541
570
|
|
|
@@ -579,6 +608,7 @@ module Aws::ElasticLoadBalancing
|
|
|
579
608
|
:load_balancer_name,
|
|
580
609
|
:policy_name,
|
|
581
610
|
:cookie_expiration_period)
|
|
611
|
+
SENSITIVE = []
|
|
582
612
|
include Aws::Structure
|
|
583
613
|
end
|
|
584
614
|
|
|
@@ -619,6 +649,7 @@ module Aws::ElasticLoadBalancing
|
|
|
619
649
|
class CreateLoadBalancerListenerInput < Struct.new(
|
|
620
650
|
:load_balancer_name,
|
|
621
651
|
:listeners)
|
|
652
|
+
SENSITIVE = []
|
|
622
653
|
include Aws::Structure
|
|
623
654
|
end
|
|
624
655
|
|
|
@@ -670,6 +701,7 @@ module Aws::ElasticLoadBalancing
|
|
|
670
701
|
:policy_name,
|
|
671
702
|
:policy_type_name,
|
|
672
703
|
:policy_attributes)
|
|
704
|
+
SENSITIVE = []
|
|
673
705
|
include Aws::Structure
|
|
674
706
|
end
|
|
675
707
|
|
|
@@ -697,6 +729,7 @@ module Aws::ElasticLoadBalancing
|
|
|
697
729
|
#
|
|
698
730
|
class CrossZoneLoadBalancing < Struct.new(
|
|
699
731
|
:enabled)
|
|
732
|
+
SENSITIVE = []
|
|
700
733
|
include Aws::Structure
|
|
701
734
|
end
|
|
702
735
|
|
|
@@ -717,6 +750,7 @@ module Aws::ElasticLoadBalancing
|
|
|
717
750
|
#
|
|
718
751
|
class DeleteAccessPointInput < Struct.new(
|
|
719
752
|
:load_balancer_name)
|
|
753
|
+
SENSITIVE = []
|
|
720
754
|
include Aws::Structure
|
|
721
755
|
end
|
|
722
756
|
|
|
@@ -749,6 +783,7 @@ module Aws::ElasticLoadBalancing
|
|
|
749
783
|
class DeleteLoadBalancerListenerInput < Struct.new(
|
|
750
784
|
:load_balancer_name,
|
|
751
785
|
:load_balancer_ports)
|
|
786
|
+
SENSITIVE = []
|
|
752
787
|
include Aws::Structure
|
|
753
788
|
end
|
|
754
789
|
|
|
@@ -781,6 +816,7 @@ module Aws::ElasticLoadBalancing
|
|
|
781
816
|
class DeleteLoadBalancerPolicyInput < Struct.new(
|
|
782
817
|
:load_balancer_name,
|
|
783
818
|
:policy_name)
|
|
819
|
+
SENSITIVE = []
|
|
784
820
|
include Aws::Structure
|
|
785
821
|
end
|
|
786
822
|
|
|
@@ -824,6 +860,7 @@ module Aws::ElasticLoadBalancing
|
|
|
824
860
|
class DeregisterEndPointsInput < Struct.new(
|
|
825
861
|
:load_balancer_name,
|
|
826
862
|
:instances)
|
|
863
|
+
SENSITIVE = []
|
|
827
864
|
include Aws::Structure
|
|
828
865
|
end
|
|
829
866
|
|
|
@@ -837,6 +874,7 @@ module Aws::ElasticLoadBalancing
|
|
|
837
874
|
#
|
|
838
875
|
class DeregisterEndPointsOutput < Struct.new(
|
|
839
876
|
:instances)
|
|
877
|
+
SENSITIVE = []
|
|
840
878
|
include Aws::Structure
|
|
841
879
|
end
|
|
842
880
|
|
|
@@ -871,6 +909,7 @@ module Aws::ElasticLoadBalancing
|
|
|
871
909
|
:load_balancer_names,
|
|
872
910
|
:marker,
|
|
873
911
|
:page_size)
|
|
912
|
+
SENSITIVE = []
|
|
874
913
|
include Aws::Structure
|
|
875
914
|
end
|
|
876
915
|
|
|
@@ -890,6 +929,7 @@ module Aws::ElasticLoadBalancing
|
|
|
890
929
|
class DescribeAccessPointsOutput < Struct.new(
|
|
891
930
|
:load_balancer_descriptions,
|
|
892
931
|
:next_marker)
|
|
932
|
+
SENSITIVE = []
|
|
893
933
|
include Aws::Structure
|
|
894
934
|
end
|
|
895
935
|
|
|
@@ -915,6 +955,7 @@ module Aws::ElasticLoadBalancing
|
|
|
915
955
|
class DescribeAccountLimitsInput < Struct.new(
|
|
916
956
|
:marker,
|
|
917
957
|
:page_size)
|
|
958
|
+
SENSITIVE = []
|
|
918
959
|
include Aws::Structure
|
|
919
960
|
end
|
|
920
961
|
|
|
@@ -932,6 +973,7 @@ module Aws::ElasticLoadBalancing
|
|
|
932
973
|
class DescribeAccountLimitsOutput < Struct.new(
|
|
933
974
|
:limits,
|
|
934
975
|
:next_marker)
|
|
976
|
+
SENSITIVE = []
|
|
935
977
|
include Aws::Structure
|
|
936
978
|
end
|
|
937
979
|
|
|
@@ -962,6 +1004,7 @@ module Aws::ElasticLoadBalancing
|
|
|
962
1004
|
class DescribeEndPointStateInput < Struct.new(
|
|
963
1005
|
:load_balancer_name,
|
|
964
1006
|
:instances)
|
|
1007
|
+
SENSITIVE = []
|
|
965
1008
|
include Aws::Structure
|
|
966
1009
|
end
|
|
967
1010
|
|
|
@@ -975,6 +1018,7 @@ module Aws::ElasticLoadBalancing
|
|
|
975
1018
|
#
|
|
976
1019
|
class DescribeEndPointStateOutput < Struct.new(
|
|
977
1020
|
:instance_states)
|
|
1021
|
+
SENSITIVE = []
|
|
978
1022
|
include Aws::Structure
|
|
979
1023
|
end
|
|
980
1024
|
|
|
@@ -995,6 +1039,7 @@ module Aws::ElasticLoadBalancing
|
|
|
995
1039
|
#
|
|
996
1040
|
class DescribeLoadBalancerAttributesInput < Struct.new(
|
|
997
1041
|
:load_balancer_name)
|
|
1042
|
+
SENSITIVE = []
|
|
998
1043
|
include Aws::Structure
|
|
999
1044
|
end
|
|
1000
1045
|
|
|
@@ -1008,6 +1053,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1008
1053
|
#
|
|
1009
1054
|
class DescribeLoadBalancerAttributesOutput < Struct.new(
|
|
1010
1055
|
:load_balancer_attributes)
|
|
1056
|
+
SENSITIVE = []
|
|
1011
1057
|
include Aws::Structure
|
|
1012
1058
|
end
|
|
1013
1059
|
|
|
@@ -1034,6 +1080,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1034
1080
|
class DescribeLoadBalancerPoliciesInput < Struct.new(
|
|
1035
1081
|
:load_balancer_name,
|
|
1036
1082
|
:policy_names)
|
|
1083
|
+
SENSITIVE = []
|
|
1037
1084
|
include Aws::Structure
|
|
1038
1085
|
end
|
|
1039
1086
|
|
|
@@ -1047,6 +1094,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1047
1094
|
#
|
|
1048
1095
|
class DescribeLoadBalancerPoliciesOutput < Struct.new(
|
|
1049
1096
|
:policy_descriptions)
|
|
1097
|
+
SENSITIVE = []
|
|
1050
1098
|
include Aws::Structure
|
|
1051
1099
|
end
|
|
1052
1100
|
|
|
@@ -1068,6 +1116,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1068
1116
|
#
|
|
1069
1117
|
class DescribeLoadBalancerPolicyTypesInput < Struct.new(
|
|
1070
1118
|
:policy_type_names)
|
|
1119
|
+
SENSITIVE = []
|
|
1071
1120
|
include Aws::Structure
|
|
1072
1121
|
end
|
|
1073
1122
|
|
|
@@ -1081,6 +1130,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1081
1130
|
#
|
|
1082
1131
|
class DescribeLoadBalancerPolicyTypesOutput < Struct.new(
|
|
1083
1132
|
:policy_type_descriptions)
|
|
1133
|
+
SENSITIVE = []
|
|
1084
1134
|
include Aws::Structure
|
|
1085
1135
|
end
|
|
1086
1136
|
|
|
@@ -1101,6 +1151,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1101
1151
|
#
|
|
1102
1152
|
class DescribeTagsInput < Struct.new(
|
|
1103
1153
|
:load_balancer_names)
|
|
1154
|
+
SENSITIVE = []
|
|
1104
1155
|
include Aws::Structure
|
|
1105
1156
|
end
|
|
1106
1157
|
|
|
@@ -1114,6 +1165,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1114
1165
|
#
|
|
1115
1166
|
class DescribeTagsOutput < Struct.new(
|
|
1116
1167
|
:tag_descriptions)
|
|
1168
|
+
SENSITIVE = []
|
|
1117
1169
|
include Aws::Structure
|
|
1118
1170
|
end
|
|
1119
1171
|
|
|
@@ -1140,6 +1192,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1140
1192
|
class DetachLoadBalancerFromSubnetsInput < Struct.new(
|
|
1141
1193
|
:load_balancer_name,
|
|
1142
1194
|
:subnets)
|
|
1195
|
+
SENSITIVE = []
|
|
1143
1196
|
include Aws::Structure
|
|
1144
1197
|
end
|
|
1145
1198
|
|
|
@@ -1153,6 +1206,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1153
1206
|
#
|
|
1154
1207
|
class DetachLoadBalancerFromSubnetsOutput < Struct.new(
|
|
1155
1208
|
:subnets)
|
|
1209
|
+
SENSITIVE = []
|
|
1156
1210
|
include Aws::Structure
|
|
1157
1211
|
end
|
|
1158
1212
|
|
|
@@ -1248,6 +1302,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1248
1302
|
:timeout,
|
|
1249
1303
|
:unhealthy_threshold,
|
|
1250
1304
|
:healthy_threshold)
|
|
1305
|
+
SENSITIVE = []
|
|
1251
1306
|
include Aws::Structure
|
|
1252
1307
|
end
|
|
1253
1308
|
|
|
@@ -1268,6 +1323,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1268
1323
|
#
|
|
1269
1324
|
class Instance < Struct.new(
|
|
1270
1325
|
:instance_id)
|
|
1326
|
+
SENSITIVE = []
|
|
1271
1327
|
include Aws::Structure
|
|
1272
1328
|
end
|
|
1273
1329
|
|
|
@@ -1330,6 +1386,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1330
1386
|
:state,
|
|
1331
1387
|
:reason_code,
|
|
1332
1388
|
:description)
|
|
1389
|
+
SENSITIVE = []
|
|
1333
1390
|
include Aws::Structure
|
|
1334
1391
|
end
|
|
1335
1392
|
|
|
@@ -1382,6 +1439,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1382
1439
|
class LBCookieStickinessPolicy < Struct.new(
|
|
1383
1440
|
:policy_name,
|
|
1384
1441
|
:cookie_expiration_period)
|
|
1442
|
+
SENSITIVE = []
|
|
1385
1443
|
include Aws::Structure
|
|
1386
1444
|
end
|
|
1387
1445
|
|
|
@@ -1407,6 +1465,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1407
1465
|
class Limit < Struct.new(
|
|
1408
1466
|
:name,
|
|
1409
1467
|
:max)
|
|
1468
|
+
SENSITIVE = []
|
|
1410
1469
|
include Aws::Structure
|
|
1411
1470
|
end
|
|
1412
1471
|
|
|
@@ -1418,7 +1477,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1418
1477
|
#
|
|
1419
1478
|
#
|
|
1420
1479
|
#
|
|
1421
|
-
# [1]:
|
|
1480
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
|
|
1422
1481
|
#
|
|
1423
1482
|
# @note When making an API call, you may pass Listener
|
|
1424
1483
|
# data as a hash:
|
|
@@ -1447,8 +1506,9 @@ module Aws::ElasticLoadBalancing
|
|
|
1447
1506
|
# The protocol to use for routing traffic to instances: HTTP, HTTPS,
|
|
1448
1507
|
# TCP, or SSL.
|
|
1449
1508
|
#
|
|
1450
|
-
# If the front-end protocol is
|
|
1451
|
-
#
|
|
1509
|
+
# If the front-end protocol is TCP or SSL, the back-end protocol must
|
|
1510
|
+
# be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the
|
|
1511
|
+
# back-end protocol must be HTTP or HTTPS.
|
|
1452
1512
|
#
|
|
1453
1513
|
# If there is another listener with the same `InstancePort` whose
|
|
1454
1514
|
# `InstanceProtocol` is secure, (HTTPS or SSL), the listener's
|
|
@@ -1475,6 +1535,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1475
1535
|
:instance_protocol,
|
|
1476
1536
|
:instance_port,
|
|
1477
1537
|
:ssl_certificate_id)
|
|
1538
|
+
SENSITIVE = []
|
|
1478
1539
|
include Aws::Structure
|
|
1479
1540
|
end
|
|
1480
1541
|
|
|
@@ -1493,6 +1554,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1493
1554
|
class ListenerDescription < Struct.new(
|
|
1494
1555
|
:listener,
|
|
1495
1556
|
:policy_names)
|
|
1557
|
+
SENSITIVE = []
|
|
1496
1558
|
include Aws::Structure
|
|
1497
1559
|
end
|
|
1498
1560
|
|
|
@@ -1548,7 +1610,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1548
1610
|
#
|
|
1549
1611
|
#
|
|
1550
1612
|
#
|
|
1551
|
-
# [1]:
|
|
1613
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html
|
|
1552
1614
|
# @return [Types::CrossZoneLoadBalancing]
|
|
1553
1615
|
#
|
|
1554
1616
|
# @!attribute [rw] access_log
|
|
@@ -1561,7 +1623,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1561
1623
|
#
|
|
1562
1624
|
#
|
|
1563
1625
|
#
|
|
1564
|
-
# [1]:
|
|
1626
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-access-logs.html
|
|
1565
1627
|
# @return [Types::AccessLog]
|
|
1566
1628
|
#
|
|
1567
1629
|
# @!attribute [rw] connection_draining
|
|
@@ -1574,7 +1636,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1574
1636
|
#
|
|
1575
1637
|
#
|
|
1576
1638
|
#
|
|
1577
|
-
# [1]:
|
|
1639
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html
|
|
1578
1640
|
# @return [Types::ConnectionDraining]
|
|
1579
1641
|
#
|
|
1580
1642
|
# @!attribute [rw] connection_settings
|
|
@@ -1588,11 +1650,11 @@ module Aws::ElasticLoadBalancing
|
|
|
1588
1650
|
#
|
|
1589
1651
|
#
|
|
1590
1652
|
#
|
|
1591
|
-
# [1]:
|
|
1653
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html
|
|
1592
1654
|
# @return [Types::ConnectionSettings]
|
|
1593
1655
|
#
|
|
1594
1656
|
# @!attribute [rw] additional_attributes
|
|
1595
|
-
#
|
|
1657
|
+
# Any additional attributes.
|
|
1596
1658
|
# @return [Array<Types::AdditionalAttribute>]
|
|
1597
1659
|
#
|
|
1598
1660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/LoadBalancerAttributes AWS API Documentation
|
|
@@ -1603,6 +1665,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1603
1665
|
:connection_draining,
|
|
1604
1666
|
:connection_settings,
|
|
1605
1667
|
:additional_attributes)
|
|
1668
|
+
SENSITIVE = []
|
|
1606
1669
|
include Aws::Structure
|
|
1607
1670
|
end
|
|
1608
1671
|
|
|
@@ -1624,7 +1687,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1624
1687
|
#
|
|
1625
1688
|
#
|
|
1626
1689
|
#
|
|
1627
|
-
# [1]:
|
|
1690
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/using-domain-names-with-elb.html
|
|
1628
1691
|
# @return [String]
|
|
1629
1692
|
#
|
|
1630
1693
|
# @!attribute [rw] canonical_hosted_zone_name_id
|
|
@@ -1708,6 +1771,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1708
1771
|
:security_groups,
|
|
1709
1772
|
:created_time,
|
|
1710
1773
|
:scheme)
|
|
1774
|
+
SENSITIVE = []
|
|
1711
1775
|
include Aws::Structure
|
|
1712
1776
|
end
|
|
1713
1777
|
|
|
@@ -1757,6 +1821,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1757
1821
|
class ModifyLoadBalancerAttributesInput < Struct.new(
|
|
1758
1822
|
:load_balancer_name,
|
|
1759
1823
|
:load_balancer_attributes)
|
|
1824
|
+
SENSITIVE = []
|
|
1760
1825
|
include Aws::Structure
|
|
1761
1826
|
end
|
|
1762
1827
|
|
|
@@ -1775,6 +1840,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1775
1840
|
class ModifyLoadBalancerAttributesOutput < Struct.new(
|
|
1776
1841
|
:load_balancer_name,
|
|
1777
1842
|
:load_balancer_attributes)
|
|
1843
|
+
SENSITIVE = []
|
|
1778
1844
|
include Aws::Structure
|
|
1779
1845
|
end
|
|
1780
1846
|
|
|
@@ -1806,6 +1872,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1806
1872
|
:app_cookie_stickiness_policies,
|
|
1807
1873
|
:lb_cookie_stickiness_policies,
|
|
1808
1874
|
:other_policies)
|
|
1875
|
+
SENSITIVE = []
|
|
1809
1876
|
include Aws::Structure
|
|
1810
1877
|
end
|
|
1811
1878
|
|
|
@@ -1832,6 +1899,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1832
1899
|
class PolicyAttribute < Struct.new(
|
|
1833
1900
|
:attribute_name,
|
|
1834
1901
|
:attribute_value)
|
|
1902
|
+
SENSITIVE = []
|
|
1835
1903
|
include Aws::Structure
|
|
1836
1904
|
end
|
|
1837
1905
|
|
|
@@ -1850,6 +1918,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1850
1918
|
class PolicyAttributeDescription < Struct.new(
|
|
1851
1919
|
:attribute_name,
|
|
1852
1920
|
:attribute_value)
|
|
1921
|
+
SENSITIVE = []
|
|
1853
1922
|
include Aws::Structure
|
|
1854
1923
|
end
|
|
1855
1924
|
|
|
@@ -1893,6 +1962,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1893
1962
|
:description,
|
|
1894
1963
|
:default_value,
|
|
1895
1964
|
:cardinality)
|
|
1965
|
+
SENSITIVE = []
|
|
1896
1966
|
include Aws::Structure
|
|
1897
1967
|
end
|
|
1898
1968
|
|
|
@@ -1916,6 +1986,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1916
1986
|
:policy_name,
|
|
1917
1987
|
:policy_type_name,
|
|
1918
1988
|
:policy_attribute_descriptions)
|
|
1989
|
+
SENSITIVE = []
|
|
1919
1990
|
include Aws::Structure
|
|
1920
1991
|
end
|
|
1921
1992
|
|
|
@@ -1946,6 +2017,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1946
2017
|
:policy_type_name,
|
|
1947
2018
|
:description,
|
|
1948
2019
|
:policy_attribute_type_descriptions)
|
|
2020
|
+
SENSITIVE = []
|
|
1949
2021
|
include Aws::Structure
|
|
1950
2022
|
end
|
|
1951
2023
|
|
|
@@ -1982,6 +2054,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1982
2054
|
class RegisterEndPointsInput < Struct.new(
|
|
1983
2055
|
:load_balancer_name,
|
|
1984
2056
|
:instances)
|
|
2057
|
+
SENSITIVE = []
|
|
1985
2058
|
include Aws::Structure
|
|
1986
2059
|
end
|
|
1987
2060
|
|
|
@@ -1995,6 +2068,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1995
2068
|
#
|
|
1996
2069
|
class RegisterEndPointsOutput < Struct.new(
|
|
1997
2070
|
:instances)
|
|
2071
|
+
SENSITIVE = []
|
|
1998
2072
|
include Aws::Structure
|
|
1999
2073
|
end
|
|
2000
2074
|
|
|
@@ -2021,6 +2095,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2021
2095
|
class RemoveAvailabilityZonesInput < Struct.new(
|
|
2022
2096
|
:load_balancer_name,
|
|
2023
2097
|
:availability_zones)
|
|
2098
|
+
SENSITIVE = []
|
|
2024
2099
|
include Aws::Structure
|
|
2025
2100
|
end
|
|
2026
2101
|
|
|
@@ -2034,6 +2109,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2034
2109
|
#
|
|
2035
2110
|
class RemoveAvailabilityZonesOutput < Struct.new(
|
|
2036
2111
|
:availability_zones)
|
|
2112
|
+
SENSITIVE = []
|
|
2037
2113
|
include Aws::Structure
|
|
2038
2114
|
end
|
|
2039
2115
|
|
|
@@ -2065,6 +2141,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2065
2141
|
class RemoveTagsInput < Struct.new(
|
|
2066
2142
|
:load_balancer_names,
|
|
2067
2143
|
:tags)
|
|
2144
|
+
SENSITIVE = []
|
|
2068
2145
|
include Aws::Structure
|
|
2069
2146
|
end
|
|
2070
2147
|
|
|
@@ -2103,6 +2180,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2103
2180
|
:load_balancer_name,
|
|
2104
2181
|
:load_balancer_port,
|
|
2105
2182
|
:ssl_certificate_id)
|
|
2183
|
+
SENSITIVE = []
|
|
2106
2184
|
include Aws::Structure
|
|
2107
2185
|
end
|
|
2108
2186
|
|
|
@@ -2142,6 +2220,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2142
2220
|
:load_balancer_name,
|
|
2143
2221
|
:instance_port,
|
|
2144
2222
|
:policy_names)
|
|
2223
|
+
SENSITIVE = []
|
|
2145
2224
|
include Aws::Structure
|
|
2146
2225
|
end
|
|
2147
2226
|
|
|
@@ -2182,6 +2261,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2182
2261
|
:load_balancer_name,
|
|
2183
2262
|
:load_balancer_port,
|
|
2184
2263
|
:policy_names)
|
|
2264
|
+
SENSITIVE = []
|
|
2185
2265
|
include Aws::Structure
|
|
2186
2266
|
end
|
|
2187
2267
|
|
|
@@ -2206,6 +2286,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2206
2286
|
class SourceSecurityGroup < Struct.new(
|
|
2207
2287
|
:owner_alias,
|
|
2208
2288
|
:group_name)
|
|
2289
|
+
SENSITIVE = []
|
|
2209
2290
|
include Aws::Structure
|
|
2210
2291
|
end
|
|
2211
2292
|
|
|
@@ -2238,6 +2319,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2238
2319
|
class Tag < Struct.new(
|
|
2239
2320
|
:key,
|
|
2240
2321
|
:value)
|
|
2322
|
+
SENSITIVE = []
|
|
2241
2323
|
include Aws::Structure
|
|
2242
2324
|
end
|
|
2243
2325
|
|
|
@@ -2256,6 +2338,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2256
2338
|
class TagDescription < Struct.new(
|
|
2257
2339
|
:load_balancer_name,
|
|
2258
2340
|
:tags)
|
|
2341
|
+
SENSITIVE = []
|
|
2259
2342
|
include Aws::Structure
|
|
2260
2343
|
end
|
|
2261
2344
|
|
|
@@ -2276,6 +2359,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2276
2359
|
#
|
|
2277
2360
|
class TagKeyOnly < Struct.new(
|
|
2278
2361
|
:key)
|
|
2362
|
+
SENSITIVE = []
|
|
2279
2363
|
include Aws::Structure
|
|
2280
2364
|
end
|
|
2281
2365
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-elasticloadbalancing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.28.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-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|