aws-sdk-eks 1.108.0 → 1.110.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-eks/client.rb +14 -5
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -2
- 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: d06badc0553e6756a2ccc91fa4f397ab90ea4b17fcddc1aebe0af6406fdf8ac9
|
4
|
+
data.tar.gz: 030ca6b49142e53baa27452b547b435d823824bfe6c6cc2bb961682b6cc1b2b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97256d8bf9499406bd7f988af875a11bd675d3ed9b6e3bb5d7366bedf13ec093c5d2a40fb7cf991bf5fee494daa85f082bcf0e350fc6138bb5790ffa44229973
|
7
|
+
data.tar.gz: 2e823d61ac0c64b3297c8975383e3c1aef5b3280d7c32242e6adb89485d3a7070fd0c5527f0307dc1401328ddb40d2d9638081b52ba27bd9b870712164dd6a9e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.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.109.0 (2024-07-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates EKS managed node groups to support EC2 Capacity Blocks for ML
|
13
|
+
|
4
14
|
1.108.0 (2024-06-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -312,6 +312,15 @@ module Aws::EKS
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -1711,7 +1720,7 @@ module Aws::EKS
|
|
1711
1720
|
# max_unavailable: 1,
|
1712
1721
|
# max_unavailable_percentage: 1,
|
1713
1722
|
# },
|
1714
|
-
# capacity_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT
|
1723
|
+
# capacity_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT, CAPACITY_BLOCK
|
1715
1724
|
# version: "String",
|
1716
1725
|
# release_version: "String",
|
1717
1726
|
# })
|
@@ -1726,7 +1735,7 @@ module Aws::EKS
|
|
1726
1735
|
# resp.nodegroup.created_at #=> Time
|
1727
1736
|
# resp.nodegroup.modified_at #=> Time
|
1728
1737
|
# 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"
|
1738
|
+
# resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT", "CAPACITY_BLOCK"
|
1730
1739
|
# resp.nodegroup.scaling_config.min_size #=> Integer
|
1731
1740
|
# resp.nodegroup.scaling_config.max_size #=> Integer
|
1732
1741
|
# resp.nodegroup.scaling_config.desired_size #=> Integer
|
@@ -2225,7 +2234,7 @@ module Aws::EKS
|
|
2225
2234
|
# resp.nodegroup.created_at #=> Time
|
2226
2235
|
# resp.nodegroup.modified_at #=> Time
|
2227
2236
|
# 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"
|
2237
|
+
# resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT", "CAPACITY_BLOCK"
|
2229
2238
|
# resp.nodegroup.scaling_config.min_size #=> Integer
|
2230
2239
|
# resp.nodegroup.scaling_config.max_size #=> Integer
|
2231
2240
|
# resp.nodegroup.scaling_config.desired_size #=> Integer
|
@@ -3022,7 +3031,7 @@ module Aws::EKS
|
|
3022
3031
|
# resp.nodegroup.created_at #=> Time
|
3023
3032
|
# resp.nodegroup.modified_at #=> Time
|
3024
3033
|
# 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"
|
3034
|
+
# resp.nodegroup.capacity_type #=> String, one of "ON_DEMAND", "SPOT", "CAPACITY_BLOCK"
|
3026
3035
|
# resp.nodegroup.scaling_config.min_size #=> Integer
|
3027
3036
|
# resp.nodegroup.scaling_config.max_size #=> Integer
|
3028
3037
|
# resp.nodegroup.scaling_config.desired_size #=> Integer
|
@@ -5072,7 +5081,7 @@ module Aws::EKS
|
|
5072
5081
|
params: params,
|
5073
5082
|
config: config)
|
5074
5083
|
context[:gem_name] = 'aws-sdk-eks'
|
5075
|
-
context[:gem_version] = '1.
|
5084
|
+
context[:gem_version] = '1.110.0'
|
5076
5085
|
Seahorse::Client::Request.new(handlers, context)
|
5077
5086
|
end
|
5078
5087
|
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -305,7 +306,7 @@ module Aws
|
|
305
306
|
max_unavailable: ::Integer?,
|
306
307
|
max_unavailable_percentage: ::Integer?
|
307
308
|
},
|
308
|
-
?capacity_type: ("ON_DEMAND" | "SPOT"),
|
309
|
+
?capacity_type: ("ON_DEMAND" | "SPOT" | "CAPACITY_BLOCK"),
|
309
310
|
?version: ::String,
|
310
311
|
?release_version: ::String
|
311
312
|
) -> _CreateNodegroupResponseSuccess
|
data/sig/resource.rbs
CHANGED
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.
|
4
|
+
version: 1.110.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
|
+
date: 2024-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Elastic Kubernetes Service (Amazon EKS).
|
48
48
|
This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|