aws-sdk-iam 1.86.0 → 1.88.0

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: 05564251cdc0010edb62ccd338cec38d1df359cef7dd5a1f0b1dd36f1767fdb9
4
- data.tar.gz: 916022a599cdf91cb6d2207d1dfe189ad8e9ecec3d29a36ae983de095cf0e012
3
+ metadata.gz: 4284aeb490422fd96534e7786d12205f123e42d6df541703d4dd98858d4034a6
4
+ data.tar.gz: 2992d13a6c62e37849f172ea2e40b70e1cc91c9850035023121cba41450add2d
5
5
  SHA512:
6
- metadata.gz: 9e6f0d2c8ed3cbd8b11e289ca4b8829ee051ec5a53769ae600d3eb9d1278a56b5b222855da08a4241e93dbe81efd9802adc60261600beb9a228b115723f55b10
7
- data.tar.gz: dd3dee41a7047f6cdda0394243dfc7a3a6dc967b8d68b387d3bd0cc93cff635339a78bee8d5f863e499db53eecdfb01bb4b68ba9277dbc142f23db551879fdbd
6
+ metadata.gz: 90fbd8042518f12a0fc098b414ef9c6be3e9f517d9cc9942a2ea5709d6ad38765aaf638d61f140b942723b324727f0424615105d30324cf9d356d22e850d2c95
7
+ data.tar.gz: 777e1849d36df440a3a96e523373d238fb6bcc3c4624776c1bbded944844e65891c87f8208345162501783c334f1d06d3a45f72af0b7cbabccf64dc3ad924e0d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2023-10-24)
5
+ ------------------
6
+
7
+ * Feature - Add the partitional endpoint for IAM in iso-f.
8
+
9
+ 1.87.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.86.0 (2023-07-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.88.0
@@ -13461,7 +13461,7 @@ module Aws::IAM
13461
13461
  params: params,
13462
13462
  config: config)
13463
13463
  context[:gem_name] = 'aws-sdk-iam'
13464
- context[:gem_version] = '1.86.0'
13464
+ context[:gem_version] = '1.88.0'
13465
13465
  Seahorse::Client::Request.new(handlers, context)
13466
13466
  end
13467
13467
 
@@ -46,6 +46,9 @@ module Aws::IAM
46
46
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
47
47
  return Aws::Endpoints::Endpoint.new(url: "https://iam.us-isob-east-1.sc2s.sgov.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"iam", "signingRegion"=>"us-isob-east-1"}]})
48
48
  end
49
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
50
+ return Aws::Endpoints::Endpoint.new(url: "https://iam.us-isof-south-1.csp.hci.ic.gov", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"iam", "signingRegion"=>"us-isof-south-1"}]})
51
+ end
49
52
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
50
53
  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"))
51
54
  return Aws::Endpoints::Endpoint.new(url: "https://iam-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
@@ -53,7 +56,7 @@ module Aws::IAM
53
56
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
54
57
  end
55
58
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
56
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
59
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
57
60
  return Aws::Endpoints::Endpoint.new(url: "https://iam-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
58
61
  end
59
62
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
data/lib/aws-sdk-iam.rb CHANGED
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-iam/customizations'
74
74
  # @!group service
75
75
  module Aws::IAM
76
76
 
77
- GEM_VERSION = '1.86.0'
77
+ GEM_VERSION = '1.88.0'
78
78
 
79
79
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iam
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.88.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-13 00:00:00.000000000 Z
11
+ date: 2023-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement