aws-sdk-autoscaling 1.87.0 → 1.89.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-autoscaling/auto_scaling_group.rb +4 -2
- data/lib/aws-sdk-autoscaling/client.rb +47 -50
- data/lib/aws-sdk-autoscaling/resource.rb +3 -1
- data/lib/aws-sdk-autoscaling/types.rb +11 -5
- data/lib/aws-sdk-autoscaling.rb +1 -1
- 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: fb16ec26a4cbab0657093d95e73ba7dd99c3a558e5e63ecc39ac492f4e248b93
|
|
4
|
+
data.tar.gz: b5052a71fc732e23384ad992ef1a3c3a31f00e21644e6ca1b3fb7b976df0ad9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce08f7996a843e7e9e928ab15a6230f77d425745071def6f087c879ddd8dbf7a0e54039c6b3041b068934f3a1bc1d047473b6e2a5db17edfcfe1fb9056ac9e92
|
|
7
|
+
data.tar.gz: d46e065db601d21d59f503e3cc9634bcc6da38fe30640d3d65a7c074da47c10d4bb36c148f77481ab03f791b08636e15200ee7d8284893a8abfdcd0e1d0d7342
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.89.0 (2023-04-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation updates for Amazon EC2 Auto Scaling
|
|
8
|
+
|
|
9
|
+
1.88.0 (2023-04-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Documentation updates for Amazon EC2 Auto Scaling
|
|
13
|
+
|
|
4
14
|
1.87.0 (2023-03-30)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.89.0
|
|
@@ -109,7 +109,7 @@ module Aws::AutoScaling
|
|
|
109
109
|
data[:target_group_arns]
|
|
110
110
|
end
|
|
111
111
|
|
|
112
|
-
# A comma-separated
|
|
112
|
+
# A comma-separated value string of one or more health check types.
|
|
113
113
|
# @return [String]
|
|
114
114
|
def health_check_type
|
|
115
115
|
data[:health_check_type]
|
|
@@ -1279,13 +1279,15 @@ module Aws::AutoScaling
|
|
|
1279
1279
|
# @option options [Array<String>] :availability_zones
|
|
1280
1280
|
# One or more Availability Zones for the group.
|
|
1281
1281
|
# @option options [String] :health_check_type
|
|
1282
|
-
# A comma-separated
|
|
1282
|
+
# A comma-separated value string of one or more health check types.
|
|
1283
1283
|
#
|
|
1284
1284
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
|
1285
1285
|
# default health check and cannot be disabled. For more information, see
|
|
1286
1286
|
# [Health checks for Auto Scaling instances][1] in the *Amazon EC2 Auto
|
|
1287
1287
|
# Scaling User Guide*.
|
|
1288
1288
|
#
|
|
1289
|
+
# Only specify `EC2` if you must clear a value that was previously set.
|
|
1290
|
+
#
|
|
1289
1291
|
#
|
|
1290
1292
|
#
|
|
1291
1293
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
|
|
@@ -425,13 +425,12 @@ module Aws::AutoScaling
|
|
|
425
425
|
req.send_request(options)
|
|
426
426
|
end
|
|
427
427
|
|
|
428
|
-
# <note markdown="1"> This API
|
|
429
|
-
#
|
|
430
|
-
#
|
|
431
|
-
#
|
|
432
|
-
#
|
|
433
|
-
#
|
|
434
|
-
# to simplify how you manage traffic sources.
|
|
428
|
+
# <note markdown="1"> This API operation is superseded by AttachTrafficSources, which can
|
|
429
|
+
# attach multiple traffic sources types. We recommend using
|
|
430
|
+
# `AttachTrafficSources` to simplify how you manage traffic sources.
|
|
431
|
+
# However, we continue to support `AttachLoadBalancerTargetGroups`. You
|
|
432
|
+
# can use both the original `AttachLoadBalancerTargetGroups` API
|
|
433
|
+
# operation and `AttachTrafficSources` on the same Auto Scaling group.
|
|
435
434
|
#
|
|
436
435
|
# </note>
|
|
437
436
|
#
|
|
@@ -505,13 +504,12 @@ module Aws::AutoScaling
|
|
|
505
504
|
req.send_request(options)
|
|
506
505
|
end
|
|
507
506
|
|
|
508
|
-
# <note markdown="1"> This API
|
|
509
|
-
#
|
|
510
|
-
#
|
|
511
|
-
#
|
|
512
|
-
#
|
|
513
|
-
#
|
|
514
|
-
# you manage traffic sources.
|
|
507
|
+
# <note markdown="1"> This API operation is superseded by AttachTrafficSources, which can
|
|
508
|
+
# attach multiple traffic sources types. We recommend using
|
|
509
|
+
# `AttachTrafficSources` to simplify how you manage traffic sources.
|
|
510
|
+
# However, we continue to support `AttachLoadBalancers`. You can use
|
|
511
|
+
# both the original `AttachLoadBalancers` API operation and
|
|
512
|
+
# `AttachTrafficSources` on the same Auto Scaling group.
|
|
515
513
|
#
|
|
516
514
|
# </note>
|
|
517
515
|
#
|
|
@@ -581,10 +579,10 @@ module Aws::AutoScaling
|
|
|
581
579
|
#
|
|
582
580
|
# * Classic Load Balancer
|
|
583
581
|
#
|
|
584
|
-
# * Network Load Balancer
|
|
585
|
-
#
|
|
586
582
|
# * Gateway Load Balancer
|
|
587
583
|
#
|
|
584
|
+
# * Network Load Balancer
|
|
585
|
+
#
|
|
588
586
|
# * VPC Lattice
|
|
589
587
|
#
|
|
590
588
|
# This operation is additive and does not detach existing traffic
|
|
@@ -1026,13 +1024,15 @@ module Aws::AutoScaling
|
|
|
1026
1024
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
|
1027
1025
|
#
|
|
1028
1026
|
# @option params [String] :health_check_type
|
|
1029
|
-
# A comma-separated
|
|
1027
|
+
# A comma-separated value string of one or more health check types.
|
|
1030
1028
|
#
|
|
1031
1029
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
|
1032
1030
|
# default health check and cannot be disabled. For more information, see
|
|
1033
1031
|
# [Health checks for Auto Scaling instances][1] in the *Amazon EC2 Auto
|
|
1034
1032
|
# Scaling User Guide*.
|
|
1035
1033
|
#
|
|
1034
|
+
# Only specify `EC2` if you must clear a value that was previously set.
|
|
1035
|
+
#
|
|
1036
1036
|
#
|
|
1037
1037
|
#
|
|
1038
1038
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
|
|
@@ -3057,14 +3057,12 @@ module Aws::AutoScaling
|
|
|
3057
3057
|
req.send_request(options)
|
|
3058
3058
|
end
|
|
3059
3059
|
|
|
3060
|
-
# <note markdown="1"> This API
|
|
3061
|
-
#
|
|
3062
|
-
#
|
|
3063
|
-
#
|
|
3064
|
-
#
|
|
3065
|
-
# `DescribeTrafficSources`
|
|
3066
|
-
# recommend using the new "traffic sources" API call to simplify how
|
|
3067
|
-
# you manage traffic sources.
|
|
3060
|
+
# <note markdown="1"> This API operation is superseded by DescribeTrafficSources, which can
|
|
3061
|
+
# describe multiple traffic sources types. We recommend using
|
|
3062
|
+
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
|
3063
|
+
# However, we continue to support `DescribeLoadBalancerTargetGroups`.
|
|
3064
|
+
# You can use both the original `DescribeLoadBalancerTargetGroups` API
|
|
3065
|
+
# operation and `DescribeTrafficSources` on the same Auto Scaling group.
|
|
3068
3066
|
#
|
|
3069
3067
|
# </note>
|
|
3070
3068
|
#
|
|
@@ -3165,13 +3163,12 @@ module Aws::AutoScaling
|
|
|
3165
3163
|
req.send_request(options)
|
|
3166
3164
|
end
|
|
3167
3165
|
|
|
3168
|
-
# <note markdown="1"> This API
|
|
3169
|
-
#
|
|
3170
|
-
#
|
|
3171
|
-
#
|
|
3172
|
-
# the
|
|
3173
|
-
#
|
|
3174
|
-
# simplify how you manage traffic sources.
|
|
3166
|
+
# <note markdown="1"> This API operation is superseded by DescribeTrafficSources, which can
|
|
3167
|
+
# describe multiple traffic sources types. We recommend using
|
|
3168
|
+
# `DescribeTrafficSources` to simplify how you manage traffic sources.
|
|
3169
|
+
# However, we continue to support `DescribeLoadBalancers`. You can use
|
|
3170
|
+
# both the original `DescribeLoadBalancers` API operation and
|
|
3171
|
+
# `DescribeTrafficSources` on the same Auto Scaling group.
|
|
3175
3172
|
#
|
|
3176
3173
|
# </note>
|
|
3177
3174
|
#
|
|
@@ -4266,13 +4263,12 @@ module Aws::AutoScaling
|
|
|
4266
4263
|
req.send_request(options)
|
|
4267
4264
|
end
|
|
4268
4265
|
|
|
4269
|
-
# <note markdown="1"> This API
|
|
4270
|
-
#
|
|
4271
|
-
#
|
|
4272
|
-
#
|
|
4273
|
-
#
|
|
4274
|
-
#
|
|
4275
|
-
# to simplify how you manage traffic sources.
|
|
4266
|
+
# <note markdown="1"> This API operation is superseded by DetachTrafficSources, which can
|
|
4267
|
+
# detach multiple traffic sources types. We recommend using
|
|
4268
|
+
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
|
4269
|
+
# However, we continue to support `DetachLoadBalancerTargetGroups`. You
|
|
4270
|
+
# can use both the original `DetachLoadBalancerTargetGroups` API
|
|
4271
|
+
# operation and `DetachTrafficSources` on the same Auto Scaling group.
|
|
4276
4272
|
#
|
|
4277
4273
|
# </note>
|
|
4278
4274
|
#
|
|
@@ -4328,13 +4324,12 @@ module Aws::AutoScaling
|
|
|
4328
4324
|
req.send_request(options)
|
|
4329
4325
|
end
|
|
4330
4326
|
|
|
4331
|
-
# <note markdown="1"> This API
|
|
4332
|
-
#
|
|
4333
|
-
#
|
|
4334
|
-
#
|
|
4335
|
-
#
|
|
4336
|
-
#
|
|
4337
|
-
# you manage traffic sources.
|
|
4327
|
+
# <note markdown="1"> This API operation is superseded by DetachTrafficSources, which can
|
|
4328
|
+
# detach multiple traffic sources types. We recommend using
|
|
4329
|
+
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
|
4330
|
+
# However, we continue to support `DetachLoadBalancers`. You can use
|
|
4331
|
+
# both the original `DetachLoadBalancers` API operation and
|
|
4332
|
+
# `DetachTrafficSources` on the same Auto Scaling group.
|
|
4338
4333
|
#
|
|
4339
4334
|
# </note>
|
|
4340
4335
|
#
|
|
@@ -4399,8 +4394,8 @@ module Aws::AutoScaling
|
|
|
4399
4394
|
# The name of the Auto Scaling group.
|
|
4400
4395
|
#
|
|
4401
4396
|
# @option params [required, Array<Types::TrafficSourceIdentifier>] :traffic_sources
|
|
4402
|
-
# The unique identifiers of one or more traffic sources
|
|
4403
|
-
#
|
|
4397
|
+
# The unique identifiers of one or more traffic sources. You can specify
|
|
4398
|
+
# up to 10 traffic sources.
|
|
4404
4399
|
#
|
|
4405
4400
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4406
4401
|
#
|
|
@@ -6714,13 +6709,15 @@ module Aws::AutoScaling
|
|
|
6714
6709
|
# One or more Availability Zones for the group.
|
|
6715
6710
|
#
|
|
6716
6711
|
# @option params [String] :health_check_type
|
|
6717
|
-
# A comma-separated
|
|
6712
|
+
# A comma-separated value string of one or more health check types.
|
|
6718
6713
|
#
|
|
6719
6714
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
|
6720
6715
|
# default health check and cannot be disabled. For more information, see
|
|
6721
6716
|
# [Health checks for Auto Scaling instances][1] in the *Amazon EC2 Auto
|
|
6722
6717
|
# Scaling User Guide*.
|
|
6723
6718
|
#
|
|
6719
|
+
# Only specify `EC2` if you must clear a value that was previously set.
|
|
6720
|
+
#
|
|
6724
6721
|
#
|
|
6725
6722
|
#
|
|
6726
6723
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
|
|
@@ -7008,7 +7005,7 @@ module Aws::AutoScaling
|
|
|
7008
7005
|
params: params,
|
|
7009
7006
|
config: config)
|
|
7010
7007
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
|
7011
|
-
context[:gem_version] = '1.
|
|
7008
|
+
context[:gem_version] = '1.89.0'
|
|
7012
7009
|
Seahorse::Client::Request.new(handlers, context)
|
|
7013
7010
|
end
|
|
7014
7011
|
|
|
@@ -285,13 +285,15 @@ module Aws::AutoScaling
|
|
|
285
285
|
#
|
|
286
286
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
|
287
287
|
# @option options [String] :health_check_type
|
|
288
|
-
# A comma-separated
|
|
288
|
+
# A comma-separated value string of one or more health check types.
|
|
289
289
|
#
|
|
290
290
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
|
291
291
|
# default health check and cannot be disabled. For more information, see
|
|
292
292
|
# [Health checks for Auto Scaling instances][1] in the *Amazon EC2 Auto
|
|
293
293
|
# Scaling User Guide*.
|
|
294
294
|
#
|
|
295
|
+
# Only specify `EC2` if you must clear a value that was previously set.
|
|
296
|
+
#
|
|
295
297
|
#
|
|
296
298
|
#
|
|
297
299
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
|
|
@@ -366,7 +366,7 @@ module Aws::AutoScaling
|
|
|
366
366
|
# @return [Array<String>]
|
|
367
367
|
#
|
|
368
368
|
# @!attribute [rw] health_check_type
|
|
369
|
-
# A comma-separated
|
|
369
|
+
# A comma-separated value string of one or more health check types.
|
|
370
370
|
# @return [String]
|
|
371
371
|
#
|
|
372
372
|
# @!attribute [rw] health_check_grace_period
|
|
@@ -1014,13 +1014,16 @@ module Aws::AutoScaling
|
|
|
1014
1014
|
# @return [Array<String>]
|
|
1015
1015
|
#
|
|
1016
1016
|
# @!attribute [rw] health_check_type
|
|
1017
|
-
# A comma-separated
|
|
1017
|
+
# A comma-separated value string of one or more health check types.
|
|
1018
1018
|
#
|
|
1019
1019
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
|
1020
1020
|
# default health check and cannot be disabled. For more information,
|
|
1021
1021
|
# see [Health checks for Auto Scaling instances][1] in the *Amazon EC2
|
|
1022
1022
|
# Auto Scaling User Guide*.
|
|
1023
1023
|
#
|
|
1024
|
+
# Only specify `EC2` if you must clear a value that was previously
|
|
1025
|
+
# set.
|
|
1026
|
+
#
|
|
1024
1027
|
#
|
|
1025
1028
|
#
|
|
1026
1029
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
|
|
@@ -2480,8 +2483,8 @@ module Aws::AutoScaling
|
|
|
2480
2483
|
# @return [String]
|
|
2481
2484
|
#
|
|
2482
2485
|
# @!attribute [rw] traffic_sources
|
|
2483
|
-
# The unique identifiers of one or more traffic sources
|
|
2484
|
-
#
|
|
2486
|
+
# The unique identifiers of one or more traffic sources. You can
|
|
2487
|
+
# specify up to 10 traffic sources.
|
|
2485
2488
|
# @return [Array<Types::TrafficSourceIdentifier>]
|
|
2486
2489
|
#
|
|
2487
2490
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DetachTrafficSourcesType AWS API Documentation
|
|
@@ -7511,13 +7514,16 @@ module Aws::AutoScaling
|
|
|
7511
7514
|
# @return [Array<String>]
|
|
7512
7515
|
#
|
|
7513
7516
|
# @!attribute [rw] health_check_type
|
|
7514
|
-
# A comma-separated
|
|
7517
|
+
# A comma-separated value string of one or more health check types.
|
|
7515
7518
|
#
|
|
7516
7519
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
|
7517
7520
|
# default health check and cannot be disabled. For more information,
|
|
7518
7521
|
# see [Health checks for Auto Scaling instances][1] in the *Amazon EC2
|
|
7519
7522
|
# Auto Scaling User Guide*.
|
|
7520
7523
|
#
|
|
7524
|
+
# Only specify `EC2` if you must clear a value that was previously
|
|
7525
|
+
# set.
|
|
7526
|
+
#
|
|
7521
7527
|
#
|
|
7522
7528
|
#
|
|
7523
7529
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-autoscaling
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.89.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: 2023-
|
|
11
|
+
date: 2023-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|