Package not found. Please check the package name and try again.

aws-sdk-eks 1.108.0 → 1.109.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: 5395a194978f6147940f5c155f66401f91f34a67663d8ec9644e2f9fc593c119
4
- data.tar.gz: 40170c0bd2733f7ed1bca0ff55360a5252d7e43e159ea82cfa5651119326afa3
3
+ metadata.gz: '0951a9c955ce5c4741a4c0c55610b60513118b8393875211ba1422891db52c78'
4
+ data.tar.gz: 79756393ccea0e6d22570557c1c49b7ddbe682be272c429b1fa61d0e709aac94
5
5
  SHA512:
6
- metadata.gz: 6395d14622d1dface18776eb766095f92d471ffe9dfbcb794a6952c60c573e20994add28b4aa151599901f9df6d0fc6d7d394ef009279d9f62cbda2e33f52af8
7
- data.tar.gz: 320490bdd3a9728b53b27435060e9cd7079a1d1cf64e972331c199b5277ae8cf7351fa85bab354d3f7b24d212c110cbbbfac12e73b45ecf62ac0415ccb461c54
6
+ metadata.gz: 7fe3ada9a893344683cfc6f4a9c510f406b0860f480b455401865f5a8b4006934848f3c34e05cc94162425e75fc6e20a20ece8cfa768fb4da01f20636deca0b1
7
+ data.tar.gz: 7405342a95559dcd47bfc76809fef31b2402c791750623799886f1be687e33ccd282bcf5f5e94f9718491ba575da9e6babcfa2fb6ef9fa69306e5354c9242987
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.109.0 (2024-07-01)
5
+ ------------------
6
+
7
+ * Feature - Updates EKS managed node groups to support EC2 Capacity Blocks for ML
8
+
4
9
  1.108.0 (2024-06-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.108.0
1
+ 1.109.0
@@ -1711,7 +1711,7 @@ module Aws::EKS
1711
1711
  # max_unavailable: 1,
1712
1712
  # max_unavailable_percentage: 1,
1713
1713
  # },
1714
- # capacity_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT
1714
+ # capacity_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT, CAPACITY_BLOCK
1715
1715
  # version: "String",
1716
1716
  # release_version: "String",
1717
1717
  # })
@@ -1726,7 +1726,7 @@ module Aws::EKS
1726
1726
  # resp.nodegroup.created_at #=> Time
1727
1727
  # resp.nodegroup.modified_at #=> Time
1728
1728
  # resp.nodegroup.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED", "DEGRADED"
1729
- # resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT"
1729
+ # resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT", "CAPACITY_BLOCK"
1730
1730
  # resp.nodegroup.scaling_config.min_size #=> Integer
1731
1731
  # resp.nodegroup.scaling_config.max_size #=> Integer
1732
1732
  # resp.nodegroup.scaling_config.desired_size #=> Integer
@@ -2225,7 +2225,7 @@ module Aws::EKS
2225
2225
  # resp.nodegroup.created_at #=> Time
2226
2226
  # resp.nodegroup.modified_at #=> Time
2227
2227
  # resp.nodegroup.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED", "DEGRADED"
2228
- # resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT"
2228
+ # resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT", "CAPACITY_BLOCK"
2229
2229
  # resp.nodegroup.scaling_config.min_size #=> Integer
2230
2230
  # resp.nodegroup.scaling_config.max_size #=> Integer
2231
2231
  # resp.nodegroup.scaling_config.desired_size #=> Integer
@@ -3022,7 +3022,7 @@ module Aws::EKS
3022
3022
  # resp.nodegroup.created_at #=> Time
3023
3023
  # resp.nodegroup.modified_at #=> Time
3024
3024
  # resp.nodegroup.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED", "DEGRADED"
3025
- # resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT"
3025
+ # resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT", "CAPACITY_BLOCK"
3026
3026
  # resp.nodegroup.scaling_config.min_size #=> Integer
3027
3027
  # resp.nodegroup.scaling_config.max_size #=> Integer
3028
3028
  # resp.nodegroup.scaling_config.desired_size #=> Integer
@@ -5072,7 +5072,7 @@ module Aws::EKS
5072
5072
  params: params,
5073
5073
  config: config)
5074
5074
  context[:gem_name] = 'aws-sdk-eks'
5075
- context[:gem_version] = '1.108.0'
5075
+ context[:gem_version] = '1.109.0'
5076
5076
  Seahorse::Client::Request.new(handlers, context)
5077
5077
  end
5078
5078
 
data/lib/aws-sdk-eks.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-eks/customizations'
53
53
  # @!group service
54
54
  module Aws::EKS
55
55
 
56
- GEM_VERSION = '1.108.0'
56
+ GEM_VERSION = '1.109.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -305,7 +305,7 @@ module Aws
305
305
  max_unavailable: ::Integer?,
306
306
  max_unavailable_percentage: ::Integer?
307
307
  },
308
- ?capacity_type: ("ON_DEMAND" | "SPOT"),
308
+ ?capacity_type: ("ON_DEMAND" | "SPOT" | "CAPACITY_BLOCK"),
309
309
  ?version: ::String,
310
310
  ?release_version: ::String
311
311
  ) -> _CreateNodegroupResponseSuccess
data/sig/types.rbs CHANGED
@@ -364,7 +364,7 @@ module Aws::EKS
364
364
  attr_accessor client_request_token: ::String
365
365
  attr_accessor launch_template: Types::LaunchTemplateSpecification
366
366
  attr_accessor update_config: Types::NodegroupUpdateConfig
367
- attr_accessor capacity_type: ("ON_DEMAND" | "SPOT")
367
+ attr_accessor capacity_type: ("ON_DEMAND" | "SPOT" | "CAPACITY_BLOCK")
368
368
  attr_accessor version: ::String
369
369
  attr_accessor release_version: ::String
370
370
  SENSITIVE: []
@@ -1028,7 +1028,7 @@ module Aws::EKS
1028
1028
  attr_accessor created_at: ::Time
1029
1029
  attr_accessor modified_at: ::Time
1030
1030
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "DEGRADED")
1031
- attr_accessor capacity_type: ("ON_DEMAND" | "SPOT")
1031
+ attr_accessor capacity_type: ("ON_DEMAND" | "SPOT" | "CAPACITY_BLOCK")
1032
1032
  attr_accessor scaling_config: Types::NodegroupScalingConfig
1033
1033
  attr_accessor instance_types: ::Array[::String]
1034
1034
  attr_accessor subnets: ::Array[::String]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.108.0
4
+ version: 1.109.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-06-26 00:00:00.000000000 Z
11
+ date: 2024-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core