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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +2 -3
- data/lib/aws-sdk-iam/endpoint_provider.rb +3 -0
- data/lib/aws-sdk-iam.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf927a4b3db24c21bdf4953eb09cf01fb7528299775df5b841e34cb38552fc43
|
4
|
+
data.tar.gz: 39cae22e196e3893c52e8a949efc19e48ef7e49d16bda7b30f82030436d5d23c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69a50b6a8a10dffe742979fc94dfe5c6fbdd4c28a89317ae61aceeecd192963dcb031b88896e0e75a898c240984307da0cc74c804d9f9f5b0f239bdc140c8693
|
7
|
+
data.tar.gz: 6040cb1c8cc57cf2cbc042daabd0cf5f475e91eb6e721ab65dffb7eaf724edf2f23780290affcccecc761901d4c5d85f9b7f2674ce83bf5916023ef92fa02c0a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.122.0
|
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -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
|
-
#
|
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.
|
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