aws-sdk-applicationautoscaling 1.48.0 → 1.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fe384572ba199b090838a519a7d59a412df37be0d351d2b400cb6b1657322e9
4
- data.tar.gz: 88aebdefbb3af140520789c96a87afab91f1b18260f673ab8858c9de8fe7b84b
3
+ metadata.gz: 1dd63edd7c98113ad577c4988588efb6715b1a40442e6526093d1b5770a4b72b
4
+ data.tar.gz: da581d7f3cba0995c5b279457dd67de91044aa1d525eaf17d246ff61642d1725
5
5
  SHA512:
6
- metadata.gz: 9e4bcf41295dd5ac68b5b892060d2ba71d615f2767eafc2997294c0447d99115bb186f3dc6904a0d6decdb2d058f073b98fa1f5adae2da2e4453471bd5195982
7
- data.tar.gz: abf303c5d5ebc090c3d72c52533e78f60fb54739bfd2d52e6829d0d9599196737f90a62e7fba01e9205039732a4455eb86e8d262e14a1b110d58a1715bdbe9e1
6
+ metadata.gz: c57f0095d116616f55c6edd648ab0b8042a50290e9c24f63b6cf4ebfab500727ad49c7c74d25d0783fa4a887c2778d9807ce7cb49588d1eee7a87f55aa8c150d
7
+ data.tar.gz: dbde2fdf53bf18e7e5db96efb038aaf5d96b06e95066b32979f1a78cf31ab0581e91545655a28170aa63e35261c50992c51785c9cd99beae440f1a1fbe943f21
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-applicationautoscaling/customizations'
48
48
  # @!group service
49
49
  module Aws::ApplicationAutoScaling
50
50
 
51
- GEM_VERSION = '1.48.0'
51
+ GEM_VERSION = '1.49.0'
52
52
 
53
53
  end
@@ -2128,16 +2128,17 @@ module Aws::ApplicationAutoScaling
2128
2128
  # For rate expressions, *value* is a positive integer and *unit* is
2129
2129
  # `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
2130
2130
  #
2131
- # For more information about cron expressions, see [Cron Expressions][1]
2132
- # in the *Amazon CloudWatch Events User Guide*.
2131
+ # For cron expressions, *fields* is a cron expression. The supported
2132
+ # cron format consists of six fields separated by white spaces:
2133
+ # \[Minutes\] \[Hours\] \[Day\_of\_Month\] \[Month\] \[Day\_of\_Week\]
2134
+ # \[Year\].
2133
2135
  #
2134
- # For examples of using these expressions, see [Scheduled Scaling][2] in
2135
- # the *Application Auto Scaling User Guide*.
2136
+ # For more information and examples, see [Scheduled Scaling][1] in the
2137
+ # *Application Auto Scaling User Guide*.
2136
2138
  #
2137
2139
  #
2138
2140
  #
2139
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions
2140
- # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
2141
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
2141
2142
  #
2142
2143
  # @option params [required, String] :scheduled_action_name
2143
2144
  # The name of the scheduled action. This name must be unique among all
@@ -2469,8 +2470,8 @@ module Aws::ApplicationAutoScaling
2469
2470
  # The minimum value that you plan to scale in to. When a scaling policy
2470
2471
  # is in effect, Application Auto Scaling can scale in (contract) as
2471
2472
  # needed to the minimum capacity limit in response to changing demand.
2473
+ # This property is required when registering a new scalable target.
2472
2474
  #
2473
- # This parameter is required if you are registering a scalable target.
2474
2475
  # For certain resources, the minimum value allowed is 0. This includes
2475
2476
  # Lambda provisioned concurrency, Spot Fleet, ECS services, Aurora DB
2476
2477
  # clusters, EMR clusters, and custom resources. For all other resources,
@@ -2480,8 +2481,7 @@ module Aws::ApplicationAutoScaling
2480
2481
  # The maximum value that you plan to scale out to. When a scaling policy
2481
2482
  # is in effect, Application Auto Scaling can scale out (expand) as
2482
2483
  # needed to the maximum capacity limit in response to changing demand.
2483
- #
2484
- # This parameter is required if you are registering a scalable target.
2484
+ # This property is required when registering a new scalable target.
2485
2485
  #
2486
2486
  # Although you can specify a large maximum capacity, note that service
2487
2487
  # quotas may impose lower limits. Each service has its own default
@@ -2591,7 +2591,7 @@ module Aws::ApplicationAutoScaling
2591
2591
  params: params,
2592
2592
  config: config)
2593
2593
  context[:gem_name] = 'aws-sdk-applicationautoscaling'
2594
- context[:gem_version] = '1.48.0'
2594
+ context[:gem_version] = '1.49.0'
2595
2595
  Seahorse::Client::Request.new(handlers, context)
2596
2596
  end
2597
2597
 
@@ -1844,16 +1844,17 @@ module Aws::ApplicationAutoScaling
1844
1844
  # For rate expressions, *value* is a positive integer and *unit* is
1845
1845
  # `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
1846
1846
  #
1847
- # For more information about cron expressions, see [Cron
1848
- # Expressions][1] in the *Amazon CloudWatch Events User Guide*.
1847
+ # For cron expressions, *fields* is a cron expression. The supported
1848
+ # cron format consists of six fields separated by white spaces:
1849
+ # \[Minutes\] \[Hours\] \[Day\_of\_Month\] \[Month\] \[Day\_of\_Week\]
1850
+ # \[Year\].
1849
1851
  #
1850
- # For examples of using these expressions, see [Scheduled Scaling][2]
1851
- # in the *Application Auto Scaling User Guide*.
1852
+ # For more information and examples, see [Scheduled Scaling][1] in the
1853
+ # *Application Auto Scaling User Guide*.
1852
1854
  #
1853
1855
  #
1854
1856
  #
1855
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions
1856
- # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
1857
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
1857
1858
  # @return [String]
1858
1859
  #
1859
1860
  # @!attribute [rw] scheduled_action_name
@@ -2178,9 +2179,9 @@ module Aws::ApplicationAutoScaling
2178
2179
  # The minimum value that you plan to scale in to. When a scaling
2179
2180
  # policy is in effect, Application Auto Scaling can scale in
2180
2181
  # (contract) as needed to the minimum capacity limit in response to
2181
- # changing demand.
2182
+ # changing demand. This property is required when registering a new
2183
+ # scalable target.
2182
2184
  #
2183
- # This parameter is required if you are registering a scalable target.
2184
2185
  # For certain resources, the minimum value allowed is 0. This includes
2185
2186
  # Lambda provisioned concurrency, Spot Fleet, ECS services, Aurora DB
2186
2187
  # clusters, EMR clusters, and custom resources. For all other
@@ -2191,9 +2192,8 @@ module Aws::ApplicationAutoScaling
2191
2192
  # The maximum value that you plan to scale out to. When a scaling
2192
2193
  # policy is in effect, Application Auto Scaling can scale out (expand)
2193
2194
  # as needed to the maximum capacity limit in response to changing
2194
- # demand.
2195
- #
2196
- # This parameter is required if you are registering a scalable target.
2195
+ # demand. This property is required when registering a new scalable
2196
+ # target.
2197
2197
  #
2198
2198
  # Although you can specify a large maximum capacity, note that service
2199
2199
  # quotas may impose lower limits. Each service has its own default
@@ -2888,16 +2888,17 @@ module Aws::ApplicationAutoScaling
2888
2888
  # For rate expressions, *value* is a positive integer and *unit* is
2889
2889
  # `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
2890
2890
  #
2891
- # For more information about cron expressions, see [Cron
2892
- # Expressions][1] in the *Amazon CloudWatch Events User Guide*.
2891
+ # For cron expressions, *fields* is a cron expression. The supported
2892
+ # cron format consists of six fields separated by white spaces:
2893
+ # \[Minutes\] \[Hours\] \[Day\_of\_Month\] \[Month\] \[Day\_of\_Week\]
2894
+ # \[Year\].
2893
2895
  #
2894
- # For examples of using these expressions, see [Scheduled Scaling][2]
2895
- # in the *Application Auto Scaling User Guide*.
2896
+ # For more information and examples, see [Scheduled Scaling][1] in the
2897
+ # *Application Auto Scaling User Guide*.
2896
2898
  #
2897
2899
  #
2898
2900
  #
2899
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions
2900
- # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
2901
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
2901
2902
  # @return [String]
2902
2903
  #
2903
2904
  # @!attribute [rw] resource_id
@@ -3347,8 +3348,13 @@ module Aws::ApplicationAutoScaling
3347
3348
  # }
3348
3349
  #
3349
3350
  # @!attribute [rw] target_value
3350
- # The target value for the metric. The range is 8.515920e-109 to
3351
- # 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).
3351
+ # The target value for the metric. Although this property accepts
3352
+ # numbers of type Double, it won't accept values that are either too
3353
+ # small or too large. Values must be in the range of -2^360 to 2^360.
3354
+ # The value must be a valid number based on the choice of metric. For
3355
+ # example, if the metric is CPU utilization, then the target value is
3356
+ # a percent value that represents how much of the CPU can be used
3357
+ # before scaling out.
3352
3358
  # @return [Float]
3353
3359
  #
3354
3360
  # @!attribute [rw] predefined_metric_specification
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationautoscaling
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.49.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: 2020-09-30 00:00:00.000000000 Z
11
+ date: 2021-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core