aws-sdk-autoscaling 1.121.0 → 1.123.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 +10 -4
- data/lib/aws-sdk-autoscaling/client.rb +202 -113
- data/lib/aws-sdk-autoscaling/client_api.rb +2 -1
- data/lib/aws-sdk-autoscaling/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-autoscaling/endpoints.rb +2 -713
- data/lib/aws-sdk-autoscaling/plugins/endpoints.rb +1 -136
- data/lib/aws-sdk-autoscaling/types.rb +82 -21
- data/lib/aws-sdk-autoscaling.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::AutoScaling::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,141 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :attach_instances
|
74
|
-
Aws::AutoScaling::Endpoints::AttachInstances.build(context)
|
75
|
-
when :attach_load_balancer_target_groups
|
76
|
-
Aws::AutoScaling::Endpoints::AttachLoadBalancerTargetGroups.build(context)
|
77
|
-
when :attach_load_balancers
|
78
|
-
Aws::AutoScaling::Endpoints::AttachLoadBalancers.build(context)
|
79
|
-
when :attach_traffic_sources
|
80
|
-
Aws::AutoScaling::Endpoints::AttachTrafficSources.build(context)
|
81
|
-
when :batch_delete_scheduled_action
|
82
|
-
Aws::AutoScaling::Endpoints::BatchDeleteScheduledAction.build(context)
|
83
|
-
when :batch_put_scheduled_update_group_action
|
84
|
-
Aws::AutoScaling::Endpoints::BatchPutScheduledUpdateGroupAction.build(context)
|
85
|
-
when :cancel_instance_refresh
|
86
|
-
Aws::AutoScaling::Endpoints::CancelInstanceRefresh.build(context)
|
87
|
-
when :complete_lifecycle_action
|
88
|
-
Aws::AutoScaling::Endpoints::CompleteLifecycleAction.build(context)
|
89
|
-
when :create_auto_scaling_group
|
90
|
-
Aws::AutoScaling::Endpoints::CreateAutoScalingGroup.build(context)
|
91
|
-
when :create_launch_configuration
|
92
|
-
Aws::AutoScaling::Endpoints::CreateLaunchConfiguration.build(context)
|
93
|
-
when :create_or_update_tags
|
94
|
-
Aws::AutoScaling::Endpoints::CreateOrUpdateTags.build(context)
|
95
|
-
when :delete_auto_scaling_group
|
96
|
-
Aws::AutoScaling::Endpoints::DeleteAutoScalingGroup.build(context)
|
97
|
-
when :delete_launch_configuration
|
98
|
-
Aws::AutoScaling::Endpoints::DeleteLaunchConfiguration.build(context)
|
99
|
-
when :delete_lifecycle_hook
|
100
|
-
Aws::AutoScaling::Endpoints::DeleteLifecycleHook.build(context)
|
101
|
-
when :delete_notification_configuration
|
102
|
-
Aws::AutoScaling::Endpoints::DeleteNotificationConfiguration.build(context)
|
103
|
-
when :delete_policy
|
104
|
-
Aws::AutoScaling::Endpoints::DeletePolicy.build(context)
|
105
|
-
when :delete_scheduled_action
|
106
|
-
Aws::AutoScaling::Endpoints::DeleteScheduledAction.build(context)
|
107
|
-
when :delete_tags
|
108
|
-
Aws::AutoScaling::Endpoints::DeleteTags.build(context)
|
109
|
-
when :delete_warm_pool
|
110
|
-
Aws::AutoScaling::Endpoints::DeleteWarmPool.build(context)
|
111
|
-
when :describe_account_limits
|
112
|
-
Aws::AutoScaling::Endpoints::DescribeAccountLimits.build(context)
|
113
|
-
when :describe_adjustment_types
|
114
|
-
Aws::AutoScaling::Endpoints::DescribeAdjustmentTypes.build(context)
|
115
|
-
when :describe_auto_scaling_groups
|
116
|
-
Aws::AutoScaling::Endpoints::DescribeAutoScalingGroups.build(context)
|
117
|
-
when :describe_auto_scaling_instances
|
118
|
-
Aws::AutoScaling::Endpoints::DescribeAutoScalingInstances.build(context)
|
119
|
-
when :describe_auto_scaling_notification_types
|
120
|
-
Aws::AutoScaling::Endpoints::DescribeAutoScalingNotificationTypes.build(context)
|
121
|
-
when :describe_instance_refreshes
|
122
|
-
Aws::AutoScaling::Endpoints::DescribeInstanceRefreshes.build(context)
|
123
|
-
when :describe_launch_configurations
|
124
|
-
Aws::AutoScaling::Endpoints::DescribeLaunchConfigurations.build(context)
|
125
|
-
when :describe_lifecycle_hook_types
|
126
|
-
Aws::AutoScaling::Endpoints::DescribeLifecycleHookTypes.build(context)
|
127
|
-
when :describe_lifecycle_hooks
|
128
|
-
Aws::AutoScaling::Endpoints::DescribeLifecycleHooks.build(context)
|
129
|
-
when :describe_load_balancer_target_groups
|
130
|
-
Aws::AutoScaling::Endpoints::DescribeLoadBalancerTargetGroups.build(context)
|
131
|
-
when :describe_load_balancers
|
132
|
-
Aws::AutoScaling::Endpoints::DescribeLoadBalancers.build(context)
|
133
|
-
when :describe_metric_collection_types
|
134
|
-
Aws::AutoScaling::Endpoints::DescribeMetricCollectionTypes.build(context)
|
135
|
-
when :describe_notification_configurations
|
136
|
-
Aws::AutoScaling::Endpoints::DescribeNotificationConfigurations.build(context)
|
137
|
-
when :describe_policies
|
138
|
-
Aws::AutoScaling::Endpoints::DescribePolicies.build(context)
|
139
|
-
when :describe_scaling_activities
|
140
|
-
Aws::AutoScaling::Endpoints::DescribeScalingActivities.build(context)
|
141
|
-
when :describe_scaling_process_types
|
142
|
-
Aws::AutoScaling::Endpoints::DescribeScalingProcessTypes.build(context)
|
143
|
-
when :describe_scheduled_actions
|
144
|
-
Aws::AutoScaling::Endpoints::DescribeScheduledActions.build(context)
|
145
|
-
when :describe_tags
|
146
|
-
Aws::AutoScaling::Endpoints::DescribeTags.build(context)
|
147
|
-
when :describe_termination_policy_types
|
148
|
-
Aws::AutoScaling::Endpoints::DescribeTerminationPolicyTypes.build(context)
|
149
|
-
when :describe_traffic_sources
|
150
|
-
Aws::AutoScaling::Endpoints::DescribeTrafficSources.build(context)
|
151
|
-
when :describe_warm_pool
|
152
|
-
Aws::AutoScaling::Endpoints::DescribeWarmPool.build(context)
|
153
|
-
when :detach_instances
|
154
|
-
Aws::AutoScaling::Endpoints::DetachInstances.build(context)
|
155
|
-
when :detach_load_balancer_target_groups
|
156
|
-
Aws::AutoScaling::Endpoints::DetachLoadBalancerTargetGroups.build(context)
|
157
|
-
when :detach_load_balancers
|
158
|
-
Aws::AutoScaling::Endpoints::DetachLoadBalancers.build(context)
|
159
|
-
when :detach_traffic_sources
|
160
|
-
Aws::AutoScaling::Endpoints::DetachTrafficSources.build(context)
|
161
|
-
when :disable_metrics_collection
|
162
|
-
Aws::AutoScaling::Endpoints::DisableMetricsCollection.build(context)
|
163
|
-
when :enable_metrics_collection
|
164
|
-
Aws::AutoScaling::Endpoints::EnableMetricsCollection.build(context)
|
165
|
-
when :enter_standby
|
166
|
-
Aws::AutoScaling::Endpoints::EnterStandby.build(context)
|
167
|
-
when :execute_policy
|
168
|
-
Aws::AutoScaling::Endpoints::ExecutePolicy.build(context)
|
169
|
-
when :exit_standby
|
170
|
-
Aws::AutoScaling::Endpoints::ExitStandby.build(context)
|
171
|
-
when :get_predictive_scaling_forecast
|
172
|
-
Aws::AutoScaling::Endpoints::GetPredictiveScalingForecast.build(context)
|
173
|
-
when :put_lifecycle_hook
|
174
|
-
Aws::AutoScaling::Endpoints::PutLifecycleHook.build(context)
|
175
|
-
when :put_notification_configuration
|
176
|
-
Aws::AutoScaling::Endpoints::PutNotificationConfiguration.build(context)
|
177
|
-
when :put_scaling_policy
|
178
|
-
Aws::AutoScaling::Endpoints::PutScalingPolicy.build(context)
|
179
|
-
when :put_scheduled_update_group_action
|
180
|
-
Aws::AutoScaling::Endpoints::PutScheduledUpdateGroupAction.build(context)
|
181
|
-
when :put_warm_pool
|
182
|
-
Aws::AutoScaling::Endpoints::PutWarmPool.build(context)
|
183
|
-
when :record_lifecycle_action_heartbeat
|
184
|
-
Aws::AutoScaling::Endpoints::RecordLifecycleActionHeartbeat.build(context)
|
185
|
-
when :resume_processes
|
186
|
-
Aws::AutoScaling::Endpoints::ResumeProcesses.build(context)
|
187
|
-
when :rollback_instance_refresh
|
188
|
-
Aws::AutoScaling::Endpoints::RollbackInstanceRefresh.build(context)
|
189
|
-
when :set_desired_capacity
|
190
|
-
Aws::AutoScaling::Endpoints::SetDesiredCapacity.build(context)
|
191
|
-
when :set_instance_health
|
192
|
-
Aws::AutoScaling::Endpoints::SetInstanceHealth.build(context)
|
193
|
-
when :set_instance_protection
|
194
|
-
Aws::AutoScaling::Endpoints::SetInstanceProtection.build(context)
|
195
|
-
when :start_instance_refresh
|
196
|
-
Aws::AutoScaling::Endpoints::StartInstanceRefresh.build(context)
|
197
|
-
when :suspend_processes
|
198
|
-
Aws::AutoScaling::Endpoints::SuspendProcesses.build(context)
|
199
|
-
when :terminate_instance_in_auto_scaling_group
|
200
|
-
Aws::AutoScaling::Endpoints::TerminateInstanceInAutoScalingGroup.build(context)
|
201
|
-
when :update_auto_scaling_group
|
202
|
-
Aws::AutoScaling::Endpoints::UpdateAutoScalingGroup.build(context)
|
203
|
-
end
|
204
|
-
end
|
205
70
|
end
|
206
71
|
|
207
72
|
def add_handlers(handlers, _config)
|
@@ -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
|
@@ -3948,7 +3970,7 @@ module Aws::AutoScaling
|
|
3948
3970
|
# : Uses price to determine which instance types are the highest
|
3949
3971
|
# priority, launching the lowest priced instance types within an
|
3950
3972
|
# Availability Zone first. This is the default value for Auto
|
3951
|
-
# Scaling groups that specify InstanceRequirements.
|
3973
|
+
# Scaling groups that specify [InstanceRequirements][1].
|
3952
3974
|
#
|
3953
3975
|
# prioritized
|
3954
3976
|
#
|
@@ -3959,8 +3981,12 @@ module Aws::AutoScaling
|
|
3959
3981
|
# fulfilled using your highest priority instance type, then Amazon
|
3960
3982
|
# EC2 Auto Scaling launches the remaining capacity using the second
|
3961
3983
|
# 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.
|
3984
|
+
# Auto Scaling groups that don't specify [InstanceRequirements][1]
|
3985
|
+
# and cannot be used for groups that do.
|
3986
|
+
#
|
3987
|
+
#
|
3988
|
+
#
|
3989
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
3964
3990
|
# @return [String]
|
3965
3991
|
#
|
3966
3992
|
# @!attribute [rw] on_demand_base_capacity
|
@@ -4011,7 +4037,7 @@ module Aws::AutoScaling
|
|
4011
4037
|
# first. Note that if the On-Demand allocation strategy is set to
|
4012
4038
|
# `prioritized`, the same priority is applied when fulfilling
|
4013
4039
|
# On-Demand capacity. This is not a valid value for Auto Scaling
|
4014
|
-
# groups that specify InstanceRequirements.
|
4040
|
+
# groups that specify [InstanceRequirements][1].
|
4015
4041
|
#
|
4016
4042
|
# lowest-price
|
4017
4043
|
#
|
@@ -4028,6 +4054,10 @@ module Aws::AutoScaling
|
|
4028
4054
|
# : The price and capacity optimized allocation strategy looks at both
|
4029
4055
|
# price and capacity to select the Spot Instance pools that are the
|
4030
4056
|
# least likely to be interrupted and have the lowest possible price.
|
4057
|
+
#
|
4058
|
+
#
|
4059
|
+
#
|
4060
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
4031
4061
|
# @return [String]
|
4032
4062
|
#
|
4033
4063
|
# @!attribute [rw] spot_instance_pools
|
@@ -4833,7 +4863,11 @@ module Aws::AutoScaling
|
|
4833
4863
|
end
|
4834
4864
|
|
4835
4865
|
# Specifies the minimum and maximum for the `MemoryGiBPerVCpu` object
|
4836
|
-
# when you specify InstanceRequirements for an Auto Scaling group.
|
4866
|
+
# when you specify [InstanceRequirements][1] for an Auto Scaling group.
|
4867
|
+
#
|
4868
|
+
#
|
4869
|
+
#
|
4870
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
4837
4871
|
#
|
4838
4872
|
# @!attribute [rw] min
|
4839
4873
|
# The memory minimum in GiB.
|
@@ -4853,7 +4887,11 @@ module Aws::AutoScaling
|
|
4853
4887
|
end
|
4854
4888
|
|
4855
4889
|
# Specifies the minimum and maximum for the `MemoryMiB` object when you
|
4856
|
-
# specify InstanceRequirements for an Auto Scaling group.
|
4890
|
+
# specify [InstanceRequirements][1] for an Auto Scaling group.
|
4891
|
+
#
|
4892
|
+
#
|
4893
|
+
#
|
4894
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
4857
4895
|
#
|
4858
4896
|
# @!attribute [rw] min
|
4859
4897
|
# The memory minimum in MiB.
|
@@ -5160,21 +5198,22 @@ module Aws::AutoScaling
|
|
5160
5198
|
end
|
5161
5199
|
|
5162
5200
|
# Specifies the minimum and maximum for the `NetworkBandwidthGbps`
|
5163
|
-
# object when you specify InstanceRequirements for an Auto Scaling
|
5201
|
+
# object when you specify [InstanceRequirements][1] for an Auto Scaling
|
5164
5202
|
# group.
|
5165
5203
|
#
|
5166
5204
|
# <note markdown="1"> Setting the minimum bandwidth does not guarantee that your instance
|
5167
5205
|
# will achieve the minimum bandwidth. Amazon EC2 will identify instance
|
5168
5206
|
# types that support the specified minimum bandwidth, but the actual
|
5169
5207
|
# bandwidth of your instance might go below the specified minimum at
|
5170
|
-
# times. For more information, see [Available instance bandwidth][
|
5208
|
+
# times. For more information, see [Available instance bandwidth][2] in
|
5171
5209
|
# the *Amazon EC2 User Guide for Linux Instances*.
|
5172
5210
|
#
|
5173
5211
|
# </note>
|
5174
5212
|
#
|
5175
5213
|
#
|
5176
5214
|
#
|
5177
|
-
# [1]: https://docs.aws.amazon.com/
|
5215
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
5216
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth
|
5178
5217
|
#
|
5179
5218
|
# @!attribute [rw] min
|
5180
5219
|
# The minimum amount of network bandwidth, in gigabits per second
|
@@ -5196,9 +5235,13 @@ module Aws::AutoScaling
|
|
5196
5235
|
end
|
5197
5236
|
|
5198
5237
|
# Specifies the minimum and maximum for the `NetworkInterfaceCount`
|
5199
|
-
# object when you specify InstanceRequirements for an Auto Scaling
|
5238
|
+
# object when you specify [InstanceRequirements][1] for an Auto Scaling
|
5200
5239
|
# group.
|
5201
5240
|
#
|
5241
|
+
#
|
5242
|
+
#
|
5243
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
5244
|
+
#
|
5202
5245
|
# @!attribute [rw] min
|
5203
5246
|
# The minimum number of network interfaces.
|
5204
5247
|
# @return [Integer]
|
@@ -5887,7 +5930,11 @@ module Aws::AutoScaling
|
|
5887
5930
|
# @!attribute [rw] notification_types
|
5888
5931
|
# The type of event that causes the notification to be sent. To query
|
5889
5932
|
# the notification types supported by Amazon EC2 Auto Scaling, call
|
5890
|
-
# the DescribeAutoScalingNotificationTypes API.
|
5933
|
+
# the [DescribeAutoScalingNotificationTypes][1] API.
|
5934
|
+
#
|
5935
|
+
#
|
5936
|
+
#
|
5937
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingNotificationTypes.html
|
5891
5938
|
# @return [Array<String>]
|
5892
5939
|
#
|
5893
5940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfigurationType AWS API Documentation
|
@@ -6826,7 +6873,11 @@ module Aws::AutoScaling
|
|
6826
6873
|
end
|
6827
6874
|
|
6828
6875
|
# Describes information used for one or more scheduled scaling action
|
6829
|
-
# updates in a BatchPutScheduledUpdateGroupAction operation.
|
6876
|
+
# updates in a [BatchPutScheduledUpdateGroupAction][1] operation.
|
6877
|
+
#
|
6878
|
+
#
|
6879
|
+
#
|
6880
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_BatchPutScheduledUpdateGroupAction.html
|
6830
6881
|
#
|
6831
6882
|
# @!attribute [rw] scheduled_action_name
|
6832
6883
|
# The name of the scaling action.
|
@@ -7450,7 +7501,11 @@ module Aws::AutoScaling
|
|
7450
7501
|
end
|
7451
7502
|
|
7452
7503
|
# Specifies the minimum and maximum for the `TotalLocalStorageGB` object
|
7453
|
-
# when you specify InstanceRequirements for an Auto Scaling group.
|
7504
|
+
# when you specify [InstanceRequirements][1] for an Auto Scaling group.
|
7505
|
+
#
|
7506
|
+
#
|
7507
|
+
#
|
7508
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
7454
7509
|
#
|
7455
7510
|
# @!attribute [rw] min
|
7456
7511
|
# The storage minimum in GB.
|
@@ -7696,8 +7751,10 @@ module Aws::AutoScaling
|
|
7696
7751
|
#
|
7697
7752
|
# @!attribute [rw] placement_group
|
7698
7753
|
# The name of an existing placement group into which to launch your
|
7699
|
-
# instances.
|
7700
|
-
#
|
7754
|
+
# instances. To remove the placement group setting, pass an empty
|
7755
|
+
# string for `placement-group`. For more information about placement
|
7756
|
+
# groups, see [Placement groups][1] in the *Amazon EC2 User Guide for
|
7757
|
+
# Linux Instances*.
|
7701
7758
|
#
|
7702
7759
|
# <note markdown="1"> A *cluster* placement group is a logical grouping of instances
|
7703
7760
|
# within a single Availability Zone. You cannot specify multiple
|
@@ -7867,7 +7924,11 @@ module Aws::AutoScaling
|
|
7867
7924
|
end
|
7868
7925
|
|
7869
7926
|
# Specifies the minimum and maximum for the `VCpuCount` object when you
|
7870
|
-
# specify InstanceRequirements for an Auto Scaling group.
|
7927
|
+
# specify [InstanceRequirements][1] for an Auto Scaling group.
|
7928
|
+
#
|
7929
|
+
#
|
7930
|
+
#
|
7931
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
|
7871
7932
|
#
|
7872
7933
|
# @!attribute [rw] min
|
7873
7934
|
# The minimum number of vCPUs.
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-autoscaling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.123.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-
|
11
|
+
date: 2024-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|