aws-sdk-iam 1.110.0 → 1.112.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: c6f764d5a7fef7606df20a0819f4176dc38fb6fb5d34f8f258f88df94cb158ea
4
- data.tar.gz: 543d3f33c2d15fca267747cffbfc582a5d9304f4e22010bc9465ab5b839ae70f
3
+ metadata.gz: 4bab40bd34826fe483e3a57bd5fe985ade14e198b40cb4db7704ff5d354efc86
4
+ data.tar.gz: b235a34e1c4d1e83ec515e8889eee1481a58a4ffdb8f27977b293167a231deab
5
5
  SHA512:
6
- metadata.gz: '0869610b5cc3fa5cb5bedb4cc31af821412618512b88622ddfddca0ac2fc6a8d59052f0f81a537904053f43b4ee813d661be4a8f45f698db132620f095c3fc06'
7
- data.tar.gz: 79187e73fdf6c0476812739591b656e29c7d0819e5a3e89f0e90bf8e7f454ecfca99863cf5937114073d26b6fe5c78bf19db2cb85b8937e84d9f0a1d1f93bfea
6
+ metadata.gz: '09b9528d7451a0bdbd666894badd5ecdd692c8628b1adcfe79165429e388c25670e3e092b569193b6af92148130b0eb424a5b1fdb734b39d389637eecc5828f7'
7
+ data.tar.gz: 6b28c3e1da56da1c56055693e6274916622c12f02754ad4dc87262d4172a775286aa92ec1575a5071bc4274c163e54115f6f4cb45ba917f7cdadfaca455564d4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.112.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.111.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.110.0 (2024-09-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.112.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/query.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:iam)
40
-
41
39
  module Aws::IAM
42
40
  # An API client for IAM. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -13539,7 +13537,7 @@ module Aws::IAM
13539
13537
  tracer: tracer
13540
13538
  )
13541
13539
  context[:gem_name] = 'aws-sdk-iam'
13542
- context[:gem_version] = '1.110.0'
13540
+ context[:gem_version] = '1.112.0'
13543
13541
  Seahorse::Client::Request.new(handlers, context)
13544
13542
  end
13545
13543
 
@@ -52,15 +52,18 @@ module Aws::IAM
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end