aws-sdk-eksauth 1.13.0 → 1.15.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: c75fad0f47542306e49abcad3d2f25aeffa1752f59a1a0d548c3e1d60087ad2b
4
- data.tar.gz: b37215e3ad067703852ae8a7300e4979460e0f45099e78ee62224d7ad3f662e0
3
+ metadata.gz: 81f931f3f6e4bf4d7006b1e86f0d435d815ab73e7879258ca46d88159e53ae79
4
+ data.tar.gz: e718f124228f12574986e68d5ee461b8816a3a00a948d6891f29589f3a7f125e
5
5
  SHA512:
6
- metadata.gz: 277aa06036801b58d2fcbc28c1cc9b341de8a2435166e37c7b8cc466f2230c7d1d9746d99605b2286a2b3498844783bd5043a76854ad51cad97ad93918583e31
7
- data.tar.gz: 86fe1c2524ce42fb8b37d3ab66400ddc4efe66cd151241f67a44cc385cc26a293eb377d4cc03311f0cf3a7495045fc6104db53f95ed2d27cdf883ccd5fee6110
6
+ metadata.gz: 6c2dcf0d6a42e24fa7b3e8bc9d4bc2cc152a7aedabf3872c8331d0fee901c9ecb74fa65b6495a258f3748f676e5e6d29ee621f07abb9ec28c3ef8b9fa02c09a9
7
+ data.tar.gz: bdaa20d9a388efca125f1d5cacaba79a4c06796fd870bc610e23767d7a3a09f58bd6619cae4f1e45a6fdbd90e1762b06ac326412df84592b32dfe8d6758647f0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.14.0 (2024-09-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.13.0 (2024-09-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.15.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:eksauth)
40
-
41
39
  module Aws::EKSAuth
42
40
  # An API client for EKSAuth. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -519,7 +517,7 @@ module Aws::EKSAuth
519
517
  tracer: tracer
520
518
  )
521
519
  context[:gem_name] = 'aws-sdk-eksauth'
522
- context[:gem_version] = '1.13.0'
520
+ context[:gem_version] = '1.15.0'
523
521
  Seahorse::Client::Request.new(handlers, context)
524
522
  end
525
523
 
@@ -45,10 +45,15 @@ module Aws::EKSAuth
45
45
  self[:region] = options[:region]
46
46
  self[:use_fips] = options[:use_fips]
47
47
  self[:use_fips] = false if self[:use_fips].nil?
48
- if self[:use_fips].nil?
49
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
50
- end
51
48
  self[:endpoint] = options[:endpoint]
52
49
  end
50
+
51
+ def self.create(config, options={})
52
+ new({
53
+ region: config.region,
54
+ use_fips: config.use_fips_endpoint,
55
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
56
+ }.merge(options))
57
+ end
53
58
  end
54
59
  end
@@ -12,15 +12,9 @@ module Aws::EKSAuth
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class AssumeRoleForPodIdentity
16
- def self.build(context)
17
- Aws::EKSAuth::EndpointParameters.new(
18
- region: context.config.region,
19
- use_fips: context.config.use_fips_endpoint,
20
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
21
- )
22
- end
23
- end
24
15
 
16
+ def self.parameters_for_operation(context)
17
+ Aws::EKSAuth::EndpointParameters.create(context.config)
18
+ end
25
19
  end
26
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::EKSAuth::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,13 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :assume_role_for_pod_identity
74
- Aws::EKSAuth::Endpoints::AssumeRoleForPodIdentity.build(context)
75
- end
76
- end
77
70
  end
78
71
 
79
72
  def add_handlers(handlers, _config)
@@ -11,6 +11,8 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:eksauth)
15
+
14
16
  # This module provides support for Amazon EKS Auth. This module is available in the
15
17
  # `aws-sdk-eksauth` gem.
16
18
  #
@@ -53,7 +55,7 @@ module Aws::EKSAuth
53
55
  autoload :EndpointProvider, 'aws-sdk-eksauth/endpoint_provider'
54
56
  autoload :Endpoints, 'aws-sdk-eksauth/endpoints'
55
57
 
56
- GEM_VERSION = '1.13.0'
58
+ GEM_VERSION = '1.15.0'
57
59
 
58
60
  end
59
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eksauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.15.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-09-23 00:00:00.000000000 Z
11
+ date: 2024-10-18 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.207.0
22
+ version: 3.210.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement