aws-sdk-ec2 1.488.0 → 1.489.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: 285bd62292ca1f25d244da816efccdb4a913fa499c12f55603fd1c016708beb2
4
- data.tar.gz: 8b6fbe3c742516ca5d75c819534d718b44d674733d1179f195203b566bee8a45
3
+ metadata.gz: 868519b55d21d0cd883b7e9d330f6d3b79f1cbf37e9bd4843a0bf095f2989cef
4
+ data.tar.gz: 4789f5c52065d6892589697159a4ab9f57846c7a301d97f78dfcb1e43c14428b
5
5
  SHA512:
6
- metadata.gz: b48410932c807cc5bf32942022a30ced70d51223a6df90f1ff345e826e4429cde38a7a7065cce00a17bfa5e90a2d93e73923c4739cab54a17cc3df0ef5318ddc
7
- data.tar.gz: 90845d6c9594ff6bf61870704d646565d4735aa7ea44b08cf4f65219a4fb645ccbaedf41e186f9523d1414a6f156eea7ed5a6c270ab1a50c00e8e0452d08a290
6
+ metadata.gz: 224f811ff95fde6a1bc797d6ffff72fe79726cabdec6f90152a93ee16f15af8f22a540cccff7b7995a80172f70961d528bb79bfe6fb57c36063278496778a9e6
7
+ data.tar.gz: 9371e7aee23d0b9360a65b396780683e6829f9a7fc1253fe83223012eaba552c1a71cf72c53e7e52df4cd6b7ad98c0ab656148095e8aad813bbfd96a9650437f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.489.0 (2024-11-15)
5
+ ------------------
6
+
7
+ * Feature - Remove non-functional enum variants for FleetCapacityReservationUsageStrategy
8
+
4
9
  1.488.0 (2024-11-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.488.0
1
+ 1.489.0
@@ -6717,7 +6717,7 @@ module Aws::EC2
6717
6717
  # on_demand_options: {
6718
6718
  # allocation_strategy: "lowest-price", # accepts lowest-price, prioritized
6719
6719
  # capacity_reservation_options: {
6720
- # usage_strategy: "use-capacity-reservations-first", # accepts use-capacity-reservations-first, use-capacity-reservations-only, none
6720
+ # usage_strategy: "use-capacity-reservations-first", # accepts use-capacity-reservations-first
6721
6721
  # },
6722
6722
  # single_instance_type: false,
6723
6723
  # single_availability_zone: false,
@@ -23022,7 +23022,7 @@ module Aws::EC2
23022
23022
  # resp.fleets[0].spot_options.min_target_capacity #=> Integer
23023
23023
  # resp.fleets[0].spot_options.max_total_price #=> String
23024
23024
  # resp.fleets[0].on_demand_options.allocation_strategy #=> String, one of "lowest-price", "prioritized"
23025
- # resp.fleets[0].on_demand_options.capacity_reservation_options.usage_strategy #=> String, one of "use-capacity-reservations-first", "use-capacity-reservations-only", "none"
23025
+ # resp.fleets[0].on_demand_options.capacity_reservation_options.usage_strategy #=> String, one of "use-capacity-reservations-first"
23026
23026
  # resp.fleets[0].on_demand_options.single_instance_type #=> Boolean
23027
23027
  # resp.fleets[0].on_demand_options.single_availability_zone #=> Boolean
23028
23028
  # resp.fleets[0].on_demand_options.min_target_capacity #=> Integer
@@ -60849,7 +60849,7 @@ module Aws::EC2
60849
60849
  tracer: tracer
60850
60850
  )
60851
60851
  context[:gem_name] = 'aws-sdk-ec2'
60852
- context[:gem_version] = '1.488.0'
60852
+ context[:gem_version] = '1.489.0'
60853
60853
  Seahorse::Client::Request.new(handlers, context)
60854
60854
  end
60855
60855
 
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.488.0'
81
+ GEM_VERSION = '1.489.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -1424,7 +1424,7 @@ module Aws
1424
1424
  ?on_demand_options: {
1425
1425
  allocation_strategy: ("lowest-price" | "prioritized")?,
1426
1426
  capacity_reservation_options: {
1427
- usage_strategy: ("use-capacity-reservations-first" | "use-capacity-reservations-only" | "none")?
1427
+ usage_strategy: ("use-capacity-reservations-first")?
1428
1428
  }?,
1429
1429
  single_instance_type: bool?,
1430
1430
  single_availability_zone: bool?,
data/sig/types.rbs CHANGED
@@ -1228,12 +1228,12 @@ module Aws::EC2
1228
1228
  end
1229
1229
 
1230
1230
  class CapacityReservationOptions
1231
- attr_accessor usage_strategy: ("use-capacity-reservations-first" | "use-capacity-reservations-only" | "none")
1231
+ attr_accessor usage_strategy: ("use-capacity-reservations-first")
1232
1232
  SENSITIVE: []
1233
1233
  end
1234
1234
 
1235
1235
  class CapacityReservationOptionsRequest
1236
- attr_accessor usage_strategy: ("use-capacity-reservations-first" | "use-capacity-reservations-only" | "none")
1236
+ attr_accessor usage_strategy: ("use-capacity-reservations-first")
1237
1237
  SENSITIVE: []
1238
1238
  end
1239
1239
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.488.0
4
+ version: 1.489.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-13 00:00:00.000000000 Z
11
+ date: 2024-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core