aws-sdk-identitystore 1.62.0 → 1.63.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: 037fd1fe4c913317058cad4fca70040f88e41be3e1f811a6b3ae44c902c65880
4
- data.tar.gz: cc1b1f6551fae703b8be872e467185b6c881cf5c3a5cabb9c49bc3ee47464115
3
+ metadata.gz: f8a0eff9ffc10a97b8fd7c7f3c5def7252be9d90c76b0cdd606af6bb17f51460
4
+ data.tar.gz: 426a927eb08e0b20455b2268b62d3c90923f0f3fea5e94a6f2a8eaeb490a3349
5
5
  SHA512:
6
- metadata.gz: 9042440018207f7284c41e08c4bb2dccacb0972496fa510d183b91ad739ad71c746a08171b0a3060ac51c5a95e5c1d8d13bbbc81bd7184ccce2d5c930542573d
7
- data.tar.gz: 5d3d61428763bfdf1e43560a859542d56632f11853e4af5db1b8a83f612a73287540fb0b72935048192ff70517f177ebc66ffee9fd943c7b0a799b227577f708
6
+ metadata.gz: 43ba50a4214a2e1af96dc836ce028d4bc93ee40e57da0362bab77f17fef27a845a2549977b7d93499a83295000d413ea0bfd76a8a55b65f5dfc7ae5c478b06f4
7
+ data.tar.gz: eb57f7ef5da60cea0faf64611c7684e0c33ad41c11950f49875a8d4c6ed14ae0e288f511367564e99b2d4d1d333a8283a5f8ac7eb15b99e771e21ed428cf3f18
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2026-01-02)
5
+ ------------------
6
+
7
+ * Feature - This change introduces "Roles" attribute for User entities supported by AWS Identity Store SDK.
8
+
4
9
  1.62.0 (2025-12-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -639,6 +639,9 @@ 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 [Array<Types::Role>] :roles
643
+ # A list of `Role` objects containing roles associated with the user.
644
+ #
642
645
  # @option params [Hash<String,Hash,Array,String,Numeric,Boolean>] :extensions
643
646
  # A map with additional attribute extensions for the user. Each map key
644
647
  # corresponds to an extension name, while map values represent extension
@@ -708,6 +711,13 @@ module Aws::IdentityStore
708
711
  # ],
709
712
  # website: "SensitiveStringType",
710
713
  # birthdate: "SensitiveStringType",
714
+ # roles: [
715
+ # {
716
+ # value: "SensitiveStringType",
717
+ # type: "SensitiveStringType",
718
+ # primary: false,
719
+ # },
720
+ # ],
711
721
  # extensions: {
712
722
  # "ExtensionName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
713
723
  # },
@@ -980,6 +990,7 @@ module Aws::IdentityStore
980
990
  # * {Types::DescribeUserResponse#photos #photos} => Array&lt;Types::Photo&gt;
981
991
  # * {Types::DescribeUserResponse#website #website} => String
982
992
  # * {Types::DescribeUserResponse#birthdate #birthdate} => String
993
+ # * {Types::DescribeUserResponse#roles #roles} => Array&lt;Types::Role&gt;
983
994
  # * {Types::DescribeUserResponse#created_at #created_at} => Time
984
995
  # * {Types::DescribeUserResponse#created_by #created_by} => String
985
996
  # * {Types::DescribeUserResponse#updated_at #updated_at} => Time
@@ -1041,6 +1052,10 @@ module Aws::IdentityStore
1041
1052
  # resp.photos[0].primary #=> Boolean
1042
1053
  # resp.website #=> String
1043
1054
  # resp.birthdate #=> String
1055
+ # resp.roles #=> Array
1056
+ # resp.roles[0].value #=> String
1057
+ # resp.roles[0].type #=> String
1058
+ # resp.roles[0].primary #=> Boolean
1044
1059
  # resp.created_at #=> Time
1045
1060
  # resp.created_by #=> String
1046
1061
  # resp.updated_at #=> Time
@@ -1627,6 +1642,10 @@ module Aws::IdentityStore
1627
1642
  # resp.users[0].photos[0].primary #=> Boolean
1628
1643
  # resp.users[0].website #=> String
1629
1644
  # resp.users[0].birthdate #=> String
1645
+ # resp.users[0].roles #=> Array
1646
+ # resp.users[0].roles[0].value #=> String
1647
+ # resp.users[0].roles[0].type #=> String
1648
+ # resp.users[0].roles[0].primary #=> Boolean
1630
1649
  # resp.users[0].created_at #=> Time
1631
1650
  # resp.users[0].created_by #=> String
1632
1651
  # resp.users[0].updated_at #=> Time
@@ -1748,7 +1767,7 @@ module Aws::IdentityStore
1748
1767
  tracer: tracer
1749
1768
  )
