aws-sdk-autoscaling 1.122.0 → 1.124.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-autoscaling/auto_scaling_group.rb +10 -4
- data/lib/aws-sdk-autoscaling/client.rb +207 -114
- data/lib/aws-sdk-autoscaling/client_api.rb +4 -1
- data/lib/aws-sdk-autoscaling/types.rb +94 -22
- data/lib/aws-sdk-autoscaling.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +2 -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: 95a3b84a5dfe14a73b312b44f4b68d1957a338c5db329045037329802f7c8775
|
4
|
+
data.tar.gz: 69e5a7aadbc9a09b5f6afcb30050b7b35e51fbb3f0b431f76578f4d14d8f95d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e63a203b28b0253253a95b91eee44b427c53f0af47895d13eb065c7be19a85942a6f5e07eccb2e9786846dba03a74a8ce5fdc7ff22f2c83223d2ec9e2a8cc72e
|
7
|
+
data.tar.gz: '0661187a6c24208553ac1f193192d8db35b096fbb5f32d3c5e973fe1c4d102c7f75fc6da2823285292318b69539d4dac5b648be72245a2c3b71941785f956f52'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.124.0 (2024-10-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds bake time for Auto Scaling group Instance Refresh
|
8
|
+
|
9
|
+
1.123.0 (2024-10-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for removing the PlacementGroup setting on an Auto Scaling Group through the UpdateAutoScalingGroup API.
|
13
|
+
|
4
14
|
1.122.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.124.0
|
@@ -152,8 +152,12 @@ module Aws::AutoScaling
|
|
152
152
|
data[:enabled_metrics]
|
153
153
|
end
|
154
154
|
|
155
|
-
# The current state of the group when the DeleteAutoScalingGroup
|
155
|
+
# The current state of the group when the [DeleteAutoScalingGroup][1]
|
156
156
|
# operation is in progress.
|
157
|
+
#
|
158
|
+
#
|
159
|
+
#
|
160
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteAutoScalingGroup.html
|
157
161
|
# @return [String]
|
158
162
|
def status
|
159
163
|
data[:status]
|
@@ -1255,7 +1259,7 @@ module Aws::AutoScaling
|
|
1255
1259
|
# availability_zones: ["XmlStringMaxLen255"],
|
1256
1260
|
# health_check_type: "XmlStringMaxLen32",
|
1257
1261
|
# health_check_grace_period: 1,
|
1258
|
-
# placement_group: "
|
1262
|
+
# placement_group: "UpdatePlacementGroupParam",
|
1259
1263
|
# vpc_zone_identifier: "XmlStringMaxLen5000",
|
1260
1264
|
# termination_policies: ["XmlStringMaxLen1600"],
|
1261
1265
|
# new_instances_protected_from_scale_in: false,
|
@@ -1346,8 +1350,10 @@ module Aws::AutoScaling
|
|
1346
1350
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/health-check-grace-period.html
|
1347
1351
|
# @option options [String] :placement_group
|
1348
1352
|
# The name of an existing placement group into which to launch your
|
1349
|
-
# instances.
|
1350
|
-
#
|
1353
|
+
# instances. To remove the placement group setting, pass an empty string
|
1354
|
+
# for `placement-group`. For more information about placement groups,
|
1355
|
+
# see [Placement groups][1] in the *Amazon EC2 User Guide for Linux
|
1356
|
+
# Instances*.
|
1351
1357
|
#
|
1352
1358
|
# <note markdown="1"> A *cluster* placement group is a logical grouping of instances within
|
1353
1359
|
# a single Availability Zone. You cannot specify multiple Availability
|
@@ -504,8 +504,8 @@ module Aws::AutoScaling
|
|
504
504
|
req.send_request(options)
|
505
505
|
end
|
506
506
|
|
507
|
-
# <note markdown="1"> This API operation is superseded by AttachTrafficSources, which
|
508
|
-
# attach multiple traffic sources types. We recommend using
|
507
|
+
# <note markdown="1"> This API operation is superseded by [AttachTrafficSources][1], which
|
508
|
+
# can attach multiple traffic sources types. We recommend using
|
509
509
|
# `AttachTrafficSources` to simplify how you manage traffic sources.
|
510
510
|
# However, we continue to support `AttachLoadBalancerTargetGroups`. You
|
511
511
|
# can use both the original `AttachLoadBalancerTargetGroups` API
|
@@ -527,19 +527,23 @@ module Aws::AutoScaling
|
|
527
527
|
# * Gateway Load Balancer - Operates at the network layer (layer 3).
|
528
528
|
#
|
529
529
|
# To describe the target groups for an Auto Scaling group, call the
|
530
|
-
# DescribeLoadBalancerTargetGroups API. To detach the target group
|
531
|
-
# the Auto Scaling group, call the
|
530
|
+
# [DescribeLoadBalancerTargetGroups][2] API. To detach the target group
|
531
|
+
# from the Auto Scaling group, call the
|
532
|
+
# [DetachLoadBalancerTargetGroups][3] API.
|
532
533
|
#
|
533
534
|
# This operation is additive and does not detach existing target groups
|
534
535
|
# or Classic Load Balancers from the Auto Scaling group.
|
535
536
|
#
|
536
537
|
# For more information, see [Use Elastic Load Balancing to distribute
|
537
|
-
# traffic across the instances in your Auto Scaling group][
|
538
|
+
# traffic across the instances in your Auto Scaling group][4] in the
|
538
539
|
# *Amazon EC2 Auto Scaling User Guide*.
|
539
540
|
#
|
540
541
|
#
|
541
542
|
#
|
542
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
543
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
544
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancerTargetGroups.html
|
545
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachLoadBalancerTargetGroups.html
|
546
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
543
547
|
#
|
544
548
|
# @option params [required, String] :auto_scaling_group_name
|
545
549
|
# The name of the Auto Scaling group.
|
@@ -583,8 +587,9 @@ module Aws::AutoScaling
|
|
583
587
|
req.send_request(options)
|
584
588
|
end
|
585
589
|
|
586
|
-
# <note markdown="1"> This API operation is superseded by
|
587
|
-
#
|
590
|
+
# <note markdown="1"> This API operation is superseded by
|
591
|
+
# [https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API\_AttachTrafficSources.html][1],
|
592
|
+
# which can attach multiple traffic sources types. We recommend using
|
588
593
|
# `AttachTrafficSources` to simplify how you manage traffic sources.
|
589
594
|
# However, we continue to support `AttachLoadBalancers`. You can use
|
590
595
|
# both the original `AttachLoadBalancers` API operation and
|
@@ -597,19 +602,22 @@ module Aws::AutoScaling
|
|
597
602
|
# with these Classic Load Balancers.
|
598
603
|
#
|
599
604
|
# To describe the load balancers for an Auto Scaling group, call the
|
600
|
-
# DescribeLoadBalancers API. To detach a load balancer from the
|
601
|
-
# Scaling group, call the DetachLoadBalancers API.
|
605
|
+
# [DescribeLoadBalancers][2] API. To detach a load balancer from the
|
606
|
+
# Auto Scaling group, call the [DetachLoadBalancers][3] API.
|
602
607
|
#
|
603
608
|
# This operation is additive and does not detach existing Classic Load
|
604
609
|
# Balancers or target groups from the Auto Scaling group.
|
605
610
|
#
|
606
611
|
# For more information, see [Use Elastic Load Balancing to distribute
|
607
|
-
# traffic across the instances in your Auto Scaling group][
|
612
|
+
# traffic across the instances in your Auto Scaling group][4] in the
|
608
613
|
# *Amazon EC2 Auto Scaling User Guide*.
|
609
614
|
#
|
610
615
|
#
|
611
616
|
#
|
612
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
617
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
618
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancers.html
|
619
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachLoadBalancers.html
|
620
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
613
621
|
#
|
614
622
|
# @option params [required, String] :auto_scaling_group_name
|
615
623
|
# The name of the Auto Scaling group.
|
@@ -667,10 +675,15 @@ module Aws::AutoScaling
|
|
667
675
|
# This operation is additive and does not detach existing traffic
|
668
676
|
# sources from the Auto Scaling group.
|
669
677
|
#
|
670
|
-
# After the operation completes, use the DescribeTrafficSources API
|
671
|
-
# return details about the state of the attachments between traffic
|
678
|
+
# After the operation completes, use the [DescribeTrafficSources][1] API
|
679
|
+
# to return details about the state of the attachments between traffic
|
672
680
|
# sources and your Auto Scaling group. To detach a traffic source from
|
673
|
-
# the Auto Scaling group, call the DetachTrafficSources API.
|
681
|
+
# the Auto Scaling group, call the [DetachTrafficSources][2] API.
|
682
|
+
#
|
683
|
+
#
|
684
|
+
#
|
685
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
686
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachTrafficSources.html
|
674
687
|
#
|
675
688
|
# @option params [required, String] :auto_scaling_group_name
|
676
689
|
# The name of the Auto Scaling group.
|
@@ -813,12 +826,13 @@ module Aws::AutoScaling
|
|
813
826
|
# Scaling group after you make configuration changes.
|
814
827
|
#
|
815
828
|
# When you cancel an instance refresh, this does not roll back any
|
816
|
-
# changes that it made. Use the RollbackInstanceRefresh API to roll
|
817
|
-
# instead.
|
829
|
+
# changes that it made. Use the [RollbackInstanceRefresh][2] API to roll
|
830
|
+
# back instead.
|
818
831
|
#
|
819
832
|
#
|
820
833
|
#
|
821
834
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh.html
|
835
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_RollbackInstanceRefresh.html
|
822
836
|
#
|
823
837
|
# @option params [required, String] :auto_scaling_group_name
|
824
838
|
# The name of the Auto Scaling group.
|
@@ -886,14 +900,15 @@ module Aws::AutoScaling
|
|
886
900
|
# keep the instance in a wait state.
|
887
901
|
#
|
888
902
|
# 6. **If you finish before the timeout period ends, send a callback by
|
889
|
-
# using the CompleteLifecycleAction API call.**
|
903
|
+
# using the [CompleteLifecycleAction][1] API call.**
|
890
904
|
#
|
891
|
-
# For more information, see [Complete a lifecycle action][
|
905
|
+
# For more information, see [Complete a lifecycle action][2] in the
|
892
906
|
# *Amazon EC2 Auto Scaling User Guide*.
|
893
907
|
#
|
894
908
|
#
|
895
909
|
#
|
896
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
910
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CompleteLifecycleAction.html
|
911
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/completing-lifecycle-hooks.html
|
897
912
|
#
|
898
913
|
# @option params [required, String] :lifecycle_hook_name
|
899
914
|
# The name of the lifecycle hook.
|
@@ -955,12 +970,12 @@ module Aws::AutoScaling
|
|
955
970
|
# Creates an Auto Scaling group with the specified name and attributes.
|
956
971
|
#
|
957
972
|
# If you exceed your maximum limit of Auto Scaling groups, the call
|
958
|
-
# fails. To query this limit, call the DescribeAccountLimits API.
|
959
|
-
# information about updating this limit, see [Quotas for Amazon EC2
|
960
|
-
# Scaling][
|
973
|
+
# fails. To query this limit, call the [DescribeAccountLimits][1] API.
|
974
|
+
# For information about updating this limit, see [Quotas for Amazon EC2
|
975
|
+
# Auto Scaling][2] in the *Amazon EC2 Auto Scaling User Guide*.
|
961
976
|
#
|
962
977
|
# If you're new to Amazon EC2 Auto Scaling, see the introductory
|
963
|
-
# tutorials in [Get started with Amazon EC2 Auto Scaling][
|
978
|
+
# tutorials in [Get started with Amazon EC2 Auto Scaling][3] in the
|
964
979
|
# *Amazon EC2 Auto Scaling User Guide*.
|
965
980
|
#
|
966
981
|
# Every Auto Scaling group has three size properties (`DesiredCapacity`,
|
@@ -972,8 +987,9 @@ module Aws::AutoScaling
|
|
972
987
|
#
|
973
988
|
#
|
974
989
|
#
|
975
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
976
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
990
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAccountLimits.html
|
991
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-quotas.html
|
992
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/get-started-with-ec2-auto-scaling.html
|
977
993
|
#
|
978
994
|
# @option params [required, String] :auto_scaling_group_name
|
979
995
|
# The name of the Auto Scaling group. This name must be unique per
|
@@ -1572,11 +1588,11 @@ module Aws::AutoScaling
|
|
1572
1588
|
# Creates a launch configuration.
|
1573
1589
|
#
|
1574
1590
|
# If you exceed your maximum limit of launch configurations, the call
|
1575
|
-
# fails. To query this limit, call the DescribeAccountLimits API.
|
1576
|
-
# information about updating this limit, see [Quotas for Amazon EC2
|
1577
|
-
# Scaling][
|
1591
|
+
# fails. To query this limit, call the [DescribeAccountLimits][1] API.
|
1592
|
+
# For information about updating this limit, see [Quotas for Amazon EC2
|
1593
|
+
# Auto Scaling][2] in the *Amazon EC2 Auto Scaling User Guide*.
|
1578
1594
|
#
|
1579
|
-
# For more information, see [Launch configurations][
|
1595
|
+
# For more information, see [Launch configurations][3] in the *Amazon
|
1580
1596
|
# EC2 Auto Scaling User Guide*.
|
1581
1597
|
#
|
1582
1598
|
# <note markdown="1"> Amazon EC2 Auto Scaling configures instances launched as part of an
|
@@ -1584,16 +1600,17 @@ module Aws::AutoScaling
|
|
1584
1600
|
# configuration. We strongly recommend that you do not use launch
|
1585
1601
|
# configurations. They do not provide full functionality for Amazon EC2
|
1586
1602
|
# Auto Scaling or Amazon EC2. For information about using launch
|
1587
|
-
# templates, see [Launch templates][
|
1603
|
+
# templates, see [Launch templates][4] in the *Amazon EC2 Auto Scaling
|
1588
1604
|
# User Guide*.
|
1589
1605
|
#
|
1590
1606
|
# </note>
|
1591
1607
|
#
|
1592
1608
|
#
|
1593
1609
|
#
|
1594
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
1595
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
1596
|
-
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-
|
1610
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAccountLimits.html
|
1611
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-quotas.html
|
1612
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html
|
1613
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-templates.html
|
1597
1614
|
#
|
1598
1615
|
# @option params [required, String] :launch_configuration_name
|
1599
1616
|
# The name of the launch configuration. This name must be unique per
|
@@ -1963,24 +1980,26 @@ module Aws::AutoScaling
|
|
1963
1980
|
# warm pool.
|
1964
1981
|
#
|
1965
1982
|
# To remove instances from the Auto Scaling group before deleting it,
|
1966
|
-
# call the DetachInstances API with the list of instances and the
|
1967
|
-
# to decrement the desired capacity. This ensures that Amazon EC2
|
1968
|
-
# Scaling does not launch replacement instances.
|
1983
|
+
# call the [DetachInstances][1] API with the list of instances and the
|
1984
|
+
# option to decrement the desired capacity. This ensures that Amazon EC2
|
1985
|
+
# Auto Scaling does not launch replacement instances.
|
1969
1986
|
#
|
1970
1987
|
# To terminate all instances before deleting the Auto Scaling group,
|
1971
|
-
# call the UpdateAutoScalingGroup API and set the minimum size and
|
1988
|
+
# call the [UpdateAutoScalingGroup][2] API and set the minimum size and
|
1972
1989
|
# desired capacity of the Auto Scaling group to zero.
|
1973
1990
|
#
|
1974
1991
|
# If the group has scaling policies, deleting the group deletes the
|
1975
1992
|
# policies, the underlying alarm actions, and any alarm that no longer
|
1976
1993
|
# has an associated action.
|
1977
1994
|
#
|
1978
|
-
# For more information, see [Delete your Auto Scaling infrastructure][
|
1995
|
+
# For more information, see [Delete your Auto Scaling infrastructure][3]
|
1979
1996
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
1980
1997
|
#
|
1981
1998
|
#
|
1982
1999
|
#
|
1983
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
2000
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachInstances.html
|
2001
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_UpdateAutoScalingGroup.html
|
2002
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-process-shutdown.html
|
1984
2003
|
#
|
1985
2004
|
# @option params [required, String] :auto_scaling_group_name
|
1986
2005
|
# The name of the Auto Scaling group.
|
@@ -2419,7 +2438,11 @@ module Aws::AutoScaling
|
|
2419
2438
|
#
|
2420
2439
|
# This operation also returns information about instances in Auto
|
2421
2440
|
# Scaling groups. To retrieve information about the instances in a warm
|
2422
|
-
# pool, you must call the DescribeWarmPool API.
|
2441
|
+
# pool, you must call the [DescribeWarmPool][1] API.
|
2442
|
+
#
|
2443
|
+
#
|
2444
|
+
#
|
2445
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeWarmPool.html
|
2423
2446
|
#
|
2424
2447
|
# @option params [Array<String>] :auto_scaling_group_names
|
2425
2448
|
# The names of the Auto Scaling groups. By default, you can only specify
|
@@ -2918,7 +2941,7 @@ module Aws::AutoScaling
|
|
2918
2941
|
# resp.instance_refreshes #=> Array
|
2919
2942
|
# resp.instance_refreshes[0].instance_refresh_id #=> String
|
2920
2943
|
# resp.instance_refreshes[0].auto_scaling_group_name #=> String
|
2921
|
-
# resp.instance_refreshes[0].status #=> String, one of "Pending", "InProgress", "Successful", "Failed", "Cancelling", "Cancelled", "RollbackInProgress", "RollbackFailed", "RollbackSuccessful"
|
2944
|
+
# resp.instance_refreshes[0].status #=> String, one of "Pending", "InProgress", "Successful", "Failed", "Cancelling", "Cancelled", "RollbackInProgress", "RollbackFailed", "RollbackSuccessful", "Baking"
|
2922
2945
|
# resp.instance_refreshes[0].status_reason #=> String
|
2923
2946
|
# resp.instance_refreshes[0].start_time #=> Time
|
2924
2947
|
# resp.instance_refreshes[0].end_time #=> Time
|
@@ -2940,6 +2963,7 @@ module Aws::AutoScaling
|
|
2940
2963
|
# resp.instance_refreshes[0].preferences.alarm_specification.alarms #=> Array
|
2941
2964
|
# resp.instance_refreshes[0].preferences.alarm_specification.alarms[0] #=> String
|
2942
2965
|
# resp.instance_refreshes[0].preferences.max_healthy_percentage #=> Integer
|
2966
|
+
# resp.instance_refreshes[0].preferences.bake_time #=> Integer
|
2943
2967
|
# resp.instance_refreshes[0].desired_configuration.launch_template.launch_template_id #=> String
|
2944
2968
|
# resp.instance_refreshes[0].desired_configuration.launch_template.launch_template_name #=> String
|
2945
2969
|
# resp.instance_refreshes[0].desired_configuration.launch_template.version #=> String
|
@@ -3242,8 +3266,8 @@ module Aws::AutoScaling
|
|
3242
3266
|
req.send_request(options)
|
3243
3267
|
end
|
3244
3268
|
|
3245
|
-
# <note markdown="1"> This API operation is superseded by DescribeTrafficSources, which
|
3246
|
-
# describe multiple traffic sources types. We recommend using
|
3269
|
+
# <note markdown="1"> This API operation is superseded by [DescribeTrafficSources][1], which
|
3270
|
+
# can describe multiple traffic sources types. We recommend using
|
3247
3271
|
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
3248
3272
|
# However, we continue to support `DescribeLoadBalancerTargetGroups`.
|
3249
3273
|
# You can use both the original `DescribeLoadBalancerTargetGroups` API
|
@@ -3267,27 +3291,32 @@ module Aws::AutoScaling
|
|
3267
3291
|
# target group doesn't enter the `InService` state.
|
3268
3292
|
#
|
3269
3293
|
# Target groups also have an `InService` state if you attach them in the
|
3270
|
-
# CreateAutoScalingGroup API call. If your target group state is
|
3294
|
+
# [CreateAutoScalingGroup][2] API call. If your target group state is
|
3271
3295
|
# `InService`, but it is not working properly, check the scaling
|
3272
|
-
# activities by calling DescribeScalingActivities and take any
|
3296
|
+
# activities by calling [DescribeScalingActivities][3] and take any
|
3273
3297
|
# corrective actions necessary.
|
3274
3298
|
#
|
3275
3299
|
# For help with failed health checks, see [Troubleshooting Amazon EC2
|
3276
|
-
# Auto Scaling: Health checks][
|
3300
|
+
# Auto Scaling: Health checks][4] in the *Amazon EC2 Auto Scaling User
|
3277
3301
|
# Guide*. For more information, see [Use Elastic Load Balancing to
|
3278
|
-
# distribute traffic across the instances in your Auto Scaling group][
|
3302
|
+
# distribute traffic across the instances in your Auto Scaling group][5]
|
3279
3303
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
3280
3304
|
#
|
3281
3305
|
# <note markdown="1"> You can use this operation to describe target groups that were
|
3282
|
-
# attached by using AttachLoadBalancerTargetGroups, but not for
|
3283
|
-
# groups that were attached by using AttachTrafficSources.
|
3306
|
+
# attached by using [AttachLoadBalancerTargetGroups][6], but not for
|
3307
|
+
# target groups that were attached by using [AttachTrafficSources][7].
|
3284
3308
|
#
|
3285
3309
|
# </note>
|
3286
3310
|
#
|
3287
3311
|
#
|
3288
3312
|
#
|
3289
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3290
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3313
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
3314
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CreateAutoScalingGroup.html
|
3315
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
3316
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ts-as-healthchecks.html
|
3317
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
3318
|
+
# [6]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachLoadBalancerTargetGroups.html
|
3319
|
+
# [7]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
3291
3320
|
#
|
3292
3321
|
# @option params [required, String] :auto_scaling_group_name
|
3293
3322
|
# The name of the Auto Scaling group.
|
@@ -3350,8 +3379,8 @@ module Aws::AutoScaling
|
|
3350
3379
|
req.send_request(options)
|
3351
3380
|
end
|
3352
3381
|
|
3353
|
-
# <note markdown="1"> This API operation is superseded by DescribeTrafficSources, which
|
3354
|
-
# describe multiple traffic sources types. We recommend using
|
3382
|
+
# <note markdown="1"> This API operation is superseded by [DescribeTrafficSources][1], which
|
3383
|
+
# can describe multiple traffic sources types. We recommend using
|
3355
3384
|
# `DescribeTrafficSources` to simplify how you manage traffic sources.
|
3356
3385
|
# However, we continue to support `DescribeLoadBalancers`. You can use
|
3357
3386
|
# both the original `DescribeLoadBalancers` API operation and
|
@@ -3364,7 +3393,7 @@ module Aws::AutoScaling
|
|
3364
3393
|
#
|
3365
3394
|
# This operation describes only Classic Load Balancers. If you have
|
3366
3395
|
# Application Load Balancers, Network Load Balancers, or Gateway Load
|
3367
|
-
# Balancers, use the DescribeLoadBalancerTargetGroups API instead.
|
3396
|
+
# Balancers, use the [DescribeLoadBalancerTargetGroups][2] API instead.
|
3368
3397
|
#
|
3369
3398
|
# To determine the attachment status of the load balancer, use the
|
3370
3399
|
# `State` element in the response. When you attach a load balancer to an
|
@@ -3379,21 +3408,25 @@ module Aws::AutoScaling
|
|
3379
3408
|
# load balancer doesn't enter the `InService` state.
|
3380
3409
|
#
|
3381
3410
|
# Load balancers also have an `InService` state if you attach them in
|
3382
|
-
# the CreateAutoScalingGroup API call. If your load balancer state
|
3383
|
-
# `InService`, but it is not working properly, check the scaling
|
3384
|
-
# activities by calling DescribeScalingActivities and take any
|
3411
|
+
# the [CreateAutoScalingGroup][3] API call. If your load balancer state
|
3412
|
+
# is `InService`, but it is not working properly, check the scaling
|
3413
|
+
# activities by calling [DescribeScalingActivities][4] and take any
|
3385
3414
|
# corrective actions necessary.
|
3386
3415
|
#
|
3387
3416
|
# For help with failed health checks, see [Troubleshooting Amazon EC2
|
3388
|
-
# Auto Scaling: Health checks][
|
3417
|
+
# Auto Scaling: Health checks][5] in the *Amazon EC2 Auto Scaling User
|
3389
3418
|
# Guide*. For more information, see [Use Elastic Load Balancing to
|
3390
|
-
# distribute traffic across the instances in your Auto Scaling group][
|
3419
|
+
# distribute traffic across the instances in your Auto Scaling group][6]
|
3391
3420
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
3392
3421
|
#
|
3393
3422
|
#
|
3394
3423
|
#
|
3395
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3396
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3424
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
3425
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancerTargetGroups.html
|
3426
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CreateAutoScalingGroup.html
|
3427
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
3428
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ts-as-healthchecks.html
|
3429
|
+
# [6]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
3397
3430
|
#
|
3398
3431
|
# @option params [required, String] :auto_scaling_group_name
|
3399
3432
|
# The name of the Auto Scaling group.
|
@@ -3892,8 +3925,13 @@ module Aws::AutoScaling
|
|
3892
3925
|
req.send_request(options)
|
3893
3926
|
end
|
3894
3927
|
|
3895
|
-
# Describes the scaling process types for use with the
|
3896
|
-
# and SuspendProcesses APIs.
|
3928
|
+
# Describes the scaling process types for use with the
|
3929
|
+
# [ResumeProcesses][1] and [SuspendProcesses][2] APIs.
|
3930
|
+
#
|
3931
|
+
#
|
3932
|
+
#
|
3933
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_ResumeProcesses.html
|
3934
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_SuspendProcesses.html
|
3897
3935
|
#
|
3898
3936
|
# @return [Types::ProcessesType] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3899
3937
|
#
|
@@ -3955,7 +3993,11 @@ module Aws::AutoScaling
|
|
3955
3993
|
# have not reached their end time.
|
3956
3994
|
#
|
3957
3995
|
# To describe the scaling activities for scheduled actions that have
|
3958
|
-
# already run, call the DescribeScalingActivities API.
|
3996
|
+
# already run, call the [DescribeScalingActivities][1] API.
|
3997
|
+
#
|
3998
|
+
#
|
3999
|
+
#
|
4000
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
3959
4001
|
#
|
3960
4002
|
# @option params [String] :auto_scaling_group_name
|
3961
4003
|
# The name of the Auto Scaling group.
|
@@ -4455,8 +4497,8 @@ module Aws::AutoScaling
|
|
4455
4497
|
req.send_request(options)
|
4456
4498
|
end
|
4457
4499
|
|
4458
|
-
# <note markdown="1"> This API operation is superseded by DetachTrafficSources, which
|
4459
|
-
# detach multiple traffic sources types. We recommend using
|
4500
|
+
# <note markdown="1"> This API operation is superseded by [DetachTrafficSources][1], which
|
4501
|
+
# can detach multiple traffic sources types. We recommend using
|
4460
4502
|
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
4461
4503
|
# However, we continue to support `DetachLoadBalancerTargetGroups`. You
|
4462
4504
|
# can use both the original `DetachLoadBalancerTargetGroups` API
|
@@ -4470,15 +4512,22 @@ module Aws::AutoScaling
|
|
4470
4512
|
# When you detach a target group, it enters the `Removing` state while
|
4471
4513
|
# deregistering the instances in the group. When all instances are
|
4472
4514
|
# deregistered, then you can no longer describe the target group using
|
4473
|
-
# the DescribeLoadBalancerTargetGroups API call. The instances
|
4474
|
-
# running.
|
4515
|
+
# the [DescribeLoadBalancerTargetGroups][2] API call. The instances
|
4516
|
+
# remain running.
|
4475
4517
|
#
|
4476
4518
|
# <note markdown="1"> You can use this operation to detach target groups that were attached
|
4477
|
-
# by using AttachLoadBalancerTargetGroups, but not for target
|
4478
|
-
# that were attached by using AttachTrafficSources.
|
4519
|
+
# by using [AttachLoadBalancerTargetGroups][3], but not for target
|
4520
|
+
# groups that were attached by using [AttachTrafficSources][4].
|
4479
4521
|
#
|
4480
4522
|
# </note>
|
4481
4523
|
#
|
4524
|
+
#
|
4525
|
+
#
|
4526
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
4527
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancerTargetGroups.html
|
4528
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachLoadBalancerTargetGroups.html
|
4529
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
4530
|
+
#
|
4482
4531
|
# @option params [required, String] :auto_scaling_group_name
|
4483
4532
|
# The name of the Auto Scaling group.
|
4484
4533
|
#
|
@@ -4516,8 +4565,8 @@ module Aws::AutoScaling
|
|
4516
4565
|
req.send_request(options)
|
4517
4566
|
end
|
4518
4567
|
|
4519
|
-
# <note markdown="1"> This API operation is superseded by DetachTrafficSources, which
|
4520
|
-
# detach multiple traffic sources types. We recommend using
|
4568
|
+
# <note markdown="1"> This API operation is superseded by [DetachTrafficSources][1], which
|
4569
|
+
# can detach multiple traffic sources types. We recommend using
|
4521
4570
|
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
4522
4571
|
# However, we continue to support `DetachLoadBalancers`. You can use
|
4523
4572
|
# both the original `DetachLoadBalancers` API operation and
|
@@ -4530,12 +4579,18 @@ module Aws::AutoScaling
|
|
4530
4579
|
#
|
4531
4580
|
# This operation detaches only Classic Load Balancers. If you have
|
4532
4581
|
# Application Load Balancers, Network Load Balancers, or Gateway Load
|
4533
|
-
# Balancers, use the DetachLoadBalancerTargetGroups API instead.
|
4582
|
+
# Balancers, use the [DetachLoadBalancerTargetGroups][2] API instead.
|
4534
4583
|
#
|
4535
4584
|
# When you detach a load balancer, it enters the `Removing` state while
|
4536
4585
|
# deregistering the instances in the group. When all instances are
|
4537
4586
|
# deregistered, then you can no longer describe the load balancer using
|
4538
|
-
# the DescribeLoadBalancers API call. The instances remain running.
|
4587
|
+
# the [DescribeLoadBalancers][3] API call. The instances remain running.
|
4588
|
+
#
|
4589
|
+
#
|
4590
|
+
#
|
4591
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachTrafficSources.html
|
4592
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachLoadBalancerTargetGroups.html
|
4593
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancers.html
|
4539
4594
|
#
|
4540
4595
|
# @option params [required, String] :auto_scaling_group_name
|
4541
4596
|
# The name of the Auto Scaling group.
|
@@ -4580,7 +4635,12 @@ module Aws::AutoScaling
|
|
4580
4635
|
# When you detach a traffic source, it enters the `Removing` state while
|
4581
4636
|
# deregistering the instances in the group. When all instances are
|
4582
4637
|
# deregistered, then you can no longer describe the traffic source using
|
4583
|
-
# the DescribeTrafficSources API call. The instances continue to
|
4638
|
+
# the [DescribeTrafficSources][1] API call. The instances continue to
|
4639
|
+
# run.
|
4640
|
+
#
|
4641
|
+
#
|
4642
|
+
#
|
4643
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
4584
4644
|
#
|
4585
4645
|
# @option params [required, String] :auto_scaling_group_name
|
4586
4646
|
# The name of the Auto Scaling group.
|
@@ -5220,25 +5280,29 @@ module Aws::AutoScaling
|
|
5220
5280
|
#
|
5221
5281
|
# 5. If you need more time, record the lifecycle action heartbeat to
|
5222
5282
|
# keep the instance in a wait state using the
|
5223
|
-
# RecordLifecycleActionHeartbeat API call.
|
5283
|
+
# [RecordLifecycleActionHeartbeat][1] API call.
|
5224
5284
|
#
|
5225
5285
|
# 6. If you finish before the timeout period ends, send a callback by
|
5226
|
-
# using the CompleteLifecycleAction API call.
|
5286
|
+
# using the [CompleteLifecycleAction][2] API call.
|
5227
5287
|
#
|
5228
|
-
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][
|
5288
|
+
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][3]
|
5229
5289
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
5230
5290
|
#
|
5231
5291
|
# If you exceed your maximum limit of lifecycle hooks, which by default
|
5232
5292
|
# is 50 per Auto Scaling group, the call fails.
|
5233
5293
|
#
|
5234
5294
|
# You can view the lifecycle hooks for an Auto Scaling group using the
|
5235
|
-
# DescribeLifecycleHooks API call. If you are no longer using a
|
5236
|
-
# lifecycle hook, you can delete it by calling the
|
5237
|
-
# API.
|
5295
|
+
# [DescribeLifecycleHooks][4] API call. If you are no longer using a
|
5296
|
+
# lifecycle hook, you can delete it by calling the
|
5297
|
+
# [DeleteLifecycleHook][5] API.
|
5238
5298
|
#
|
5239
5299
|
#
|
5240
5300
|
#
|
5241
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
5301
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_RecordLifecycleActionHeartbeat.html
|
5302
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CompleteLifecycleAction.html
|
5303
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/lifecycle-hooks.html
|
5304
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLifecycleHooks.html
|
5305
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteLifecycleHook.html
|
5242
5306
|
#
|
5243
5307
|
# @option params [required, String] :lifecycle_hook_name
|
5244
5308
|
# The name of the lifecycle hook.
|
@@ -5362,7 +5426,11 @@ module Aws::AutoScaling
|
|
5362
5426
|
# @option params [required, Array<String>] :notification_types
|
5363
5427
|
# The type of event that causes the notification to be sent. To query
|
5364
5428
|
# the notification types supported by Amazon EC2 Auto Scaling, call the
|
5365
|
-
# DescribeAutoScalingNotificationTypes API.
|
5429
|
+
# [DescribeAutoScalingNotificationTypes][1] API.
|
5430
|
+
#
|
5431
|
+
#
|
5432
|
+
#
|
5433
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingNotificationTypes.html
|
5366
5434
|
#
|
5367
5435
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5368
5436
|
#
|
@@ -5410,14 +5478,16 @@ module Aws::AutoScaling
|
|
5410
5478
|
# Scaling User Guide*.
|
5411
5479
|
#
|
5412
5480
|
# You can view the scaling policies for an Auto Scaling group using the
|
5413
|
-
# DescribePolicies API call. If you are no longer using a scaling
|
5414
|
-
# policy, you can delete it by calling the DeletePolicy API.
|
5481
|
+
# [DescribePolicies][4] API call. If you are no longer using a scaling
|
5482
|
+
# policy, you can delete it by calling the [DeletePolicy][5] API.
|
5415
5483
|
#
|
5416
5484
|
#
|
5417
5485
|
#
|
5418
5486
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-scaling-target-tracking.html
|
5419
5487
|
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-scaling-simple-step.html
|
5420
5488
|
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-predictive-scaling.html
|
5489
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribePolicies.html
|
5490
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeletePolicy.html
|
5421
5491
|
#
|
5422
5492
|
# @option params [required, String] :auto_scaling_group_name
|
5423
5493
|
# The name of the Auto Scaling group.
|
@@ -5806,9 +5876,9 @@ module Aws::AutoScaling
|
|
5806
5876
|
# Auto Scaling User Guide*.
|
5807
5877
|
#
|
5808
5878
|
# You can view the scheduled actions for an Auto Scaling group using the
|
5809
|
-
# DescribeScheduledActions API call. If you are no longer using a
|
5879
|
+
# [DescribeScheduledActions][2] API call. If you are no longer using a
|
5810
5880
|
# scheduled action, you can delete it by calling the
|
5811
|
-
# DeleteScheduledAction API.
|
5881
|
+
# [DeleteScheduledAction][3] API.
|
5812
5882
|
#
|
5813
5883
|
# If you try to schedule your action in the past, Amazon EC2 Auto
|
5814
5884
|
# Scaling returns an error message.
|
@@ -5816,6 +5886,8 @@ module Aws::AutoScaling
|
|
5816
5886
|
#
|
5817
5887
|
#
|
5818
5888
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scheduled-scaling.html
|
5889
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScheduledActions.html
|
5890
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteScheduledAction.html
|
5819
5891
|
#
|
5820
5892
|
# @option params [required, String] :auto_scaling_group_name
|
5821
5893
|
# The name of the Auto Scaling group.
|
@@ -5935,16 +6007,18 @@ module Aws::AutoScaling
|
|
5935
6007
|
# This operation must be called from the Region in which the Auto
|
5936
6008
|
# Scaling group was created.
|
5937
6009
|
#
|
5938
|
-
# You can view the instances in the warm pool using the
|
5939
|
-
# API call. If you are no longer using a warm
|
5940
|
-
# calling the DeleteWarmPool API.
|
6010
|
+
# You can view the instances in the warm pool using the
|
6011
|
+
# [DescribeWarmPool][1] API call. If you are no longer using a warm
|
6012
|
+
# pool, you can delete it by calling the [DeleteWarmPool][2] API.
|
5941
6013
|
#
|
5942
|
-
# For more information, see [Warm pools for Amazon EC2 Auto Scaling][
|
6014
|
+
# For more information, see [Warm pools for Amazon EC2 Auto Scaling][3]
|
5943
6015
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
5944
6016
|
#
|
5945
6017
|
#
|
5946
6018
|
#
|
5947
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
6019
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeWarmPool.html
|
6020
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteWarmPool.html
|
6021
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-warm-pools.html
|
5948
6022
|
#
|
5949
6023
|
# @option params [required, String] :auto_scaling_group_name
|
5950
6024
|
# The name of the Auto Scaling group.
|
@@ -6026,7 +6100,7 @@ module Aws::AutoScaling
|
|
6026
6100
|
|
6027
6101
|
# Records a heartbeat for the lifecycle action associated with the
|
6028
6102
|
# specified token or instance. This extends the timeout by the length of
|
6029
|
-
# time defined using the PutLifecycleHook API call.
|
6103
|
+
# time defined using the [PutLifecycleHook][1] API call.
|
6030
6104
|
#
|
6031
6105
|
# This step is a part of the procedure for adding a lifecycle hook to an
|
6032
6106
|
# Auto Scaling group:
|
@@ -6051,14 +6125,16 @@ module Aws::AutoScaling
|
|
6051
6125
|
# keep the instance in a wait state.**
|
6052
6126
|
#
|
6053
6127
|
# 6. If you finish before the timeout period ends, send a callback by
|
6054
|
-
# using the CompleteLifecycleAction API call.
|
6128
|
+
# using the [CompleteLifecycleAction][2] API call.
|
6055
6129
|
#
|
6056
|
-
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][
|
6130
|
+
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][3]
|
6057
6131
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
6058
6132
|
#
|
6059
6133
|
#
|
6060
6134
|
#
|
6061
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
6135
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_PutLifecycleHook.html
|
6136
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CompleteLifecycleAction.html
|
6137
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/lifecycle-hooks.html
|
6062
6138
|
#
|
6063
6139
|
# @option params [required, String] :lifecycle_hook_name
|
6064
6140
|
# The name of the lifecycle hook.
|
@@ -6196,12 +6272,13 @@ module Aws::AutoScaling
|
|
6196
6272
|
#
|
6197
6273
|
# When you receive a successful response from this operation, Amazon EC2
|
6198
6274
|
# Auto Scaling immediately begins replacing instances. You can check the
|
6199
|
-
# status of this operation through the DescribeInstanceRefreshes
|
6200
|
-
# operation.
|
6275
|
+
# status of this operation through the [DescribeInstanceRefreshes][2]
|
6276
|
+
# API operation.
|
6201
6277
|
#
|
6202
6278
|
#
|
6203
6279
|
#
|
6204
6280
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh.html
|
6281
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeInstanceRefreshes.html
|
6205
6282
|
#
|
6206
6283
|
# @option params [required, String] :auto_scaling_group_name
|
6207
6284
|
# The name of the Auto Scaling group.
|
@@ -6428,28 +6505,32 @@ module Aws::AutoScaling
|
|
6428
6505
|
#
|
6429
6506
|
# If successful, the request's response contains a unique ID that you
|
6430
6507
|
# can use to track the progress of the instance refresh. To query its
|
6431
|
-
# status, call the DescribeInstanceRefreshes API. To describe the
|
6508
|
+
# status, call the [DescribeInstanceRefreshes][2] API. To describe the
|
6432
6509
|
# instance refreshes that have already run, call the
|
6433
|
-
# DescribeInstanceRefreshes API. To cancel an instance refresh that
|
6434
|
-
# in progress, use the CancelInstanceRefresh API.
|
6510
|
+
# [DescribeInstanceRefreshes][2] API. To cancel an instance refresh that
|
6511
|
+
# is in progress, use the [CancelInstanceRefresh][3] API.
|
6435
6512
|
#
|
6436
6513
|
# An instance refresh might fail for several reasons, such as EC2 launch
|
6437
6514
|
# failures, misconfigured health checks, or not ignoring or allowing the
|
6438
6515
|
# termination of instances that are in `Standby` state or protected from
|
6439
6516
|
# scale in. You can monitor for failed EC2 launches using the scaling
|
6440
6517
|
# activities. To find the scaling activities, call the
|
6441
|
-
# DescribeScalingActivities API.
|
6518
|
+
# [DescribeScalingActivities][4] API.
|
6442
6519
|
#
|
6443
6520
|
# If you enable auto rollback, your Auto Scaling group will be rolled
|
6444
6521
|
# back automatically when the instance refresh fails. You can enable
|
6445
6522
|
# this feature before starting an instance refresh by specifying the
|
6446
6523
|
# `AutoRollback` property in the instance refresh preferences.
|
6447
6524
|
# Otherwise, to roll back an instance refresh before it finishes, use
|
6448
|
-
# the RollbackInstanceRefresh API.
|
6525
|
+
# the [RollbackInstanceRefresh][5] API.
|
6449
6526
|
#
|
6450
6527
|
#
|
6451
6528
|
#
|
6452
6529
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh.html
|
6530
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeInstanceRefreshes.html
|
6531
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CancelInstanceRefresh.html
|
6532
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
6533
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_RollbackInstanceRefresh.html
|
6453
6534
|
#
|
6454
6535
|
# @option params [required, String] :auto_scaling_group_name
|
6455
6536
|
# The name of the Auto Scaling group.
|
@@ -6492,6 +6573,8 @@ module Aws::AutoScaling
|
|
6492
6573
|
#
|
6493
6574
|
# * Skip matching
|
6494
6575
|
#
|
6576
|
+
# * Bake time
|
6577
|
+
#
|
6495
6578
|
# @return [Types::StartInstanceRefreshAnswer] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6496
6579
|
#
|
6497
6580
|
# * {Types::StartInstanceRefreshAnswer#instance_refresh_id #instance_refresh_id} => String
|
@@ -6633,6 +6716,7 @@ module Aws::AutoScaling
|
|
6633
6716
|
# alarms: ["XmlStringMaxLen255"],
|
6634
6717
|
# },
|
6635
6718
|
# max_healthy_percentage: 1,
|
6719
|
+
# bake_time: 1,
|
6636
6720
|
# },
|
6637
6721
|
# })
|
6638
6722
|
#
|
@@ -6657,12 +6741,13 @@ module Aws::AutoScaling
|
|
6657
6741
|
# information, see [Suspend and resume Amazon EC2 Auto Scaling
|
6658
6742
|
# processes][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
6659
6743
|
#
|
6660
|
-
# To resume processes that have been suspended, call the
|
6661
|
-
# API.
|
6744
|
+
# To resume processes that have been suspended, call the
|
6745
|
+
# [ResumeProcesses][2] API.
|
6662
6746
|
#
|
6663
6747
|
#
|
6664
6748
|
#
|
6665
6749
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-suspend-resume-processes.html
|
6750
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_ResumeProcesses.html
|
6666
6751
|
#
|
6667
6752
|
# @option params [required, String] :auto_scaling_group_name
|
6668
6753
|
# The name of the Auto Scaling group.
|
@@ -6841,10 +6926,16 @@ module Aws::AutoScaling
|
|
6841
6926
|
# to the new `MaxSize` value.
|
6842
6927
|
#
|
6843
6928
|
# To see which properties have been set, call the
|
6844
|
-
# DescribeAutoScalingGroups API. To view the scaling policies for
|
6845
|
-
# Auto Scaling group, call the DescribePolicies API. If the
|
6846
|
-
# scaling policies, you can update them by calling the
|
6847
|
-
# API.
|
6929
|
+
# [DescribeAutoScalingGroups][1] API. To view the scaling policies for
|
6930
|
+
# an Auto Scaling group, call the [DescribePolicies][2] API. If the
|
6931
|
+
# group has scaling policies, you can update them by calling the
|
6932
|
+
# [PutScalingPolicy][3] API.
|
6933
|
+
#
|
6934
|
+
#
|
6935
|
+
#
|
6936
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingGroups.html
|
6937
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribePolicies.html
|
6938
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_PutScalingPolicy.html
|
6848
6939
|
#
|
6849
6940
|
# @option params [required, String] :auto_scaling_group_name
|
6850
6941
|
# The name of the Auto Scaling group.
|
@@ -6934,8 +7025,10 @@ module Aws::AutoScaling
|
|
6934
7025
|
#
|
6935
7026
|
# @option params [String] :placement_group
|
6936
7027
|
# The name of an existing placement group into which to launch your
|
6937
|
-
# instances.
|
6938
|
-
#
|
7028
|
+
# instances. To remove the placement group setting, pass an empty string
|
7029
|
+
# for `placement-group`. For more information about placement groups,
|
7030
|
+
# see [Placement groups][1] in the *Amazon EC2 User Guide for Linux
|
7031
|
+
# Instances*.
|
6939
7032
|
#
|
6940
7033
|
# <note markdown="1"> A *cluster* placement group is a logical grouping of instances within
|
6941
7034
|
# a single Availability Zone. You cannot specify multiple Availability
|
@@ -7179,7 +7272,7 @@ module Aws::AutoScaling
|
|
7179
7272
|
# availability_zones: ["XmlStringMaxLen255"],
|
7180
7273
|
# health_check_type: "XmlStringMaxLen32",
|
7181
7274
|
# health_check_grace_period: 1,
|
7182
|
-
# placement_group: "
|
7275
|
+
# placement_group: "UpdatePlacementGroupParam",
|
7183
7276
|
# vpc_zone_identifier: "XmlStringMaxLen5000",
|
7184
7277
|
# termination_policies: ["XmlStringMaxLen1600"],
|
7185
7278
|
# new_instances_protected_from_scale_in: false,
|
@@ -7222,7 +7315,7 @@ module Aws::AutoScaling
|
|
7222
7315
|
tracer: tracer
|
7223
7316
|
)
|
7224
7317
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
7225
|
-
context[:gem_version] = '1.
|
7318
|
+
context[:gem_version] = '1.124.0'
|
7226
7319
|
Seahorse::Client::Request.new(handlers, context)
|
7227
7320
|
end
|
7228
7321
|
|
@@ -63,6 +63,7 @@ module Aws::AutoScaling
|
|
63
63
|
AutoScalingInstancesType = Shapes::StructureShape.new(name: 'AutoScalingInstancesType')
|
64
64
|
AutoScalingNotificationTypes = Shapes::ListShape.new(name: 'AutoScalingNotificationTypes')
|
65
65
|
AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
|
66
|
+
BakeTime = Shapes::IntegerShape.new(name: 'BakeTime')
|
66
67
|
BareMetal = Shapes::StringShape.new(name: 'BareMetal')
|
67
68
|
BaselineEbsBandwidthMbpsRequest = Shapes::StructureShape.new(name: 'BaselineEbsBandwidthMbpsRequest')
|
68
69
|
BatchDeleteScheduledActionAnswer = Shapes::StructureShape.new(name: 'BatchDeleteScheduledActionAnswer')
|
@@ -375,6 +376,7 @@ module Aws::AutoScaling
|
|
375
376
|
TrafficSourceStates = Shapes::ListShape.new(name: 'TrafficSourceStates')
|
376
377
|
TrafficSources = Shapes::ListShape.new(name: 'TrafficSources')
|
377
378
|
UpdateAutoScalingGroupType = Shapes::StructureShape.new(name: 'UpdateAutoScalingGroupType')
|
379
|
+
UpdatePlacementGroupParam = Shapes::StringShape.new(name: 'UpdatePlacementGroupParam')
|
378
380
|
VCpuCountRequest = Shapes::StructureShape.new(name: 'VCpuCountRequest')
|
379
381
|
Values = Shapes::ListShape.new(name: 'Values')
|
380
382
|
WarmPoolConfiguration = Shapes::StructureShape.new(name: 'WarmPoolConfiguration')
|
@@ -1335,6 +1337,7 @@ module Aws::AutoScaling
|
|
1335
1337
|
RefreshPreferences.add_member(:standby_instances, Shapes::ShapeRef.new(shape: StandbyInstances, location_name: "StandbyInstances"))
|
1336
1338
|
RefreshPreferences.add_member(:alarm_specification, Shapes::ShapeRef.new(shape: AlarmSpecification, location_name: "AlarmSpecification"))
|
1337
1339
|
RefreshPreferences.add_member(:max_healthy_percentage, Shapes::ShapeRef.new(shape: IntPercent100To200, location_name: "MaxHealthyPercentage"))
|
1340
|
+
RefreshPreferences.add_member(:bake_time, Shapes::ShapeRef.new(shape: BakeTime, location_name: "BakeTime"))
|
1338
1341
|
RefreshPreferences.struct_class = Types::RefreshPreferences
|
1339
1342
|
|
1340
1343
|
ResourceContentionFault.add_member(:message, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "message"))
|
@@ -1539,7 +1542,7 @@ module Aws::AutoScaling
|
|
1539
1542
|
UpdateAutoScalingGroupType.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
1540
1543
|
UpdateAutoScalingGroupType.add_member(:health_check_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, location_name: "HealthCheckType"))
|
1541
1544
|
UpdateAutoScalingGroupType.add_member(:health_check_grace_period, Shapes::ShapeRef.new(shape: HealthCheckGracePeriod, location_name: "HealthCheckGracePeriod"))
|
1542
|
-
UpdateAutoScalingGroupType.add_member(:placement_group, Shapes::ShapeRef.new(shape:
|
1545
|
+
UpdateAutoScalingGroupType.add_member(:placement_group, Shapes::ShapeRef.new(shape: UpdatePlacementGroupParam, location_name: "PlacementGroup"))
|
1543
1546
|
UpdateAutoScalingGroupType.add_member(:vpc_zone_identifier, Shapes::ShapeRef.new(shape: XmlStringMaxLen5000, location_name: "VPCZoneIdentifier"))
|
1544
1547
|
UpdateAutoScalingGroupType.add_member(:termination_policies, Shapes::ShapeRef.new(shape: TerminationPolicies, location_name: "TerminationPolicies"))
|
1545
1548
|
UpdateAutoScalingGroupType.add_member(:new_instances_protected_from_scale_in, Shapes::ShapeRef.new(shape: InstanceProtected, location_name: "NewInstancesProtectedFromScaleIn"))
|
@@ -11,7 +11,11 @@ module Aws::AutoScaling
|
|
11
11
|
module Types
|
12
12
|
|
13
13
|
# Specifies the minimum and maximum for the `AcceleratorCount` object
|
14
|
-
# when you specify InstanceRequirements for an Auto Scaling group.
|
14
|
+
# when you specify [InstanceRequirements][1] for an Auto Scaling group.
|
15
|
+
#
|
16
|
+
#
|
17
|
+
#
|
18
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
15
19
|
#
|
16
20
|
# @!attribute [rw] min
|
17
21
|
# The minimum value.
|
@@ -31,9 +35,13 @@ module Aws::AutoScaling
|
|
31
35
|
end
|
32
36
|
|
33
37
|
# Specifies the minimum and maximum for the `AcceleratorTotalMemoryMiB`
|
34
|
-
# object when you specify InstanceRequirements for an Auto Scaling
|
38
|
+
# object when you specify [InstanceRequirements][1] for an Auto Scaling
|
35
39
|
# group.
|
36
40
|
#
|
41
|
+
#
|
42
|
+
#
|
43
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
44
|
+
#
|
37
45
|
# @!attribute [rw] min
|
38
46
|
# The memory minimum in MiB.
|
39
47
|
# @return [Integer]
|
@@ -415,8 +423,12 @@ module Aws::AutoScaling
|
|
415
423
|
# @return [Array<Types::EnabledMetric>]
|
416
424
|
#
|
417
425
|
# @!attribute [rw] status
|
418
|
-
# The current state of the group when the DeleteAutoScalingGroup
|
426
|
+
# The current state of the group when the [DeleteAutoScalingGroup][1]
|
419
427
|
# operation is in progress.
|
428
|
+
#
|
429
|
+
#
|
430
|
+
#
|
431
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteAutoScalingGroup.html
|
420
432
|
# @return [String]
|
421
433
|
#
|
422
434
|
# @!attribute [rw] tags
|
@@ -680,9 +692,13 @@ module Aws::AutoScaling
|
|
680
692
|
end
|
681
693
|
|
682
694
|
# Specifies the minimum and maximum for the `BaselineEbsBandwidthMbps`
|
683
|
-
# object when you specify InstanceRequirements for an Auto Scaling
|
695
|
+
# object when you specify [InstanceRequirements][1] for an Auto Scaling
|
684
696
|
# group.
|
685
697
|
#
|
698
|
+
#
|
699
|
+
#
|
700
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
701
|
+
#
|
686
702
|
# @!attribute [rw] min
|
687
703
|
# The minimum value in Mbps.
|
688
704
|
# @return [Integer]
|
@@ -3010,7 +3026,8 @@ module Aws::AutoScaling
|
|
3010
3026
|
# The name of the filter.
|
3011
3027
|
#
|
3012
3028
|
# The valid values for `Name` depend on which API operation you're
|
3013
|
-
# using with the filter (DescribeAutoScalingGroups or
|
3029
|
+
# using with the filter ([DescribeAutoScalingGroups][1] or
|
3030
|
+
# [DescribeTags][2]).
|
3014
3031
|
#
|
3015
3032
|
# **DescribeAutoScalingGroups**
|
3016
3033
|
#
|
@@ -3046,6 +3063,11 @@ module Aws::AutoScaling
|
|
3046
3063
|
# whether tags propagate to instances at launch. The results only
|
3047
3064
|
# include information about the tags associated with the specified
|
3048
3065
|
# Boolean value.
|
3066
|
+
#
|
3067
|
+
#
|
3068
|
+
#
|
3069
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingGroups.html
|
3070
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTags.html
|
3049
3071
|
# @return [String]
|
3050
3072
|
#
|
3051
3073
|
# @!attribute [rw] values
|
@@ -3340,6 +3362,9 @@ module Aws::AutoScaling
|
|
3340
3362
|
# troubleshoot using the status reason and the scaling activities.
|
3341
3363
|
#
|
3342
3364
|
# * `RollbackSuccessful` - The rollback completed successfully.
|
3365
|
+
#
|
3366
|
+
# * `Baking` - Waiting the specified bake time after an instance
|
3367
|
+
# refresh has finished updating instances.
|
3343
3368
|
# @return [String]
|
3344
3369
|
#
|
3345
3370
|
# @!attribute [rw] status_reason
|
@@ -3948,7 +3973,7 @@ module Aws::AutoScaling
|
|
3948
3973
|
# : Uses price to determine which instance types are the highest
|
3949
3974
|
# priority, launching the lowest priced instance types within an
|
3950
3975
|
# Availability Zone first. This is the default value for Auto
|
3951
|
-
# Scaling groups that specify InstanceRequirements.
|
3976
|
+
# Scaling groups that specify [InstanceRequirements][1].
|
3952
3977
|
#
|
3953
3978
|
# prioritized
|
3954
3979
|
#
|
@@ -3959,8 +3984,12 @@ module Aws::AutoScaling
|
|
3959
3984
|
# fulfilled using your highest priority instance type, then Amazon
|
3960
3985
|
# EC2 Auto Scaling launches the remaining capacity using the second
|
3961
3986
|
# priority instance type, and so on. This is the default value for
|
3962
|
-
# Auto Scaling groups that don't specify InstanceRequirements
|
3963
|
-
# cannot be used for groups that do.
|
3987
|
+
# Auto Scaling groups that don't specify [InstanceRequirements][1]
|
3988
|
+
# and cannot be used for groups that do.
|
3989
|
+
#
|
3990
|
+
#
|
3991
|
+
#
|
3992
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
3964
3993
|
# @return [String]
|
3965
3994
|
#
|
3966
3995
|
# @!attribute [rw] on_demand_base_capacity
|
@@ -4011,7 +4040,7 @@ module Aws::AutoScaling
|
|
4011
4040
|
# first. Note that if the On-Demand allocation strategy is set to
|
4012
4041
|
# `prioritized`, the same priority is applied when fulfilling
|
4013
4042
|
# On-Demand capacity. This is not a valid value for Auto Scaling
|
4014
|
-
# groups that specify InstanceRequirements.
|
4043
|
+
# groups that specify [InstanceRequirements][1].
|
4015
4044
|
#
|
4016
4045
|
# lowest-price
|
4017
4046
|
#
|
@@ -4028,6 +4057,10 @@ module Aws::AutoScaling
|
|
4028
4057
|
# : The price and capacity optimized allocation strategy looks at both
|
4029
4058
|
# price and capacity to select the Spot Instance pools that are the
|
4030
4059
|
# least likely to be interrupted and have the lowest possible price.
|
4060
|
+
#
|
4061
|
+
#
|
4062
|
+
#
|
4063
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
4031
4064
|
# @return [String]
|
4032
4065
|
#
|
4033
4066
|
# @!attribute [rw] spot_instance_pools
|
@@ -4833,7 +4866,11 @@ module Aws::AutoScaling
|
|
4833
4866
|
end
|
4834
4867
|
|
4835
4868
|
# Specifies the minimum and maximum for the `MemoryGiBPerVCpu` object
|
4836
|
-
# when you specify InstanceRequirements for an Auto Scaling group.
|
4869
|
+
# when you specify [InstanceRequirements][1] for an Auto Scaling group.
|
4870
|
+
#
|
4871
|
+
#
|
4872
|
+
#
|
4873
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
4837
4874
|
#
|
4838
4875
|
# @!attribute [rw] min
|
4839
4876
|
# The memory minimum in GiB.
|
@@ -4853,7 +4890,11 @@ module Aws::AutoScaling
|
|
4853
4890
|
end
|
4854
4891
|
|
4855
4892
|
# Specifies the minimum and maximum for the `MemoryMiB` object when you
|
4856
|
-
# specify InstanceRequirements for an Auto Scaling group.
|
4893
|
+
# specify [InstanceRequirements][1] for an Auto Scaling group.
|
4894
|
+
#
|
4895
|
+
#
|
4896
|
+
#
|
4897
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
4857
4898
|
#
|
4858
4899
|
# @!attribute [rw] min
|
4859
4900
|
# The memory minimum in MiB.
|
@@ -5160,21 +5201,22 @@ module Aws::AutoScaling
|
|
5160
5201
|
end
|
5161
5202
|
|
5162
5203
|
# Specifies the minimum and maximum for the `NetworkBandwidthGbps`
|
5163
|
-
# object when you specify InstanceRequirements for an Auto Scaling
|
5204
|
+
# object when you specify [InstanceRequirements][1] for an Auto Scaling
|
5164
5205
|
# group.
|
5165
5206
|
#
|
5166
5207
|
# <note markdown="1"> Setting the minimum bandwidth does not guarantee that your instance
|
5167
5208
|
# will achieve the minimum bandwidth. Amazon EC2 will identify instance
|
5168
5209
|
# types that support the specified minimum bandwidth, but the actual
|
5169
5210
|
# bandwidth of your instance might go below the specified minimum at
|
5170
|
-
# times. For more information, see [Available instance bandwidth][
|
5211
|
+
# times. For more information, see [Available instance bandwidth][2] in
|
5171
5212
|
# the *Amazon EC2 User Guide for Linux Instances*.
|
5172
5213
|
#
|
5173
5214
|
# </note>
|
5174
5215
|
#
|
5175
5216
|
#
|
5176
5217
|
#
|
5177
|
-
# [1]: https://docs.aws.amazon.com/
|
5218
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
5219
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth
|
5178
5220
|
#
|
5179
5221
|
# @!attribute [rw] min
|
5180
5222
|
# The minimum amount of network bandwidth, in gigabits per second
|
@@ -5196,9 +5238,13 @@ module Aws::AutoScaling
|
|
5196
5238
|
end
|
5197
5239
|
|
5198
5240
|
# Specifies the minimum and maximum for the `NetworkInterfaceCount`
|
5199
|
-
# object when you specify InstanceRequirements for an Auto Scaling
|
5241
|
+
# object when you specify [InstanceRequirements][1] for an Auto Scaling
|
5200
5242
|
# group.
|
5201
5243
|
#
|
5244
|
+
#
|
5245
|
+
#
|
5246
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
5247
|
+
#
|
5202
5248
|
# @!attribute [rw] min
|
5203
5249
|
# The minimum number of network interfaces.
|
5204
5250
|
# @return [Integer]
|
@@ -5887,7 +5933,11 @@ module Aws::AutoScaling
|
|
5887
5933
|
# @!attribute [rw] notification_types
|
5888
5934
|
# The type of event that causes the notification to be sent. To query
|
5889
5935
|
# the notification types supported by Amazon EC2 Auto Scaling, call
|
5890
|
-
# the DescribeAutoScalingNotificationTypes API.
|
5936
|
+
# the [DescribeAutoScalingNotificationTypes][1] API.
|
5937
|
+
#
|
5938
|
+
#
|
5939
|
+
#
|
5940
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingNotificationTypes.html
|
5891
5941
|
# @return [Array<String>]
|
5892
5942
|
#
|
5893
5943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfigurationType AWS API Documentation
|
@@ -6456,6 +6506,11 @@ module Aws::AutoScaling
|
|
6456
6506
|
# Scaling group, if defined.
|
6457
6507
|
# @return [Integer]
|
6458
6508
|
#
|
6509
|
+
# @!attribute [rw] bake_time
|
6510
|
+
# The amount of time, in seconds, to wait at the end of an instance
|
6511
|
+
# refresh before the instance refresh is considered complete.
|
6512
|
+
# @return [Integer]
|
6513
|
+
#
|
6459
6514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/RefreshPreferences AWS API Documentation
|
6460
6515
|
#
|
6461
6516
|
class RefreshPreferences < Struct.new(
|
@@ -6468,7 +6523,8 @@ module Aws::AutoScaling
|
|
6468
6523
|
:scale_in_protected_instances,
|
6469
6524
|
:standby_instances,
|
6470
6525
|
:alarm_specification,
|
6471
|
-
:max_healthy_percentage
|
6526
|
+
:max_healthy_percentage,
|
6527
|
+
:bake_time)
|
6472
6528
|
SENSITIVE = []
|
6473
6529
|
include Aws::Structure
|
6474
6530
|
end
|
@@ -6826,7 +6882,11 @@ module Aws::AutoScaling
|
|
6826
6882
|
end
|
6827
6883
|
|
6828
6884
|
# Describes information used for one or more scheduled scaling action
|
6829
|
-
# updates in a BatchPutScheduledUpdateGroupAction operation.
|
6885
|
+
# updates in a [BatchPutScheduledUpdateGroupAction][1] operation.
|
6886
|
+
#
|
6887
|
+
#
|
6888
|
+
#
|
6889
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_BatchPutScheduledUpdateGroupAction.html
|
6830
6890
|
#
|
6831
6891
|
# @!attribute [rw] scheduled_action_name
|
6832
6892
|
# The name of the scaling action.
|
@@ -7070,6 +7130,8 @@ module Aws::AutoScaling
|
|
7070
7130
|
# * CloudWatch alarms
|
7071
7131
|
#
|
7072
7132
|
# * Skip matching
|
7133
|
+
#
|
7134
|
+
# * Bake time
|
7073
7135
|
# @return [Types::RefreshPreferences]
|
7074
7136
|
#
|
7075
7137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/StartInstanceRefreshType AWS API Documentation
|
@@ -7450,7 +7512,11 @@ module Aws::AutoScaling
|
|
7450
7512
|
end
|
7451
7513
|
|
7452
7514
|
# Specifies the minimum and maximum for the `TotalLocalStorageGB` object
|
7453
|
-
# when you specify InstanceRequirements for an Auto Scaling group.
|
7515
|
+
# when you specify [InstanceRequirements][1] for an Auto Scaling group.
|
7516
|
+
#
|
7517
|
+
#
|
7518
|
+
#
|
7519
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
7454
7520
|
#
|
7455
7521
|
# @!attribute [rw] min
|
7456
7522
|
# The storage minimum in GB.
|
@@ -7696,8 +7762,10 @@ module Aws::AutoScaling
|
|
7696
7762
|
#
|
7697
7763
|
# @!attribute [rw] placement_group
|
7698
7764
|
# The name of an existing placement group into which to launch your
|
7699
|
-
# instances.
|
7700
|
-
#
|
7765
|
+
# instances. To remove the placement group setting, pass an empty
|
7766
|
+
# string for `placement-group`. For more information about placement
|
7767
|
+
# groups, see [Placement groups][1] in the *Amazon EC2 User Guide for
|
7768
|
+
# Linux Instances*.
|
7701
7769
|
#
|
7702
7770
|
# <note markdown="1"> A *cluster* placement group is a logical grouping of instances
|
7703
7771
|
# within a single Availability Zone. You cannot specify multiple
|
@@ -7867,7 +7935,11 @@ module Aws::AutoScaling
|
|
7867
7935
|
end
|
7868
7936
|
|
7869
7937
|
# Specifies the minimum and maximum for the `VCpuCount` object when you
|
7870
|
-
# specify InstanceRequirements for an Auto Scaling group.
|
7938
|
+
# specify [InstanceRequirements][1] for an Auto Scaling group.
|
7939
|
+
#
|
7940
|
+
#
|
7941
|
+
#
|
7942
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
7871
7943
|
#
|
7872
7944
|
# @!attribute [rw] min
|
7873
7945
|
# The minimum number of vCPUs.
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1197,7 +1197,8 @@ module Aws
|
|
1197
1197
|
alarm_specification: {
|
1198
1198
|
alarms: Array[::String]?
|
1199
1199
|
}?,
|
1200
|
-
max_healthy_percentage: ::Integer
|
1200
|
+
max_healthy_percentage: ::Integer?,
|
1201
|
+
bake_time: ::Integer?
|
1201
1202
|
}
|
1202
1203
|
) -> _StartInstanceRefreshResponseSuccess
|
1203
1204
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInstanceRefreshResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -697,7 +697,7 @@ module Aws::AutoScaling
|
|
697
697
|
class InstanceRefresh
|
698
698
|
attr_accessor instance_refresh_id: ::String
|
699
699
|
attr_accessor auto_scaling_group_name: ::String
|
700
|
-
attr_accessor status: ("Pending" | "InProgress" | "Successful" | "Failed" | "Cancelling" | "Cancelled" | "RollbackInProgress" | "RollbackFailed" | "RollbackSuccessful")
|
700
|
+
attr_accessor status: ("Pending" | "InProgress" | "Successful" | "Failed" | "Cancelling" | "Cancelled" | "RollbackInProgress" | "RollbackFailed" | "RollbackSuccessful" | "Baking")
|
701
701
|
attr_accessor status_reason: ::String
|
702
702
|
attr_accessor start_time: ::Time
|
703
703
|
attr_accessor end_time: ::Time
|
@@ -1142,6 +1142,7 @@ module Aws::AutoScaling
|
|
1142
1142
|
attr_accessor standby_instances: ("Terminate" | "Ignore" | "Wait")
|
1143
1143
|
attr_accessor alarm_specification: Types::AlarmSpecification
|
1144
1144
|
attr_accessor max_healthy_percentage: ::Integer
|
1145
|
+
attr_accessor bake_time: ::Integer
|
1145
1146
|
SENSITIVE: []
|
1146
1147
|
end
|
1147
1148
|
|
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.124.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: 2024-10-
|
11
|
+
date: 2024-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|