aws-sdk-batch 1.141.0 → 1.142.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f49141cbc0727089e22ceff5ff79a4a738487855bf70a1d056d58eba5fda8cd
4
- data.tar.gz: f9f83319a91581744e6b3441229c1dd1a864116649b5a888393e1898b1422e82
3
+ metadata.gz: 6d85fcc4879c2cd68ff05f86c505d3f60ca086f403f47c58e22242dd6cb6c5ae
4
+ data.tar.gz: accb9e3343bc9ad90201d2b7066c0d2c8c2258cd5fbdc9615851721901c9e429
5
5
  SHA512:
6
- metadata.gz: c997fa68e145dd6b7728c28b88a9618791aa329a31bee2ffb635913ed96f889a38ac1cdb18f59691a6c60d09f980e5ff2321ccc5d034230fc12ba2fda3306192
7
- data.tar.gz: 77d6c984198c71dd897a63c43cc34dfb682455a3a42cddd156b8cf368eb4f1b7090f0f60523042ee25c0bc0ccefc09bbceb8a90aa7bea13e0f6dfd0c49eb8f24
6
+ metadata.gz: 8c5399d566d565c325ea90a623af9d1f8a870b6f4838b947c67e642b80467c80c73526b6255e545191f4dd46baa18ed1c5d0dba17ffccf47770ae473ed23d807
7
+ data.tar.gz: 630ba6a72944bba872127a460a47d3fee079efef62d16069c5e34e62b854ddd2ca89c06dce4c3b991b6414a0f60f2ef76bcb8d9b00bf8be67c7c69337bf602d9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.142.0 (2026-05-13)
5
+ ------------------
6
+
7
+ * Feature - Adds a billing callout to docs regarding using the CE Scale Down Delay feature
8
+
4
9
  1.141.0 (2026-04-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.141.0
1
+ 1.142.0
@@ -610,9 +610,10 @@ module Aws::Batch
610
610
  # environments in the `DISABLED` state don't scale out.
611
611
  #
612
612
  # <note markdown="1"> Compute environments in a `DISABLED` state may continue to incur
613
- # billing charges. To prevent additional charges, turn off and then
614
- # delete the compute environment. For more information, see [State][1]
615
- # in the *Batch User Guide*.
613
+ # billing charges, for example, if they have running instances due to
614
+ # jobs that are still executing or a non-zero `minvCpus` setting. To
615
+ # prevent additional charges, disable and delete the compute
616
+ # environment.
616
617
  #
617
618
  # </note>
618
619
  #
@@ -622,10 +623,6 @@ module Aws::Batch
622
623
  # `desiredvCpus` value of `36`. This instance doesn't scale down to a
623
624
  # `c5.large` instance.
624
625
  #
625
- #
626
- #
627
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environment_parameters.html#compute_environment_state
628
- #
629
626
  # @option params [Integer] :unmanagedv_cpus
630
627
  # The maximum number of vCPUs for an unmanaged compute environment. This
631
628
  # parameter is only used for fair-share scheduling to reserve vCPU
@@ -6076,9 +6073,10 @@ module Aws::Batch
6076
6073
  # environments in the `DISABLED` state don't scale out.
6077
6074
  #
6078
6075
  # <note markdown="1"> Compute environments in a `DISABLED` state may continue to incur
6079
- # billing charges. To prevent additional charges, turn off and then
6080
- # delete the compute environment. For more information, see [State][1]
6081
- # in the *Batch User Guide*.
6076
+ # billing charges, for example, if they have running instances due to
6077
+ # jobs that are still executing or a non-zero `minvCpus` setting. To
6078
+ # prevent additional charges, disable and delete the compute
6079
+ # environment.
6082
6080
  #
6083
6081
  # </note>
6084
6082
  #
@@ -6088,10 +6086,6 @@ module Aws::Batch
6088
6086
  # `desiredvCpus` value of `36`. This instance doesn't scale down to a
6089
6087
  # `c5.large` instance.
6090
6088
  #
6091
- #
6092
- #
6093
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environment_parameters.html#compute_environment_state
6094
- #
6095
6089
  # @option params [Integer] :unmanagedv_cpus
6096
6090
  # The maximum number of vCPUs expected to be used for an unmanaged
6097
6091
  # compute environment. Don't specify this parameter for a managed
@@ -6666,7 +6660,7 @@ module Aws::Batch
6666
6660
  tracer: tracer
6667
6661
  )
6668
6662
  context[:gem_name] = 'aws-sdk-batch'
6669
- context[:gem_version] = '1.141.0'
6663
+ context[:gem_version] = '1.142.0'
6670
6664
  Seahorse::Client::Request.new(handlers, context)
