aws-sdk-core 3.178.0 → 3.179.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: 9b0103607b2d6036806605dea30ea78169454607d046e0d492141f78503f5bd0
4
- data.tar.gz: 8886536501b3cf7aee0d37dc2b4cdefd24d8c7ecdbcae9dca1f03734e94296ed
3
+ metadata.gz: a718aa02701040d0bd3aec6ab69cf36a790a9e16aa6ffa2f7d171ce95d36e055
4
+ data.tar.gz: 5452e4aa44a6d2d0d37341d05d0a43ccc2168a1a4c804291c2cecfac6c923378
5
5
  SHA512:
6
- metadata.gz: 90e1f00ccb15c3e7777ab4cf3df3977dc0a99b0ca243482bab2953ec602dc18bcdb2a4fa69616a535ba68080821509721b5512fe2f4f05717d0f1aeb38c927ff
7
- data.tar.gz: 305ea810a3456b951112fd30e749f8c2feca93c0975efa241fc202131b9e597c396ffcf956551dc27cd7a07d85d2b50b2fd8440047903583523f0211e3d4f60e
6
+ metadata.gz: daf4fccf95fa9fceee0b98d840bb67552223b881c70d6253118ce18d28277f6a81b0386eb047770acb569a4bc58f9f1ae7159d9b86fae80787c4d766ae3ece23
7
+ data.tar.gz: be4b8b86226158943daba8bb40eb53a05fcf387616bbe35d3424f5065a36a318d4e2767f840adfafd5ac16e5059891cd438301815834ae16ad85c1bfd2ac4ceb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.179.0 (2023-07-24)
5
+ ------------------
6
+
7
+ * Feature - Add `checksum_validated` method to response.
8
+
4
9
  3.178.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.178.0
1
+ 3.179.0
@@ -169,9 +169,9 @@ module Aws
169
169
 
170
170
  # Source a custom configured endpoint from the shared configuration file
171
171
  #
172
- # @param [Hash] options
173
- # @option options [String] :profile
174
- # @option options [String] :service_id
172
+ # @param [Hash] opts
173
+ # @option opts [String] :profile
174
+ # @option opts [String] :service_id
175
175
  def configured_endpoint(opts = {})
176
176
  # services section is only allowed in the shared config file (not credentials)
177
177
  profile = opts[:profile] || @profile_name
@@ -605,7 +605,7 @@ module Aws::SSO
605
605
  params: params,
606
606
  config: config)
607
607
  context[:gem_name] = 'aws-sdk-core'
608
- context[:gem_version] = '3.178.0'
608
+ context[:gem_version] = '3.179.0'
609
609
  Seahorse::Client::Request.new(handlers, context)
610
610
  end
611
611
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sso/customizations'
54
54
  # @!group service
55
55
  module Aws::SSO
56
56
 
57
- GEM_VERSION = '3.178.0'
57
+ GEM_VERSION = '3.179.0'
58
58
 
59
59
  end
@@ -601,7 +601,7 @@ module Aws::SSOOIDC
601
601
  params: params,
602
602
  config: config)
603
603
  context[:gem_name] = 'aws-sdk-core'
604
- context[:gem_version] = '3.178.0'
604
+ context[:gem_version] = '3.179.0'
605
605
  Seahorse::Client::Request.new(handlers, context)
606
606
  end
607
607
 
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-ssooidc/customizations'
54
54
  # @!group service
55
55
  module Aws::SSOOIDC
56
56
 
57
- GEM_VERSION = '3.178.0'
57
+ GEM_VERSION = '3.179.0'
58
58
 
59
59
  end
@@ -2334,7 +2334,7 @@ module Aws::STS
2334
2334
  params: params,
2335
2335
  config: config)
2336
2336
  context[:gem_name] = 'aws-sdk-core'
2337
- context[:gem_version] = '3.178.0'
2337
+ context[:gem_version] = '3.179.0'
2338
2338
  Seahorse::Client::Request.new(handlers, context)
2339
2339
  end
2340
2340
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sts/customizations'
54
54
  # @!group service
55
55
  module Aws::STS
56
56
 
57
- GEM_VERSION = '3.178.0'
57
+ GEM_VERSION = '3.179.0'
58
58
 
59
59
  end
@@ -30,6 +30,12 @@ module Seahorse
30
30
  # @return [StandardError, nil]
31
31
  attr_accessor :error
32
32
 
33
+ # @return [String, nil] returns the algorithm used to validate
34
+ # the response checksum. Returns nil if no verification was done.
35
+ def checksum_validated
36
+ context[:http_checksum][:validated] if context[:http_checksum]
37
+ end
38
+
33
39
  # @overload on(status_code, &block)
34
40
  # @param [Integer] status_code The block will be
35
41
  # triggered only for responses with the given status code.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.178.0
4
+ version: 3.179.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath