aws-sdk-identitystore 1.61.0 → 1.62.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: 81ae79e73e3dc34ffafadacd524d96867103d7971ac4d7eba64349add070f37d
4
- data.tar.gz: 38d18390635bd5177b912c9b8ae9b18313916f5dfb0c7f4be988aeff2096e777
3
+ metadata.gz: 037fd1fe4c913317058cad4fca70040f88e41be3e1f811a6b3ae44c902c65880
4
+ data.tar.gz: cc1b1f6551fae703b8be872e467185b6c881cf5c3a5cabb9c49bc3ee47464115
5
5
  SHA512:
6
- metadata.gz: 403d8db17463eb9cd10a1b0e36701c15a827f517b64e91bf979fea837fff9ce3c81f6ab14233841214eea104e121f61b57384900a7429712343e4d00ca704ed8
7
- data.tar.gz: c5e1f044de933689f1cade160bd3b5cd73933f69ef51d32d4fd6383b0895e21975991569b2df59b4c00673f30de82e892a539dbb70d7816672c659aa4fcd1c22
6
+ metadata.gz: 9042440018207f7284c41e08c4bb2dccacb0972496fa510d183b91ad739ad71c746a08171b0a3060ac51c5a95e5c1d8d13bbbc81bd7184ccce2d5c930542573d
7
+ data.tar.gz: 5d3d61428763bfdf1e43560a859542d56632f11853e4af5db1b8a83f612a73287540fb0b72935048192ff70517f177ebc66ffee9fd943c7b0a799b227577f708
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2025-12-08)
5
+ ------------------
6
+
7
+ * Feature - Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support.
8
+
4
9
  1.61.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -639,6 +639,13 @@ module Aws::IdentityStore
639
639
  # The user's birthdate in YYYY-MM-DD format. This field supports
640
640
  # standard date format for storing personal information.
641
641
  #
642
+ # @option params [Hash<String,Hash,Array,String,Numeric,Boolean>] :extensions
643
+ # A map with additional attribute extensions for the user. Each map key
644
+ # corresponds to an extension name, while map values represent extension
645
+ # data in `Document` type (not supported by Java V1, Go V1 and older
646
+ # versions of the CLI). `aws:identitystore:enterprise` is the only
647
+ # supported extension name.
648
+ #
642
649
  # @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
643
650
  #
644
651
  # * {Types::CreateUserResponse#identity_store_id #identity_store_id} => String
@@ -701,6 +708,9 @@ module Aws::IdentityStore
701
708
  # ],
702
709
  # website: "SensitiveStringType",
703
710
  # birthdate: "SensitiveStringType",
711
+ # extensions: {
712
+ # "ExtensionName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
713
+ # },
704
714
  # })
705
715
  #
706
716
  # @example Response structure
@@ -943,6 +953,11 @@ module Aws::IdentityStore
943
953
  # @option params [required, String] :user_id
944
954
  # The identifier for a user in the identity store.
945
955
  #
956
+ # @option params [Array<String>] :extensions
957
+ # A collection of extension names indicating what extensions the service
958
+ # should retrieve alongside other user attributes.
959
+ # `aws:identitystore:enterprise` is the only supported extension name.
960
+ #
946
961
  # @return [Types::DescribeUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
947
962
  #
948
963
  # * {Types::DescribeUserResponse#identity_store_id #identity_store_id} => String
@@ -969,12 +984,14 @@ module Aws::IdentityStore
969
984
  # * {Types::DescribeUserResponse#created_by #created_by} => String
970
985
  # * {Types::DescribeUserResponse#updated_at #updated_at} => Time
971
986
  # * {Types::DescribeUserResponse#updated_by #updated_by} => String
987
+ # * {Types::DescribeUserResponse#extensions #extensions} => Hash&lt;String,Hash,Array,String,Numeric,Boolean&gt;
972
988
  #
973
989
  # @example Request syntax with placeholder values
974
990
  #
975
991
  # resp = client.describe_user({
976
992
  # identity_store_id: "IdentityStoreId", # required
977
993
  # user_id: "ResourceId", # required
994
+ # extensions: ["ExtensionName"],
978
995
  # })
979
996
  #
980
997
  # @example Response structure
@@ -1028,6 +1045,8 @@ module Aws::IdentityStore
1028
1045
  # resp.created_by #=> String
1029
1046
  # resp.updated_at #=> Time
1030
1047
  # resp.updated_by #=> String
1048
+ # resp.extensions #=> Hash
1049
+ # resp.extensions["ExtensionName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1031
1050
  #
1032
1051
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/DescribeUser AWS API Documentation
1033
1052
  #
@@ -1516,6 +1535,11 @@ module Aws::IdentityStore
1516
1535
  # lower case letters. This value is generated at the time that a new
1517
1536
  # identity store is created.
1518
1537
  #
1538
+ # @option params [Array<String>] :extensions
1539
+ # A collection of extension names indicating what extensions the service
1540
+ # should retrieve alongside other user attributes.
1541
+ # `aws:identitystore:enterprise` is the only supported extension name.
1542
+ #
1519
1543
  # @option params [Integer] :max_results
1520
1544
  # The maximum number of results to be returned per request. This
1521
1545
  # parameter is used in the ` ListUsers` and `ListGroups` requests to
@@ -1544,6 +1568,7 @@ module Aws::IdentityStore
1544
1568
  #
1545
1569
  # resp = client.list_users({
1546
1570
  # identity_store_id: "IdentityStoreId", # required
1571
+ # extensions: ["ExtensionName"],
1547
1572
  # max_results: 1,
1548
1573
  # next_token: "NextToken",
1549
1574
  # filters: [
@@ -1606,6 +1631,8 @@ module Aws::IdentityStore
1606
1631
  # resp.users[0].created_by #=> String
1607
1632
  # resp.users[0].updated_at #=> Time
1608
1633
  # resp.users[0].updated_by #=> String
1634
+ # resp.users[0].extensions #=> Hash
1635
+ # resp.users[0].extensions["ExtensionName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1609
1636
  # resp.next_token #=> String
1610
1637
  #
1611
1638
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/ListUsers AWS API Documentation
@@ -1721,7 +1748,7 @@ module Aws::IdentityStore
1721
1748
  tracer: tracer
1722
1749
  )
1723
1750
  context[:gem_name] = 'aws-sdk-identitystore'
1724
- context[:gem_version] = '1.61.0'
1751
+ context[:gem_version] = '1.62.0'
1725
1752
  Seahorse::Client::Request.new(handlers, context)
1726
1753
  end
1727
1754
 
@@ -47,6 +47,9 @@ module Aws::IdentityStore
47
47
  Email = Shapes::StructureShape.new(name: 'Email')
48
48
  Emails = Shapes::ListShape.new(name: 'Emails')
49
49
  ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
50
+ ExtensionName = Shapes::StringShape.new(name: 'ExtensionName')
51
+ ExtensionNames = Shapes::ListShape.new(name: 'ExtensionNames')
52
+ Extensions = Shapes::MapShape.new(name: 'Extensions')
50
53
  ExternalId = Shapes::StructureShape.new(name: 'ExternalId')
51
54
  ExternalIdIdentifier = Shapes::StringShape.new(name: 'ExternalIdIdentifier')
52
55
  ExternalIdIssuer = Shapes::StringShape.new(name: 'ExternalIdIssuer')
@@ -182,6 +185,7 @@ module Aws::IdentityStore
182
185
  CreateUserRequest.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
183
186
  CreateUserRequest.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
184
187
  CreateUserRequest.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
188
+ CreateUserRequest.add_member(:extensions, Shapes::ShapeRef.new(shape: Extensions, location_name: "Extensions"))
185
189
  CreateUserRequest.struct_class = Types::CreateUserRequest
186
190
 
187
191
  CreateUserResponse.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
@@ -237,6 +241,7 @@ module Aws::IdentityStore
237
241
 
238
242
  DescribeUserRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
239
243
  DescribeUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
244
+ DescribeUserRequest.add_member(:extensions, Shapes::ShapeRef.new(shape: ExtensionNames, location_name: "Extensions"))
240
245
  DescribeUserRequest.struct_class = Types::DescribeUserRequest
241
246
 
242
247
  DescribeUserResponse.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
@@ -263,6 +268,7 @@ module Aws::IdentityStore
263
268
  DescribeUserResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
264
269
  DescribeUserResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
265
270
  DescribeUserResponse.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
271
+ DescribeUserResponse.add_member(:extensions, Shapes::ShapeRef.new(shape: Extensions, location_name: "Extensions"))
266
272
  DescribeUserResponse.struct_class = Types::DescribeUserResponse
267
273
 
268
274
  Email.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Value"))
@@ -272,6 +278,11 @@ module Aws::IdentityStore
272
278
 
273
279
  Emails.member = Shapes::ShapeRef.new(shape: Email)
274
280
 
281
+ ExtensionNames.member = Shapes::ShapeRef.new(shape: ExtensionName)
282
+
283
+ Extensions.key = Shapes::ShapeRef.new(shape: ExtensionName)
284
+ Extensions.value = Shapes::ShapeRef.new(shape: AttributeValue)
285
+
275
286
  ExternalId.add_member(:issuer, Shapes::ShapeRef.new(shape: ExternalIdIssuer, required: true, location_name: "Issuer"))
276
287
  ExternalId.add_member(:id, Shapes::ShapeRef.new(shape: ExternalIdIdentifier, required: true, location_name: "Id"))
277
288
  ExternalId.struct_class = Types::ExternalId
@@ -387,6 +398,7 @@ module Aws::IdentityStore
387
398
  ListGroupsResponse.struct_class = Types::ListGroupsResponse
388
399
 
389
400
  ListUsersRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
401
+ ListUsersRequest.add_member(:extensions, Shapes::ShapeRef.new(shape: ExtensionNames, location_name: "Extensions"))
390
402
  ListUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
391
403
  ListUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
392
404
  ListUsersRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, deprecated: true, location_name: "Filters", metadata: {"deprecatedMessage" => "Using filters with ListUsers API is deprecated, please use GetGroupId API instead."}))
@@ -484,6 +496,7 @@ module Aws::IdentityStore
484
496
  User.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
485
497
  User.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
486
498
  User.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
499
+ User.add_member(:extensions, Shapes::ShapeRef.new(shape: Extensions, location_name: "Extensions"))
487
500
  User.struct_class = Types::User
488
501
 
489
502
  Users.member = Shapes::ShapeRef.new(shape: User)
@@ -161,14 +161,9 @@ module Aws::IdentityStore
161
161
  # @return [String]
162
162
  #
163
163
  # @!attribute [rw] reason
164
- # This request cannot be completed for one of the following reasons:
165
- #
166
- # * Performing the requested operation would violate an existing
167
- # uniqueness claim in the identity store. Resolve the conflict
168
- # before retrying this request.
169
- #
170
- # * The requested resource was being concurrently modified by another
171
- # request.
164
+ # Indicates the reason for a conflict error when the service is unable
165
+ # to access a Customer Managed KMS key. For non-KMS permission errors,
166
+ # this field is not included.
172
167
  # @return [String]
173
168
  #
174
169
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/ConflictException AWS API Documentation
@@ -353,6 +348,14 @@ module Aws::IdentityStore
353
348
  # standard date format for storing personal information.
354
349
  # @return [String]
355
350
  #
351
+ # @!attribute [rw] extensions
352
+ # A map with additional attribute extensions for the user. Each map
353
+ # key corresponds to an extension name, while map values represent
354
+ # extension data in `Document` type (not supported by Java V1, Go V1
355
+ # and older versions of the CLI). `aws:identitystore:enterprise` is
356
+ # the only supported extension name.
357
+ # @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
358
+ #
356
359
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/CreateUserRequest AWS API Documentation
357
360
  #
358
361
  class CreateUserRequest < Struct.new(
@@ -372,7 +375,8 @@ module Aws::IdentityStore
372
375
  :timezone,
373
376
  :photos,
374
377
  :website,
375
- :birthdate)
378
+ :birthdate,
379
+ :extensions)
376
380
  SENSITIVE = [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
377
381
  include Aws::Structure
378
382
  end
@@ -614,11 +618,18 @@ module Aws::IdentityStore
614
618
  # The identifier for a user in the identity store.
615
619
  # @return [String]
616
620
  #
621
+ # @!attribute [rw] extensions
622
+ # A collection of extension names indicating what extensions the
623
+ # service should retrieve alongside other user attributes.
624
+ # `aws:identitystore:enterprise` is the only supported extension name.
625
+ # @return [Array<String>]
626
+ #
617
627
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/DescribeUserRequest AWS API Documentation
618
628
  #
619
629
  class DescribeUserRequest < Struct.new(
620
630
  :identity_store_id,
621
- :user_id)
631
+ :user_id,
632
+ :extensions)
622
633
  SENSITIVE = []
623
634
  include Aws::Structure
624
635
  end
@@ -728,6 +739,11 @@ module Aws::IdentityStore
728
739
  # The identifier of the user or system that last updated the user.
729
740
  # @return [String]
730
741
  #
742
+ # @!attribute [rw] extensions
743
+ # A map of explicitly requested attribute extensions associated with
744
+ # the user. Not populated if the user has no requested extensions.
745
+ # @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
746
+ #
731
747
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/DescribeUserResponse AWS API Documentation
732
748
  #
733
749
  class DescribeUserResponse < Struct.new(
@@ -754,7 +770,8 @@ module Aws::IdentityStore
754
770
  :created_at,
755
771
  :created_by,
756
772
  :updated_at,
757
- :updated_by)
773
+ :updated_by,
774
+ :extensions)
758
775
  SENSITIVE = [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
759
776
  include Aws::Structure
760
777
  end
@@ -1337,6 +1354,12 @@ module Aws::IdentityStore
1337
1354
  # new identity store is created.
1338
1355
  # @return [String]
1339
1356
  #
1357
+ # @!attribute [rw] extensions
1358
+ # A collection of extension names indicating what extensions the
1359
+ # service should retrieve alongside other user attributes.
1360
+ # `aws:identitystore:enterprise` is the only supported extension name.
1361
+ # @return [Array<String>]
1362
+ #
1340
1363
  # @!attribute [rw] max_results
1341
1364
  # The maximum number of results to be returned per request. This
1342
1365
  # parameter is used in the ` ListUsers` and `ListGroups` requests to
@@ -1361,6 +1384,7 @@ module Aws::IdentityStore
1361
1384
  #
1362
1385
  class ListUsersRequest < Struct.new(
1363
1386
  :identity_store_id,
1387
+ :extensions,
1364
1388
  :max_results,
1365
1389
  :next_token,
1366
1390
  :filters)
@@ -1820,6 +1844,11 @@ module Aws::IdentityStore
1820
1844
  # The identifier of the user or system that last updated the user.
1821
1845
  # @return [String]
1822
1846
  #
1847
+ # @!attribute [rw] extensions
1848
+ # A map of explicitly requested attribute extensions associated with
1849
+ # the user. Not populated if the user has no requested extensions.
1850
+ # @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
1851
+ #
1823
1852
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/User AWS API Documentation
1824
1853
  #
1825
1854
  class User < Struct.new(
@@ -1846,7 +1875,8 @@ module Aws::IdentityStore
1846
1875
  :created_at,
1847
1876
  :created_by,
1848
1877
  :updated_at,
1849
- :updated_by)
1878
+ :updated_by,
1879
+ :extensions)
1850
1880
  SENSITIVE = [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
1851
1881
  include Aws::Structure
1852
1882
  end
@@ -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.61.0'
57
+ GEM_VERSION = '1.62.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -167,7 +167,8 @@ module Aws
167
167
  },