6671
6665
  end
6672
6666
 
@@ -381,9 +381,10 @@ module Aws::Batch
381
381
  # environments in the `DISABLED` state don't scale out.
382
382
  #
383
383
  # <note markdown="1"> Compute environments in a `DISABLED` state may continue to incur
384
- # billing charges. To prevent additional charges, turn off and then
385
- # delete the compute environment. For more information, see [State][1]
386
- # in the *Batch User Guide*.
384
+ # billing charges, for example, if they have running instances due to
385
+ # jobs that are still executing or a non-zero `minvCpus` setting. To
386
+ # prevent additional charges, disable and delete the compute
387
+ # environment.
387
388
  #
388
389
  # </note>
389
390
  #
@@ -392,10 +393,6 @@ module Aws::Batch
392
393
  # consider a `c5.8xlarge` instance with a `minvCpus` value of `4` and
393
394
  # a `desiredvCpus` value of `36`. This instance doesn't scale down to
394
395
  # a `c5.large` instance.
395
- #
396
- #
397
- #
398
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environment_parameters.html#compute_environment_state
399
396
  # @return [String]
400
397
  #
401
398
  # @!attribute [rw] status
@@ -1508,6 +1505,11 @@ module Aws::Batch
1508
1505
  # Valid Range: Minimum value of 20. Maximum value of 10080. Use 0 to
1509
1506
  # unset and disable the scale down delay.
1510
1507
  #
1508
+ # <note markdown="1"> Idle instances retained during the scale-down delay period are
1509
+ # billable at standard EC2 pricing.
1510
+ #
1511
+ # </note>
1512
+ #
1511
1513
  # <note markdown="1"> The scale down delay does not apply to:
1512
1514
  #
1513
1515
  # * Instances being replaced during infrastructure updates
@@ -2408,9 +2410,10 @@ module Aws::Batch
2408
2410
  # environments in the `DISABLED` state don't scale out.
2409
2411
  #
2410
2412
  # <note markdown="1"> Compute environments in a `DISABLED` state may continue to incur
2411
- # billing charges. To prevent additional charges, turn off and then
2412
- # delete the compute environment. For more information, see [State][1]
2413
- # in the *Batch User Guide*.
2413
+ # billing charges, for example, if they have running instances due to
2414
+ # jobs that are still executing or a non-zero `minvCpus` setting. To
2415
+ # prevent additional charges, disable and delete the compute
2416
+ # environment.
2414
2417
  #
2415
2418
  # </note>
2416
2419
  #
@@ -2419,10 +2422,6 @@ module Aws::Batch
2419
2422
  # consider a `c5.8xlarge` instance with a `minvCpus` value of `4` and
2420
2423
  # a `desiredvCpus` value of `36`. This instance doesn't scale down to
2421
2424
  # a `c5.large` instance.
2422
- #
2423
- #
2424
- #
2425
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environment_parameters.html#compute_environment_state
2426
2425
  # @return [String]
2427
2426
  #
2428
2427
  # @!attribute [rw] unmanagedv_cpus
@@ -10972,9 +10971,10 @@ module Aws::Batch
10972
10971
  # environments in the `DISABLED` state don't scale out.
10973
10972
  #
10974
10973
  # <note markdown="1"> Compute environments in a `DISABLED` state may continue to incur
10975
- # billing charges. To prevent additional charges, turn off and then
10976
- # delete the compute environment. For more information, see [State][1]
10977
- # in the *Batch User Guide*.
10974
+ # billing charges, for example, if they have running instances due to
10975
+ # jobs that are still executing or a non-zero `minvCpus` setting. To
10976
+ # prevent additional charges, disable and delete the compute
10977
+ # environment.
10978
10978
  #
10979
10979
  # </note>
10980
10980
  #
@@ -10983,10 +10983,6 @@ module Aws::Batch
10983
10983
  # consider a `c5.8xlarge` instance with a `minvCpus` value of `4` and
10984
10984
  # a `desiredvCpus` value of `36`. This instance doesn't scale down to
10985
10985
  # a `c5.large` instance.
10986
- #
10987
- #
10988
- #
10989
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environment_parameters.html#compute_environment_state
10990
10986
  # @return [String]
10991
10987
  #
10992
10988
  # @!attribute [rw] unmanagedv_cpus
data/lib/aws-sdk-batch.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Batch
54
54
  autoload :EndpointProvider, 'aws-sdk-batch/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-batch/endpoints'
56
56
 
57
- GEM_VERSION = '1.141.0'
57
+ GEM_VERSION = '1.142.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.141.0
4
+ version: 1.142.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.244.0
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.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement