aws-sdk-elasticloadbalancing 1.3.0 → 1.4.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0915840e3ee4ebbbb00213b8dbc350f1330e56b4'
|
|
4
|
+
data.tar.gz: fc61f23843e9cf653c001fe990f64207fe2a542a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcdbaa598137bf24e723808dc05513e028fbf62f2d46591a24d2b5b29af6e5ecce33a52ce12027b83354bdcdc1002012e1b7d8ea8d1d98804b005b454780fa96
|
|
7
|
+
data.tar.gz: af8e82f3b3e423ff5cfb211dbcd6f95eefa080872f2efb2bbdd39e6387b7952bbec833f5a166e7b73e2c7e19177c45df0189b514ad661945b009df9254dbe92a
|
|
@@ -19,6 +19,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
|
|
|
19
19
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
|
20
20
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
|
21
21
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
22
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
23
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
22
24
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
23
25
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
|
24
26
|
|
|
@@ -47,6 +49,8 @@ module Aws::ElasticLoadBalancing
|
|
|
47
49
|
add_plugin(Aws::Plugins::StubResponses)
|
|
48
50
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
|
49
51
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
|
52
|
+
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
53
|
+
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
50
54
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
51
55
|
add_plugin(Aws::Plugins::Protocols::Query)
|
|
52
56
|
|
|
@@ -92,6 +96,22 @@ module Aws::ElasticLoadBalancing
|
|
|
92
96
|
#
|
|
93
97
|
# @option options [String] :access_key_id
|
|
94
98
|
#
|
|
99
|
+
# @option options [] :client_side_monitoring (false)
|
|
100
|
+
# When `true`, client-side metrics will be collected for all API requests from
|
|
101
|
+
# this client.
|
|
102
|
+
#
|
|
103
|
+
# @option options [] :client_side_monitoring_client_id ("")
|
|
104
|
+
# Allows you to provide an identifier for this client which will be attached to
|
|
105
|
+
# all generated client side metrics. Defaults to an empty string.
|
|
106
|
+
#
|
|
107
|
+
# @option options [] :client_side_monitoring_port (31000)
|
|
108
|
+
# Required for publishing client metrics. The port that the client side monitoring
|
|
109
|
+
# agent is running on, where client metrics will be published via UDP.
|
|
110
|
+
#
|
|
111
|
+
# @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
|
|
112
|
+
# Allows you to provide a custom client-side monitoring publisher class. By default,
|
|
113
|
+
# will use the Client Side Monitoring Agent Publisher.
|
|
114
|
+
#
|
|
95
115
|
# @option options [Boolean] :convert_params (true)
|
|
96
116
|
# When `true`, an attempt is made to coerce request parameters into
|
|
97
117
|
# the required types.
|
|
@@ -164,7 +184,7 @@ module Aws::ElasticLoadBalancing
|
|
|
164
184
|
# updates its value.
|
|
165
185
|
#
|
|
166
186
|
# For more information, see [Tag Your Classic Load Balancer][1] in the
|
|
167
|
-
# *Classic Load
|
|
187
|
+
# *Classic Load Balancers Guide*.
|
|
168
188
|
#
|
|
169
189
|
#
|
|
170
190
|
#
|
|
@@ -225,7 +245,7 @@ module Aws::ElasticLoadBalancing
|
|
|
225
245
|
# the previously associated security groups.
|
|
226
246
|
#
|
|
227
247
|
# For more information, see [Security Groups for Load Balancers in a
|
|
228
|
-
# VPC][1] in the *Classic Load
|
|
248
|
+
# VPC][1] in the *Classic Load Balancers Guide*.
|
|
229
249
|
#
|
|
230
250
|
#
|
|
231
251
|
#
|
|
@@ -287,7 +307,7 @@ module Aws::ElasticLoadBalancing
|
|
|
287
307
|
#
|
|
288
308
|
# The load balancer evenly distributes requests across all registered
|
|
289
309
|
# subnets. For more information, see [Add or Remove Subnets for Your
|
|
290
|
-
# Load Balancer in a VPC][1] in the *Classic Load
|
|
310
|
+
# Load Balancer in a VPC][1] in the *Classic Load Balancers Guide*.
|
|
291
311
|
#
|
|
292
312
|
#
|
|
293
313
|
#
|
|
@@ -349,7 +369,7 @@ module Aws::ElasticLoadBalancing
|
|
|
349
369
|
# state of your EC2 instances.
|
|
350
370
|
#
|
|
351
371
|
# For more information, see [Configure Health Checks for Your Load
|
|
352
|
-
# Balancer][1] in the *Classic Load
|
|
372
|
+
# Balancer][1] in the *Classic Load Balancers Guide*.
|
|
353
373
|
#
|
|
354
374
|
#
|
|
355
375
|
#
|
|
@@ -437,7 +457,7 @@ module Aws::ElasticLoadBalancing
|
|
|
437
457
|
# session stops being sticky until a new application cookie is issued.
|
|
438
458
|
#
|
|
439
459
|
# For more information, see [Application-Controlled Session
|
|
440
|
-
# Stickiness][1] in the *Classic Load
|
|
460
|
+
# Stickiness][1] in the *Classic Load Balancers Guide*.
|
|
441
461
|
#
|
|
442
462
|
#
|
|
443
463
|
#
|
|
@@ -503,7 +523,7 @@ module Aws::ElasticLoadBalancing
|
|
|
503
523
|
# configuration.
|
|
504
524
|
#
|
|
505
525
|
# For more information, see [Duration-Based Session Stickiness][1] in
|
|
506
|
-
# the *Classic Load
|
|
526
|
+
# the *Classic Load Balancers Guide*.
|
|
507
527
|
#
|
|
508
528
|
#
|
|
509
529
|
#
|
|
@@ -567,7 +587,7 @@ module Aws::ElasticLoadBalancing
|
|
|
567
587
|
# You can create up to 20 load balancers per region per account. You can
|
|
568
588
|
# request an increase for the number of load balancers for your account.
|
|
569
589
|
# For more information, see [Limits for Your Classic Load Balancer][1]
|
|
570
|
-
# in the *Classic Load
|
|
590
|
+
# in the *Classic Load Balancers Guide*.
|
|
571
591
|
#
|
|
572
592
|
#
|
|
573
593
|
#
|
|
@@ -585,7 +605,7 @@ module Aws::ElasticLoadBalancing
|
|
|
585
605
|
# The listeners.
|
|
586
606
|
#
|
|
587
607
|
# For more information, see [Listeners for Your Classic Load
|
|
588
|
-
# Balancer][1] in the *Classic Load
|
|
608
|
+
# Balancer][1] in the *Classic Load Balancers Guide*.
|
|
589
609
|
#
|
|
590
610
|
#
|
|
591
611
|
#
|
|
@@ -628,7 +648,7 @@ module Aws::ElasticLoadBalancing
|
|
|
628
648
|
# A list of tags to assign to the load balancer.
|
|
629
649
|
#
|
|
630
650
|
# For more information about tagging your load balancer, see [Tag Your
|
|
631
|
-
# Classic Load Balancer][1] in the *Classic Load
|
|
651
|
+
# Classic Load Balancer][1] in the *Classic Load Balancers Guide*.
|
|
632
652
|
#
|
|
633
653
|
#
|
|
634
654
|
#
|
|
@@ -827,7 +847,7 @@ module Aws::ElasticLoadBalancing
|
|
|
827
847
|
# properties of the existing listener.
|
|
828
848
|
#
|
|
829
849
|
# For more information, see [Listeners for Your Classic Load
|
|
830
|
-
# Balancer][1] in the *Classic Load
|
|
850
|
+
# Balancer][1] in the *Classic Load Balancers Guide*.
|
|
831
851
|
#
|
|
832
852
|
#
|
|
833
853
|
#
|
|
@@ -1119,7 +1139,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1119
1139
|
# deregistered from the load balancer.
|
|
1120
1140
|
#
|
|
1121
1141
|
# For more information, see [Register or De-Register EC2 Instances][1]
|
|
1122
|
-
# in the *Classic Load
|
|
1142
|
+
# in the *Classic Load Balancers Guide*.
|
|
1123
1143
|
#
|
|
1124
1144
|
#
|
|
1125
1145
|
#
|
|
@@ -1190,7 +1210,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1190
1210
|
# AWS account.
|
|
1191
1211
|
#
|
|
1192
1212
|
# For more information, see [Limits for Your Classic Load Balancer][1]
|
|
1193
|
-
# in the *Classic Load
|
|
1213
|
+
# in the *Classic Load Balancers Guide*.
|
|
1194
1214
|
#
|
|
1195
1215
|
#
|
|
1196
1216
|
#
|
|
@@ -1825,7 +1845,10 @@ module Aws::ElasticLoadBalancing
|
|
|
1825
1845
|
end
|
|
1826
1846
|
|
|
1827
1847
|
# Removes the specified Availability Zones from the set of Availability
|
|
1828
|
-
# Zones for the specified load balancer.
|
|
1848
|
+
# Zones for the specified load balancer in EC2-Classic or a default VPC.
|
|
1849
|
+
#
|
|
1850
|
+
# For load balancers in a non-default VPC, use
|
|
1851
|
+
# DetachLoadBalancerFromSubnets.
|
|
1829
1852
|
#
|
|
1830
1853
|
# There must be at least one Availability Zone registered with a load
|
|
1831
1854
|
# balancer at all times. After an Availability Zone is removed, all
|
|
@@ -1835,7 +1858,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1835
1858
|
# Availability Zones.
|
|
1836
1859
|
#
|
|
1837
1860
|
# For more information, see [Add or Remove Availability Zones][1] in the
|
|
1838
|
-
# *Classic Load
|
|
1861
|
+
# *Classic Load Balancers Guide*.
|
|
1839
1862
|
#
|
|
1840
1863
|
#
|
|
1841
1864
|
#
|
|
@@ -1892,13 +1915,15 @@ module Aws::ElasticLoadBalancing
|
|
|
1892
1915
|
end
|
|
1893
1916
|
|
|
1894
1917
|
# Adds the specified Availability Zones to the set of Availability Zones
|
|
1895
|
-
# for the specified load balancer.
|
|
1918
|
+
# for the specified load balancer in EC2-Classic or a default VPC.
|
|
1896
1919
|
#
|
|
1897
|
-
#
|
|
1898
|
-
#
|
|
1920
|
+
# For load balancers in a non-default VPC, use
|
|
1921
|
+
# AttachLoadBalancerToSubnets.
|
|
1899
1922
|
#
|
|
1900
|
-
#
|
|
1901
|
-
#
|
|
1923
|
+
# The load balancer evenly distributes requests across all its
|
|
1924
|
+
# registered Availability Zones that contain instances. For more
|
|
1925
|
+
# information, see [Add or Remove Availability Zones][1] in the *Classic
|
|
1926
|
+
# Load Balancers Guide*.
|
|
1902
1927
|
#
|
|
1903
1928
|
#
|
|
1904
1929
|
#
|
|
@@ -1964,7 +1989,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1964
1989
|
# `ConnectionSettings` by specifying an idle connection timeout value
|
|
1965
1990
|
# for your load balancer.
|
|
1966
1991
|
#
|
|
1967
|
-
# For more information, see the following in the *Classic Load
|
|
1992
|
+
# For more information, see the following in the *Classic Load Balancers
|
|
1968
1993
|
# Guide*\:
|
|
1969
1994
|
#
|
|
1970
1995
|
# * [Cross-Zone Load Balancing][1]
|
|
@@ -2120,7 +2145,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2120
2145
|
# DeregisterInstancesFromLoadBalancer.
|
|
2121
2146
|
#
|
|
2122
2147
|
# For more information, see [Register or De-Register EC2 Instances][1]
|
|
2123
|
-
# in the *Classic Load
|
|
2148
|
+
# in the *Classic Load Balancers Guide*.
|
|
2124
2149
|
#
|
|
2125
2150
|
#
|
|
2126
2151
|
#
|
|
@@ -2243,7 +2268,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2243
2268
|
#
|
|
2244
2269
|
# For more information about updating your SSL certificate, see [Replace
|
|
2245
2270
|
# the SSL Certificate for Your Load Balancer][1] in the *Classic Load
|
|
2246
|
-
#
|
|
2271
|
+
# Balancers Guide*.
|
|
2247
2272
|
#
|
|
2248
2273
|
#
|
|
2249
2274
|
#
|
|
@@ -2303,8 +2328,8 @@ module Aws::ElasticLoadBalancing
|
|
|
2303
2328
|
#
|
|
2304
2329
|
# For more information about enabling back-end instance authentication,
|
|
2305
2330
|
# see [Configure Back-end Instance Authentication][1] in the *Classic
|
|
2306
|
-
# Load
|
|
2307
|
-
# [Configure Proxy Protocol Support][2] in the *Classic Load
|
|
2331
|
+
# Load Balancers Guide*. For more information about Proxy Protocol, see
|
|
2332
|
+
# [Configure Proxy Protocol Support][2] in the *Classic Load Balancers
|
|
2308
2333
|
# Guide*.
|
|
2309
2334
|
#
|
|
2310
2335
|
#
|
|
@@ -2363,7 +2388,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2363
2388
|
# For more information about setting policies, see [Update the SSL
|
|
2364
2389
|
# Negotiation Configuration][1], [Duration-Based Session Stickiness][2],
|
|
2365
2390
|
# and [Application-Controlled Session Stickiness][3] in the *Classic
|
|
2366
|
-
# Load
|
|
2391
|
+
# Load Balancers Guide*.
|
|
2367
2392
|
#
|
|
2368
2393
|
#
|
|
2369
2394
|
#
|
|
@@ -2427,7 +2452,7 @@ module Aws::ElasticLoadBalancing
|
|
|
2427
2452
|
params: params,
|
|
2428
2453
|
config: config)
|
|
2429
2454
|
context[:gem_name] = 'aws-sdk-elasticloadbalancing'
|
|
2430
|
-
context[:gem_version] = '1.
|
|
2455
|
+
context[:gem_version] = '1.4.0'
|
|
2431
2456
|
Seahorse::Client::Request.new(handlers, context)
|
|
2432
2457
|
end
|
|
2433
2458
|
|
|
@@ -588,10 +588,13 @@ module Aws::ElasticLoadBalancing
|
|
|
588
588
|
api.version = "2012-06-01"
|
|
589
589
|
|
|
590
590
|
api.metadata = {
|
|
591
|
+
"apiVersion" => "2012-06-01",
|
|
591
592
|
"endpointPrefix" => "elasticloadbalancing",
|
|
592
593
|
"protocol" => "query",
|
|
593
594
|
"serviceFullName" => "Elastic Load Balancing",
|
|
595
|
+
"serviceId" => "Elastic Load Balancing",
|
|
594
596
|
"signatureVersion" => "v4",
|
|
597
|
+
"uid" => "elasticloadbalancing-2012-06-01",
|
|
595
598
|
"xmlNamespace" => "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
|
|
596
599
|
}
|
|
597
600
|
|
|
@@ -409,7 +409,7 @@ module Aws::ElasticLoadBalancing
|
|
|
409
409
|
# The listeners.
|
|
410
410
|
#
|
|
411
411
|
# For more information, see [Listeners for Your Classic Load
|
|
412
|
-
# Balancer][1] in the *Classic Load
|
|
412
|
+
# Balancer][1] in the *Classic Load Balancers Guide*.
|
|
413
413
|
#
|
|
414
414
|
#
|
|
415
415
|
#
|
|
@@ -457,7 +457,7 @@ module Aws::ElasticLoadBalancing
|
|
|
457
457
|
# A list of tags to assign to the load balancer.
|
|
458
458
|
#
|
|
459
459
|
# For more information about tagging your load balancer, see [Tag Your
|
|
460
|
-
# Classic Load Balancer][1] in the *Classic Load
|
|
460
|
+
# Classic Load Balancer][1] in the *Classic Load Balancers Guide*.
|
|
461
461
|
#
|
|
462
462
|
#
|
|
463
463
|
#
|
|
@@ -1314,6 +1314,8 @@ module Aws::ElasticLoadBalancing
|
|
|
1314
1314
|
# * classic-listeners
|
|
1315
1315
|
#
|
|
1316
1316
|
# * classic-load-balancers
|
|
1317
|
+
#
|
|
1318
|
+
# * classic-registered-instances
|
|
1317
1319
|
# @return [String]
|
|
1318
1320
|
#
|
|
1319
1321
|
# @!attribute [rw] max
|
|
@@ -1332,7 +1334,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1332
1334
|
#
|
|
1333
1335
|
# For information about the protocols and the ports supported by Elastic
|
|
1334
1336
|
# Load Balancing, see [Listeners for Your Classic Load Balancer][1] in
|
|
1335
|
-
# the *Classic Load
|
|
1337
|
+
# the *Classic Load Balancers Guide*.
|
|
1336
1338
|
#
|
|
1337
1339
|
#
|
|
1338
1340
|
#
|
|
@@ -1449,7 +1451,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1449
1451
|
# across all instances regardless of the Availability Zones.
|
|
1450
1452
|
#
|
|
1451
1453
|
# For more information, see [Configure Cross-Zone Load Balancing][1]
|
|
1452
|
-
# in the *Classic Load
|
|
1454
|
+
# in the *Classic Load Balancers Guide*.
|
|
1453
1455
|
#
|
|
1454
1456
|
#
|
|
1455
1457
|
#
|
|
@@ -1462,7 +1464,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1462
1464
|
# you specify.
|
|
1463
1465
|
#
|
|
1464
1466
|
# For more information, see [Enable Access Logs][1] in the *Classic
|
|
1465
|
-
# Load
|
|
1467
|
+
# Load Balancers Guide*.
|
|
1466
1468
|
#
|
|
1467
1469
|
#
|
|
1468
1470
|
#
|
|
@@ -1475,7 +1477,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1475
1477
|
# unhealthy instance.
|
|
1476
1478
|
#
|
|
1477
1479
|
# For more information, see [Configure Connection Draining][1] in the
|
|
1478
|
-
# *Classic Load
|
|
1480
|
+
# *Classic Load Balancers Guide*.
|
|
1479
1481
|
#
|
|
1480
1482
|
#
|
|
1481
1483
|
#
|
|
@@ -1489,7 +1491,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1489
1491
|
# By default, Elastic Load Balancing maintains a 60-second idle
|
|
1490
1492
|
# connection timeout for both front-end and back-end connections of
|
|
1491
1493
|
# your load balancer. For more information, see [Configure Idle
|
|
1492
|
-
# Connection Timeout][1] in the *Classic Load
|
|
1494
|
+
# Connection Timeout][1] in the *Classic Load Balancers Guide*.
|
|
1493
1495
|
#
|
|
1494
1496
|
#
|
|
1495
1497
|
#
|
|
@@ -1525,7 +1527,7 @@ module Aws::ElasticLoadBalancing
|
|
|
1525
1527
|
# The DNS name of the load balancer.
|
|
1526
1528
|
#
|
|
1527
1529
|
# For more information, see [Configure a Custom Domain Name][1] in the
|
|
1528
|
-
# *Classic Load
|
|
1530
|
+
# *Classic Load Balancers Guide*.
|
|
1529
1531
|
#
|
|
1530
1532
|
#
|
|
1531
1533
|
#
|
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.4.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: 2018-
|
|
11
|
+
date: 2018-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|