aws-sdk-identitystore 1.22.0 → 1.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1650dba315289b9372d7486239c076ec6a65e9c0486cebacfd6859d1202c4676
4
- data.tar.gz: 12f7c6279faa063e39d207352afddb7baf17749c34e2754c711034b068ee40fa
3
+ metadata.gz: 15294df7a15cd0b04e3649d9ad32a6c24de545de10b954665813f22534bc628e
4
+ data.tar.gz: 57e3f977d450491a4c7ec8b240d419b6495c3f669a52f5162df9f217a71d8af9
5
5
  SHA512:
6
- metadata.gz: 8f3770357b6f105db5efef06ee3222d4cf4ac5c9e2d3bfe5c5cca1f5311a76748e3a4c1b537eee86f8e4546b37cf4ee3ebe990945112942517bc1cc9ac81326a
7
- data.tar.gz: 7f3bbad99d962d96e4c5b6ddcfd4aa79fdeb6cf7cd62c07d1306b85fee5114944d013aaac7c48d4ee47cc1eba03ec4c7164b25135e1ace0d1575b9a4b340c832
6
+ metadata.gz: 01fae7624aba8723045fdb63ebc0327ecc48129cb1556602e98037e1638b6467ab1043b49bab10d5427398931e6e9697dc245b890847ccbca15d24f69a637414
7
+ data.tar.gz: b9021d2deb0a94397dd1aec2f52a226fbbb6d25ef857eb623e9f5f749b6b97d753fe92492dd4b6ceecad84ad0049416c40c08d71ecd90643655282ad4fb44893
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.22.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -1389,7 +1389,7 @@ module Aws::IdentityStore
1389
1389
  params: params,
1390
1390
  config: config)
1391
1391
  context[:gem_name] = 'aws-sdk-identitystore'
1392
- context[:gem_version] = '1.22.0'
1392
+ context[:gem_version] = '1.23.0'
1393
1393
  Seahorse::Client::Request.new(handlers, context)
1394
1394
  end
1395
1395
 
@@ -9,109 +9,46 @@
9
9
 
10
10
  module Aws::IdentityStore
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
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 (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
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: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ 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"))
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"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
39
+ end
40
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
+ end
42
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
45
+ end
46
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
47
+ end
48
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
49
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
50
+ raise ArgumentError, 'No endpoint could be resolved'
24
51
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
52
  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
53
  end
117
54
  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]
@@ -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,15 +216,6 @@ 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]
@@ -298,56 +256,6 @@ module Aws::IdentityStore
298
256
  include Aws::Structure
299
257
  end
300
258
 
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
259
  # @!attribute [rw] identity_store_id
352
260
  # The globally unique identifier for the identity store.
353
261
  # @return [String]
@@ -455,14 +363,6 @@ module Aws::IdentityStore
455
363
  include Aws::Structure
456
364
  end
457
365
 
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
366
  # @!attribute [rw] identity_store_id
467
367
  # The globally unique identifier for the identity store.
468
368
  # @return [String]
@@ -484,14 +384,6 @@ module Aws::IdentityStore
484
384
  #
485
385
  class DeleteGroupMembershipResponse < Aws::EmptyStructure; end
486
386
 
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
387
  # @!attribute [rw] identity_store_id
496
388
  # The globally unique identifier for the identity store.
497
389
  # @return [String]
@@ -513,14 +405,6 @@ module Aws::IdentityStore
513
405
  #
514
406
  class DeleteGroupResponse < Aws::EmptyStructure; end
515
407
 
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
408
  # @!attribute [rw] identity_store_id
525
409
  # The globally unique identifier for the identity store.
526
410
  # @return [String]
@@ -542,14 +426,6 @@ module Aws::IdentityStore
542
426
  #
543
427
  class DeleteUserResponse < Aws::EmptyStructure; end
544
428
 
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
429
  # @!attribute [rw] identity_store_id
554
430
  # The globally unique identifier for the identity store.
555
431
  # @return [String]
@@ -594,14 +470,6 @@ module Aws::IdentityStore
594
470
  include Aws::Structure
595
471
  end
596
472
 
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
473
  # @!attribute [rw] identity_store_id
606
474
  # The globally unique identifier for the identity store, such as
607
475
  # `d-1234567890`. In this example, `d-` is a fixed prefix, and
@@ -661,14 +529,6 @@ module Aws::IdentityStore
661
529
  include Aws::Structure
662
530
  end
663
531
 
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
532
  # @!attribute [rw] identity_store_id
673
533
  # The globally unique identifier for the identity store, such as
674
534
  # `d-1234567890`. In this example, `d-` is a fixed prefix, and
@@ -784,15 +644,6 @@ module Aws::IdentityStore
784
644
 
785
645
  # The email address associated with the user.
786
646
  #
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
647
  # @!attribute [rw] value
797
648
  # A string containing an email address. For example,
798
649
  # "johndoe@amazon.com."
@@ -820,14 +671,6 @@ module Aws::IdentityStore
820
671
  # The identifier issued to this resource by an external identity
821
672
  # provider.
822
673
  #
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
674
  # @!attribute [rw] issuer
832
675
  # The issuer for an external identifier.
833
676
  # @return [String]
@@ -850,14 +693,6 @@ module Aws::IdentityStore
850
693
  # object provides the attribute name and attribute value to search users
851
694
  # or groups.
852
695
  #
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
696
  # @!attribute [rw] attribute_path
862
697
  # The attribute path that is used to specify which attribute name to
863
698
  # search. Length limit is 255 characters. For example, `UserName` is a
@@ -879,23 +714,6 @@ module Aws::IdentityStore
879
714
  include Aws::Structure
880
715
  end
881
716
 
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
717
  # @!attribute [rw] identity_store_id
900
718
  # The globally unique identifier for the identity store.
901
719
  # @return [String]
@@ -933,17 +751,6 @@ module Aws::IdentityStore
933
751
  include Aws::Structure
934
752
  end
935
753
 
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
754
  # @!attribute [rw] identity_store_id
948
755
  # The globally unique identifier for the identity store.
949
756
  # @return [String]
@@ -985,23 +792,6 @@ module Aws::IdentityStore
985
792
  include Aws::Structure
986
793
  end
987
794
 
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
795
  # @!attribute [rw] identity_store_id
1006
796
  # The globally unique identifier for the identity store.
1007
797
  # @return [String]
@@ -1167,17 +957,6 @@ module Aws::IdentityStore
1167
957
  include Aws::Structure
1168
958
  end
1169
959
 
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
960
  # @!attribute [rw] identity_store_id
1182
961
  # The globally unique identifier for the identity store.
1183
962
  # @return [String]
@@ -1212,18 +991,6 @@ module Aws::IdentityStore
1212
991
  include Aws::Structure
1213
992
  end
1214
993
 
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
994
  # @!attribute [rw] identity_store_id
1228
995
  # The globally unique identifier for the identity store.
1229
996
  # @return [String]
@@ -1284,16 +1051,6 @@ module Aws::IdentityStore
1284
1051
  include Aws::Structure
1285
1052
  end
1286
1053
 
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
1054
  # @!attribute [rw] identity_store_id
1298
1055
  # The globally unique identifier for the identity store.
1299
1056
  # @return [String]
@@ -1350,21 +1107,6 @@ module Aws::IdentityStore
1350
1107
  include Aws::Structure
1351
1108
  end
1352
1109
 
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
1110
  # @!attribute [rw] identity_store_id
1369
1111
  # The globally unique identifier for the identity store, such as
1370
1112
  # `d-1234567890`. In this example, `d-` is a fixed prefix, and
@@ -1425,21 +1167,6 @@ module Aws::IdentityStore
1425
1167
  include Aws::Structure
1426
1168
  end
1427
1169
 
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
1170
  # @!attribute [rw] identity_store_id
1444
1171
  # The globally unique identifier for the identity store, such as
1445
1172
  # `d-1234567890`. In this example, `d-` is a fixed prefix, and
@@ -1526,18 +1253,6 @@ module Aws::IdentityStore
1526
1253
 
1527
1254
  # The full name of the user.
1528
1255
  #
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
1256
  # @!attribute [rw] formatted
1542
1257
  # A string containing a formatted version of the name for display.
1543
1258
  # @return [String]
@@ -1577,15 +1292,6 @@ module Aws::IdentityStore
1577
1292
 
1578
1293
  # The phone number associated with the user.
1579
1294
  #
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
1295
  # @!attribute [rw] value
1590
1296
  # A string containing a phone number. For example, "8675309" or "+1
1591
1297
  # (800) 123-4567".
@@ -1702,14 +1408,6 @@ module Aws::IdentityStore
1702
1408
 
1703
1409
  # An entity attribute that's unique to a specific entity.
1704
1410
  #
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
1411
  # @!attribute [rw] attribute_path
1714
1412
  # A string representation of the path to a given attribute or
1715
1413
  # sub-attribute. Supports JMESPath.
@@ -1729,20 +1427,6 @@ module Aws::IdentityStore
1729
1427
  include Aws::Structure
1730
1428
  end
1731
1429
 
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
1430
  # @!attribute [rw] identity_store_id
1747
1431
  # The globally unique identifier for the identity store.
1748
1432
  # @return [String]
@@ -1770,20 +1454,6 @@ module Aws::IdentityStore
1770
1454
  #
1771
1455
  class UpdateGroupResponse < Aws::EmptyStructure; end
1772
1456
 
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
1457
  # @!attribute [rw] identity_store_id
1788
1458
  # The globally unique identifier for the identity store.
1789
1459
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-identitystore/customizations'
52
52
  # @!group service
53
53
  module Aws::IdentityStore
54
54
 
55
- GEM_VERSION = '1.22.0'
55
+ GEM_VERSION = '1.23.0'
56
56
 
57
57
  end
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.22.0
4
+ version: 1.23.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core