1750
1769
  context[:gem_name] = 'aws-sdk-identitystore'
1751
- context[:gem_version] = '1.62.0'
1770
+ context[:gem_version] = '1.63.0'
1752
1771
  Seahorse::Client::Request.new(handlers, context)
1753
1772
  end
1754
1773
 
@@ -23,6 +23,7 @@ module Aws::IdentityStore
23
23
  AttributeOperations = Shapes::ListShape.new(name: 'AttributeOperations')
24
24
  AttributePath = Shapes::StringShape.new(name: 'AttributePath')
25
25
  AttributeValue = Shapes::DocumentShape.new(name: 'AttributeValue', document: true)
26
+ BooleanType = Shapes::BooleanShape.new(name: 'BooleanType')
26
27
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
27
28
  ConflictExceptionReason = Shapes::StringShape.new(name: 'ConflictExceptionReason')
28
29
  CreateGroupMembershipRequest = Shapes::StructureShape.new(name: 'CreateGroupMembershipRequest')
@@ -96,7 +97,8 @@ module Aws::IdentityStore
96
97
  ResourceNotFoundExceptionReason = Shapes::StringShape.new(name: 'ResourceNotFoundExceptionReason')
97
98
  ResourceType = Shapes::StringShape.new(name: 'ResourceType')
98
99
  RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
99
- SensitiveBooleanType = Shapes::BooleanShape.new(name: 'SensitiveBooleanType')
100
+ Role = Shapes::StructureShape.new(name: 'Role')
101
+ Roles = Shapes::ListShape.new(name: 'Roles')
100
102
  SensitiveStringType = Shapes::StringShape.new(name: 'SensitiveStringType')
101
103
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
102
104
  StringType = Shapes::StringShape.new(name: 'StringType')
