aws-sdk-core 3.182.0 → 3.183.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e682f1186c789687fc3dd0d54149b4734679a400c2b30022722172f056f2d007
4
- data.tar.gz: 7574c95d46a940c42973c7e73256c38ab6cf700f3af3619c4055d740ab5ce072
3
+ metadata.gz: d7847ef8aaa0ddb412a8a0c985861383c0dd2dc125f6cfac4d0191ba2b8bb671
4
+ data.tar.gz: e9f4d163074482a8948e6acb5f6f78a3f2002351982f42728b14fc65dd408029
5
5
  SHA512:
6
- metadata.gz: 9229acc7af3f1b498cee7a1caa753daeee2163e1fdc0a40f8af58f37f2cc1226f07152e477801201376a0c8ec20e31c849b692209592665462ad018f4f44378e
7
- data.tar.gz: 57abfe375b97600d19b475acfc23932dbad2ad7721ec4ff4dab031a2864e7a242da20550678d3caeb883299c71700f4d42ee92c8f9161412d6329bec4680cf01
6
+ metadata.gz: 4f31e1b974321c412d9718e74878010d05e36f9a3b8994f4087ab8a4a3207069213529125faa3d12ecc37bc1d2e4f9e418ad60fa4863225afe307bd139dabba4
7
+ data.tar.gz: 179d5ebf6475643989b897d8cebb3e74dc639cfcc6374cd14162974113bb5965a0f61176435ebcf08ba7b2e07a90d91ed5add96b2e0fb0174c56449bcc34fa11
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.183.1 (2023-09-25)
5
+ ------------------
6
+
7
+ * Issue - Remove value inspection from param validation errors.
8
+
9
+ 3.183.0 (2023-09-20)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
13
+
4
14
  3.182.0 (2023-09-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.182.0
1
+ 3.183.1
@@ -6,7 +6,7 @@ module Aws
6
6
 
7
7
  include Seahorse::Model::Shapes
8
8
 
9
- EXPECTED_GOT = "expected %s to be %s, got value %s (class: %s) instead."
9
+ EXPECTED_GOT = 'expected %s to be %s, got class %s instead.'
10
10
 
11
11
  # @param [Seahorse::Model::Shapes::ShapeRef] rules
12
12
  # @param [Hash] params
@@ -230,7 +230,7 @@ module Aws
230
230
  end
231
231
 
232
232
  def expected_got(context, expected, got)
233
- EXPECTED_GOT % [context, expected, got.inspect, got.class.name]
233
+ EXPECTED_GOT % [context, expected, got.class.name]
234
234
  end
235
235
 
236
236
  end
@@ -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.182.0'
608
+ context[:gem_version] = '3.183.1'
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.182.0'
57
+ GEM_VERSION = '3.183.1'
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.182.0'
604
+ context[:gem_version] = '3.183.1'
605
605
  Seahorse::Client::Request.new(handlers, context)
606
606
  end
607
607
 
@@ -33,6 +33,9 @@ module Aws::SSOOIDC
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
35
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
37
+ return Aws::Endpoints::Endpoint.new(url: "https://oidc.#{region}.amazonaws.com", headers: {}, properties: {})
38
+ end
36
39
  return Aws::Endpoints::Endpoint.new(url: "https://oidc-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
40
  end
38
41
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -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.182.0'
57
+ GEM_VERSION = '3.183.1'
58
58
 
59
59
  end
@@ -2344,7 +2344,7 @@ module Aws::STS
2344
2344
  params: params,
2345
2345
  config: config)
2346
2346
  context[:gem_name] = 'aws-sdk-core'
2347
- context[:gem_version] = '3.182.0'
2347
+ context[:gem_version] = '3.183.1'
2348
2348
  Seahorse::Client::Request.new(handlers, context)
2349
2349
  end
2350
2350
 
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.182.0'
57
+ GEM_VERSION = '3.183.1'
58
58
 
59
59
  end
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.182.0
4
+ version: 3.183.1
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-09-19 00:00:00.000000000 Z
11
+ date: 2023-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath