aws-sdk-autoscaling 1.17.0 → 1.18.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: 45f3b37c89e58f6d29402b26c4605b96eee23399
|
4
|
+
data.tar.gz: f8844a2b5f3e361bf35af8f8bd642b8e33950e90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 697209788dc19fd5e72120464effa28ac3ba071298f33cd2c886c5cb64e60bb77d66cf5072b20ae76874290fd732ba021a7efe6ff01fe7735074fa4da8325886
|
7
|
+
data.tar.gz: 714ec0a98a706d31e2522313a331f75761f61b46cf7025d1fc99e31516deb4c6b73460db1e3f10bacbd3d0c434c3110e2ac6d58247f381e6d8d062ca594dc3ee
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
@@ -100,7 +100,9 @@ module Aws::AutoScaling
|
|
100
100
|
end
|
101
101
|
|
102
102
|
# The service to use for the health checks. The valid values are `EC2`
|
103
|
-
# and `ELB`.
|
103
|
+
# and `ELB`. If you configure an Auto Scaling group to use ELB health
|
104
|
+
# checks, it considers the instance unhealthy if it fails either the EC2
|
105
|
+
# status checks or the load balancer health checks.
|
104
106
|
# @return [String]
|
105
107
|
def health_check_type
|
106
108
|
data[:health_check_type]
|
@@ -823,12 +825,13 @@ module Aws::AutoScaling
|
|
823
825
|
# specify this parameter, you can't specify a launch configuration or a
|
824
826
|
# launch template.
|
825
827
|
#
|
826
|
-
# For more information, see [
|
827
|
-
# Options][1] in the *Amazon EC2 Auto Scaling User
|
828
|
+
# For more information, see [Auto Scaling Groups with Multiple Instance
|
829
|
+
# Types and Purchase Options][1] in the *Amazon EC2 Auto Scaling User
|
830
|
+
# Guide*.
|
828
831
|
#
|
829
832
|
#
|
830
833
|
#
|
831
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
834
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
832
835
|
# @option options [Integer] :min_size
|
833
836
|
# The minimum size of the Auto Scaling group.
|
834
837
|
# @option options [Integer] :max_size
|
@@ -851,7 +854,9 @@ module Aws::AutoScaling
|
|
851
854
|
# One or more Availability Zones for the group.
|
852
855
|
# @option options [String] :health_check_type
|
853
856
|
# The service to use for the health checks. The valid values are `EC2`
|
854
|
-
# and `ELB`.
|
857
|
+
# and `ELB`. If you configure an Auto Scaling group to use ELB health
|
858
|
+
# checks, it considers the instance unhealthy if it fails either the EC2
|
859
|
+
# status checks or the load balancer health checks.
|
855
860
|
# @option options [Integer] :health_check_grace_period
|
856
861
|
# The amount of time, in seconds, that Amazon EC2 Auto Scaling waits
|
857
862
|
# before checking the health status of an EC2 instance that has come
|
@@ -583,12 +583,13 @@ module Aws::AutoScaling
|
|
583
583
|
# a launch template, a launch configuration, or an EC2 instance must be
|
584
584
|
# specified.
|
585
585
|
#
|
586
|
-
# For more information, see [
|
587
|
-
# Options][1] in the *Amazon EC2 Auto Scaling User
|
586
|
+
# For more information, see [Auto Scaling Groups with Multiple Instance
|
587
|
+
# Types and Purchase Options][1] in the *Amazon EC2 Auto Scaling User
|
588
|
+
# Guide*.
|
588
589
|
#
|
589
590
|
#
|
590
591
|
#
|
591
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
592
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
592
593
|
#
|
593
594
|
# @option params [String] :instance_id
|
594
595
|
# The ID of the instance used to create a launch configuration for the
|
@@ -654,7 +655,10 @@ module Aws::AutoScaling
|
|
654
655
|
#
|
655
656
|
# @option params [String] :health_check_type
|
656
657
|
# The service to use for the health checks. The valid values are `EC2`
|
657
|
-
# and `ELB`. The default value is `EC2`.
|
658
|
+
# and `ELB`. The default value is `EC2`. If you configure an Auto
|
659
|
+
# Scaling group to use ELB health checks, it considers the instance
|
660
|
+
# unhealthy if it fails either the EC2 status checks or the load
|
661
|
+
# balancer health checks.
|
658
662
|
#
|
659
663
|
# For more information, see [Health Checks for Auto Scaling
|
660
664
|
# Instances][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
@@ -4363,12 +4367,13 @@ module Aws::AutoScaling
|
|
4363
4367
|
# specify this parameter, you can't specify a launch configuration or a
|
4364
4368
|
# launch template.
|
4365
4369
|
#
|
4366
|
-
# For more information, see [
|
4367
|
-
# Options][1] in the *Amazon EC2 Auto Scaling User
|
4370
|
+
# For more information, see [Auto Scaling Groups with Multiple Instance
|
4371
|
+
# Types and Purchase Options][1] in the *Amazon EC2 Auto Scaling User
|
4372
|
+
# Guide*.
|
4368
4373
|
#
|
4369
4374
|
#
|
4370
4375
|
#
|
4371
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
4376
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
4372
4377
|
#
|
4373
4378
|
# @option params [Integer] :min_size
|
4374
4379
|
# The minimum size of the Auto Scaling group.
|
@@ -4397,7 +4402,9 @@ module Aws::AutoScaling
|
|
4397
4402
|
#
|
4398
4403
|
# @option params [String] :health_check_type
|
4399
4404
|
# The service to use for the health checks. The valid values are `EC2`
|
4400
|
-
# and `ELB`.
|
4405
|
+
# and `ELB`. If you configure an Auto Scaling group to use ELB health
|
4406
|
+
# checks, it considers the instance unhealthy if it fails either the EC2
|
4407
|
+
# status checks or the load balancer health checks.
|
4401
4408
|
#
|
4402
4409
|
# @option params [Integer] :health_check_grace_period
|
4403
4410
|
# The amount of time, in seconds, that Amazon EC2 Auto Scaling waits
|
@@ -4566,7 +4573,7 @@ module Aws::AutoScaling
|
|
4566
4573
|
params: params,
|
4567
4574
|
config: config)
|
4568
4575
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
4569
|
-
context[:gem_version] = '1.
|
4576
|
+
context[:gem_version] = '1.18.0'
|
4570
4577
|
Seahorse::Client::Request.new(handlers, context)
|
4571
4578
|
end
|
4572
4579
|
|
@@ -120,12 +120,13 @@ module Aws::AutoScaling
|
|
120
120
|
# a launch template, a launch configuration, or an EC2 instance must be
|
121
121
|
# specified.
|
122
122
|
#
|
123
|
-
# For more information, see [
|
124
|
-
# Options][1] in the *Amazon EC2 Auto Scaling User
|
123
|
+
# For more information, see [Auto Scaling Groups with Multiple Instance
|
124
|
+
# Types and Purchase Options][1] in the *Amazon EC2 Auto Scaling User
|
125
|
+
# Guide*.
|
125
126
|
#
|
126
127
|
#
|
127
128
|
#
|
128
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
129
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
129
130
|
# @option options [String] :instance_id
|
130
131
|
# The ID of the instance used to create a launch configuration for the
|
131
132
|
# group. This parameter, a launch configuration, a launch template, or a
|
@@ -182,7 +183,10 @@ module Aws::AutoScaling
|
|
182
183
|
# The Amazon Resource Names (ARN) of the target groups.
|
183
184
|
# @option options [String] :health_check_type
|
184
185
|
# The service to use for the health checks. The valid values are `EC2`
|
185
|
-
# and `ELB`. The default value is `EC2`.
|
186
|
+
# and `ELB`. The default value is `EC2`. If you configure an Auto
|
187
|
+
# Scaling group to use ELB health checks, it considers the instance
|
188
|
+
# unhealthy if it fails either the EC2 status checks or the load
|
189
|
+
# balancer health checks.
|
186
190
|
#
|
187
191
|
# For more information, see [Health Checks for Auto Scaling
|
188
192
|
# Instances][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
@@ -269,7 +269,9 @@ module Aws::AutoScaling
|
|
269
269
|
#
|
270
270
|
# @!attribute [rw] health_check_type
|
271
271
|
# The service to use for the health checks. The valid values are `EC2`
|
272
|
-
# and `ELB`.
|
272
|
+
# and `ELB`. If you configure an Auto Scaling group to use ELB health
|
273
|
+
# checks, it considers the instance unhealthy if it fails either the
|
274
|
+
# EC2 status checks or the load balancer health checks.
|
273
275
|
# @return [String]
|
274
276
|
#
|
275
277
|
# @!attribute [rw] health_check_grace_period
|
@@ -783,12 +785,13 @@ module Aws::AutoScaling
|
|
783
785
|
# parameter, a launch template, a launch configuration, or an EC2
|
784
786
|
# instance must be specified.
|
785
787
|
#
|
786
|
-
# For more information, see [
|
787
|
-
# Purchase Options][1] in the *Amazon EC2 Auto
|
788
|
+
# For more information, see [Auto Scaling Groups with Multiple
|
789
|
+
# Instance Types and Purchase Options][1] in the *Amazon EC2 Auto
|
790
|
+
# Scaling User Guide*.
|
788
791
|
#
|
789
792
|
#
|
790
793
|
#
|
791
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
794
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
792
795
|
# @return [Types::MixedInstancesPolicy]
|
793
796
|
#
|
794
797
|
# @!attribute [rw] instance_id
|
@@ -864,7 +867,10 @@ module Aws::AutoScaling
|
|
864
867
|
#
|
865
868
|
# @!attribute [rw] health_check_type
|
866
869
|
# The service to use for the health checks. The valid values are `EC2`
|
867
|
-
# and `ELB`. The default value is `EC2`.
|
870
|
+
# and `ELB`. The default value is `EC2`. If you configure an Auto
|
871
|
+
# Scaling group to use ELB health checks, it considers the instance
|
872
|
+
# unhealthy if it fails either the EC2 status checks or the load
|
873
|
+
# balancer health checks.
|
868
874
|
#
|
869
875
|
# For more information, see [Health Checks for Auto Scaling
|
870
876
|
# Instances][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
@@ -2034,9 +2040,7 @@ module Aws::AutoScaling
|
|
2034
2040
|
# The termination policies supported by Amazon EC2 Auto Scaling:
|
2035
2041
|
# `OldestInstance`, `OldestLaunchConfiguration`, `NewestInstance`,
|
2036
2042
|
# `ClosestToNextInstanceHour`, `Default`, `OldestLaunchTemplate`, and
|
2037
|
-
# `AllocationStrategy`.
|
2038
|
-
# `AllocationStrategy` policies are only supported for Auto Scaling
|
2039
|
-
# groups with MixedInstancesPolicy.
|
2043
|
+
# `AllocationStrategy`.
|
2040
2044
|
# @return [Array<String>]
|
2041
2045
|
#
|
2042
2046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DescribeTerminationPolicyTypesAnswer AWS API Documentation
|
@@ -3394,8 +3398,8 @@ module Aws::AutoScaling
|
|
3394
3398
|
# mixed instances, your Auto Scaling group can provision a combination
|
3395
3399
|
# of On-Demand Instances and Spot Instances across multiple instance
|
3396
3400
|
# types. Used in combination with CreateAutoScalingGroup. For more
|
3397
|
-
# information, see [
|
3398
|
-
# Options][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
3401
|
+
# information, see [Auto Scaling Groups with Multiple Instance Types and
|
3402
|
+
# Purchase Options][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
3399
3403
|
#
|
3400
3404
|
# When you create your Auto Scaling group, you can specify a launch
|
3401
3405
|
# configuration or template as a parameter for the top-level object, or
|
@@ -3404,7 +3408,7 @@ module Aws::AutoScaling
|
|
3404
3408
|
#
|
3405
3409
|
#
|
3406
3410
|
#
|
3407
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
3411
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
3408
3412
|
#
|
3409
3413
|
# @note When making an API call, you may pass MixedInstancesPolicy
|
3410
3414
|
# data as a hash:
|
@@ -4800,12 +4804,13 @@ module Aws::AutoScaling
|
|
4800
4804
|
# specify this parameter, you can't specify a launch configuration or
|
4801
4805
|
# a launch template.
|
4802
4806
|
#
|
4803
|
-
# For more information, see [
|
4804
|
-
# Purchase Options][1] in the *Amazon EC2 Auto
|
4807
|
+
# For more information, see [Auto Scaling Groups with Multiple
|
4808
|
+
# Instance Types and Purchase Options][1] in the *Amazon EC2 Auto
|
4809
|
+
# Scaling User Guide*.
|
4805
4810
|
#
|
4806
4811
|
#
|
4807
4812
|
#
|
4808
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
4813
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-purchase-options.html
|
4809
4814
|
# @return [Types::MixedInstancesPolicy]
|
4810
4815
|
#
|
4811
4816
|
# @!attribute [rw] min_size
|
@@ -4842,7 +4847,9 @@ module Aws::AutoScaling
|
|
4842
4847
|
#
|
4843
4848
|
# @!attribute [rw] health_check_type
|
4844
4849
|
# The service to use for the health checks. The valid values are `EC2`
|
4845
|
-
# and `ELB`.
|
4850
|
+
# and `ELB`. If you configure an Auto Scaling group to use ELB health
|
4851
|
+
# checks, it considers the instance unhealthy if it fails either the
|
4852
|
+
# EC2 status checks or the load balancer health checks.
|
4846
4853
|
# @return [String]
|
4847
4854
|
#
|
4848
4855
|
# @!attribute [rw] health_check_grace_period
|
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.18.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: 2019-03-
|
11
|
+
date: 2019-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|