aws-sdk-autoscaling 1.156.0 → 1.158.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 +12 -0
- data/lib/aws-sdk-autoscaling/client.rb +26 -1
- data/lib/aws-sdk-autoscaling/client_api.rb +8 -0
- data/lib/aws-sdk-autoscaling/instance.rb +6 -0
- data/lib/aws-sdk-autoscaling/resource.rb +5 -0
- data/lib/aws-sdk-autoscaling/types.rb +30 -0
- data/lib/aws-sdk-autoscaling.rb +1 -1
- data/sig/auto_scaling_group.rbs +4 -0
- data/sig/client.rbs +2 -0
- data/sig/instance.rbs +3 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 792217ecb95d72e22b5a6ab3a327b73deedaf07ec4f5546e48b119ff2f3ef2a7
|
|
4
|
+
data.tar.gz: c3b8354060c9995941f181e2919702fa4aafaebf9e65be9dad8044bfe6b44034
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64374418fa6e764ab8a1d00f86a3d4b450851ac706bcc5f78c471214538b6d1bc6efe13e9b70acb46e0b57cbb88605c99af1228cf102d9d3a1bd278ad190df02
|
|
7
|
+
data.tar.gz: 2736f25c08460831b8638252d28b04a22d82234202dacb276603384379562f6ee504758703797a028640bf53e63b89f77354b937e66f240af18aaefe8a9a4121
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.158.0 (2026-05-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.157.0 (2026-04-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for specifying Availability Zone IDs as an alternative to Availability Zone names when creating or updating Auto Scaling groups.
|
|
13
|
+
|
|
4
14
|
1.156.0 (2026-03-30)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.158.0
|
|
@@ -98,6 +98,13 @@ module Aws::AutoScaling
|
|
|
98
98
|
data[:availability_zones]
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
+
# The Availability Zone IDs where the Auto Scaling group can launch
|
|
102
|
+
# instances.
|
|
103
|
+
# @return [Array<String>]
|
|
104
|
+
def availability_zone_ids
|
|
105
|
+
data[:availability_zone_ids]
|
|
106
|
+
end
|
|
107
|
+
|
|
101
108
|
# One or more load balancers associated with the group.
|
|
102
109
|
# @return [Array<String>]
|
|
103
110
|
def load_balancer_names
|
|
@@ -1312,6 +1319,7 @@ module Aws::AutoScaling
|
|
|
1312
1319
|
# desired_capacity: 1,
|
|
1313
1320
|
# default_cooldown: 1,
|
|
1314
1321
|
# availability_zones: ["XmlStringMaxLen255"],
|
|
1322
|
+
# availability_zone_ids: ["XmlStringMaxLen255"],
|
|
1315
1323
|
# health_check_type: "XmlStringMaxLen32",
|
|
1316
1324
|
# health_check_grace_period: 1,
|
|
1317
1325
|
# placement_group: "UpdatePlacementGroupParam",
|
|
@@ -1399,6 +1407,10 @@ module Aws::AutoScaling
|
|
|
1399
1407
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scaling-cooldowns.html
|
|
1400
1408
|
# @option options [Array<String>] :availability_zones
|
|
1401
1409
|
# One or more Availability Zones for the group.
|
|
1410
|
+
# @option options [Array<String>] :availability_zone_ids
|
|
1411
|
+
# A list of Availability Zone IDs for the Auto Scaling group. You cannot
|
|
1412
|
+
# specify both AvailabilityZones and AvailabilityZoneIds in the same
|
|
1413
|
+
# request.
|
|
1402
1414
|
# @option options [String] :health_check_type
|
|
1403
1415
|
# A comma-separated value string of one or more health check types.
|
|
1404
1416
|
#
|
|
@@ -1146,6 +1146,11 @@ module Aws::AutoScaling
|
|
|
1146
1146
|
# for attaching a network interface when an existing network interface
|
|
1147
1147
|
# ID is specified in a launch template.
|
|
1148
1148
|
#
|
|
1149
|
+
# @option params [Array<String>] :availability_zone_ids
|
|
1150
|
+
# A list of Availability Zone IDs where the Auto Scaling group can
|
|
1151
|
+
# launch instances. You cannot specify both AvailabilityZones and
|
|
1152
|
+
# AvailabilityZoneIds in the same request.
|
|
1153
|
+
#
|
|
1149
1154
|
# @option params [Array<String>] :load_balancer_names
|
|
1150
1155
|
# A list of Classic Load Balancers associated with this Auto Scaling
|
|
1151
1156
|
# group. For Application Load Balancers, Network Load Balancers, and
|
|
@@ -1650,6 +1655,7 @@ module Aws::AutoScaling
|
|
|
1650
1655
|
# desired_capacity: 1,
|
|
1651
1656
|
# default_cooldown: 1,
|
|
1652
1657
|
# availability_zones: ["XmlStringMaxLen255"],
|
|
1658
|
+
# availability_zone_ids: ["XmlStringMaxLen255"],
|
|
1653
1659
|
# load_balancer_names: ["XmlStringMaxLen255"],
|
|
1654
1660
|
# target_group_arns: ["XmlStringMaxLen511"],
|
|
1655
1661
|
# health_check_type: "XmlStringMaxLen32",
|
|
@@ -2631,6 +2637,11 @@ module Aws::AutoScaling
|
|
|
2631
2637
|
# {
|
|
2632
2638
|
# auto_scaling_group_arn: "arn:aws:autoscaling:us-west-1:123456789012:autoScalingGroup:12345678-1234-1234-1234-123456789012:autoScalingGroupName/my-auto-scaling-group",
|
|
2633
2639
|
# auto_scaling_group_name: "my-auto-scaling-group",
|
|
2640
|
+
# availability_zone_ids: [
|
|
2641
|
+
# "usw2-az1",
|
|
2642
|
+
# "usw2-az2",
|
|
2643
|
+
# "usw2-az3",
|
|
2644
|
+
# ],
|
|
2634
2645
|
# availability_zones: [
|
|
2635
2646
|
# "us-west-2a",
|
|
2636
2647
|
# "us-west-2b",
|
|
@@ -2646,6 +2657,7 @@ module Aws::AutoScaling
|
|
|
2646
2657
|
# instances: [
|
|
2647
2658
|
# {
|
|
2648
2659
|
# availability_zone: "us-west-2c",
|
|
2660
|
+
# availability_zone_id: "usw2-az3",
|
|
2649
2661
|
# health_status: "Healthy",
|
|
2650
2662
|
# instance_id: "i-05b4f7d5be44822a6",
|
|
2651
2663
|
# instance_type: "t3.micro",
|
|
@@ -2655,6 +2667,7 @@ module Aws::AutoScaling
|
|
|
2655
2667
|
# },
|
|
2656
2668
|
# {
|
|
2657
2669
|
# availability_zone: "us-west-2b",
|
|
2670
|
+
# availability_zone_id: "usw2-az2",
|
|
2658
2671
|
# health_status: "Healthy",
|
|
2659
2672
|
# instance_id: "i-0c20ac468fa3049e8",
|
|
2660
2673
|
# instance_type: "t3.micro",
|
|
@@ -2776,6 +2789,8 @@ module Aws::AutoScaling
|
|
|
2776
2789
|
# resp.auto_scaling_groups[0].default_cooldown #=> Integer
|
|
2777
2790
|
# resp.auto_scaling_groups[0].availability_zones #=> Array
|
|
2778
2791
|
# resp.auto_scaling_groups[0].availability_zones[0] #=> String
|
|
2792
|
+
# resp.auto_scaling_groups[0].availability_zone_ids #=> Array
|
|
2793
|
+
# resp.auto_scaling_groups[0].availability_zone_ids[0] #=> String
|
|
2779
2794
|
# resp.auto_scaling_groups[0].load_balancer_names #=> Array
|
|
2780
2795
|
# resp.auto_scaling_groups[0].load_balancer_names[0] #=> String
|
|
2781
2796
|
# resp.auto_scaling_groups[0].target_group_arns #=> Array
|
|
@@ -2786,6 +2801,7 @@ module Aws::AutoScaling
|
|
|
2786
2801
|
# resp.auto_scaling_groups[0].instances[0].instance_id #=> String
|
|
2787
2802
|
# resp.auto_scaling_groups[0].instances[0].instance_type #=> String
|
|
2788
2803
|
# resp.auto_scaling_groups[0].instances[0].availability_zone #=> String
|
|
2804
|
+
# resp.auto_scaling_groups[0].instances[0].availability_zone_id #=> String
|
|
2789
2805
|
# resp.auto_scaling_groups[0].instances[0].lifecycle_state #=> String, one of "Pending", "Pending:Wait", "Pending:Proceed", "Quarantined", "InService", "Terminating", "Terminating:Wait", "Terminating:Proceed", "Terminating:Retained", "Terminated", "Detaching", "Detached", "EnteringStandby", "Standby", "ReplacingRootVolume", "ReplacingRootVolume:Wait", "ReplacingRootVolume:Proceed", "RootVolumeReplaced", "Warmed:Pending", "Warmed:Pending:Wait", "Warmed:Pending:Proceed", "Warmed:Pending:Retained", "Warmed:Terminating", "Warmed:Terminating:Wait", "Warmed:Terminating:Proceed", "Warmed:Terminating:Retained", "Warmed:Terminated", "Warmed:Stopped", "Warmed:Running", "Warmed:Hibernated"
|
|
2790
2806
|
# resp.auto_scaling_groups[0].instances[0].health_status #=> String
|
|
2791
2807
|
# resp.auto_scaling_groups[0].instances[0].launch_configuration_name #=> String
|
|
@@ -2901,6 +2917,7 @@ module Aws::AutoScaling
|
|
|
2901
2917
|
# {
|
|
2902
2918
|
# auto_scaling_group_name: "my-auto-scaling-group",
|
|
2903
2919
|
# availability_zone: "us-west-2c",
|
|
2920
|
+
# availability_zone_id: "usw2-az2",
|
|
2904
2921
|
# health_status: "HEALTHY",
|
|
2905
2922
|
# instance_id: "i-05b4f7d5be44822a6",
|
|
2906
2923
|
# instance_type: "t3.micro",
|
|
@@ -2926,6 +2943,7 @@ module Aws::AutoScaling
|
|
|
2926
2943
|
# resp.auto_scaling_instances[0].instance_type #=> String
|
|
2927
2944
|
# resp.auto_scaling_instances[0].auto_scaling_group_name #=> String
|
|
2928
2945
|
# resp.auto_scaling_instances[0].availability_zone #=> String
|
|
2946
|
+
# resp.auto_scaling_instances[0].availability_zone_id #=> String
|
|
2929
2947
|
# resp.auto_scaling_instances[0].lifecycle_state #=> String
|
|
2930
2948
|
# resp.auto_scaling_instances[0].health_status #=> String
|
|
2931
2949
|
# resp.auto_scaling_instances[0].launch_configuration_name #=> String
|
|
@@ -4592,6 +4610,7 @@ module Aws::AutoScaling
|
|
|
4592
4610
|
# resp.instances[0].instance_id #=> String
|
|
4593
4611
|
# resp.instances[0].instance_type #=> String
|
|
4594
4612
|
# resp.instances[0].availability_zone #=> String
|
|
4613
|
+
# resp.instances[0].availability_zone_id #=> String
|
|
4595
4614
|
# resp.instances[0].lifecycle_state #=> String, one of "Pending", "Pending:Wait", "Pending:Proceed", "Quarantined", "InService", "Terminating", "Terminating:Wait", "Terminating:Proceed", "Terminating:Retained", "Terminated", "Detaching", "Detached", "EnteringStandby", "Standby", "ReplacingRootVolume", "ReplacingRootVolume:Wait", "ReplacingRootVolume:Proceed", "RootVolumeReplaced", "Warmed:Pending", "Warmed:Pending:Wait", "Warmed:Pending:Proceed", "Warmed:Pending:Retained", "Warmed:Terminating", "Warmed:Terminating:Wait", "Warmed:Terminating:Proceed", "Warmed:Terminating:Retained", "Warmed:Terminated", "Warmed:Stopped", "Warmed:Running", "Warmed:Hibernated"
|
|
4596
4615
|
# resp.instances[0].health_status #=> String
|
|
4597
4616
|
# resp.instances[0].launch_configuration_name #=> String
|
|
@@ -7312,6 +7331,11 @@ module Aws::AutoScaling
|
|
|
7312
7331
|
# @option params [Array<String>] :availability_zones
|
|
7313
7332
|
# One or more Availability Zones for the group.
|
|
7314
7333
|
#
|
|
7334
|
+
# @option params [Array<String>] :availability_zone_ids
|
|
7335
|
+
# A list of Availability Zone IDs for the Auto Scaling group. You cannot
|
|
7336
|
+
# specify both AvailabilityZones and AvailabilityZoneIds in the same
|
|
7337
|
+
# request.
|
|
7338
|
+
#
|
|
7315
7339
|
# @option params [String] :health_check_type
|
|
7316
7340
|
# A comma-separated value string of one or more health check types.
|
|
7317
7341
|
#
|
|
@@ -7658,6 +7682,7 @@ module Aws::AutoScaling
|
|
|
7658
7682
|
# desired_capacity: 1,
|
|
7659
7683
|
# default_cooldown: 1,
|
|
7660
7684
|
# availability_zones: ["XmlStringMaxLen255"],
|
|
7685
|
+
# availability_zone_ids: ["XmlStringMaxLen255"],
|
|
7661
7686
|
# health_check_type: "XmlStringMaxLen32",
|
|
7662
7687
|
# health_check_grace_period: 1,
|
|
7663
7688
|
# placement_group: "UpdatePlacementGroupParam",
|
|
@@ -7724,7 +7749,7 @@ module Aws::AutoScaling
|
|
|
7724
7749
|
tracer: tracer
|
|
7725
7750
|
)
|
|
7726
7751
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
|
7727
|
-
context[:gem_version] = '1.
|
|
7752
|
+
context[:gem_version] = '1.158.0'
|
|
7728
7753
|
Seahorse::Client::Request.new(handlers, context)
|
|
7729
7754
|
end
|
|
7730
7755
|
|
|
@@ -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
|
AvailabilityZoneDistribution = Shapes::StructureShape.new(name: 'AvailabilityZoneDistribution')
|
|
66
|
+
AvailabilityZoneIds = Shapes::ListShape.new(name: 'AvailabilityZoneIds')
|
|
66
67
|
AvailabilityZoneIdsLimit1 = Shapes::ListShape.new(name: 'AvailabilityZoneIdsLimit1')
|
|
67
68
|
AvailabilityZoneImpairmentPolicy = Shapes::StructureShape.new(name: 'AvailabilityZoneImpairmentPolicy')
|
|
68
69
|
AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
|
|
@@ -532,6 +533,7 @@ module Aws::AutoScaling
|
|
|
532
533
|
AutoScalingGroup.add_member(:predicted_capacity, Shapes::ShapeRef.new(shape: AutoScalingGroupPredictedCapacity, location_name: "PredictedCapacity"))
|
|
533
534
|
AutoScalingGroup.add_member(:default_cooldown, Shapes::ShapeRef.new(shape: Cooldown, required: true, location_name: "DefaultCooldown"))
|
|
534
535
|
AutoScalingGroup.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, required: true, location_name: "AvailabilityZones"))
|
|
536
|
+
AutoScalingGroup.add_member(:availability_zone_ids, Shapes::ShapeRef.new(shape: AvailabilityZoneIds, location_name: "AvailabilityZoneIds"))
|
|
535
537
|
AutoScalingGroup.add_member(:load_balancer_names, Shapes::ShapeRef.new(shape: LoadBalancerNames, location_name: "LoadBalancerNames"))
|
|
536
538
|
AutoScalingGroup.add_member(:target_group_arns, Shapes::ShapeRef.new(shape: TargetGroupARNs, location_name: "TargetGroupARNs"))
|
|
537
539
|
AutoScalingGroup.add_member(:health_check_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, required: true, location_name: "HealthCheckType"))
|
|
@@ -582,6 +584,7 @@ module Aws::AutoScaling
|
|
|
582
584
|
AutoScalingInstanceDetails.add_member(:instance_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "InstanceType"))
|
|
583
585
|
AutoScalingInstanceDetails.add_member(:auto_scaling_group_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, required: true, location_name: "AutoScalingGroupName"))
|
|
584
586
|
AutoScalingInstanceDetails.add_member(:availability_zone, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, required: true, location_name: "AvailabilityZone"))
|
|
587
|
+
AutoScalingInstanceDetails.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "AvailabilityZoneId"))
|
|
585
588
|
AutoScalingInstanceDetails.add_member(:lifecycle_state, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, required: true, location_name: "LifecycleState"))
|
|
586
589
|
AutoScalingInstanceDetails.add_member(:health_status, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, required: true, location_name: "HealthStatus"))
|
|
587
590
|
AutoScalingInstanceDetails.add_member(:launch_configuration_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "LaunchConfigurationName"))
|
|
@@ -602,6 +605,8 @@ module Aws::AutoScaling
|
|
|
602
605
|
AvailabilityZoneDistribution.add_member(:capacity_distribution_strategy, Shapes::ShapeRef.new(shape: CapacityDistributionStrategy, location_name: "CapacityDistributionStrategy"))
|
|
603
606
|
AvailabilityZoneDistribution.struct_class = Types::AvailabilityZoneDistribution
|
|
604
607
|
|
|
608
|
+
AvailabilityZoneIds.member = Shapes::ShapeRef.new(shape: XmlStringMaxLen255)
|
|
609
|
+
|
|
605
610
|
AvailabilityZoneIdsLimit1.member = Shapes::ShapeRef.new(shape: XmlStringMaxLen255)
|
|
606
611
|
|
|
607
612
|
AvailabilityZoneImpairmentPolicy.add_member(:zonal_shift_enabled, Shapes::ShapeRef.new(shape: ZonalShiftEnabled, location_name: "ZonalShiftEnabled"))
|
|
@@ -692,6 +697,7 @@ module Aws::AutoScaling
|
|
|
692
697
|
CreateAutoScalingGroupType.add_member(:desired_capacity, Shapes::ShapeRef.new(shape: AutoScalingGroupDesiredCapacity, location_name: "DesiredCapacity"))
|
|
693
698
|
CreateAutoScalingGroupType.add_member(:default_cooldown, Shapes::ShapeRef.new(shape: Cooldown, location_name: "DefaultCooldown"))
|
|
694
699
|
CreateAutoScalingGroupType.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
|
700
|
+
CreateAutoScalingGroupType.add_member(:availability_zone_ids, Shapes::ShapeRef.new(shape: AvailabilityZoneIds, location_name: "AvailabilityZoneIds"))
|
|
695
701
|
CreateAutoScalingGroupType.add_member(:load_balancer_names, Shapes::ShapeRef.new(shape: LoadBalancerNames, location_name: "LoadBalancerNames"))
|
|
696
702
|
CreateAutoScalingGroupType.add_member(:target_group_arns, Shapes::ShapeRef.new(shape: TargetGroupARNs, location_name: "TargetGroupARNs"))
|
|
697
703
|
CreateAutoScalingGroupType.add_member(:health_check_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, location_name: "HealthCheckType"))
|
|
@@ -1009,6 +1015,7 @@ module Aws::AutoScaling
|
|
|
1009
1015
|
Instance.add_member(:instance_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen19, required: true, location_name: "InstanceId"))
|
|
1010
1016
|
Instance.add_member(:instance_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "InstanceType"))
|
|
1011
1017
|
Instance.add_member(:availability_zone, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, required: true, location_name: "AvailabilityZone"))
|
|
1018
|
+
Instance.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "AvailabilityZoneId"))
|
|
1012
1019
|
Instance.add_member(:lifecycle_state, Shapes::ShapeRef.new(shape: LifecycleState, required: true, location_name: "LifecycleState"))
|
|
1013
1020
|
Instance.add_member(:health_status, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, required: true, location_name: "HealthStatus"))
|
|
1014
1021
|
Instance.add_member(:launch_configuration_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "LaunchConfigurationName"))
|
|
@@ -1681,6 +1688,7 @@ module Aws::AutoScaling
|
|
|
1681
1688
|
UpdateAutoScalingGroupType.add_member(:desired_capacity, Shapes::ShapeRef.new(shape: AutoScalingGroupDesiredCapacity, location_name: "DesiredCapacity"))
|
|
1682
1689
|
UpdateAutoScalingGroupType.add_member(:default_cooldown, Shapes::ShapeRef.new(shape: Cooldown, location_name: "DefaultCooldown"))
|
|
1683
1690
|
UpdateAutoScalingGroupType.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
|
1691
|
+
UpdateAutoScalingGroupType.add_member(:availability_zone_ids, Shapes::ShapeRef.new(shape: AvailabilityZoneIds, location_name: "AvailabilityZoneIds"))
|
|
1684
1692
|
UpdateAutoScalingGroupType.add_member(:health_check_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, location_name: "HealthCheckType"))
|
|
1685
1693
|
UpdateAutoScalingGroupType.add_member(:health_check_grace_period, Shapes::ShapeRef.new(shape: HealthCheckGracePeriod, location_name: "HealthCheckGracePeriod"))
|
|
1686
1694
|
UpdateAutoScalingGroupType.add_member(:placement_group, Shapes::ShapeRef.new(shape: UpdatePlacementGroupParam, location_name: "PlacementGroup"))
|
|
@@ -56,6 +56,12 @@ module Aws::AutoScaling
|
|
|
56
56
|
data[:availability_zone]
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
+
# The Availability Zone ID where the instance is located.
|
|
60
|
+
# @return [String]
|
|
61
|
+
def availability_zone_id
|
|
62
|
+
data[:availability_zone_id]
|
|
63
|
+
end
|
|
64
|
+
|
|
59
65
|
# The lifecycle state for the instance. The `Quarantined` state is not
|
|
60
66
|
# used. For more information, see [Amazon EC2 Auto Scaling instance
|
|
61
67
|
# lifecycle][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
|
@@ -142,6 +142,7 @@ module Aws::AutoScaling
|
|
|
142
142
|
# desired_capacity: 1,
|
|
143
143
|
# default_cooldown: 1,
|
|
144
144
|
# availability_zones: ["XmlStringMaxLen255"],
|
|
145
|
+
# availability_zone_ids: ["XmlStringMaxLen255"],
|
|
145
146
|
# load_balancer_names: ["XmlStringMaxLen255"],
|
|
146
147
|
# target_group_arns: ["XmlStringMaxLen511"],
|
|
147
148
|
# health_check_type: "XmlStringMaxLen32",
|
|
@@ -304,6 +305,10 @@ module Aws::AutoScaling
|
|
|
304
305
|
# Availability Zone when not using the `VPCZoneIdentifier` property, or
|
|
305
306
|
# for attaching a network interface when an existing network interface
|
|
306
307
|
# ID is specified in a launch template.
|
|
308
|
+
# @option options [Array<String>] :availability_zone_ids
|
|
309
|
+
# A list of Availability Zone IDs where the Auto Scaling group can
|
|
310
|
+
# launch instances. You cannot specify both AvailabilityZones and
|
|
311
|
+
# AvailabilityZoneIds in the same request.
|
|
307
312
|
# @option options [Array<String>] :load_balancer_names
|
|
308
313
|
# A list of Classic Load Balancers associated with this Auto Scaling
|
|
309
314
|
# group. For Application Load Balancers, Network Load Balancers, and
|
|
@@ -395,6 +395,11 @@ module Aws::AutoScaling
|
|
|
395
395
|
# One or more Availability Zones for the Auto Scaling group.
|
|
396
396
|
# @return [Array<String>]
|
|
397
397
|
#
|
|
398
|
+
# @!attribute [rw] availability_zone_ids
|
|
399
|
+
# The Availability Zone IDs where the Auto Scaling group can launch
|
|
400
|
+
# instances.
|
|
401
|
+
# @return [Array<String>]
|
|
402
|
+
#
|
|
398
403
|
# @!attribute [rw] load_balancer_names
|
|
399
404
|
# One or more load balancers associated with the group.
|
|
400
405
|
# @return [Array<String>]
|
|
@@ -550,6 +555,7 @@ module Aws::AutoScaling
|
|
|
550
555
|
:predicted_capacity,
|
|
551
556
|
:default_cooldown,
|
|
552
557
|
:availability_zones,
|
|
558
|
+
:availability_zone_ids,
|
|
553
559
|
:load_balancer_names,
|
|
554
560
|
:target_group_arns,
|
|
555
561
|
:health_check_type,
|
|
@@ -662,6 +668,10 @@ module Aws::AutoScaling
|
|
|
662
668
|
# The Availability Zone for the instance.
|
|
663
669
|
# @return [String]
|
|
664
670
|
#
|
|
671
|
+
# @!attribute [rw] availability_zone_id
|
|
672
|
+
# The Availability Zone ID where the instance is located.
|
|
673
|
+
# @return [String]
|
|
674
|
+
#
|
|
665
675
|
# @!attribute [rw] lifecycle_state
|
|
666
676
|
# The lifecycle state for the instance. The `Quarantined` state is not
|
|
667
677
|
# used. For more information, see [Amazon EC2 Auto Scaling instance
|
|
@@ -742,6 +752,7 @@ module Aws::AutoScaling
|
|
|
742
752
|
:instance_type,
|
|
743
753
|
:auto_scaling_group_name,
|
|
744
754
|
:availability_zone,
|
|
755
|
+
:availability_zone_id,
|
|
745
756
|
:lifecycle_state,
|
|
746
757
|
:health_status,
|
|
747
758
|
:launch_configuration_name,
|
|
@@ -1282,6 +1293,12 @@ module Aws::AutoScaling
|
|
|
1282
1293
|
# network interface ID is specified in a launch template.
|
|
1283
1294
|
# @return [Array<String>]
|
|
1284
1295
|
#
|
|
1296
|
+
# @!attribute [rw] availability_zone_ids
|
|
1297
|
+
# A list of Availability Zone IDs where the Auto Scaling group can
|
|
1298
|
+
# launch instances. You cannot specify both AvailabilityZones and
|
|
1299
|
+
# AvailabilityZoneIds in the same request.
|
|
1300
|
+
# @return [Array<String>]
|
|
1301
|
+
#
|
|
1285
1302
|
# @!attribute [rw] load_balancer_names
|
|
1286
1303
|
# A list of Classic Load Balancers associated with this Auto Scaling
|
|
1287
1304
|
# group. For Application Load Balancers, Network Load Balancers, and
|
|
@@ -1595,6 +1612,7 @@ module Aws::AutoScaling
|
|
|
1595
1612
|
:desired_capacity,
|
|
1596
1613
|
:default_cooldown,
|
|
1597
1614
|
:availability_zones,
|
|
1615
|
+
:availability_zone_ids,
|
|
1598
1616
|
:load_balancer_names,
|
|
1599
1617
|
:target_group_arns,
|
|
1600
1618
|
:health_check_type,
|
|
@@ -3592,6 +3610,10 @@ module Aws::AutoScaling
|
|
|
3592
3610
|
# The Availability Zone in which the instance is running.
|
|
3593
3611
|
# @return [String]
|
|
3594
3612
|
#
|
|
3613
|
+
# @!attribute [rw] availability_zone_id
|
|
3614
|
+
# The Availability Zone ID where the instance was launched.
|
|
3615
|
+
# @return [String]
|
|
3616
|
+
#
|
|
3595
3617
|
# @!attribute [rw] lifecycle_state
|
|
3596
3618
|
# A description of the current lifecycle state. The `Quarantined`
|
|
3597
3619
|
# state is not used. For more information, see [Amazon EC2 Auto
|
|
@@ -3657,6 +3679,7 @@ module Aws::AutoScaling
|
|
|
3657
3679
|
:instance_id,
|
|
3658
3680
|
:instance_type,
|
|
3659
3681
|
:availability_zone,
|
|
3682
|
+
:availability_zone_id,
|
|
3660
3683
|
:lifecycle_state,
|
|
3661
3684
|
:health_status,
|
|
3662
3685
|
:launch_configuration_name,
|
|
@@ -8535,6 +8558,12 @@ module Aws::AutoScaling
|
|
|
8535
8558
|
# One or more Availability Zones for the group.
|
|
8536
8559
|
# @return [Array<String>]
|
|
8537
8560
|
#
|
|
8561
|
+
# @!attribute [rw] availability_zone_ids
|
|
8562
|
+
# A list of Availability Zone IDs for the Auto Scaling group. You
|
|
8563
|
+
# cannot specify both AvailabilityZones and AvailabilityZoneIds in the
|
|
8564
|
+
# same request.
|
|
8565
|
+
# @return [Array<String>]
|
|
8566
|
+
#
|
|
8538
8567
|
# @!attribute [rw] health_check_type
|
|
8539
8568
|
# A comma-separated value string of one or more health check types.
|
|
8540
8569
|
#
|
|
@@ -8790,6 +8819,7 @@ module Aws::AutoScaling
|
|
|
8790
8819
|
:desired_capacity,
|
|
8791
8820
|
:default_cooldown,
|
|
8792
8821
|
:availability_zones,
|
|
8822
|
+
:availability_zone_ids,
|
|
8793
8823
|
:health_check_type,
|
|
8794
8824
|
:health_check_grace_period,
|
|
8795
8825
|
:placement_group,
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
data/sig/auto_scaling_group.rbs
CHANGED
|
@@ -48,6 +48,9 @@ module Aws
|
|
|
48
48
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/AutoScalingGroup.html#availability_zones-instance_method
|
|
49
49
|
def availability_zones: () -> ::Array[::String]
|
|
50
50
|
|
|
51
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/AutoScalingGroup.html#availability_zone_ids-instance_method
|
|
52
|
+
def availability_zone_ids: () -> ::Array[::String]
|
|
53
|
+
|
|
51
54
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/AutoScalingGroup.html#load_balancer_names-instance_method
|
|
52
55
|
def load_balancer_names: () -> ::Array[::String]
|
|
53
56
|
|
|
@@ -488,6 +491,7 @@ module Aws
|
|
|
488
491
|
?desired_capacity: ::Integer,
|
|
489
492
|
?default_cooldown: ::Integer,
|
|
490
493
|
?availability_zones: Array[::String],
|
|
494
|
+
?availability_zone_ids: Array[::String],
|
|
491
495
|
?health_check_type: ::String,
|
|
492
496
|
?health_check_grace_period: ::Integer,
|
|
493
497
|
?placement_group: ::String,
|
data/sig/client.rbs
CHANGED
|
@@ -284,6 +284,7 @@ module Aws
|
|
|
284
284
|
?desired_capacity: ::Integer,
|
|
285
285
|
?default_cooldown: ::Integer,
|
|
286
286
|
?availability_zones: Array[::String],
|
|
287
|
+
?availability_zone_ids: Array[::String],
|
|
287
288
|
?load_balancer_names: Array[::String],
|
|
288
289
|
?target_group_arns: Array[::String],
|
|
289
290
|
?health_check_type: ::String,
|
|
@@ -1401,6 +1402,7 @@ module Aws
|
|
|
1401
1402
|
?desired_capacity: ::Integer,
|
|
1402
1403
|
?default_cooldown: ::Integer,
|
|
1403
1404
|
?availability_zones: Array[::String],
|
|
1405
|
+
?availability_zone_ids: Array[::String],
|
|
1404
1406
|
?health_check_type: ::String,
|
|
1405
1407
|
?health_check_grace_period: ::Integer,
|
|
1406
1408
|
?placement_group: ::String,
|
data/sig/instance.rbs
CHANGED
|
@@ -28,6 +28,9 @@ module Aws
|
|
|
28
28
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Instance.html#availability_zone-instance_method
|
|
29
29
|
def availability_zone: () -> ::String
|
|
30
30
|
|
|
31
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Instance.html#availability_zone_id-instance_method
|
|
32
|
+
def availability_zone_id: () -> ::String
|
|
33
|
+
|
|
31
34
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Instance.html#lifecycle_state-instance_method
|
|
32
35
|
def lifecycle_state: () -> ::String
|
|
33
36
|
|
data/sig/resource.rbs
CHANGED
|
@@ -186,6 +186,7 @@ module Aws
|
|
|
186
186
|
?desired_capacity: ::Integer,
|
|
187
187
|
?default_cooldown: ::Integer,
|
|
188
188
|
?availability_zones: Array[::String],
|
|
189
|
+
?availability_zone_ids: Array[::String],
|
|
189
190
|
?load_balancer_names: Array[::String],
|
|
190
191
|
?target_group_arns: Array[::String],
|
|
191
192
|
?health_check_type: ::String,
|
data/sig/types.rbs
CHANGED
|
@@ -119,6 +119,7 @@ module Aws::AutoScaling
|
|
|
119
119
|
attr_accessor predicted_capacity: ::Integer
|
|
120
120
|
attr_accessor default_cooldown: ::Integer
|
|
121
121
|
attr_accessor availability_zones: ::Array[::String]
|
|
122
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
|
122
123
|
attr_accessor load_balancer_names: ::Array[::String]
|
|
123
124
|
attr_accessor target_group_arns: ::Array[::String]
|
|
124
125
|
attr_accessor health_check_type: ::String
|
|
@@ -171,6 +172,7 @@ module Aws::AutoScaling
|
|
|
171
172
|
attr_accessor instance_type: ::String
|
|
172
173
|
attr_accessor auto_scaling_group_name: ::String
|
|
173
174
|
attr_accessor availability_zone: ::String
|
|
175
|
+
attr_accessor availability_zone_id: ::String
|
|
174
176
|
attr_accessor lifecycle_state: ::String
|
|
175
177
|
attr_accessor health_status: ::String
|
|
176
178
|
attr_accessor launch_configuration_name: ::String
|
|
@@ -296,6 +298,7 @@ module Aws::AutoScaling
|
|
|
296
298
|
attr_accessor desired_capacity: ::Integer
|
|
297
299
|
attr_accessor default_cooldown: ::Integer
|
|
298
300
|
attr_accessor availability_zones: ::Array[::String]
|
|
301
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
|
299
302
|
attr_accessor load_balancer_names: ::Array[::String]
|
|
300
303
|
attr_accessor target_group_arns: ::Array[::String]
|
|
301
304
|
attr_accessor health_check_type: ::String
|
|
@@ -722,6 +725,7 @@ module Aws::AutoScaling
|
|
|
722
725
|
attr_accessor instance_id: ::String
|
|
723
726
|
attr_accessor instance_type: ::String
|
|
724
727
|
attr_accessor availability_zone: ::String
|
|
728
|
+
attr_accessor availability_zone_id: ::String
|
|
725
729
|
attr_accessor lifecycle_state: ("Pending" | "Pending:Wait" | "Pending:Proceed" | "Quarantined" | "InService" | "Terminating" | "Terminating:Wait" | "Terminating:Proceed" | "Terminating:Retained" | "Terminated" | "Detaching" | "Detached" | "EnteringStandby" | "Standby" | "ReplacingRootVolume" | "ReplacingRootVolume:Wait" | "ReplacingRootVolume:Proceed" | "RootVolumeReplaced" | "Warmed:Pending" | "Warmed:Pending:Wait" | "Warmed:Pending:Proceed" | "Warmed:Pending:Retained" | "Warmed:Terminating" | "Warmed:Terminating:Wait" | "Warmed:Terminating:Proceed" | "Warmed:Terminating:Retained" | "Warmed:Terminated" | "Warmed:Stopped" | "Warmed:Running" | "Warmed:Hibernated")
|
|
726
730
|
attr_accessor health_status: ::String
|
|
727
731
|
attr_accessor launch_configuration_name: ::String
|
|
@@ -1494,6 +1498,7 @@ module Aws::AutoScaling
|
|
|
1494
1498
|
attr_accessor desired_capacity: ::Integer
|
|
1495
1499
|
attr_accessor default_cooldown: ::Integer
|
|
1496
1500
|
attr_accessor availability_zones: ::Array[::String]
|
|
1501
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
|
1497
1502
|
attr_accessor health_check_type: ::String
|
|
1498
1503
|
attr_accessor health_check_grace_period: ::Integer
|
|
1499
1504
|
attr_accessor placement_group: ::String
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.158.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|