aws-sdk-autoscaling 1.110.0 → 1.112.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 +19 -18
- data/lib/aws-sdk-autoscaling/client.rb +99 -97
- data/lib/aws-sdk-autoscaling/client_api.rb +3 -1
- data/lib/aws-sdk-autoscaling/instance.rb +6 -6
- data/lib/aws-sdk-autoscaling/launch_configuration.rb +18 -24
- data/lib/aws-sdk-autoscaling/resource.rb +32 -36
- data/lib/aws-sdk-autoscaling/scaling_policy.rb +1 -1
- data/lib/aws-sdk-autoscaling/types.rb +122 -125
- data/lib/aws-sdk-autoscaling.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc96cf95a7e2f58cb3a57a7e1fa7ebedf4e063ca47c11aee14fea20e26786375
|
4
|
+
data.tar.gz: 1edad8c0afac7b544b8e3936a0721cec7336ce4d87557fcc4b74cd2c556abef0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e65173bb7ba46bd541d53eba89b6cba046d82ff38f29e18df15d50c8a4f73ff6e17f1fb6e38d2d03c0139ccc49d94ef9def2f651737bbe2d47e1c39a9184bda
|
7
|
+
data.tar.gz: 267a79f284c6acc642968195edb07d383981199a0f5f537f7941504a334e194f2337c251b30fcbbb0ca222a4ea3e5e652f80036baa61419e8b847f8fa6390cd2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.112.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.111.0 (2024-06-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc only update for Auto Scaling's TargetTrackingMetricDataQuery
|
13
|
+
|
4
14
|
1.110.0 (2024-06-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.112.0
|
@@ -567,12 +567,12 @@ module Aws::AutoScaling
|
|
567
567
|
#
|
568
568
|
# If you omit this property, all metrics are disabled.
|
569
569
|
#
|
570
|
-
# For more information, see [
|
571
|
-
# *Amazon EC2 Auto Scaling User Guide*.
|
570
|
+
# For more information, see [Amazon CloudWatch metrics for Amazon EC2
|
571
|
+
# Auto Scaling][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
572
572
|
#
|
573
573
|
#
|
574
574
|
#
|
575
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-
|
575
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-metrics.html
|
576
576
|
# @return [EmptyStructure]
|
577
577
|
def disable_metrics_collection(options = {})
|
578
578
|
options = options.merge(auto_scaling_group_name: @name)
|
@@ -637,12 +637,12 @@ module Aws::AutoScaling
|
|
637
637
|
# If you specify `Granularity` and don't specify any metrics, all
|
638
638
|
# metrics are enabled.
|
639
639
|
#
|
640
|
-
# For more information, see [
|
641
|
-
# *Amazon EC2 Auto Scaling User Guide*.
|
640
|
+
# For more information, see [Amazon CloudWatch metrics for Amazon EC2
|
641
|
+
# Auto Scaling][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
642
642
|
#
|
643
643
|
#
|
644
644
|
#
|
645
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-
|
645
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-metrics.html
|
646
646
|
# @option options [required, String] :granularity
|
647
647
|
# The frequency at which Amazon EC2 Auto Scaling sends aggregated data
|
648
648
|
# to CloudWatch. The only valid value is `1Minute`.
|
@@ -692,7 +692,7 @@ module Aws::AutoScaling
|
|
692
692
|
# unit: "MetricUnit",
|
693
693
|
# metrics: [
|
694
694
|
# {
|
695
|
-
# id: "
|
695
|
+
# id: "XmlStringMaxLen64", # required
|
696
696
|
# expression: "XmlStringMaxLen2047",
|
697
697
|
# metric_stat: {
|
698
698
|
# metric: { # required
|
@@ -884,7 +884,7 @@ module Aws::AutoScaling
|
|
884
884
|
#
|
885
885
|
#
|
886
886
|
#
|
887
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
887
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scaling-cooldowns.html
|
888
888
|
# @option options [String] :metric_aggregation_type
|
889
889
|
# The aggregation type for the CloudWatch metrics. The valid values are
|
890
890
|
# `Minimum`, `Maximum`, and `Average`. If the aggregation type is null,
|
@@ -942,7 +942,7 @@ module Aws::AutoScaling
|
|
942
942
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_TargetTrackingConfiguration.html
|
943
943
|
# @option options [Boolean] :enabled
|
944
944
|
# Indicates whether the scaling policy is enabled or disabled. The
|
945
|
-
# default is enabled. For more information, see [
|
945
|
+
# default is enabled. For more information, see [Disable a scaling
|
946
946
|
# policy for an Auto Scaling group][1] in the *Amazon EC2 Auto Scaling
|
947
947
|
# User Guide*.
|
948
948
|
#
|
@@ -1316,7 +1316,7 @@ module Aws::AutoScaling
|
|
1316
1316
|
#
|
1317
1317
|
#
|
1318
1318
|
#
|
1319
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
1319
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scaling-cooldowns.html
|
1320
1320
|
# @option options [Array<String>] :availability_zones
|
1321
1321
|
# One or more Availability Zones for the group.
|
1322
1322
|
# @option options [String] :health_check_type
|
@@ -1324,14 +1324,14 @@ module Aws::AutoScaling
|
|
1324
1324
|
#
|
1325
1325
|
# The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
|
1326
1326
|
# default health check and cannot be disabled. For more information, see
|
1327
|
-
# [Health checks for Auto Scaling
|
1328
|
-
# Scaling User Guide*.
|
1327
|
+
# [Health checks for instances in an Auto Scaling group][1] in the
|
1328
|
+
# *Amazon EC2 Auto Scaling User Guide*.
|
1329
1329
|
#
|
1330
1330
|
# Only specify `EC2` if you must clear a value that was previously set.
|
1331
1331
|
#
|
1332
1332
|
#
|
1333
1333
|
#
|
1334
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
1334
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html
|
1335
1335
|
# @option options [Integer] :health_check_grace_period
|
1336
1336
|
# The amount of time, in seconds, that Amazon EC2 Auto Scaling waits
|
1337
1337
|
# before checking the health status of an EC2 instance that has come
|
@@ -1365,8 +1365,9 @@ module Aws::AutoScaling
|
|
1365
1365
|
# @option options [Array<String>] :termination_policies
|
1366
1366
|
# A policy or a list of policies that are used to select the instances
|
1367
1367
|
# to terminate. The policies are executed in the order that you list
|
1368
|
-
# them. For more information, see [
|
1369
|
-
#
|
1368
|
+
# them. For more information, see [Configure termination policies for
|
1369
|
+
# Amazon EC2 Auto Scaling][1] in the *Amazon EC2 Auto Scaling User
|
1370
|
+
# Guide*.
|
1370
1371
|
#
|
1371
1372
|
# Valid values: `Default` \| `AllocationStrategy` \|
|
1372
1373
|
# `ClosestToNextInstanceHour` \| `NewestInstance` \| `OldestInstance` \|
|
@@ -1380,7 +1381,7 @@ module Aws::AutoScaling
|
|
1380
1381
|
# Indicates whether newly launched instances are protected from
|
1381
1382
|
# termination by Amazon EC2 Auto Scaling when scaling in. For more
|
1382
1383
|
# information about preventing instances from terminating on scale in,
|
1383
|
-
# see [
|
1384
|
+
# see [Use instance scale-in protection][1] in the *Amazon EC2 Auto
|
1384
1385
|
# Scaling User Guide*.
|
1385
1386
|
#
|
1386
1387
|
#
|
@@ -1420,7 +1421,7 @@ module Aws::AutoScaling
|
|
1420
1421
|
# The unit of measurement for the value specified for desired capacity.
|
1421
1422
|
# Amazon EC2 Auto Scaling supports `DesiredCapacityType` for
|
1422
1423
|
# attribute-based instance type selection only. For more information,
|
1423
|
-
# see [
|
1424
|
+
# see [Create a mixed instances group using attribute-based instance
|
1424
1425
|
# type selection][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
1425
1426
|
#
|
1426
1427
|
# By default, Amazon EC2 Auto Scaling specifies `units`, which
|
@@ -1430,7 +1431,7 @@ module Aws::AutoScaling
|
|
1430
1431
|
#
|
1431
1432
|
#
|
1432
1433
|
#
|
1433
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-
|
1434
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-mixed-instances-group-attribute-based-instance-type-selection.html
|
1434
1435
|
# @option options [Integer] :default_instance_warmup
|
1435
1436
|
# The amount of time, in seconds, until a new instance is considered to
|
1436
1437
|
# have finished initializing and resource consumption to become stable
|