aws-sdk-identitystore 1.56.0 → 1.58.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: bad28c20926c4dfdc85ae1752aa4ec029bde62a9bfb7bb74912e6e23a5ee40c5
4
- data.tar.gz: 0db6fed36603dc2393455fdc196a2cdc9c368965878adf9be49851591c175307
3
+ metadata.gz: fc1d7e6c00e34482ae28c130a8ab02f77f28623e11c0cb0f9fde87bd2a8db344
4
+ data.tar.gz: e3a14dc73f29e1ec7f7af285b867bf4b035fcfdc089f414c063508cdab95d87c
5
5
  SHA512:
6
- metadata.gz: a8d4f461f3541f226600831dbb6c1f38488e29c81defd8054a2d8365497e39e275dd524efe4b7d59da4486cb31184d7fb976db16c7413f06511ce495caa55fb9
7
- data.tar.gz: 4e628c4d142f96bfeb4489966ce602960737449de8563b6cbde1f1b2d204125c3da559387fa6853e8c64ff4330bc125585f5a5b40e9a4bc8a0b971b27cd35953
6
+ metadata.gz: 90be3a47969c5f7abb930d762be531445cee99f71f3b48ddf6acb892265e2a2a56b786b2f7c2829d90c22770cff585326152f47cbc396a9b1698b2cd6584ddf3
7
+ data.tar.gz: 78d5b89c2c47fe6c28503bf7851603d5ce0aa6c2f42a1a51465e99c32c61abf02d8eb0be8e7b5d7cde55534356acfc82515b47ec99be8d9c953d523ea90cf207
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2025-10-16)
5
+ ------------------
6
+
7
+ * Feature - Update endpoint ruleset parameters casing
8
+
9
+ 1.57.0 (2025-08-26)
10
+ ------------------
11
+
12
+ * Feature - Remove incorrect endpoint tests
13
+
4
14
  1.56.0 (2025-08-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.58.0
@@ -1614,7 +1614,7 @@ module Aws::IdentityStore
1614
1614
  tracer: tracer
1615
1615
  )
1616
1616
  context[:gem_name] = 'aws-sdk-identitystore'
1617
- context[:gem_version] = '1.56.0'
1617
+ context[:gem_version] = '1.58.0'
1618
1618
  Seahorse::Client::Request.new(handlers, context)
1619
1619
  end
1620
1620
 
@@ -13,22 +13,22 @@ module Aws::IdentityStore
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -28,8 +28,8 @@ module Aws::IdentityStore
28
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
32
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
31
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
33
33
  return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
34
34
  end
35
35
  return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -54,7 +54,7 @@ module Aws::IdentityStore
54
54
  autoload :EndpointProvider, 'aws-sdk-identitystore/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-identitystore/endpoints'
56
56
 
57
- GEM_VERSION = '1.56.0'
57
+ GEM_VERSION = '1.58.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-identitystore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.228.0
21
+ version: 3.231.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.228.0
31
+ version: 3.231.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement