aws-sdk-iam 1.121.0 → 1.122.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: fc423356a34935e693c074b609a9d3e4c546e0d794f90234a900e82a5013ba80
4
- data.tar.gz: 5d5721e3673211d3b1dd161e9d2115557e3d0c9ea01632c94fc459a7e05df331
3
+ metadata.gz: cf927a4b3db24c21bdf4953eb09cf01fb7528299775df5b841e34cb38552fc43
4
+ data.tar.gz: 39cae22e196e3893c52e8a949efc19e48ef7e49d16bda7b30f82030436d5d23c
5
5
  SHA512:
6
- metadata.gz: b922d0aa295260bebb68be942286384e99b00acd6ff0e10df8d80fb8ba3b573f8ddbcafc81de6039aa14cbd4ae0fddfcab4f3e89d5054f13d7c7327fe16409c8
7
- data.tar.gz: 287ca7df986e02f6aafbe82a687ae3e05f724f42ed50ef61bc8d63f17dc4a3847b9759f2e98d5aae597a458126ec4e79ebb49032d39b0228f5fa5b94ed4ee7bb
6
+ metadata.gz: 69a50b6a8a10dffe742979fc94dfe5c6fbdd4c28a89317ae61aceeecd192963dcb031b88896e0e75a898c240984307da0cc74c804d9f9f5b0f239bdc140c8693
7
+ data.tar.gz: 6040cb1c8cc57cf2cbc042daabd0cf5f475e91eb6e721ab65dffb7eaf724edf2f23780290affcccecc761901d4c5d85f9b7f2674ce83bf5916023ef92fa02c0a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.122.0 (2025-05-12)
5
+ ------------------
6
+
7
+ * Feature - Updating the endpoint list for the Identity and access management (IAM) service
8
+
4
9
  1.121.0 (2025-05-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.121.0
1
+ 1.122.0
@@ -200,8 +200,7 @@ module Aws::IAM
200
200
  # accepted modes and the configuration defaults that are included.
201
201
  #
202
202
  # @option options [Boolean] :disable_host_prefix_injection (false)
203
- # Set to true to disable SDK automatically adding host prefix
204
- # to default service endpoint when available.
203
+ # When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
205
204
  #
206
205
  # @option options [Boolean] :disable_request_compression (false)
207
206
  # When set to 'true' the request body will not be compressed
@@ -13870,7 +13869,7 @@ module Aws::IAM
13870
13869
  tracer: tracer
13871
13870
  )
13872
13871
  context[:gem_name] = 'aws-sdk-iam'
13873
- context[:gem_version] = '1.121.0'
13872
+ context[:gem_version] = '1.122.0'
13874
13873
  Seahorse::Client::Request.new(handlers, context)
13875
13874
  end
13876
13875
 
@@ -63,6 +63,9 @@ module Aws::IAM
63
63
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
64
64
  return Aws::Endpoints::Endpoint.new(url: "https://iam.us-isof-south-1.csp.hci.ic.gov", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-isof-south-1"}]})
65
65
  end
66
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
67
+ return Aws::Endpoints::Endpoint.new(url: "https://iam.eusc-de-east-1.amazonaws.eu", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "eusc-de-east-1"}]})
68
+ end
66
69
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
67
70
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
68
71
  return Aws::Endpoints::Endpoint.new(url: "https://iam-fips.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
data/lib/aws-sdk-iam.rb CHANGED
@@ -76,7 +76,7 @@ module Aws::IAM
76
76
  autoload :UserPolicy, 'aws-sdk-iam/user_policy'
77
77
  autoload :VirtualMfaDevice, 'aws-sdk-iam/virtual_mfa_device'
78
78
 
79
- GEM_VERSION = '1.121.0'
79
+ GEM_VERSION = '1.122.0'
80
80
 
81
81
  end
82
82
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iam
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.121.0
4
+ version: 1.122.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services