aws-sdk-identitystore 1.22.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-identitystore/client.rb +20 -15
- data/lib/aws-sdk-identitystore/endpoint_provider.rb +41 -101
- data/lib/aws-sdk-identitystore/types.rb +43 -370
- 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
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.24.0 (2023-04-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Identity Store CLI command reference.
|
8
|
+
|
9
|
+
1.23.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.22.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
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
|
|
@@ -9,109 +9,49 @@
|
|
9
9
|
|
10
10
|
module Aws::IdentityStore
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
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"
|
20
|
+
end
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
21
25
|
end
|
22
|
-
|
23
|
-
|
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: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
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"
|
48
|
+
end
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
50
|
+
end
|
51
|
+
end
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
53
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
54
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
55
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2lkZW50aXR5c3RvcmUtZmlwcy57UmVnaW9u
|
77
|
-
fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
|
78
|
-
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
|
79
|
-
LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
|
80
|
-
IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
|
81
|
-
cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
|
82
|
-
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
|
83
|
-
c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
84
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
|
85
|
-
eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
|
86
|
-
bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
87
|
-
IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
88
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbImF3
|
89
|
-
cy11cy1nb3YiLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFy
|
90
|
-
dGl0aW9uUmVzdWx0In0sIm5hbWUiXX1dfV0sImVuZHBvaW50Ijp7InVybCI6
|
91
|
-
Imh0dHBzOi8vaWRlbnRpdHlzdG9yZS57UmVnaW9ufS57UGFydGl0aW9uUmVz
|
92
|
-
dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
|
93
|
-
LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
94
|
-
dCI6eyJ1cmwiOiJodHRwczovL2lkZW50aXR5c3RvcmUtZmlwcy57UmVnaW9u
|
95
|
-
fS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
|
96
|
-
fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25k
|
97
|
-
aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMg
|
98
|
-
cGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJv
|
99
|
-
ciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
100
|
-
cmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoi
|
101
|
-
dHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
102
|
-
cXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7
|
103
|
-
InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJd
|
104
|
-
fV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10s
|
105
|
-
ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaWRlbnRpdHlzdG9yZS57UmVn
|
106
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
|
107
|
-
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
108
|
-
fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNrIGlzIGVu
|
109
|
-
YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRHVh
|
110
|
-
bFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
|
111
|
-
bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2lkZW50aXR5c3RvcmUue1JlZ2lv
|
112
|
-
bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
113
|
-
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
114
|
-
|
115
|
-
JSON
|
116
56
|
end
|
117
57
|
end
|
@@ -33,20 +33,6 @@ module Aws::IdentityStore
|
|
33
33
|
|
34
34
|
# The address associated with the specified user.
|
35
35
|
#
|
36
|
-
# @note When making an API call, you may pass Address
|
37
|
-
# data as a hash:
|
38
|
-
#
|
39
|
-
# {
|
40
|
-
# street_address: "SensitiveStringType",
|
41
|
-
# locality: "SensitiveStringType",
|
42
|
-
# region: "SensitiveStringType",
|
43
|
-
# postal_code: "SensitiveStringType",
|
44
|
-
# country: "SensitiveStringType",
|
45
|
-
# formatted: "SensitiveStringType",
|
46
|
-
# type: "SensitiveStringType",
|
47
|
-
# primary: false,
|
48
|
-
# }
|
49
|
-
#
|
50
36
|
# @!attribute [rw] street_address
|
51
37
|
# The street of the address.
|
52
38
|
# @return [String]
|
@@ -98,7 +84,7 @@ module Aws::IdentityStore
|
|
98
84
|
# A unique identifier for a user or group that is not the primary
|
99
85
|
# identifier. This value can be an identifier from an external identity
|
100
86
|
# provider (IdP) that is associated with the user, the group, or a
|
101
|
-
# unique attribute.
|
87
|
+
# unique attribute.
|
102
88
|
#
|
103
89
|
# @note AlternateIdentifier is a union - when making an API calls you must set exactly one of the members.
|
104
90
|
#
|
@@ -129,14 +115,6 @@ module Aws::IdentityStore
|
|
129
115
|
# An operation that applies to the requested group. This operation might
|
130
116
|
# add, replace, or remove an attribute.
|
131
117
|
#
|
132
|
-
# @note When making an API call, you may pass AttributeOperation
|
133
|
-
# data as a hash:
|
134
|
-
#
|
135
|
-
# {
|
136
|
-
# attribute_path: "AttributePath", # required
|
137
|
-
# attribute_value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
138
|
-
# }
|
139
|
-
#
|
140
118
|
# @!attribute [rw] attribute_path
|
141
119
|
# A string representation of the path to a given attribute or
|
142
120
|
# sub-attribute. Supports JMESPath.
|
@@ -196,17 +174,6 @@ module Aws::IdentityStore
|
|
196
174
|
include Aws::Structure
|
197
175
|
end
|
198
176
|
|
199
|
-
# @note When making an API call, you may pass CreateGroupMembershipRequest
|
200
|
-
# data as a hash:
|
201
|
-
#
|
202
|
-
# {
|
203
|
-
# identity_store_id: "IdentityStoreId", # required
|
204
|
-
# group_id: "ResourceId", # required
|
205
|
-
# member_id: { # required
|
206
|
-
# user_id: "ResourceId",
|
207
|
-
# },
|
208
|
-
# }
|
209
|
-
#
|
210
177
|
# @!attribute [rw] identity_store_id
|
211
178
|
# The globally unique identifier for the identity store.
|
212
179
|
# @return [String]
|
@@ -249,22 +216,15 @@ module Aws::IdentityStore
|
|
249
216
|
include Aws::Structure
|
250
217
|
end
|
251
218
|
|
252
|
-
# @note When making an API call, you may pass CreateGroupRequest
|
253
|
-
# data as a hash:
|
254
|
-
#
|
255
|
-
# {
|
256
|
-
# identity_store_id: "IdentityStoreId", # required
|
257
|
-
# display_name: "GroupDisplayName",
|
258
|
-
# description: "SensitiveStringType",
|
259
|
-
# }
|
260
|
-
#
|
261
219
|
# @!attribute [rw] identity_store_id
|
262
220
|
# The globally unique identifier for the identity store.
|
263
221
|
# @return [String]
|
264
222
|
#
|
265
223
|
# @!attribute [rw] display_name
|
266
224
|
# A string containing the name of the group. This value is commonly
|
267
|
-
# 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.
|
268
228
|
# @return [String]
|
269
229
|
#
|
270
230
|
# @!attribute [rw] description
|
@@ -298,56 +258,6 @@ module Aws::IdentityStore
|
|
298
258
|
include Aws::Structure
|
299
259
|
end
|
300
260
|
|
301
|
-
# @note When making an API call, you may pass CreateUserRequest
|
302
|
-
# data as a hash:
|
303
|
-
#
|
304
|
-
# {
|
305
|
-
# identity_store_id: "IdentityStoreId", # required
|
306
|
-
# user_name: "UserName",
|
307
|
-
# name: {
|
308
|
-
# formatted: "SensitiveStringType",
|
309
|
-
# family_name: "SensitiveStringType",
|
310
|
-
# given_name: "SensitiveStringType",
|
311
|
-
# middle_name: "SensitiveStringType",
|
312
|
-
# honorific_prefix: "SensitiveStringType",
|
313
|
-
# honorific_suffix: "SensitiveStringType",
|
314
|
-
# },
|
315
|
-
# display_name: "SensitiveStringType",
|
316
|
-
# nick_name: "SensitiveStringType",
|
317
|
-
# profile_url: "SensitiveStringType",
|
318
|
-
# emails: [
|
319
|
-
# {
|
320
|
-
# value: "SensitiveStringType",
|
321
|
-
# type: "SensitiveStringType",
|
322
|
-
# primary: false,
|
323
|
-
# },
|
324
|
-
# ],
|
325
|
-
# addresses: [
|
326
|
-
# {
|
327
|
-
# street_address: "SensitiveStringType",
|
328
|
-
# locality: "SensitiveStringType",
|
329
|
-
# region: "SensitiveStringType",
|
330
|
-
# postal_code: "SensitiveStringType",
|
331
|
-
# country: "SensitiveStringType",
|
332
|
-
# formatted: "SensitiveStringType",
|
333
|
-
# type: "SensitiveStringType",
|
334
|
-
# primary: false,
|
335
|
-
# },
|
336
|
-
# ],
|
337
|
-
# phone_numbers: [
|
338
|
-
# {
|
339
|
-
# value: "SensitiveStringType",
|
340
|
-
# type: "SensitiveStringType",
|
341
|
-
# primary: false,
|
342
|
-
# },
|
343
|
-
# ],
|
344
|
-
# user_type: "SensitiveStringType",
|
345
|
-
# title: "SensitiveStringType",
|
346
|
-
# preferred_language: "SensitiveStringType",
|
347
|
-
# locale: "SensitiveStringType",
|
348
|
-
# timezone: "SensitiveStringType",
|
349
|
-
# }
|
350
|
-
#
|
351
261
|
# @!attribute [rw] identity_store_id
|
352
262
|
# The globally unique identifier for the identity store.
|
353
263
|
# @return [String]
|
@@ -357,15 +267,17 @@ module Aws::IdentityStore
|
|
357
267
|
# characters. This value can consist of letters, accented characters,
|
358
268
|
# symbols, numbers, and punctuation. This value is specified at the
|
359
269
|
# time the user is created and stored as an attribute of the user
|
360
|
-
# 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.
|
361
273
|
# @return [String]
|
362
274
|
#
|
363
275
|
# @!attribute [rw] name
|
364
|
-
# An object containing the user
|
276
|
+
# An object containing the name of the user.
|
365
277
|
# @return [Types::Name]
|
366
278
|
#
|
367
279
|
# @!attribute [rw] display_name
|
368
|
-
# A string containing the user
|
280
|
+
# A string containing the name of the user. This value is typically
|
369
281
|
# formatted for display when the user is referenced. For example,
|
370
282
|
# "John Doe."
|
371
283
|
# @return [String]
|
@@ -375,7 +287,7 @@ module Aws::IdentityStore
|
|
375
287
|
# @return [String]
|
376
288
|
#
|
377
289
|
# @!attribute [rw] profile_url
|
378
|
-
# A string containing a URL that
|
290
|
+
# A string containing a URL that might be associated with the user.
|
379
291
|
# @return [String]
|
380
292
|
#
|
381
293
|
# @!attribute [rw] emails
|
@@ -394,14 +306,13 @@ module Aws::IdentityStore
|
|
394
306
|
# @return [Array<Types::PhoneNumber>]
|
395
307
|
#
|
396
308
|
# @!attribute [rw] user_type
|
397
|
-
# A string indicating the user
|
398
|
-
#
|
309
|
+
# A string indicating the type of user. Possible values are left
|
310
|
+
# unspecified. The value can vary based on your specific use case.
|
399
311
|
# @return [String]
|
400
312
|
#
|
401
313
|
# @!attribute [rw] title
|
402
|
-
# A string containing the user
|
403
|
-
# unspecified
|
404
|
-
# 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.
|
405
316
|
# @return [String]
|
406
317
|
#
|
407
318
|
# @!attribute [rw] preferred_language
|
@@ -410,11 +321,11 @@ module Aws::IdentityStore
|
|
410
321
|
# @return [String]
|
411
322
|
#
|
412
323
|
# @!attribute [rw] locale
|
413
|
-
# A string containing the
|
324
|
+
# A string containing the geographical region or location of the user.
|
414
325
|
# @return [String]
|
415
326
|
#
|
416
327
|
# @!attribute [rw] timezone
|
417
|
-
# A string containing the
|
328
|
+
# A string containing the time zone of the user.
|
418
329
|
# @return [String]
|
419
330
|
#
|
420
331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/CreateUserRequest AWS API Documentation
|
@@ -455,14 +366,6 @@ module Aws::IdentityStore
|
|
455
366
|
include Aws::Structure
|
456
367
|
end
|
457
368
|
|
458
|
-
# @note When making an API call, you may pass DeleteGroupMembershipRequest
|
459
|
-
# data as a hash:
|
460
|
-
#
|
461
|
-
# {
|
462
|
-
# identity_store_id: "IdentityStoreId", # required
|
463
|
-
# membership_id: "ResourceId", # required
|
464
|
-
# }
|
465
|
-
#
|
466
369
|
# @!attribute [rw] identity_store_id
|
467
370
|
# The globally unique identifier for the identity store.
|
468
371
|
# @return [String]
|
@@ -484,14 +387,6 @@ module Aws::IdentityStore
|
|
484
387
|
#
|
485
388
|
class DeleteGroupMembershipResponse < Aws::EmptyStructure; end
|
486
389
|
|
487
|
-
# @note When making an API call, you may pass DeleteGroupRequest
|
488
|
-
# data as a hash:
|
489
|
-
#
|
490
|
-
# {
|
491
|
-
# identity_store_id: "IdentityStoreId", # required
|
492
|
-
# group_id: "ResourceId", # required
|
493
|
-
# }
|
494
|
-
#
|
495
390
|
# @!attribute [rw] identity_store_id
|
496
391
|
# The globally unique identifier for the identity store.
|
497
392
|
# @return [String]
|
@@ -513,14 +408,6 @@ module Aws::IdentityStore
|
|
513
408
|
#
|
514
409
|
class DeleteGroupResponse < Aws::EmptyStructure; end
|
515
410
|
|
516
|
-
# @note When making an API call, you may pass DeleteUserRequest
|
517
|
-
# data as a hash:
|
518
|
-
#
|
519
|
-
# {
|
520
|
-
# identity_store_id: "IdentityStoreId", # required
|
521
|
-
# user_id: "ResourceId", # required
|
522
|
-
# }
|
523
|
-
#
|
524
411
|
# @!attribute [rw] identity_store_id
|
525
412
|
# The globally unique identifier for the identity store.
|
526
413
|
# @return [String]
|
@@ -542,14 +429,6 @@ module Aws::IdentityStore
|
|
542
429
|
#
|
543
430
|
class DeleteUserResponse < Aws::EmptyStructure; end
|
544
431
|
|
545
|
-
# @note When making an API call, you may pass DescribeGroupMembershipRequest
|
546
|
-
# data as a hash:
|
547
|
-
#
|
548
|
-
# {
|
549
|
-
# identity_store_id: "IdentityStoreId", # required
|
550
|
-
# membership_id: "ResourceId", # required
|
551
|
-
# }
|
552
|
-
#
|
553
432
|
# @!attribute [rw] identity_store_id
|
554
433
|
# The globally unique identifier for the identity store.
|
555
434
|
# @return [String]
|
@@ -594,14 +473,6 @@ module Aws::IdentityStore
|
|
594
473
|
include Aws::Structure
|
595
474
|
end
|
596
475
|
|
597
|
-
# @note When making an API call, you may pass DescribeGroupRequest
|
598
|
-
# data as a hash:
|
599
|
-
#
|
600
|
-
# {
|
601
|
-
# identity_store_id: "IdentityStoreId", # required
|
602
|
-
# group_id: "ResourceId", # required
|
603
|
-
# }
|
604
|
-
#
|
605
476
|
# @!attribute [rw] identity_store_id
|
606
477
|
# The globally unique identifier for the identity store, such as
|
607
478
|
# `d-1234567890`. In this example, `d-` is a fixed prefix, and
|
@@ -661,14 +532,6 @@ module Aws::IdentityStore
|
|
661
532
|
include Aws::Structure
|
662
533
|
end
|
663
534
|
|
664
|
-
# @note When making an API call, you may pass DescribeUserRequest
|
665
|
-
# data as a hash:
|
666
|
-
#
|
667
|
-
# {
|
668
|
-
# identity_store_id: "IdentityStoreId", # required
|
669
|
-
# user_id: "ResourceId", # required
|
670
|
-
# }
|
671
|
-
#
|
672
535
|
# @!attribute [rw] identity_store_id
|
673
536
|
# The globally unique identifier for the identity store, such as
|
674
537
|
# `d-1234567890`. In this example, `d-` is a fixed prefix, and
|
@@ -712,7 +575,7 @@ module Aws::IdentityStore
|
|
712
575
|
# @return [Types::Name]
|
713
576
|
#
|
714
577
|
# @!attribute [rw] display_name
|
715
|
-
# The
|
578
|
+
# The display name of the user.
|
716
579
|
# @return [String]
|
717
580
|
#
|
718
581
|
# @!attribute [rw] nick_name
|
@@ -724,11 +587,11 @@ module Aws::IdentityStore
|
|
724
587
|
# @return [String]
|
725
588
|
#
|
726
589
|
# @!attribute [rw] emails
|
727
|
-
# The
|
590
|
+
# The email address of the user.
|
728
591
|
# @return [Array<Types::Email>]
|
729
592
|
#
|
730
593
|
# @!attribute [rw] addresses
|
731
|
-
# The
|
594
|
+
# The physical address of the user.
|
732
595
|
# @return [Array<Types::Address>]
|
733
596
|
#
|
734
597
|
# @!attribute [rw] phone_numbers
|
@@ -736,11 +599,11 @@ module Aws::IdentityStore
|
|
736
599
|
# @return [Array<Types::PhoneNumber>]
|
737
600
|
#
|
738
601
|
# @!attribute [rw] user_type
|
739
|
-
# A string indicating the user
|
602
|
+
# A string indicating the type of user.
|
740
603
|
# @return [String]
|
741
604
|
#
|
742
605
|
# @!attribute [rw] title
|
743
|
-
# A string containing the user
|
606
|
+
# A string containing the title of the user.
|
744
607
|
# @return [String]
|
745
608
|
#
|
746
609
|
# @!attribute [rw] preferred_language
|
@@ -748,7 +611,7 @@ module Aws::IdentityStore
|
|
748
611
|
# @return [String]
|
749
612
|
#
|
750
613
|
# @!attribute [rw] locale
|
751
|
-
# A string containing the
|
614
|
+
# A string containing the geographical region or location of the user.
|
752
615
|
# @return [String]
|
753
616
|
#
|
754
617
|
# @!attribute [rw] timezone
|
@@ -784,15 +647,6 @@ module Aws::IdentityStore
|
|
784
647
|
|
785
648
|
# The email address associated with the user.
|
786
649
|
#
|
787
|
-
# @note When making an API call, you may pass Email
|
788
|
-
# data as a hash:
|
789
|
-
#
|
790
|
-
# {
|
791
|
-
# value: "SensitiveStringType",
|
792
|
-
# type: "SensitiveStringType",
|
793
|
-
# primary: false,
|
794
|
-
# }
|
795
|
-
#
|
796
650
|
# @!attribute [rw] value
|
797
651
|
# A string containing an email address. For example,
|
798
652
|
# "johndoe@amazon.com."
|
@@ -820,14 +674,6 @@ module Aws::IdentityStore
|
|
820
674
|
# The identifier issued to this resource by an external identity
|
821
675
|
# provider.
|
822
676
|
#
|
823
|
-
# @note When making an API call, you may pass ExternalId
|
824
|
-
# data as a hash:
|
825
|
-
#
|
826
|
-
# {
|
827
|
-
# issuer: "ExternalIdIssuer", # required
|
828
|
-
# id: "ExternalIdIdentifier", # required
|
829
|
-
# }
|
830
|
-
#
|
831
677
|
# @!attribute [rw] issuer
|
832
678
|
# The issuer for an external identifier.
|
833
679
|
# @return [String]
|
@@ -850,14 +696,6 @@ module Aws::IdentityStore
|
|
850
696
|
# object provides the attribute name and attribute value to search users
|
851
697
|
# or groups.
|
852
698
|
#
|
853
|
-
# @note When making an API call, you may pass Filter
|
854
|
-
# data as a hash:
|
855
|
-
#
|
856
|
-
# {
|
857
|
-
# attribute_path: "AttributePath", # required
|
858
|
-
# attribute_value: "SensitiveStringType", # required
|
859
|
-
# }
|
860
|
-
#
|
861
699
|
# @!attribute [rw] attribute_path
|
862
700
|
# The attribute path that is used to specify which attribute name to
|
863
701
|
# search. Length limit is 255 characters. For example, `UserName` is a
|
@@ -879,23 +717,6 @@ module Aws::IdentityStore
|
|
879
717
|
include Aws::Structure
|
880
718
|
end
|
881
719
|
|
882
|
-
# @note When making an API call, you may pass GetGroupIdRequest
|
883
|
-
# data as a hash:
|
884
|
-
#
|
885
|
-
# {
|
886
|
-
# identity_store_id: "IdentityStoreId", # required
|
887
|
-
# alternate_identifier: { # required
|
888
|
-
# external_id: {
|
889
|
-
# issuer: "ExternalIdIssuer", # required
|
890
|
-
# id: "ExternalIdIdentifier", # required
|
891
|
-
# },
|
892
|
-
# unique_attribute: {
|
893
|
-
# attribute_path: "AttributePath", # required
|
894
|
-
# attribute_value: "value", # required, value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
895
|
-
# },
|
896
|
-
# },
|
897
|
-
# }
|
898
|
-
#
|
899
720
|
# @!attribute [rw] identity_store_id
|
900
721
|
# The globally unique identifier for the identity store.
|
901
722
|
# @return [String]
|
@@ -904,7 +725,8 @@ module Aws::IdentityStore
|
|
904
725
|
# A unique identifier for a user or group that is not the primary
|
905
726
|
# identifier. This value can be an identifier from an external
|
906
727
|
# identity provider (IdP) that is associated with the user, the group,
|
907
|
-
# or a unique attribute. For
|
728
|
+
# or a unique attribute. For the unique attribute, the only valid path
|
729
|
+
# is `displayName`.
|
908
730
|
# @return [Types::AlternateIdentifier]
|
909
731
|
#
|
910
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/GetGroupIdRequest AWS API Documentation
|
@@ -933,17 +755,6 @@ module Aws::IdentityStore
|
|
933
755
|
include Aws::Structure
|
934
756
|
end
|
935
757
|
|
936
|
-
# @note When making an API call, you may pass GetGroupMembershipIdRequest
|
937
|
-
# data as a hash:
|
938
|
-
#
|
939
|
-
# {
|
940
|
-
# identity_store_id: "IdentityStoreId", # required
|
941
|
-
# group_id: "ResourceId", # required
|
942
|
-
# member_id: { # required
|
943
|
-
# user_id: "ResourceId",
|
944
|
-
# },
|
945
|
-
# }
|
946
|
-
#
|
947
758
|
# @!attribute [rw] identity_store_id
|
948
759
|
# The globally unique identifier for the identity store.
|
949
760
|
# @return [String]
|
@@ -985,23 +796,6 @@ module Aws::IdentityStore
|
|
985
796
|
include Aws::Structure
|
986
797
|
end
|
987
798
|
|
988
|
-
# @note When making an API call, you may pass GetUserIdRequest
|
989
|
-
# data as a hash:
|
990
|
-
#
|
991
|
-
# {
|
992
|
-
# identity_store_id: "IdentityStoreId", # required
|
993
|
-
# alternate_identifier: { # required
|
994
|
-
# external_id: {
|
995
|
-
# issuer: "ExternalIdIssuer", # required
|
996
|
-
# id: "ExternalIdIdentifier", # required
|
997
|
-
# },
|
998
|
-
# unique_attribute: {
|
999
|
-
# attribute_path: "AttributePath", # required
|
1000
|
-
# attribute_value: "value", # required, value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
1001
|
-
# },
|
1002
|
-
# },
|
1003
|
-
# }
|
1004
|
-
#
|
1005
799
|
# @!attribute [rw] identity_store_id
|
1006
800
|
# The globally unique identifier for the identity store.
|
1007
801
|
# @return [String]
|
@@ -1010,7 +804,8 @@ module Aws::IdentityStore
|
|
1010
804
|
# A unique identifier for a user or group that is not the primary
|
1011
805
|
# identifier. This value can be an identifier from an external
|
1012
806
|
# identity provider (IdP) that is associated with the user, the group,
|
1013
|
-
# or a unique attribute. For
|
807
|
+
# or a unique attribute. For the unique attribute, the only valid
|
808
|
+
# paths are `userName` and `emails.value`.
|
1014
809
|
# @return [Types::AlternateIdentifier]
|
1015
810
|
#
|
1016
811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/GetUserIdRequest AWS API Documentation
|
@@ -1039,15 +834,15 @@ module Aws::IdentityStore
|
|
1039
834
|
include Aws::Structure
|
1040
835
|
end
|
1041
836
|
|
1042
|
-
# A group object that contains
|
1043
|
-
#
|
837
|
+
# A group object that contains the metadata and attributes for a
|
838
|
+
# specified group.
|
1044
839
|
#
|
1045
840
|
# @!attribute [rw] group_id
|
1046
841
|
# The identifier for a group in the identity store.
|
1047
842
|
# @return [String]
|
1048
843
|
#
|
1049
844
|
# @!attribute [rw] display_name
|
1050
|
-
# The
|
845
|
+
# The display name value for the group. The length limit is 1,024
|
1051
846
|
# characters. This value can consist of letters, accented characters,
|
1052
847
|
# symbols, numbers, punctuation, tab, new line, carriage return,
|
1053
848
|
# space, and nonbreaking space in this attribute. This value is
|
@@ -1153,8 +948,7 @@ module Aws::IdentityStore
|
|
1153
948
|
# @return [String]
|
1154
949
|
#
|
1155
950
|
# @!attribute [rw] retry_after_seconds
|
1156
|
-
# The number of seconds
|
1157
|
-
# the next request.
|
951
|
+
# The number of seconds to wait before retrying the next request.
|
1158
952
|
# @return [Integer]
|
1159
953
|
#
|
1160
954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/InternalServerException AWS API Documentation
|
@@ -1167,17 +961,6 @@ module Aws::IdentityStore
|
|
1167
961
|
include Aws::Structure
|
1168
962
|
end
|
1169
963
|
|
1170
|
-
# @note When making an API call, you may pass IsMemberInGroupsRequest
|
1171
|
-
# data as a hash:
|
1172
|
-
#
|
1173
|
-
# {
|
1174
|
-
# identity_store_id: "IdentityStoreId", # required
|
1175
|
-
# member_id: { # required
|
1176
|
-
# user_id: "ResourceId",
|
1177
|
-
# },
|
1178
|
-
# group_ids: ["ResourceId"], # required
|
1179
|
-
# }
|
1180
|
-
#
|
1181
964
|
# @!attribute [rw] identity_store_id
|
1182
965
|
# The globally unique identifier for the identity store.
|
1183
966
|
# @return [String]
|
@@ -1212,18 +995,6 @@ module Aws::IdentityStore
|
|
1212
995
|
include Aws::Structure
|
1213
996
|
end
|
1214
997
|
|
1215
|
-
# @note When making an API call, you may pass ListGroupMembershipsForMemberRequest
|
1216
|
-
# data as a hash:
|
1217
|
-
#
|
1218
|
-
# {
|
1219
|
-
# identity_store_id: "IdentityStoreId", # required
|
1220
|
-
# member_id: { # required
|
1221
|
-
# user_id: "ResourceId",
|
1222
|
-
# },
|
1223
|
-
# max_results: 1,
|
1224
|
-
# next_token: "NextToken",
|
1225
|
-
# }
|
1226
|
-
#
|
1227
998
|
# @!attribute [rw] identity_store_id
|
1228
999
|
# The globally unique identifier for the identity store.
|
1229
1000
|
# @return [String]
|
@@ -1284,16 +1055,6 @@ module Aws::IdentityStore
|
|
1284
1055
|
include Aws::Structure
|
1285
1056
|
end
|
1286
1057
|
|
1287
|
-
# @note When making an API call, you may pass ListGroupMembershipsRequest
|
1288
|
-
# data as a hash:
|
1289
|
-
#
|
1290
|
-
# {
|
1291
|
-
# identity_store_id: "IdentityStoreId", # required
|
1292
|
-
# group_id: "ResourceId", # required
|
1293
|
-
# max_results: 1,
|
1294
|
-
# next_token: "NextToken",
|
1295
|
-
# }
|
1296
|
-
#
|
1297
1058
|
# @!attribute [rw] identity_store_id
|
1298
1059
|
# The globally unique identifier for the identity store.
|
1299
1060
|
# @return [String]
|
@@ -1350,21 +1111,6 @@ module Aws::IdentityStore
|
|
1350
1111
|
include Aws::Structure
|
1351
1112
|
end
|
1352
1113
|
|
1353
|
-
# @note When making an API call, you may pass ListGroupsRequest
|
1354
|
-
# data as a hash:
|
1355
|
-
#
|
1356
|
-
# {
|
1357
|
-
# identity_store_id: "IdentityStoreId", # required
|
1358
|
-
# max_results: 1,
|
1359
|
-
# next_token: "NextToken",
|
1360
|
-
# filters: [
|
1361
|
-
# {
|
1362
|
-
# attribute_path: "AttributePath", # required
|
1363
|
-
# attribute_value: "SensitiveStringType", # required
|
1364
|
-
# },
|
1365
|
-
# ],
|
1366
|
-
# }
|
1367
|
-
#
|
1368
1114
|
# @!attribute [rw] identity_store_id
|
1369
1115
|
# The globally unique identifier for the identity store, such as
|
1370
1116
|
# `d-1234567890`. In this example, `d-` is a fixed prefix, and
|
@@ -1425,21 +1171,6 @@ module Aws::IdentityStore
|
|
1425
1171
|
include Aws::Structure
|
1426
1172
|
end
|
1427
1173
|
|
1428
|
-
# @note When making an API call, you may pass ListUsersRequest
|
1429
|
-
# data as a hash:
|
1430
|
-
#
|
1431
|
-
# {
|
1432
|
-
# identity_store_id: "IdentityStoreId", # required
|
1433
|
-
# max_results: 1,
|
1434
|
-
# next_token: "NextToken",
|
1435
|
-
# filters: [
|
1436
|
-
# {
|
1437
|
-
# attribute_path: "AttributePath", # required
|
1438
|
-
# attribute_value: "SensitiveStringType", # required
|
1439
|
-
# },
|
1440
|
-
# ],
|
1441
|
-
# }
|
1442
|
-
#
|
1443
1174
|
# @!attribute [rw] identity_store_id
|
1444
1175
|
# The globally unique identifier for the identity store, such as
|
1445
1176
|
# `d-1234567890`. In this example, `d-` is a fixed prefix, and
|
@@ -1526,18 +1257,6 @@ module Aws::IdentityStore
|
|
1526
1257
|
|
1527
1258
|
# The full name of the user.
|
1528
1259
|
#
|
1529
|
-
# @note When making an API call, you may pass Name
|
1530
|
-
# data as a hash:
|
1531
|
-
#
|
1532
|
-
# {
|
1533
|
-
# formatted: "SensitiveStringType",
|
1534
|
-
# family_name: "SensitiveStringType",
|
1535
|
-
# given_name: "SensitiveStringType",
|
1536
|
-
# middle_name: "SensitiveStringType",
|
1537
|
-
# honorific_prefix: "SensitiveStringType",
|
1538
|
-
# honorific_suffix: "SensitiveStringType",
|
1539
|
-
# }
|
1540
|
-
#
|
1541
1260
|
# @!attribute [rw] formatted
|
1542
1261
|
# A string containing a formatted version of the name for display.
|
1543
1262
|
# @return [String]
|
@@ -1577,15 +1296,6 @@ module Aws::IdentityStore
|
|
1577
1296
|
|
1578
1297
|
# The phone number associated with the user.
|
1579
1298
|
#
|
1580
|
-
# @note When making an API call, you may pass PhoneNumber
|
1581
|
-
# data as a hash:
|
1582
|
-
#
|
1583
|
-
# {
|
1584
|
-
# value: "SensitiveStringType",
|
1585
|
-
# type: "SensitiveStringType",
|
1586
|
-
# primary: false,
|
1587
|
-
# }
|
1588
|
-
#
|
1589
1299
|
# @!attribute [rw] value
|
1590
1300
|
# A string containing a phone number. For example, "8675309" or "+1
|
1591
1301
|
# (800) 123-4567".
|
@@ -1686,8 +1396,7 @@ module Aws::IdentityStore
|
|
1686
1396
|
# @return [String]
|
1687
1397
|
#
|
1688
1398
|
# @!attribute [rw] retry_after_seconds
|
1689
|
-
# The number of seconds
|
1690
|
-
# the next request.
|
1399
|
+
# The number of seconds to wait before retrying the next request.
|
1691
1400
|
# @return [Integer]
|
1692
1401
|
#
|
1693
1402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/ThrottlingException AWS API Documentation
|
@@ -1702,14 +1411,6 @@ module Aws::IdentityStore
|
|
1702
1411
|
|
1703
1412
|
# An entity attribute that's unique to a specific entity.
|
1704
1413
|
#
|
1705
|
-
# @note When making an API call, you may pass UniqueAttribute
|
1706
|
-
# data as a hash:
|
1707
|
-
#
|
1708
|
-
# {
|
1709
|
-
# attribute_path: "AttributePath", # required
|
1710
|
-
# attribute_value: "value", # required, value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
1711
|
-
# }
|
1712
|
-
#
|
1713
1414
|
# @!attribute [rw] attribute_path
|
1714
1415
|
# A string representation of the path to a given attribute or
|
1715
1416
|
# sub-attribute. Supports JMESPath.
|
@@ -1729,20 +1430,6 @@ module Aws::IdentityStore
|
|
1729
1430
|
include Aws::Structure
|
1730
1431
|
end
|
1731
1432
|
|
1732
|
-
# @note When making an API call, you may pass UpdateGroupRequest
|
1733
|
-
# data as a hash:
|
1734
|
-
#
|
1735
|
-
# {
|
1736
|
-
# identity_store_id: "IdentityStoreId", # required
|
1737
|
-
# group_id: "ResourceId", # required
|
1738
|
-
# operations: [ # required
|
1739
|
-
# {
|
1740
|
-
# attribute_path: "AttributePath", # required
|
1741
|
-
# attribute_value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
1742
|
-
# },
|
1743
|
-
# ],
|
1744
|
-
# }
|
1745
|
-
#
|
1746
1433
|
# @!attribute [rw] identity_store_id
|
1747
1434
|
# The globally unique identifier for the identity store.
|
1748
1435
|
# @return [String]
|
@@ -1770,20 +1457,6 @@ module Aws::IdentityStore
|
|
1770
1457
|
#
|
1771
1458
|
class UpdateGroupResponse < Aws::EmptyStructure; end
|
1772
1459
|
|
1773
|
-
# @note When making an API call, you may pass UpdateUserRequest
|
1774
|
-
# data as a hash:
|
1775
|
-
#
|
1776
|
-
# {
|
1777
|
-
# identity_store_id: "IdentityStoreId", # required
|
1778
|
-
# user_id: "ResourceId", # required
|
1779
|
-
# operations: [ # required
|
1780
|
-
# {
|
1781
|
-
# attribute_path: "AttributePath", # required
|
1782
|
-
# attribute_value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
1783
|
-
# },
|
1784
|
-
# ],
|
1785
|
-
# }
|
1786
|
-
#
|
1787
1460
|
# @!attribute [rw] identity_store_id
|
1788
1461
|
# The globally unique identifier for the identity store.
|
1789
1462
|
# @return [String]
|
@@ -1811,8 +1484,8 @@ module Aws::IdentityStore
|
|
1811
1484
|
#
|
1812
1485
|
class UpdateUserResponse < Aws::EmptyStructure; end
|
1813
1486
|
|
1814
|
-
# A user object that contains
|
1815
|
-
#
|
1487
|
+
# A user object that contains the metadata and attributes for a
|
1488
|
+
# specified user.
|
1816
1489
|
#
|
1817
1490
|
# @!attribute [rw] user_name
|
1818
1491
|
# A unique string used to identify the user. The length limit is 128
|
@@ -1832,12 +1505,12 @@ module Aws::IdentityStore
|
|
1832
1505
|
# @return [Array<Types::ExternalId>]
|
1833
1506
|
#
|
1834
1507
|
# @!attribute [rw] name
|
1835
|
-
# An object containing the user
|
1508
|
+
# An object containing the name of the user.
|
1836
1509
|
# @return [Types::Name]
|
1837
1510
|
#
|
1838
1511
|
# @!attribute [rw] display_name
|
1839
|
-
# A string containing the user
|
1840
|
-
# 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."
|
1841
1514
|
# @return [String]
|
1842
1515
|
#
|
1843
1516
|
# @!attribute [rw] nick_name
|
@@ -1845,7 +1518,7 @@ module Aws::IdentityStore
|
|
1845
1518
|
# @return [String]
|
1846
1519
|
#
|
1847
1520
|
# @!attribute [rw] profile_url
|
1848
|
-
# A string containing a URL that
|
1521
|
+
# A string containing a URL that might be associated with the user.
|
1849
1522
|
# @return [String]
|
1850
1523
|
#
|
1851
1524
|
# @!attribute [rw] emails
|
@@ -1864,13 +1537,13 @@ module Aws::IdentityStore
|
|
1864
1537
|
# @return [Array<Types::PhoneNumber>]
|
1865
1538
|
#
|
1866
1539
|
# @!attribute [rw] user_type
|
1867
|
-
# A string indicating the user
|
1868
|
-
#
|
1540
|
+
# A string indicating the type of user. Possible values are left
|
1541
|
+
# unspecified. The value can vary based on your specific use case.
|
1869
1542
|
# @return [String]
|
1870
1543
|
#
|
1871
1544
|
# @!attribute [rw] title
|
1872
|
-
# A string containing the user
|
1873
|
-
#
|
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.
|
1874
1547
|
# @return [String]
|
1875
1548
|
#
|
1876
1549
|
# @!attribute [rw] preferred_language
|
@@ -1879,11 +1552,11 @@ module Aws::IdentityStore
|
|
1879
1552
|
# @return [String]
|
1880
1553
|
#
|
1881
1554
|
# @!attribute [rw] locale
|
1882
|
-
# A string containing the
|
1555
|
+
# A string containing the geographical region or location of the user.
|
1883
1556
|
# @return [String]
|
1884
1557
|
#
|
1885
1558
|
# @!attribute [rw] timezone
|
1886
|
-
# A string containing the
|
1559
|
+
# A string containing the time zone of the user.
|
1887
1560
|
# @return [String]
|
1888
1561
|
#
|
1889
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:
|
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
|