168
168
  ],
169
169
  ?website: ::String,
170
- ?birthdate: ::String
170
+ ?birthdate: ::String,
171
+ ?extensions: Hash[::String, untyped]
171
172
  ) -> _CreateUserResponseSuccess
172
173
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserResponseSuccess
173
174
 
@@ -264,11 +265,13 @@ module Aws
264
265
  def created_by: () -> ::String
265
266
  def updated_at: () -> ::Time
266
267
  def updated_by: () -> ::String
268
+ def extensions: () -> ::Hash[::String, untyped]
267
269
  end
268
270
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_user-instance_method
269
271
  def describe_user: (
270
272
  identity_store_id: ::String,
271
- user_id: ::String
273
+ user_id: ::String,
274
+ ?extensions: Array[::String]
272
275
  ) -> _DescribeUserResponseSuccess
273
276
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUserResponseSuccess
274
277
 
@@ -400,6 +403,7 @@ module Aws
400
403
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#list_users-instance_method
401
404
  def list_users: (
402
405
  identity_store_id: ::String,
406
+ ?extensions: Array[::String],
403
407
  ?max_results: ::Integer,
404
408
  ?next_token: ::String,
405
409
  ?filters: Array[
data/sig/types.rbs CHANGED
@@ -98,6 +98,7 @@ module Aws::IdentityStore
98
98
  attr_accessor photos: ::Array[Types::Photo]
99
99
  attr_accessor website: ::String
100
100
  attr_accessor birthdate: ::String
101
+ attr_accessor extensions: ::Hash[::String, untyped]
101
102
  SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
102
103
  end
103
104
 
@@ -174,6 +175,7 @@ module Aws::IdentityStore
174
175
  class DescribeUserRequest
175
176
  attr_accessor identity_store_id: ::String
176
177
  attr_accessor user_id: ::String
178
+ attr_accessor extensions: ::Array[::String]
177
179
  SENSITIVE: []
178
180
  end
179
181
 
@@ -202,6 +204,7 @@ module Aws::IdentityStore
202
204
  attr_accessor created_by: ::String
203
205
  attr_accessor updated_at: ::Time
204
206
  attr_accessor updated_by: ::String
207
+ attr_accessor extensions: ::Hash[::String, untyped]
205
208
  SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
206
209
  end
207
210
 
@@ -356,6 +359,7 @@ module Aws::IdentityStore
356
359
 
357
360
  class ListUsersRequest
358
361
  attr_accessor identity_store_id: ::String
362
+ attr_accessor extensions: ::Array[::String]
359
363
  attr_accessor max_results: ::Integer
360
364
  attr_accessor next_token: ::String
361
365
  attr_accessor filters: ::Array[Types::Filter]
@@ -405,7 +409,7 @@ module Aws::IdentityStore
405
409
  end
406
410
 
407
411
  class ResourceNotFoundException
408
- attr_accessor resource_type: ("GROUP" | "USER" | "IDENTITY_STORE" | "GROUP_MEMBERSHIP")
412
+ attr_accessor resource_type: ("GROUP" | "USER" | "IDENTITY_STORE" | "GROUP_MEMBERSHIP" | "RESOURCE_POLICY")
409
413
  attr_accessor resource_id: ::String
410
414
  attr_accessor reason: ("KMS_KEY_NOT_FOUND")
411
415
  attr_accessor message: ::String
@@ -478,6 +482,7 @@ module Aws::IdentityStore
478
482
  attr_accessor created_by: ::String
479
483
  attr_accessor updated_at: ::Time
480
484
  attr_accessor updated_by: ::String
485
+ attr_accessor extensions: ::Hash[::String, untyped]
481
486
  SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
482
487
  end
483
488
 
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.61.0
4
+ version: 1.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services