aws-sdk-identitystore 1.23.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-identitystore/client.rb +20 -15
- data/lib/aws-sdk-identitystore/endpoint_provider.rb +29 -26
- data/lib/aws-sdk-identitystore/types.rb +43 -40
- data/lib/aws-sdk-identitystore.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3675a6bdceda583b06cdb53529dbbef39df89dfbfd812086da3d7e0268ce22a1
|
4
|
+
data.tar.gz: ab90b48019d6b26960538069a2e8baf79ac04e4d8427ad06dac06dbedfe6100e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3edf748033e912b75d27b8c41564df1bbd51dec98628a17dae6feee4595e4fb6594c5cc4d0dc97c3cb5bdf7b9014eb898d1675a0deaa5359a1ff11acce53a1b5
|
7
|
+
data.tar.gz: 3d5b701207b9d5877fc501c8301dad8fdc3f5f30381d969a4f4579ce85e3ac943fd5f38c1fabec65955463e1d092b7a4f61fddc8202941980c55ad57a67b1f95
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.24.0
|
@@ -385,7 +385,9 @@ module Aws::IdentityStore
|
|
385
385
|
#
|
386
386
|
# @option params [String] :display_name
|
387
387
|
# A string containing the name of the group. This value is commonly
|
388
|
-
# displayed when the group is referenced.
|
388
|
+
# displayed when the group is referenced. "Administrator" and
|
389
|
+
# "AWSAdministrators" are reserved names and can't be used for users
|
390
|
+
# or groups.
|
389
391
|
#
|
390
392
|
# @option params [String] :description
|
391
393
|
# A string containing the description of the group.
|
@@ -461,7 +463,7 @@ module Aws::IdentityStore
|
|
461
463
|
req.send_request(options)
|
462
464
|
end
|
463
465
|
|
464
|
-
# Creates a
|
466
|
+
# Creates a user within the specified identity store.
|
465
467
|
#
|
466
468
|
# @option params [required, String] :identity_store_id
|
467
469
|
# The globally unique identifier for the identity store.
|
@@ -471,13 +473,14 @@ module Aws::IdentityStore
|
|
471
473
|
# characters. This value can consist of letters, accented characters,
|
472
474
|
# symbols, numbers, and punctuation. This value is specified at the time
|
473
475
|
# the user is created and stored as an attribute of the user object in
|
474
|
-
# the identity store.
|
476
|
+
# the identity store. "Administrator" and "AWSAdministrators" are
|
477
|
+
# reserved names and can't be used for users or groups.
|
475
478
|
#
|
476
479
|
# @option params [Types::Name] :name
|
477
|
-
# An object containing the user
|
480
|
+
# An object containing the name of the user.
|
478
481
|
#
|
479
482
|
# @option params [String] :display_name
|
480
|
-
# A string containing the user
|
483
|
+
# A string containing the name of the user. This value is typically
|
481
484
|
# formatted for display when the user is referenced. For example, "John
|
482
485
|
# Doe."
|
483
486
|
#
|
@@ -485,7 +488,7 @@ module Aws::IdentityStore
|
|
485
488
|
# A string containing an alternate name for the user.
|
486
489
|
#
|
487
490
|
# @option params [String] :profile_url
|
488
|
-
# A string containing a URL that
|
491
|
+
# A string containing a URL that might be associated with the user.
|
489
492
|
#
|
490
493
|
# @option params [Array<Types::Email>] :emails
|
491
494
|
# A list of `Email` objects containing email addresses associated with
|
@@ -500,22 +503,22 @@ module Aws::IdentityStore
|
|
500
503
|
# with the user.
|
501
504
|
#
|
502
505
|
# @option params [String] :user_type
|
503
|
-
# A string indicating the user
|
504
|
-
#
|
506
|
+
# A string indicating the type of user. Possible values are left
|
507
|
+
# unspecified. The value can vary based on your specific use case.
|
505
508
|
#
|
506
509
|
# @option params [String] :title
|
507
|
-
# A string containing the user
|
508
|
-
# unspecified
|
510
|
+
# A string containing the title of the user. Possible values are left
|
511
|
+
# unspecified. The value can vary based on your specific use case.
|
509
512
|
#
|
510
513
|
# @option params [String] :preferred_language
|
511
514
|
# A string containing the preferred language of the user. For example,
|
512
515
|
# "American English" or "en-us."
|
513
516
|
#
|
514
517
|
# @option params [String] :locale
|
515
|
-
# A string containing the
|
518
|
+
# A string containing the geographical region or location of the user.
|
516
519
|
#
|
517
520
|
# @option params [String] :timezone
|
518
|
-
# A string containing the
|
521
|
+
# A string containing the time zone of the user.
|
519
522
|
#
|
520
523
|
# @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
521
524
|
#
|
@@ -846,7 +849,8 @@ module Aws::IdentityStore
|
|
846
849
|
# A unique identifier for a user or group that is not the primary
|
847
850
|
# identifier. This value can be an identifier from an external identity
|
848
851
|
# provider (IdP) that is associated with the user, the group, or a
|
849
|
-
# unique attribute. For
|
852
|
+
# unique attribute. For the unique attribute, the only valid path is
|
853
|
+
# `displayName`.
|
850
854
|
#
|
851
855
|
# @return [Types::GetGroupIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
852
856
|
#
|
@@ -934,7 +938,8 @@ module Aws::IdentityStore
|
|
934
938
|
# A unique identifier for a user or group that is not the primary
|
935
939
|
# identifier. This value can be an identifier from an external identity
|
936
940
|
# provider (IdP) that is associated with the user, the group, or a
|
937
|
-
# unique attribute. For
|
941
|
+
# unique attribute. For the unique attribute, the only valid paths are
|
942
|
+
# `userName` and `emails.value`.
|
938
943
|
#
|
939
944
|
# @return [Types::GetUserIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
940
945
|
#
|
@@ -1389,7 +1394,7 @@ module Aws::IdentityStore
|
|
1389
1394
|
params: params,
|
1390
1395
|
config: config)
|
1391
1396
|
context[:gem_name] = 'aws-sdk-identitystore'
|
1392
|
-
context[:gem_version] = '1.
|
1397
|
+
context[:gem_version] = '1.24.0'
|
1393
1398
|
Seahorse::Client::Request.new(handlers, context)
|
1394
1399
|
end
|
1395
1400
|
|
@@ -14,39 +14,42 @@ module Aws::IdentityStore
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.
|
19
|
-
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
26
20
|
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
28
|
-
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
32
23
|
end
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
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"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
37
31
|
end
|
38
|
-
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
39
33
|
end
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
|
+
end
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
|
+
end
|
41
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
42
|
+
end
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
44
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
|
+
end
|
47
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
48
|
end
|
46
|
-
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
47
50
|
end
|
48
|
-
return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
49
51
|
end
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
50
53
|
raise ArgumentError, 'No endpoint could be resolved'
|
51
54
|
|
52
55
|
end
|
@@ -84,7 +84,7 @@ module Aws::IdentityStore
|
|
84
84
|
# A unique identifier for a user or group that is not the primary
|
85
85
|
# identifier. This value can be an identifier from an external identity
|
86
86
|
# provider (IdP) that is associated with the user, the group, or a
|
87
|
-
# unique attribute.
|
87
|
+
# unique attribute.
|
88
88
|
#
|
89
89
|
# @note AlternateIdentifier is a union - when making an API calls you must set exactly one of the members.
|
90
90
|
#
|
@@ -222,7 +222,9 @@ module Aws::IdentityStore
|
|
222
222
|
#
|
223
223
|
# @!attribute [rw] display_name
|
224
224
|
# A string containing the name of the group. This value is commonly
|
225
|
-
# displayed when the group is referenced.
|
225
|
+
# displayed when the group is referenced. "Administrator" and
|
226
|
+
# "AWSAdministrators" are reserved names and can't be used for
|
227
|
+
# users or groups.
|
226
228
|
# @return [String]
|
227
229
|
#
|
228
230
|
# @!attribute [rw] description
|
@@ -265,15 +267,17 @@ module Aws::IdentityStore
|
|
265
267
|
# characters. This value can consist of letters, accented characters,
|
266
268
|
# symbols, numbers, and punctuation. This value is specified at the
|
267
269
|
# time the user is created and stored as an attribute of the user
|
268
|
-
# object in the identity store.
|
270
|
+
# object in the identity store. "Administrator" and
|
271
|
+
# "AWSAdministrators" are reserved names and can't be used for
|
272
|
+
# users or groups.
|
269
273
|
# @return [String]
|
270
274
|
#
|
271
275
|
# @!attribute [rw] name
|
272
|
-
# An object containing the user
|
276
|
+
# An object containing the name of the user.
|
273
277
|
# @return [Types::Name]
|
274
278
|
#
|
275
279
|
# @!attribute [rw] display_name
|
276
|
-
# A string containing the user
|
280
|
+
# A string containing the name of the user. This value is typically
|
277
281
|
# formatted for display when the user is referenced. For example,
|
278
282
|
# "John Doe."
|
279
283
|
# @return [String]
|
@@ -283,7 +287,7 @@ module Aws::IdentityStore
|
|
283
287
|
# @return [String]
|
284
288
|
#
|
285
289
|
# @!attribute [rw] profile_url
|
286
|
-
# A string containing a URL that
|
290
|
+
# A string containing a URL that might be associated with the user.
|
287
291
|
# @return [String]
|
288
292
|
#
|
289
293
|
# @!attribute [rw] emails
|
@@ -302,14 +306,13 @@ module Aws::IdentityStore
|
|
302
306
|
# @return [Array<Types::PhoneNumber>]
|
303
307
|
#
|
304
308
|
# @!attribute [rw] user_type
|
305
|
-
# A string indicating the user
|
306
|
-
#
|
309
|
+
# A string indicating the type of user. Possible values are left
|
310
|
+
# unspecified. The value can vary based on your specific use case.
|
307
311
|
# @return [String]
|
308
312
|
#
|
309
313
|
# @!attribute [rw] title
|
310
|
-
# A string containing the user
|
311
|
-
# unspecified
|
312
|
-
# needs.
|
314
|
+
# A string containing the title of the user. Possible values are left
|
315
|
+
# unspecified. The value can vary based on your specific use case.
|
313
316
|
# @return [String]
|
314
317
|
#
|
315
318
|
# @!attribute [rw] preferred_language
|
@@ -318,11 +321,11 @@ module Aws::IdentityStore
|
|
318
321
|
# @return [String]
|
319
322
|
#
|
320
323
|
# @!attribute [rw] locale
|
321
|
-
# A string containing the
|
324
|
+
# A string containing the geographical region or location of the user.
|
322
325
|
# @return [String]
|
323
326
|
#
|
324
327
|
# @!attribute [rw] timezone
|
325
|
-
# A string containing the
|
328
|
+
# A string containing the time zone of the user.
|
326
329
|
# @return [String]
|
327
330
|
#
|
328
331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/CreateUserRequest AWS API Documentation
|
@@ -572,7 +575,7 @@ module Aws::IdentityStore
|
|
572
575
|
# @return [Types::Name]
|
573
576
|
#
|
574
577
|
# @!attribute [rw] display_name
|
575
|
-
# The
|
578
|
+
# The display name of the user.
|
576
579
|
# @return [String]
|
577
580
|
#
|
578
581
|
# @!attribute [rw] nick_name
|
@@ -584,11 +587,11 @@ module Aws::IdentityStore
|
|
584
587
|
# @return [String]
|
585
588
|
#
|
586
589
|
# @!attribute [rw] emails
|
587
|
-
# The
|
590
|
+
# The email address of the user.
|
588
591
|
# @return [Array<Types::Email>]
|
589
592
|
#
|
590
593
|
# @!attribute [rw] addresses
|
591
|
-
# The
|
594
|
+
# The physical address of the user.
|
592
595
|
# @return [Array<Types::Address>]
|
593
596
|
#
|
594
597
|
# @!attribute [rw] phone_numbers
|
@@ -596,11 +599,11 @@ module Aws::IdentityStore
|
|
596
599
|
# @return [Array<Types::PhoneNumber>]
|
597
600
|
#
|
598
601
|
# @!attribute [rw] user_type
|
599
|
-
# A string indicating the user
|
602
|
+
# A string indicating the type of user.
|
600
603
|
# @return [String]
|
601
604
|
#
|
602
605
|
# @!attribute [rw] title
|
603
|
-
# A string containing the user
|
606
|
+
# A string containing the title of the user.
|
604
607
|
# @return [String]
|
605
608
|
#
|
606
609
|
# @!attribute [rw] preferred_language
|
@@ -608,7 +611,7 @@ module Aws::IdentityStore
|
|
608
611
|
# @return [String]
|
609
612
|
#
|
610
613
|
# @!attribute [rw] locale
|
611
|
-
# A string containing the
|
614
|
+
# A string containing the geographical region or location of the user.
|
612
615
|
# @return [String]
|
613
616
|
#
|
614
617
|
# @!attribute [rw] timezone
|
@@ -722,7 +725,8 @@ module Aws::IdentityStore
|
|
722
725
|
# A unique identifier for a user or group that is not the primary
|
723
726
|
# identifier. This value can be an identifier from an external
|
724
727
|
# identity provider (IdP) that is associated with the user, the group,
|
725
|
-
# or a unique attribute. For
|
728
|
+
# or a unique attribute. For the unique attribute, the only valid path
|
729
|
+
# is `displayName`.
|
726
730
|
# @return [Types::AlternateIdentifier]
|
727
731
|
#
|
728
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/GetGroupIdRequest AWS API Documentation
|
@@ -800,7 +804,8 @@ module Aws::IdentityStore
|
|
800
804
|
# A unique identifier for a user or group that is not the primary
|
801
805
|
# identifier. This value can be an identifier from an external
|
802
806
|
# identity provider (IdP) that is associated with the user, the group,
|
803
|
-
# or a unique attribute. For
|
807
|
+
# or a unique attribute. For the unique attribute, the only valid
|
808
|
+
# paths are `userName` and `emails.value`.
|
804
809
|
# @return [Types::AlternateIdentifier]
|
805
810
|
#
|
806
811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/GetUserIdRequest AWS API Documentation
|
@@ -829,15 +834,15 @@ module Aws::IdentityStore
|
|
829
834
|
include Aws::Structure
|
830
835
|
end
|
831
836
|
|
832
|
-
# A group object that contains
|
833
|
-
#
|
837
|
+
# A group object that contains the metadata and attributes for a
|
838
|
+
# specified group.
|
834
839
|
#
|
835
840
|
# @!attribute [rw] group_id
|
836
841
|
# The identifier for a group in the identity store.
|
837
842
|
# @return [String]
|
838
843
|
#
|
839
844
|
# @!attribute [rw] display_name
|
840
|
-
# The
|
845
|
+
# The display name value for the group. The length limit is 1,024
|
841
846
|
# characters. This value can consist of letters, accented characters,
|
842
847
|
# symbols, numbers, punctuation, tab, new line, carriage return,
|
843
848
|
# space, and nonbreaking space in this attribute. This value is
|
@@ -943,8 +948,7 @@ module Aws::IdentityStore
|
|
943
948
|
# @return [String]
|
944
949
|
#
|
945
950
|
# @!attribute [rw] retry_after_seconds
|
946
|
-
# The number of seconds
|
947
|
-
# the next request.
|
951
|
+
# The number of seconds to wait before retrying the next request.
|
948
952
|
# @return [Integer]
|
949
953
|
#
|
950
954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/InternalServerException AWS API Documentation
|
@@ -1392,8 +1396,7 @@ module Aws::IdentityStore
|
|
1392
1396
|
# @return [String]
|
1393
1397
|
#
|
1394
1398
|
# @!attribute [rw] retry_after_seconds
|
1395
|
-
# The number of seconds
|
1396
|
-
# the next request.
|
1399
|
+
# The number of seconds to wait before retrying the next request.
|
1397
1400
|
# @return [Integer]
|
1398
1401
|
#
|
1399
1402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/ThrottlingException AWS API Documentation
|
@@ -1481,8 +1484,8 @@ module Aws::IdentityStore
|
|
1481
1484
|
#
|
1482
1485
|
class UpdateUserResponse < Aws::EmptyStructure; end
|
1483
1486
|
|
1484
|
-
# A user object that contains
|
1485
|
-
#
|
1487
|
+
# A user object that contains the metadata and attributes for a
|
1488
|
+
# specified user.
|
1486
1489
|
#
|
1487
1490
|
# @!attribute [rw] user_name
|
1488
1491
|
# A unique string used to identify the user. The length limit is 128
|
@@ -1502,12 +1505,12 @@ module Aws::IdentityStore
|
|
1502
1505
|
# @return [Array<Types::ExternalId>]
|
1503
1506
|
#
|
1504
1507
|
# @!attribute [rw] name
|
1505
|
-
# An object containing the user
|
1508
|
+
# An object containing the name of the user.
|
1506
1509
|
# @return [Types::Name]
|
1507
1510
|
#
|
1508
1511
|
# @!attribute [rw] display_name
|
1509
|
-
# A string containing the user
|
1510
|
-
# when the user is referenced. For example, "John Doe."
|
1512
|
+
# A string containing the name of the user that is formatted for
|
1513
|
+
# display when the user is referenced. For example, "John Doe."
|
1511
1514
|
# @return [String]
|
1512
1515
|
#
|
1513
1516
|
# @!attribute [rw] nick_name
|
@@ -1515,7 +1518,7 @@ module Aws::IdentityStore
|
|
1515
1518
|
# @return [String]
|
1516
1519
|
#
|
1517
1520
|
# @!attribute [rw] profile_url
|
1518
|
-
# A string containing a URL that
|
1521
|
+
# A string containing a URL that might be associated with the user.
|
1519
1522
|
# @return [String]
|
1520
1523
|
#
|
1521
1524
|
# @!attribute [rw] emails
|
@@ -1534,13 +1537,13 @@ module Aws::IdentityStore
|
|
1534
1537
|
# @return [Array<Types::PhoneNumber>]
|
1535
1538
|
#
|
1536
1539
|
# @!attribute [rw] user_type
|
1537
|
-
# A string indicating the user
|
1538
|
-
#
|
1540
|
+
# A string indicating the type of user. Possible values are left
|
1541
|
+
# unspecified. The value can vary based on your specific use case.
|
1539
1542
|
# @return [String]
|
1540
1543
|
#
|
1541
1544
|
# @!attribute [rw] title
|
1542
|
-
# A string containing the user
|
1543
|
-
#
|
1545
|
+
# A string containing the title of the user. Possible values are left
|
1546
|
+
# unspecified. The value can vary based on your specific use case.
|
1544
1547
|
# @return [String]
|
1545
1548
|
#
|
1546
1549
|
# @!attribute [rw] preferred_language
|
@@ -1549,11 +1552,11 @@ module Aws::IdentityStore
|
|
1549
1552
|
# @return [String]
|
1550
1553
|
#
|
1551
1554
|
# @!attribute [rw] locale
|
1552
|
-
# A string containing the
|
1555
|
+
# A string containing the geographical region or location of the user.
|
1553
1556
|
# @return [String]
|
1554
1557
|
#
|
1555
1558
|
# @!attribute [rw] timezone
|
1556
|
-
# A string containing the
|
1559
|
+
# A string containing the time zone of the user.
|
1557
1560
|
# @return [String]
|
1558
1561
|
#
|
1559
1562
|
# @!attribute [rw] identity_store_id
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-identitystore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.24.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-
|
11
|
+
date: 2023-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|