@@ -126,7 +128,7 @@ module Aws::IdentityStore
126
128
  Address.add_member(:country, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Country"))
127
129
  Address.add_member(:formatted, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Formatted"))
128
130
  Address.add_member(:type, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Type"))
129
- Address.add_member(:primary, Shapes::ShapeRef.new(shape: SensitiveBooleanType, location_name: "Primary"))
131
+ Address.add_member(:primary, Shapes::ShapeRef.new(shape: BooleanType, location_name: "Primary"))
130
132
  Address.struct_class = Types::Address
131
133
 
132
134
  Addresses.member = Shapes::ShapeRef.new(shape: Address)
@@ -185,6 +187,7 @@ module Aws::IdentityStore
185
187
  CreateUserRequest.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
186
188
  CreateUserRequest.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
187
189
  CreateUserRequest.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
190
+ CreateUserRequest.add_member(:roles, Shapes::ShapeRef.new(shape: Roles, location_name: "Roles"))
188
191
  CreateUserRequest.add_member(:extensions, Shapes::ShapeRef.new(shape: Extensions, location_name: "Extensions"))
189
192
  CreateUserRequest.struct_class = Types::CreateUserRequest
190
193
 
@@ -264,6 +267,7 @@ module Aws::IdentityStore
264
267
  DescribeUserResponse.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
265
268
  DescribeUserResponse.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
266
269
  DescribeUserResponse.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
270
+ DescribeUserResponse.add_member(:roles, Shapes::ShapeRef.new(shape: Roles, location_name: "Roles"))
267
271
  DescribeUserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
268
272
  DescribeUserResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
269
273
  DescribeUserResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
@@ -273,7 +277,7 @@ module Aws::IdentityStore
273
277
 
274
278
  Email.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Value"))
275
279
  Email.add_member(:type, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Type"))
276
- Email.add_member(:primary, Shapes::ShapeRef.new(shape: SensitiveBooleanType, location_name: "Primary"))
280
+ Email.add_member(:primary, Shapes::ShapeRef.new(shape: BooleanType, location_name: "Primary"))
277
281
  Email.struct_class = Types::Email
278
282
 
279
283
  Emails.member = Shapes::ShapeRef.new(shape: Email)
@@ -345,7 +349,7 @@ module Aws::IdentityStore
345
349
 
346
350
  GroupMembershipExistenceResult.add_member(:group_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "GroupId"))
347
351
  GroupMembershipExistenceResult.add_member(:member_id, Shapes::ShapeRef.new(shape: MemberId, location_name: "MemberId"))
348
- GroupMembershipExistenceResult.add_member(:membership_exists, Shapes::ShapeRef.new(shape: SensitiveBooleanType, location_name: "MembershipExists"))
352
+ GroupMembershipExistenceResult.add_member(:membership_exists, Shapes::ShapeRef.new(shape: BooleanType, location_name: "MembershipExists"))
349
353
  GroupMembershipExistenceResult.struct_class = Types::GroupMembershipExistenceResult
350
354
 
351
355
  GroupMembershipExistenceResults.member = Shapes::ShapeRef.new(shape: GroupMembershipExistenceResult)
@@ -424,7 +428,7 @@ module Aws::IdentityStore
424
428
 
425
429
  PhoneNumber.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Value"))
426
430
  PhoneNumber.add_member(:type, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Type"))
427
- PhoneNumber.add_member(:primary, Shapes::ShapeRef.new(shape: SensitiveBooleanType, location_name: "Primary"))
431
+ PhoneNumber.add_member(:primary, Shapes::ShapeRef.new(shape: BooleanType, location_name: "Primary"))
428
432
  PhoneNumber.struct_class = Types::PhoneNumber
429
433
 
430
434
  PhoneNumbers.member = Shapes::ShapeRef.new(shape: PhoneNumber)
@@ -432,7 +436,7 @@ module Aws::IdentityStore
432
436
  Photo.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, required: true, location_name: "Value"))
433
437
  Photo.add_member(:type, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Type"))
434
438
  Photo.add_member(:display, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Display"))
435
- Photo.add_member(:primary, Shapes::ShapeRef.new(shape: SensitiveBooleanType, location_name: "Primary"))
439
+ Photo.add_member(:primary, Shapes::ShapeRef.new(shape: BooleanType, location_name: "Primary"))
436
440
  Photo.struct_class = Types::Photo
437
441
 
438
442
  Photos.member = Shapes::ShapeRef.new(shape: Photo)
@@ -444,6 +448,13 @@ module Aws::IdentityStore
444
448
  ResourceNotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "RequestId"))
445
449
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
446
450
 
451
+ Role.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Value"))
452
+ Role.add_member(:type, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Type"))
453
+ Role.add_member(:primary, Shapes::ShapeRef.new(shape: BooleanType, location_name: "Primary"))
454
+ Role.struct_class = Types::Role
455
+
456
+ Roles.member = Shapes::ShapeRef.new(shape: Role)
457
+
447
458
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
448
459
  ServiceQuotaExceededException.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "RequestId"))
449
460
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
@@ -492,6 +503,7 @@ module Aws::IdentityStore
492
503
  User.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
493
504
  User.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
494
505
  User.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
506
+ User.add_member(:roles, Shapes::ShapeRef.new(shape: Roles, location_name: "Roles"))
495
507
  User.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
496
508
  User.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
497
509
  User.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
@@ -84,7 +84,7 @@ module Aws::IdentityStore
84
84
  :formatted,
85
85
  :type,
86
86
  :primary)
87
- SENSITIVE = [:street_address, :locality, :region, :postal_code, :country, :formatted, :type, :primary]
87
+ SENSITIVE = [:street_address, :locality, :region, :postal_code, :country, :formatted, :type]
88
88
  include Aws::Structure
89
89
  end
90
90
 
@@ -348,6 +348,10 @@ module Aws::IdentityStore
348
348
  # standard date format for storing personal information.
349
349
  # @return [String]
350
350
  #
351
+ # @!attribute [rw] roles
352
+ # A list of `Role` objects containing roles associated with the user.
353
+ # @return [Array<Types::Role>]
354
+ #
351
355
  # @!attribute [rw] extensions
352
356
  # A map with additional attribute extensions for the user. Each map
353
357
  # key corresponds to an extension name, while map values represent
@@ -376,6 +380,7 @@ module Aws::IdentityStore
376
380
  :photos,
377
381
  :website,
378
382
  :birthdate,
383
+ :roles,
379
384
  :extensions)
380
385
  SENSITIVE = [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
381
386
  include Aws::Structure
@@ -723,6 +728,10 @@ module Aws::IdentityStore
723
728
  # stored birthdate information for the user.
724
729
  # @return [String]
725
730
  #
731
+ # @!attribute [rw] roles
732
+ # The roles of the user.
733
+ # @return [Array<Types::Role>]
734
+ #
726
735
  # @!attribute [rw] created_at
727
736
  # The date and time the user was created.
728
737
  # @return [Time]
@@ -767,6 +776,7 @@ module Aws::IdentityStore
767
776
  :photos,
768
777
  :website,
769
778
  :birthdate,
779
+ :roles,
770
780
  :created_at,
771
781
  :created_by,
772
782
  :updated_at,
@@ -798,7 +808,7 @@ module Aws::IdentityStore
798
808
  :value,
799
809
  :type,
800
810
  :primary)
801
- SENSITIVE = [:value, :type, :primary]
811
+ SENSITIVE = [:value, :type]
802
812
  include Aws::Structure
803
813
  end
804
814
 
@@ -1105,7 +1115,7 @@ module Aws::IdentityStore
1105
1115
  :group_id,
1106
1116
  :member_id,
1107
1117
  :membership_exists)
1108
- SENSITIVE = [:membership_exists]
1118
+ SENSITIVE = []
1109
1119
  include Aws::Structure
1110
1120
  end
1111
1121
 
@@ -1499,7 +1509,7 @@ module Aws::IdentityStore
1499
1509
  :value,
1500
1510
  :type,
1501
1511
  :primary)
1502
- SENSITIVE = [:value, :type, :primary]
1512
+ SENSITIVE = [:value, :type]
1503
1513
  include Aws::Structure
1504
1514
  end
1505
1515
 
@@ -1534,7 +1544,7 @@ module Aws::IdentityStore
1534
1544
  :type,
1535
1545
  :display,
1536
1546
  :primary)
1537
- SENSITIVE = [:value, :type, :display, :primary]
1547
+ SENSITIVE = [:value, :type, :display]
1538
1548
  include Aws::Structure
1539
1549
  end
1540
1550
 
@@ -1584,6 +1594,31 @@ module Aws::IdentityStore
1584
1594
  include Aws::Structure
1585
1595
  end
1586
1596
 
1597
+ # The role associated with the user.
1598
+ #
1599
+ # @!attribute [rw] value
1600
+ # A string containing a role name. For example, "Researcher."
1601
+ # @return [String]
1602
+ #
1603
+ # @!attribute [rw] type
1604
+ # A string representing the type of role. For example, "Work."
1605
+ # @return [String]
1606
+ #
1607
+ # @!attribute [rw] primary
1608
+ # A Boolean value representing whether this is the primary role for
1609
+ # the associated resource.
1610
+ # @return [Boolean]
1611
+ #
1612
+ # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/Role AWS API Documentation
1613
+ #
1614
+ class Role < Struct.new(
1615
+ :value,
1616
+ :type,
1617
+ :primary)
1618
+ SENSITIVE = [:value, :type]
1619
+ include Aws::Structure
1620
+ end
1621
+
1587
1622
  # The request would cause the number of users or groups in the identity
1588
1623
  # store to exceed the maximum allowed.
1589
1624
  #
@@ -1828,6 +1863,10 @@ module Aws::IdentityStore
1828
1863
  # personal birthdate information for the user.
1829
1864
  # @return [String]
1830
1865
  #
1866
+ # @!attribute [rw] roles
1867
+ # A list of `Role` objects containing roles associated with the user.
1868
+ # @return [Array<Types::Role>]
1869
+ #
1831
1870
  # @!attribute [rw] created_at
1832
1871
  # The date and time the user was created.
1833
1872
  # @return [Time]
@@ -1872,6 +1911,7 @@ module Aws::IdentityStore
1872
1911
  :photos,
1873
1912
  :website,
1874
1913
  :birthdate,
1914
+ :roles,
1875
1915
  :created_at,
1876
1916
  :created_by,
1877
1917
  :updated_at,
@@ -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.62.0'
57
+ GEM_VERSION = '1.63.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -168,6 +168,13 @@ module Aws
168
168
  ],
169
169
  ?website: ::String,
170
170
  ?birthdate: ::String,
171
+ ?roles: Array[
172
+ {
173
+ value: ::String?,
174
+ type: ::String?,
175
+ primary: bool?
176
+ },
177
+ ],
171
178
  ?extensions: Hash[::String, untyped]
172
179
  ) -> _CreateUserResponseSuccess
173
180
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserResponseSuccess
@@ -261,6 +268,7 @@ module Aws
261
268
  def photos: () -> ::Array[Types::Photo]
262
269
  def website: () -> ::String
263
270
  def birthdate: () -> ::String
271
+ def roles: () -> ::Array[Types::Role]
264
272
  def created_at: () -> ::Time
265
273
  def created_by: () -> ::String
266
274
  def updated_at: () -> ::Time
data/sig/types.rbs CHANGED
@@ -24,7 +24,7 @@ module Aws::IdentityStore
24
24
  attr_accessor formatted: ::String
25
25
  attr_accessor type: ::String
26
26
  attr_accessor primary: bool
27
- SENSITIVE: [:street_address, :locality, :region, :postal_code, :country, :formatted, :type, :primary]
27
+ SENSITIVE: [:street_address, :locality, :region, :postal_code, :country, :formatted, :type]
28
28
  end
29
29
 
30
30
  class AlternateIdentifier
@@ -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 roles: ::Array[Types::Role]
101
102
  attr_accessor extensions: ::Hash[::String, untyped]
102
103
  SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
103
104
  end
@@ -200,6 +201,7 @@ module Aws::IdentityStore
200
201
  attr_accessor photos: ::Array[Types::Photo]
201
202
  attr_accessor website: ::String
202
203
  attr_accessor birthdate: ::String
204
+ attr_accessor roles: ::Array[Types::Role]
203
205
  attr_accessor created_at: ::Time
204
206
  attr_accessor created_by: ::String
205
207
  attr_accessor updated_at: ::Time
@@ -212,7 +214,7 @@ module Aws::IdentityStore
212
214
  attr_accessor value: ::String
213
215
  attr_accessor type: ::String
214
216
  attr_accessor primary: bool
215
- SENSITIVE: [:value, :type, :primary]
217
+ SENSITIVE: [:value, :type]
216
218
  end
217
219
 
218
220
  class ExternalId
@@ -293,7 +295,7 @@ module Aws::IdentityStore
293
295
  attr_accessor group_id: ::String
294
296
  attr_accessor member_id: Types::MemberId
295
297
  attr_accessor membership_exists: bool
296
- SENSITIVE: [:membership_exists]
298
+ SENSITIVE: []
297
299
  end
298
300
 
299
301
  class InternalServerException
@@ -397,7 +399,7 @@ module Aws::IdentityStore
397
399
  attr_accessor value: ::String
398
400
  attr_accessor type: ::String
399
401
  attr_accessor primary: bool
400
- SENSITIVE: [:value, :type, :primary]
402
+ SENSITIVE: [:value, :type]
401
403
  end
402
404
 
403
405
  class Photo
@@ -405,7 +407,7 @@ module Aws::IdentityStore
405
407
  attr_accessor type: ::String
406
408
  attr_accessor display: ::String
407
409
  attr_accessor primary: bool
408
- SENSITIVE: [:value, :type, :display, :primary]
410
+ SENSITIVE: [:value, :type, :display]
409
411
  end
410
412
 
411
413
  class ResourceNotFoundException
@@ -417,6 +419,13 @@ module Aws::IdentityStore
417
419
  SENSITIVE: []
418
420
  end
419
421
 
422
+ class Role
423
+ attr_accessor value: ::String
424
+ attr_accessor type: ::String
425
+ attr_accessor primary: bool
426
+ SENSITIVE: [:value, :type]
427
+ end
428
+
420
429
  class ServiceQuotaExceededException
421
430
  attr_accessor message: ::String
422
431
  attr_accessor request_id: ::String
@@ -478,6 +487,7 @@ module Aws::IdentityStore
478
487
  attr_accessor photos: ::Array[Types::Photo]
479
488
  attr_accessor website: ::String
480
489
  attr_accessor birthdate: ::String
490
+ attr_accessor roles: ::Array[Types::Role]
481
491
  attr_accessor created_at: ::Time
482
492
  attr_accessor created_by: ::String
483
493
  attr_accessor updated_at: ::Time
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.62.0
4
+ version: 1.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services