@aws-sdk/client-identitystore 3.987.0 → 3.988.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var IdentitystoreServiceException = require('./models/IdentitystoreServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -110,727 +113,6 @@ class IdentitystoreClient extends smithyClient.Client {
110
113
  }
111
114
  }
112
115
 
113
- class IdentitystoreServiceException extends smithyClient.ServiceException {
114
- constructor(options) {
115
- super(options);
116
- Object.setPrototypeOf(this, IdentitystoreServiceException.prototype);
117
- }
118
- }
119
-
120
- class AccessDeniedException extends IdentitystoreServiceException {
121
- name = "AccessDeniedException";
122
- $fault = "client";
123
- Message;
124
- RequestId;
125
- Reason;
126
- constructor(opts) {
127
- super({
128
- name: "AccessDeniedException",
129
- $fault: "client",
130
- ...opts,
131
- });
132
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
133
- this.Message = opts.Message;
134
- this.RequestId = opts.RequestId;
135
- this.Reason = opts.Reason;
136
- }
137
- }
138
- class InternalServerException extends IdentitystoreServiceException {
139
- name = "InternalServerException";
140
- $fault = "server";
141
- $retryable = {};
142
- Message;
143
- RequestId;
144
- RetryAfterSeconds;
145
- constructor(opts) {
146
- super({
147
- name: "InternalServerException",
148
- $fault: "server",
149
- ...opts,
150
- });
151
- Object.setPrototypeOf(this, InternalServerException.prototype);
152
- this.Message = opts.Message;
153
- this.RequestId = opts.RequestId;
154
- this.RetryAfterSeconds = opts.RetryAfterSeconds;
155
- }
156
- }
157
- class ResourceNotFoundException extends IdentitystoreServiceException {
158
- name = "ResourceNotFoundException";
159
- $fault = "client";
160
- ResourceType;
161
- ResourceId;
162
- Reason;
163
- Message;
164
- RequestId;
165
- constructor(opts) {
166
- super({
167
- name: "ResourceNotFoundException",
168
- $fault: "client",
169
- ...opts,
170
- });
171
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
172
- this.ResourceType = opts.ResourceType;
173
- this.ResourceId = opts.ResourceId;
174
- this.Reason = opts.Reason;
175
- this.Message = opts.Message;
176
- this.RequestId = opts.RequestId;
177
- }
178
- }
179
- class ThrottlingException extends IdentitystoreServiceException {
180
- name = "ThrottlingException";
181
- $fault = "client";
182
- $retryable = {
183
- throttling: true,
184
- };
185
- Message;
186
- RequestId;
187
- RetryAfterSeconds;
188
- Reason;
189
- constructor(opts) {
190
- super({
191
- name: "ThrottlingException",
192
- $fault: "client",
193
- ...opts,
194
- });
195
- Object.setPrototypeOf(this, ThrottlingException.prototype);
196
- this.Message = opts.Message;
197
- this.RequestId = opts.RequestId;
198
- this.RetryAfterSeconds = opts.RetryAfterSeconds;
199
- this.Reason = opts.Reason;
200
- }
201
- }
202
- class ValidationException extends IdentitystoreServiceException {
203
- name = "ValidationException";
204
- $fault = "client";
205
- Message;
206
- RequestId;
207
- Reason;
208
- constructor(opts) {
209
- super({
210
- name: "ValidationException",
211
- $fault: "client",
212
- ...opts,
213
- });
214
- Object.setPrototypeOf(this, ValidationException.prototype);
215
- this.Message = opts.Message;
216
- this.RequestId = opts.RequestId;
217
- this.Reason = opts.Reason;
218
- }
219
- }
220
- class ConflictException extends IdentitystoreServiceException {
221
- name = "ConflictException";
222
- $fault = "client";
223
- Message;
224
- RequestId;
225
- Reason;
226
- constructor(opts) {
227
- super({
228
- name: "ConflictException",
229
- $fault: "client",
230
- ...opts,
231
- });
232
- Object.setPrototypeOf(this, ConflictException.prototype);
233
- this.Message = opts.Message;
234
- this.RequestId = opts.RequestId;
235
- this.Reason = opts.Reason;
236
- }
237
- }
238
- class ServiceQuotaExceededException extends IdentitystoreServiceException {
239
- name = "ServiceQuotaExceededException";
240
- $fault = "client";
241
- Message;
242
- RequestId;
243
- constructor(opts) {
244
- super({
245
- name: "ServiceQuotaExceededException",
246
- $fault: "client",
247
- ...opts,
248
- });
249
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
250
- this.Message = opts.Message;
251
- this.RequestId = opts.RequestId;
252
- }
253
- }
254
-
255
- const _A = "Address";
256
- const _ADE = "AccessDeniedException";
257
- const _AI = "AlternateIdentifier";
258
- const _AO = "AttributeOperation";
259
- const _AOt = "AttributeOperations";
260
- const _AP = "AttributePath";
261
- const _AV = "AttributeValue";
262
- const _Ad = "Addresses";
263
- const _B = "Birthdate";
264
- const _C = "Country";
265
- const _CA = "CreatedAt";
266
- const _CB = "CreatedBy";
267
- const _CE = "ConflictException";
268
- const _CG = "CreateGroup";
269
- const _CGM = "CreateGroupMembership";
270
- const _CGMR = "CreateGroupMembershipRequest";
271
- const _CGMRr = "CreateGroupMembershipResponse";
272
- const _CGR = "CreateGroupRequest";
273
- const _CGRr = "CreateGroupResponse";
274
- const _CU = "CreateUser";
275
- const _CUR = "CreateUserRequest";
276
- const _CURr = "CreateUserResponse";
277
- const _D = "Description";
278
- const _DG = "DeleteGroup";
279
- const _DGM = "DeleteGroupMembership";
280
- const _DGMR = "DeleteGroupMembershipRequest";
281
- const _DGMRe = "DeleteGroupMembershipResponse";
282
- const _DGMRes = "DescribeGroupMembershipRequest";
283
- const _DGMResc = "DescribeGroupMembershipResponse";
284
- const _DGMe = "DescribeGroupMembership";
285
- const _DGR = "DeleteGroupRequest";
286
- const _DGRe = "DeleteGroupResponse";
287
- const _DGRes = "DescribeGroupRequest";
288
- const _DGResc = "DescribeGroupResponse";
289
- const _DGe = "DescribeGroup";
290
- const _DN = "DisplayName";
291
- const _DU = "DeleteUser";
292
- const _DUR = "DeleteUserRequest";
293
- const _DURe = "DeleteUserResponse";
294
- const _DURes = "DescribeUserRequest";
295
- const _DUResc = "DescribeUserResponse";
296
- const _DUe = "DescribeUser";
297
- const _Di = "Display";
298
- const _E = "Emails";
299
- const _EI = "ExternalIds";
300
- const _EII = "ExternalIdIdentifier";
301
- const _EIIx = "ExternalIdIssuer";
302
- const _EIx = "ExternalId";
303
- const _Em = "Email";
304
- const _Ex = "Extensions";
305
- const _F = "Formatted";
306
- const _FN = "FamilyName";
307
- const _Fi = "Filter";
308
- const _Fil = "Filters";
309
- const _G = "Group";
310
- const _GDN = "GroupDisplayName";
311
- const _GGI = "GetGroupId";
312
- const _GGIR = "GetGroupIdRequest";
313
- const _GGIRe = "GetGroupIdResponse";
314
- const _GGMI = "GetGroupMembershipId";
315
- const _GGMIR = "GetGroupMembershipIdRequest";
316
- const _GGMIRe = "GetGroupMembershipIdResponse";
317
- const _GI = "GroupId";
318
- const _GIr = "GroupIds";
319
- const _GM = "GroupMembership";
320
- const _GMER = "GroupMembershipExistenceResult";
321
- const _GMERr = "GroupMembershipExistenceResults";
322
- const _GMr = "GroupMemberships";
323
- const _GN = "GivenName";
324
- const _GUI = "GetUserId";
325
- const _GUIR = "GetUserIdRequest";
326
- const _GUIRe = "GetUserIdResponse";
327
- const _Gr = "Groups";
328
- const _HP = "HonorificPrefix";
329
- const _HS = "HonorificSuffix";
330
- const _I = "Issuer";
331
- const _IMIG = "IsMemberInGroups";
332
- const _IMIGR = "IsMemberInGroupsRequest";
333
- const _IMIGRs = "IsMemberInGroupsResponse";
334
- const _ISE = "InternalServerException";
335
- const _ISI = "IdentityStoreId";
336
- const _Id = "Id";
337
- const _L = "Locality";
338
- const _LG = "ListGroups";
339
- const _LGM = "ListGroupMemberships";
340
- const _LGMFM = "ListGroupMembershipsForMember";
341
- const _LGMFMR = "ListGroupMembershipsForMemberRequest";
342
- const _LGMFMRi = "ListGroupMembershipsForMemberResponse";
343
- const _LGMR = "ListGroupMembershipsRequest";
344
- const _LGMRi = "ListGroupMembershipsResponse";
345
- const _LGR = "ListGroupsRequest";
346
- const _LGRi = "ListGroupsResponse";
347
- const _LU = "ListUsers";
348
- const _LUR = "ListUsersRequest";
349
- const _LURi = "ListUsersResponse";
350
- const _Lo = "Locale";
351
- const _M = "Message";
352
- const _ME = "MembershipExists";
353
- const _MI = "MemberId";
354
- const _MIe = "MembershipId";
355
- const _MN = "MiddleName";
356
- const _MR = "MaxResults";
357
- const _N = "Name";
358
- const _NN = "NickName";
359
- const _NT = "NextToken";
360
- const _O = "Operations";
361
- const _P = "Primary";
362
- const _PC = "PostalCode";
363
- const _PL = "PreferredLanguage";
364
- const _PN = "PhoneNumbers";
365
- const _PNh = "PhoneNumber";
366
- const _PU = "ProfileUrl";
367
- const _Ph = "Photos";
368
- const _Pho = "Photo";
369
- const _R = "Reason";
370
- const _RA = "Retry-After";
371
- const _RAS = "RetryAfterSeconds";
372
- const _RI = "RequestId";
373
- const _RIe = "ResourceId";
374
- const _RNFE = "ResourceNotFoundException";
375
- const _RT = "ResourceType";
376
- const _Re = "Region";
377
- const _Res = "Results";
378
- const _Ro = "Roles";
379
- const _Rol = "Role";
380
- const _SA = "StreetAddress";
381
- const _SQEE = "ServiceQuotaExceededException";
382
- const _SST = "SensitiveStringType";
383
- const _T = "Type";
384
- const _TE = "ThrottlingException";
385
- const _Ti = "Title";
386
- const _Tim = "Timezone";
387
- const _U = "Users";
388
- const _UA = "UpdatedAt";
389
- const _UAn = "UniqueAttribute";
390
- const _UB = "UpdatedBy";
391
- const _UG = "UpdateGroup";
392
- const _UGR = "UpdateGroupRequest";
393
- const _UGRp = "UpdateGroupResponse";
394
- const _UI = "UserId";
395
- const _UN = "UserName";
396
- const _US = "UserStatus";
397
- const _UT = "UserType";
398
- const _UU = "UpdateUser";
399
- const _UUR = "UpdateUserRequest";
400
- const _UURp = "UpdateUserResponse";
401
- const _Us = "User";
402
- const _V = "Value";
403
- const _VE = "ValidationException";
404
- const _W = "Website";
405
- const _c = "client";
406
- const _e = "error";
407
- const _hE = "httpError";
408
- const _hH = "httpHeader";
409
- const _s = "server";
410
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.identitystore";
411
- const n0 = "com.amazonaws.identitystore";
412
- var ExternalIdIdentifier = [0, n0, _EII, 8, 0];
413
- var ExternalIdIssuer = [0, n0, _EIIx, 8, 0];
414
- var GroupDisplayName = [0, n0, _GDN, 8, 0];
415
- var SensitiveStringType = [0, n0, _SST, 8, 0];
416
- var UserName = [0, n0, _UN, 8, 0];
417
- var AccessDeniedException$ = [-3, n0, _ADE,
418
- { [_e]: _c, [_hE]: 403 },
419
- [_M, _RI, _R],
420
- [0, 0, 0]
421
- ];
422
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
423
- var Address$ = [3, n0, _A,
424
- 0,
425
- [_SA, _L, _Re, _PC, _C, _F, _T, _P],
426
- [[() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 2]
427
- ];
428
- var AttributeOperation$ = [3, n0, _AO,
429
- 0,
430
- [_AP, _AV],
431
- [0, 15], 1
432
- ];
433
- var ConflictException$ = [-3, n0, _CE,
434
- { [_e]: _c, [_hE]: 409 },
435
- [_M, _RI, _R],
436
- [0, 0, 0]
437
- ];
438
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
439
- var CreateGroupMembershipRequest$ = [3, n0, _CGMR,
440
- 0,
441
- [_ISI, _GI, _MI],
442
- [0, 0, () => MemberId$], 3
443
- ];
444
- var CreateGroupMembershipResponse$ = [3, n0, _CGMRr,
445
- 0,
446
- [_MIe, _ISI],
447
- [0, 0], 2
448
- ];
449
- var CreateGroupRequest$ = [3, n0, _CGR,
450
- 0,
451
- [_ISI, _DN, _D],
452
- [0, [() => GroupDisplayName, 0], [() => SensitiveStringType, 0]], 1
453
- ];
454
- var CreateGroupResponse$ = [3, n0, _CGRr,
455
- 0,
456
- [_GI, _ISI],
457
- [0, 0], 2
458
- ];
459
- var CreateUserRequest$ = [3, n0, _CUR,
460
- 0,
461
- [_ISI, _UN, _N, _DN, _NN, _PU, _E, _Ad, _PN, _UT, _Ti, _PL, _Lo, _Tim, _Ph, _W, _B, _Ro, _Ex],
462
- [0, [() => UserName, 0], [() => Name$, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Emails, 0], [() => Addresses, 0], [() => PhoneNumbers, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Photos, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Roles, 0], 128 | 15], 1
463
- ];
464
- var CreateUserResponse$ = [3, n0, _CURr,
465
- 0,
466
- [_ISI, _UI],
467
- [0, 0], 2
468
- ];
469
- var DeleteGroupMembershipRequest$ = [3, n0, _DGMR,
470
- 0,
471
- [_ISI, _MIe],
472
- [0, 0], 2
473
- ];
474
- var DeleteGroupMembershipResponse$ = [3, n0, _DGMRe,
475
- 0,
476
- [],
477
- []
478
- ];
479
- var DeleteGroupRequest$ = [3, n0, _DGR,
480
- 0,
481
- [_ISI, _GI],
482
- [0, 0], 2
483
- ];
484
- var DeleteGroupResponse$ = [3, n0, _DGRe,
485
- 0,
486
- [],
487
- []
488
- ];
489
- var DeleteUserRequest$ = [3, n0, _DUR,
490
- 0,
491
- [_ISI, _UI],
492
- [0, 0], 2
493
- ];
494
- var DeleteUserResponse$ = [3, n0, _DURe,
495
- 0,
496
- [],
497
- []
498
- ];
499
- var DescribeGroupMembershipRequest$ = [3, n0, _DGMRes,
500
- 0,
501
- [_ISI, _MIe],
502
- [0, 0], 2
503
- ];
504
- var DescribeGroupMembershipResponse$ = [3, n0, _DGMResc,
505
- 0,
506
- [_ISI, _MIe, _GI, _MI, _CA, _UA, _CB, _UB],
507
- [0, 0, 0, () => MemberId$, 4, 4, 0, 0], 4
508
- ];
509
- var DescribeGroupRequest$ = [3, n0, _DGRes,
510
- 0,
511
- [_ISI, _GI],
512
- [0, 0], 2
513
- ];
514
- var DescribeGroupResponse$ = [3, n0, _DGResc,
515
- 0,
516
- [_GI, _ISI, _DN, _EI, _D, _CA, _UA, _CB, _UB],
517
- [0, 0, [() => GroupDisplayName, 0], [() => ExternalIds, 0], [() => SensitiveStringType, 0], 4, 4, 0, 0], 2
518
- ];
519
- var DescribeUserRequest$ = [3, n0, _DURes,
520
- 0,
521
- [_ISI, _UI, _Ex],
522
- [0, 0, 64 | 0], 2
523
- ];
524
- var DescribeUserResponse$ = [3, n0, _DUResc,
525
- 0,
526
- [_ISI, _UI, _UN, _EI, _N, _DN, _NN, _PU, _E, _Ad, _PN, _UT, _Ti, _PL, _Lo, _Tim, _US, _Ph, _W, _B, _Ro, _CA, _CB, _UA, _UB, _Ex],
527
- [0, 0, [() => UserName, 0], [() => ExternalIds, 0], [() => Name$, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Emails, 0], [() => Addresses, 0], [() => PhoneNumbers, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 0, [() => Photos, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Roles, 0], 4, 0, 4, 0, 128 | 15], 2
528
- ];
529
- var Email$ = [3, n0, _Em,
530
- 0,
531
- [_V, _T, _P],
532
- [[() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 2]
533
- ];
534
- var ExternalId$ = [3, n0, _EIx,
535
- 0,
536
- [_I, _Id],
537
- [[() => ExternalIdIssuer, 0], [() => ExternalIdIdentifier, 0]], 2
538
- ];
539
- var Filter$ = [3, n0, _Fi,
540
- 0,
541
- [_AP, _AV],
542
- [0, [() => SensitiveStringType, 0]], 2
543
- ];
544
- var GetGroupIdRequest$ = [3, n0, _GGIR,
545
- 0,
546
- [_ISI, _AI],
547
- [0, [() => AlternateIdentifier$, 0]], 2
548
- ];
549
- var GetGroupIdResponse$ = [3, n0, _GGIRe,
550
- 0,
551
- [_GI, _ISI],
552
- [0, 0], 2
553
- ];
554
- var GetGroupMembershipIdRequest$ = [3, n0, _GGMIR,
555
- 0,
556
- [_ISI, _GI, _MI],
557
- [0, 0, () => MemberId$], 3
558
- ];
559
- var GetGroupMembershipIdResponse$ = [3, n0, _GGMIRe,
560
- 0,
561
- [_MIe, _ISI],
562
- [0, 0], 2
563
- ];
564
- var GetUserIdRequest$ = [3, n0, _GUIR,
565
- 0,
566
- [_ISI, _AI],
567
- [0, [() => AlternateIdentifier$, 0]], 2
568
- ];
569
- var GetUserIdResponse$ = [3, n0, _GUIRe,
570
- 0,
571
- [_ISI, _UI],
572
- [0, 0], 2
573
- ];
574
- var Group$ = [3, n0, _G,
575
- 0,
576
- [_GI, _ISI, _DN, _EI, _D, _CA, _UA, _CB, _UB],
577
- [0, 0, [() => GroupDisplayName, 0], [() => ExternalIds, 0], [() => SensitiveStringType, 0], 4, 4, 0, 0], 2
578
- ];
579
- var GroupMembership$ = [3, n0, _GM,
580
- 0,
581
- [_ISI, _MIe, _GI, _MI, _CA, _UA, _CB, _UB],
582
- [0, 0, 0, () => MemberId$, 4, 4, 0, 0], 1
583
- ];
584
- var GroupMembershipExistenceResult$ = [3, n0, _GMER,
585
- 0,
586
- [_GI, _MI, _ME],
587
- [0, () => MemberId$, 2]
588
- ];
589
- var InternalServerException$ = [-3, n0, _ISE,
590
- { [_e]: _s, [_hE]: 500 },
591
- [_M, _RI, _RAS],
592
- [0, 0, [1, { [_hH]: _RA }]]
593
- ];
594
- schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
595
- var IsMemberInGroupsRequest$ = [3, n0, _IMIGR,
596
- 0,
597
- [_ISI, _MI, _GIr],
598
- [0, () => MemberId$, 64 | 0], 3
599
- ];
600
- var IsMemberInGroupsResponse$ = [3, n0, _IMIGRs,
601
- 0,
602
- [_Res],
603
- [() => GroupMembershipExistenceResults], 1
604
- ];
605
- var ListGroupMembershipsForMemberRequest$ = [3, n0, _LGMFMR,
606
- 0,
607
- [_ISI, _MI, _MR, _NT],
608
- [0, () => MemberId$, 1, 0], 2
609
- ];
610
- var ListGroupMembershipsForMemberResponse$ = [3, n0, _LGMFMRi,
611
- 0,
612
- [_GMr, _NT],
613
- [() => GroupMemberships, 0], 1
614
- ];
615
- var ListGroupMembershipsRequest$ = [3, n0, _LGMR,
616
- 0,
617
- [_ISI, _GI, _MR, _NT],
618
- [0, 0, 1, 0], 2
619
- ];
620
- var ListGroupMembershipsResponse$ = [3, n0, _LGMRi,
621
- 0,
622
- [_GMr, _NT],
623
- [() => GroupMemberships, 0], 1
624
- ];
625
- var ListGroupsRequest$ = [3, n0, _LGR,
626
- 0,
627
- [_ISI, _MR, _NT, _Fil],
628
- [0, 1, 0, [() => Filters, 0]], 1
629
- ];
630
- var ListGroupsResponse$ = [3, n0, _LGRi,
631
- 0,
632
- [_Gr, _NT],
633
- [[() => Groups, 0], 0], 1
634
- ];
635
- var ListUsersRequest$ = [3, n0, _LUR,
636
- 0,
637
- [_ISI, _Ex, _MR, _NT, _Fil],
638
- [0, 64 | 0, 1, 0, [() => Filters, 0]], 1
639
- ];
640
- var ListUsersResponse$ = [3, n0, _LURi,
641
- 0,
642
- [_U, _NT],
643
- [[() => Users, 0], 0], 1
644
- ];
645
- var Name$ = [3, n0, _N,
646
- 0,
647
- [_F, _FN, _GN, _MN, _HP, _HS],
648
- [[() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0]]
649
- ];
650
- var PhoneNumber$ = [3, n0, _PNh,
651
- 0,
652
- [_V, _T, _P],
653
- [[() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 2]
654
- ];
655
- var Photo$ = [3, n0, _Pho,
656
- 0,
657
- [_V, _T, _Di, _P],
658
- [[() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 2], 1
659
- ];
660
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
661
- { [_e]: _c, [_hE]: 404 },
662
- [_RT, _RIe, _R, _M, _RI],
663
- [0, 0, 0, 0, 0]
664
- ];
665
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
666
- var Role$ = [3, n0, _Rol,
667
- 0,
668
- [_V, _T, _P],
669
- [[() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 2]
670
- ];
671
- var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
672
- { [_e]: _c, [_hE]: 402 },
673
- [_M, _RI],
674
- [0, 0]
675
- ];
676
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
677
- var ThrottlingException$ = [-3, n0, _TE,
678
- { [_e]: _c, [_hE]: 429 },
679
- [_M, _RI, _RAS, _R],
680
- [0, 0, [1, { [_hH]: _RA }], 0]
681
- ];
682
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
683
- var UniqueAttribute$ = [3, n0, _UAn,
684
- 0,
685
- [_AP, _AV],
686
- [0, 15], 2
687
- ];
688
- var UpdateGroupRequest$ = [3, n0, _UGR,
689
- 0,
690
- [_ISI, _GI, _O],
691
- [0, 0, () => AttributeOperations], 3
692
- ];
693
- var UpdateGroupResponse$ = [3, n0, _UGRp,
694
- 0,
695
- [],
696
- []
697
- ];
698
- var UpdateUserRequest$ = [3, n0, _UUR,
699
- 0,
700
- [_ISI, _UI, _O],
701
- [0, 0, () => AttributeOperations], 3
702
- ];
703
- var UpdateUserResponse$ = [3, n0, _UURp,
704
- 0,
705
- [],
706
- []
707
- ];
708
- var User$ = [3, n0, _Us,
709
- 0,
710
- [_ISI, _UI, _UN, _EI, _N, _DN, _NN, _PU, _E, _Ad, _PN, _UT, _Ti, _PL, _Lo, _Tim, _US, _Ph, _W, _B, _Ro, _CA, _CB, _UA, _UB, _Ex],
711
- [0, 0, [() => UserName, 0], [() => ExternalIds, 0], [() => Name$, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Emails, 0], [() => Addresses, 0], [() => PhoneNumbers, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], 0, [() => Photos, 0], [() => SensitiveStringType, 0], [() => SensitiveStringType, 0], [() => Roles, 0], 4, 0, 4, 0, 128 | 15], 2
712
- ];
713
- var ValidationException$ = [-3, n0, _VE,
714
- { [_e]: _c, [_hE]: 400 },
715
- [_M, _RI, _R],
716
- [0, 0, 0]
717
- ];
718
- schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
719
- var IdentitystoreServiceException$ = [-3, _sm, "IdentitystoreServiceException", 0, [], []];
720
- schema.TypeRegistry.for(_sm).registerError(IdentitystoreServiceException$, IdentitystoreServiceException);
721
- var Addresses = [1, n0, _Ad,
722
- 0, [() => Address$,
723
- 0]
724
- ];
725
- var AttributeOperations = [1, n0, _AOt,
726
- 0, () => AttributeOperation$
727
- ];
728
- var Emails = [1, n0, _E,
729
- 0, [() => Email$,
730
- 0]
731
- ];
732
- var ExternalIds = [1, n0, _EI,
733
- 0, [() => ExternalId$,
734
- 0]
735
- ];
736
- var Filters = [1, n0, _Fil,
737
- 0, [() => Filter$,
738
- 0]
739
- ];
740
- var GroupMembershipExistenceResults = [1, n0, _GMERr,
741
- 0, () => GroupMembershipExistenceResult$
742
- ];
743
- var GroupMemberships = [1, n0, _GMr,
744
- 0, () => GroupMembership$
745
- ];
746
- var Groups = [1, n0, _Gr,
747
- 0, [() => Group$,
748
- 0]
749
- ];
750
- var PhoneNumbers = [1, n0, _PN,
751
- 0, [() => PhoneNumber$,
752
- 0]
753
- ];
754
- var Photos = [1, n0, _Ph,
755
- 0, [() => Photo$,
756
- 0]
757
- ];
758
- var Roles = [1, n0, _Ro,
759
- 0, [() => Role$,
760
- 0]
761
- ];
762
- var Users = [1, n0, _U,
763
- 0, [() => User$,
764
- 0]
765
- ];
766
- var AlternateIdentifier$ = [4, n0, _AI,
767
- 0,
768
- [_EIx, _UAn],
769
- [[() => ExternalId$, 0], () => UniqueAttribute$]
770
- ];
771
- var MemberId$ = [4, n0, _MI,
772
- 0,
773
- [_UI],
774
- [0]
775
- ];
776
- var CreateGroup$ = [9, n0, _CG,
777
- 0, () => CreateGroupRequest$, () => CreateGroupResponse$
778
- ];
779
- var CreateGroupMembership$ = [9, n0, _CGM,
780
- 0, () => CreateGroupMembershipRequest$, () => CreateGroupMembershipResponse$
781
- ];
782
- var CreateUser$ = [9, n0, _CU,
783
- 0, () => CreateUserRequest$, () => CreateUserResponse$
784
- ];
785
- var DeleteGroup$ = [9, n0, _DG,
786
- 2, () => DeleteGroupRequest$, () => DeleteGroupResponse$
787
- ];
788
- var DeleteGroupMembership$ = [9, n0, _DGM,
789
- 2, () => DeleteGroupMembershipRequest$, () => DeleteGroupMembershipResponse$
790
- ];
791
- var DeleteUser$ = [9, n0, _DU,
792
- 2, () => DeleteUserRequest$, () => DeleteUserResponse$
793
- ];
794
- var DescribeGroup$ = [9, n0, _DGe,
795
- 0, () => DescribeGroupRequest$, () => DescribeGroupResponse$
796
- ];
797
- var DescribeGroupMembership$ = [9, n0, _DGMe,
798
- 0, () => DescribeGroupMembershipRequest$, () => DescribeGroupMembershipResponse$
799
- ];
800
- var DescribeUser$ = [9, n0, _DUe,
801
- 0, () => DescribeUserRequest$, () => DescribeUserResponse$
802
- ];
803
- var GetGroupId$ = [9, n0, _GGI,
804
- 0, () => GetGroupIdRequest$, () => GetGroupIdResponse$
805
- ];
806
- var GetGroupMembershipId$ = [9, n0, _GGMI,
807
- 0, () => GetGroupMembershipIdRequest$, () => GetGroupMembershipIdResponse$
808
- ];
809
- var GetUserId$ = [9, n0, _GUI,
810
- 0, () => GetUserIdRequest$, () => GetUserIdResponse$
811
- ];
812
- var IsMemberInGroups$ = [9, n0, _IMIG,
813
- 0, () => IsMemberInGroupsRequest$, () => IsMemberInGroupsResponse$
814
- ];
815
- var ListGroupMemberships$ = [9, n0, _LGM,
816
- 0, () => ListGroupMembershipsRequest$, () => ListGroupMembershipsResponse$
817
- ];
818
- var ListGroupMembershipsForMember$ = [9, n0, _LGMFM,
819
- 0, () => ListGroupMembershipsForMemberRequest$, () => ListGroupMembershipsForMemberResponse$
820
- ];
821
- var ListGroups$ = [9, n0, _LG,
822
- 0, () => ListGroupsRequest$, () => ListGroupsResponse$
823
- ];
824
- var ListUsers$ = [9, n0, _LU,
825
- 0, () => ListUsersRequest$, () => ListUsersResponse$
826
- ];
827
- var UpdateGroup$ = [9, n0, _UG,
828
- 0, () => UpdateGroupRequest$, () => UpdateGroupResponse$
829
- ];
830
- var UpdateUser$ = [9, n0, _UU,
831
- 0, () => UpdateUserRequest$, () => UpdateUserResponse$
832
- ];
833
-
834
116
  class CreateGroupCommand extends smithyClient.Command
835
117
  .classBuilder()
836
118
  .ep(commonParams)
@@ -839,7 +121,7 @@ class CreateGroupCommand extends smithyClient.Command
839
121
  })
840
122
  .s("AWSIdentityStore", "CreateGroup", {})
841
123
  .n("IdentitystoreClient", "CreateGroupCommand")
842
- .sc(CreateGroup$)
124
+ .sc(schemas_0.CreateGroup$)
843
125
  .build() {
844
126
  }
845
127
 
@@ -851,7 +133,7 @@ class CreateGroupMembershipCommand extends smithyClient.Command
851
133
  })
852
134
  .s("AWSIdentityStore", "CreateGroupMembership", {})
853
135
  .n("IdentitystoreClient", "CreateGroupMembershipCommand")
854
- .sc(CreateGroupMembership$)
136
+ .sc(schemas_0.CreateGroupMembership$)
855
137
  .build() {
856
138
  }
857
139
 
@@ -863,7 +145,7 @@ class CreateUserCommand extends smithyClient.Command
863
145
  })
864
146
  .s("AWSIdentityStore", "CreateUser", {})
865
147
  .n("IdentitystoreClient", "CreateUserCommand")
866
- .sc(CreateUser$)
148
+ .sc(schemas_0.CreateUser$)
867
149
  .build() {
868
150
  }
869
151
 
@@ -875,7 +157,7 @@ class DeleteGroupCommand extends smithyClient.Command
875
157
  })
876
158
  .s("AWSIdentityStore", "DeleteGroup", {})
877
159
  .n("IdentitystoreClient", "DeleteGroupCommand")
878
- .sc(DeleteGroup$)
160
+ .sc(schemas_0.DeleteGroup$)
879
161
  .build() {
880
162
  }
881
163
 
@@ -887,7 +169,7 @@ class DeleteGroupMembershipCommand extends smithyClient.Command
887
169
  })
888
170
  .s("AWSIdentityStore", "DeleteGroupMembership", {})
889
171
  .n("IdentitystoreClient", "DeleteGroupMembershipCommand")
890
- .sc(DeleteGroupMembership$)
172
+ .sc(schemas_0.DeleteGroupMembership$)
891
173
  .build() {
892
174
  }
893
175
 
@@ -899,7 +181,7 @@ class DeleteUserCommand extends smithyClient.Command
899
181
  })
900
182
  .s("AWSIdentityStore", "DeleteUser", {})
901
183
  .n("IdentitystoreClient", "DeleteUserCommand")
902
- .sc(DeleteUser$)
184
+ .sc(schemas_0.DeleteUser$)
903
185
  .build() {
904
186
  }
905
187
 
@@ -911,7 +193,7 @@ class DescribeGroupCommand extends smithyClient.Command
911
193
  })
912
194
  .s("AWSIdentityStore", "DescribeGroup", {})
913
195
  .n("IdentitystoreClient", "DescribeGroupCommand")
914
- .sc(DescribeGroup$)
196
+ .sc(schemas_0.DescribeGroup$)
915
197
  .build() {
916
198
  }
917
199
 
@@ -923,7 +205,7 @@ class DescribeGroupMembershipCommand extends smithyClient.Command
923
205
  })
924
206
  .s("AWSIdentityStore", "DescribeGroupMembership", {})
925
207
  .n("IdentitystoreClient", "DescribeGroupMembershipCommand")
926
- .sc(DescribeGroupMembership$)
208
+ .sc(schemas_0.DescribeGroupMembership$)
927
209
  .build() {
928
210
  }
929
211
 
@@ -935,7 +217,7 @@ class DescribeUserCommand extends smithyClient.Command
935
217
  })
936
218
  .s("AWSIdentityStore", "DescribeUser", {})
937
219
  .n("IdentitystoreClient", "DescribeUserCommand")
938
- .sc(DescribeUser$)
220
+ .sc(schemas_0.DescribeUser$)
939
221
  .build() {
940
222
  }
941
223
 
@@ -947,7 +229,7 @@ class GetGroupIdCommand extends smithyClient.Command
947
229
  })
948
230
  .s("AWSIdentityStore", "GetGroupId", {})
949
231
  .n("IdentitystoreClient", "GetGroupIdCommand")
950
- .sc(GetGroupId$)
232
+ .sc(schemas_0.GetGroupId$)
951
233
  .build() {
952
234
  }
953
235
 
@@ -959,7 +241,7 @@ class GetGroupMembershipIdCommand extends smithyClient.Command
959
241
  })
960
242
  .s("AWSIdentityStore", "GetGroupMembershipId", {})
961
243
  .n("IdentitystoreClient", "GetGroupMembershipIdCommand")
962
- .sc(GetGroupMembershipId$)
244
+ .sc(schemas_0.GetGroupMembershipId$)
963
245
  .build() {
964
246
  }
965
247
 
@@ -971,7 +253,7 @@ class GetUserIdCommand extends smithyClient.Command
971
253
  })
972
254
  .s("AWSIdentityStore", "GetUserId", {})
973
255
  .n("IdentitystoreClient", "GetUserIdCommand")
974
- .sc(GetUserId$)
256
+ .sc(schemas_0.GetUserId$)
975
257
  .build() {
976
258
  }
977
259
 
@@ -983,7 +265,7 @@ class IsMemberInGroupsCommand extends smithyClient.Command
983
265
  })
984
266
  .s("AWSIdentityStore", "IsMemberInGroups", {})
985
267
  .n("IdentitystoreClient", "IsMemberInGroupsCommand")
986
- .sc(IsMemberInGroups$)
268
+ .sc(schemas_0.IsMemberInGroups$)
987
269
  .build() {
988
270
  }
989
271
 
@@ -995,7 +277,7 @@ class ListGroupMembershipsCommand extends smithyClient.Command
995
277
  })
996
278
  .s("AWSIdentityStore", "ListGroupMemberships", {})
997
279
  .n("IdentitystoreClient", "ListGroupMembershipsCommand")
998
- .sc(ListGroupMemberships$)
280
+ .sc(schemas_0.ListGroupMemberships$)
999
281
  .build() {
1000
282
  }
1001
283
 
@@ -1007,7 +289,7 @@ class ListGroupMembershipsForMemberCommand extends smithyClient.Command
1007
289
  })
1008
290
  .s("AWSIdentityStore", "ListGroupMembershipsForMember", {})
1009
291
  .n("IdentitystoreClient", "ListGroupMembershipsForMemberCommand")
1010
- .sc(ListGroupMembershipsForMember$)
292
+ .sc(schemas_0.ListGroupMembershipsForMember$)
1011
293
  .build() {
1012
294
  }
1013
295
 
@@ -1019,7 +301,7 @@ class ListGroupsCommand extends smithyClient.Command
1019
301
  })
1020
302
  .s("AWSIdentityStore", "ListGroups", {})
1021
303
  .n("IdentitystoreClient", "ListGroupsCommand")
1022
- .sc(ListGroups$)
304
+ .sc(schemas_0.ListGroups$)
1023
305
  .build() {
1024
306
  }
1025
307
 
@@ -1031,7 +313,7 @@ class ListUsersCommand extends smithyClient.Command
1031
313
  })
1032
314
  .s("AWSIdentityStore", "ListUsers", {})
1033
315
  .n("IdentitystoreClient", "ListUsersCommand")
1034
- .sc(ListUsers$)
316
+ .sc(schemas_0.ListUsers$)
1035
317
  .build() {
1036
318
  }
1037
319
 
@@ -1043,7 +325,7 @@ class UpdateGroupCommand extends smithyClient.Command
1043
325
  })
1044
326
  .s("AWSIdentityStore", "UpdateGroup", {})
1045
327
  .n("IdentitystoreClient", "UpdateGroupCommand")
1046
- .sc(UpdateGroup$)
328
+ .sc(schemas_0.UpdateGroup$)
1047
329
  .build() {
1048
330
  }
1049
331
 
@@ -1055,7 +337,7 @@ class UpdateUserCommand extends smithyClient.Command
1055
337
  })
1056
338
  .s("AWSIdentityStore", "UpdateUser", {})
1057
339
  .n("IdentitystoreClient", "UpdateUserCommand")
1058
- .sc(UpdateUser$)
340
+ .sc(schemas_0.UpdateUser$)
1059
341
  .build() {
1060
342
  }
1061
343
 
@@ -1137,124 +419,51 @@ Object.defineProperty(exports, "__Client", {
1137
419
  enumerable: true,
1138
420
  get: function () { return smithyClient.Client; }
1139
421
  });
1140
- exports.AccessDeniedException = AccessDeniedException;
1141
- exports.AccessDeniedException$ = AccessDeniedException$;
422
+ Object.defineProperty(exports, "IdentitystoreServiceException", {
423
+ enumerable: true,
424
+ get: function () { return IdentitystoreServiceException.IdentitystoreServiceException; }
425
+ });
1142
426
  exports.AccessDeniedExceptionReason = AccessDeniedExceptionReason;
1143
- exports.Address$ = Address$;
1144
- exports.AlternateIdentifier$ = AlternateIdentifier$;
1145
- exports.AttributeOperation$ = AttributeOperation$;
1146
- exports.ConflictException = ConflictException;
1147
- exports.ConflictException$ = ConflictException$;
1148
427
  exports.ConflictExceptionReason = ConflictExceptionReason;
1149
- exports.CreateGroup$ = CreateGroup$;
1150
428
  exports.CreateGroupCommand = CreateGroupCommand;
1151
- exports.CreateGroupMembership$ = CreateGroupMembership$;
1152
429
  exports.CreateGroupMembershipCommand = CreateGroupMembershipCommand;
1153
- exports.CreateGroupMembershipRequest$ = CreateGroupMembershipRequest$;
1154
- exports.CreateGroupMembershipResponse$ = CreateGroupMembershipResponse$;
1155
- exports.CreateGroupRequest$ = CreateGroupRequest$;
1156
- exports.CreateGroupResponse$ = CreateGroupResponse$;
1157
- exports.CreateUser$ = CreateUser$;
1158
430
  exports.CreateUserCommand = CreateUserCommand;
1159
- exports.CreateUserRequest$ = CreateUserRequest$;
1160
- exports.CreateUserResponse$ = CreateUserResponse$;
1161
- exports.DeleteGroup$ = DeleteGroup$;
1162
431
  exports.DeleteGroupCommand = DeleteGroupCommand;
1163
- exports.DeleteGroupMembership$ = DeleteGroupMembership$;
1164
432
  exports.DeleteGroupMembershipCommand = DeleteGroupMembershipCommand;
1165
- exports.DeleteGroupMembershipRequest$ = DeleteGroupMembershipRequest$;
1166
- exports.DeleteGroupMembershipResponse$ = DeleteGroupMembershipResponse$;
1167
- exports.DeleteGroupRequest$ = DeleteGroupRequest$;
1168
- exports.DeleteGroupResponse$ = DeleteGroupResponse$;
1169
- exports.DeleteUser$ = DeleteUser$;
1170
433
  exports.DeleteUserCommand = DeleteUserCommand;
1171
- exports.DeleteUserRequest$ = DeleteUserRequest$;
1172
- exports.DeleteUserResponse$ = DeleteUserResponse$;
1173
- exports.DescribeGroup$ = DescribeGroup$;
1174
434
  exports.DescribeGroupCommand = DescribeGroupCommand;
1175
- exports.DescribeGroupMembership$ = DescribeGroupMembership$;
1176
435
  exports.DescribeGroupMembershipCommand = DescribeGroupMembershipCommand;
1177
- exports.DescribeGroupMembershipRequest$ = DescribeGroupMembershipRequest$;
1178
- exports.DescribeGroupMembershipResponse$ = DescribeGroupMembershipResponse$;
1179
- exports.DescribeGroupRequest$ = DescribeGroupRequest$;
1180
- exports.DescribeGroupResponse$ = DescribeGroupResponse$;
1181
- exports.DescribeUser$ = DescribeUser$;
1182
436
  exports.DescribeUserCommand = DescribeUserCommand;
1183
- exports.DescribeUserRequest$ = DescribeUserRequest$;
1184
- exports.DescribeUserResponse$ = DescribeUserResponse$;
1185
- exports.Email$ = Email$;
1186
- exports.ExternalId$ = ExternalId$;
1187
- exports.Filter$ = Filter$;
1188
- exports.GetGroupId$ = GetGroupId$;
1189
437
  exports.GetGroupIdCommand = GetGroupIdCommand;
1190
- exports.GetGroupIdRequest$ = GetGroupIdRequest$;
1191
- exports.GetGroupIdResponse$ = GetGroupIdResponse$;
1192
- exports.GetGroupMembershipId$ = GetGroupMembershipId$;
1193
438
  exports.GetGroupMembershipIdCommand = GetGroupMembershipIdCommand;
1194
- exports.GetGroupMembershipIdRequest$ = GetGroupMembershipIdRequest$;
1195
- exports.GetGroupMembershipIdResponse$ = GetGroupMembershipIdResponse$;
1196
- exports.GetUserId$ = GetUserId$;
1197
439
  exports.GetUserIdCommand = GetUserIdCommand;
1198
- exports.GetUserIdRequest$ = GetUserIdRequest$;
1199
- exports.GetUserIdResponse$ = GetUserIdResponse$;
1200
- exports.Group$ = Group$;
1201
- exports.GroupMembership$ = GroupMembership$;
1202
- exports.GroupMembershipExistenceResult$ = GroupMembershipExistenceResult$;
1203
440
  exports.Identitystore = Identitystore;
1204
441
  exports.IdentitystoreClient = IdentitystoreClient;
1205
- exports.IdentitystoreServiceException = IdentitystoreServiceException;
1206
- exports.IdentitystoreServiceException$ = IdentitystoreServiceException$;
1207
- exports.InternalServerException = InternalServerException;
1208
- exports.InternalServerException$ = InternalServerException$;
1209
- exports.IsMemberInGroups$ = IsMemberInGroups$;
1210
442
  exports.IsMemberInGroupsCommand = IsMemberInGroupsCommand;
1211
- exports.IsMemberInGroupsRequest$ = IsMemberInGroupsRequest$;
1212
- exports.IsMemberInGroupsResponse$ = IsMemberInGroupsResponse$;
1213
- exports.ListGroupMemberships$ = ListGroupMemberships$;
1214
443
  exports.ListGroupMembershipsCommand = ListGroupMembershipsCommand;
1215
- exports.ListGroupMembershipsForMember$ = ListGroupMembershipsForMember$;
1216
444
  exports.ListGroupMembershipsForMemberCommand = ListGroupMembershipsForMemberCommand;
1217
- exports.ListGroupMembershipsForMemberRequest$ = ListGroupMembershipsForMemberRequest$;
1218
- exports.ListGroupMembershipsForMemberResponse$ = ListGroupMembershipsForMemberResponse$;
1219
- exports.ListGroupMembershipsRequest$ = ListGroupMembershipsRequest$;
1220
- exports.ListGroupMembershipsResponse$ = ListGroupMembershipsResponse$;
1221
- exports.ListGroups$ = ListGroups$;
1222
445
  exports.ListGroupsCommand = ListGroupsCommand;
1223
- exports.ListGroupsRequest$ = ListGroupsRequest$;
1224
- exports.ListGroupsResponse$ = ListGroupsResponse$;
1225
- exports.ListUsers$ = ListUsers$;
1226
446
  exports.ListUsersCommand = ListUsersCommand;
1227
- exports.ListUsersRequest$ = ListUsersRequest$;
1228
- exports.ListUsersResponse$ = ListUsersResponse$;
1229
- exports.MemberId$ = MemberId$;
1230
- exports.Name$ = Name$;
1231
- exports.PhoneNumber$ = PhoneNumber$;
1232
- exports.Photo$ = Photo$;
1233
- exports.ResourceNotFoundException = ResourceNotFoundException;
1234
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1235
447
  exports.ResourceNotFoundExceptionReason = ResourceNotFoundExceptionReason;
1236
448
  exports.ResourceType = ResourceType;
1237
- exports.Role$ = Role$;
1238
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1239
- exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1240
- exports.ThrottlingException = ThrottlingException;
1241
- exports.ThrottlingException$ = ThrottlingException$;
1242
449
  exports.ThrottlingExceptionReason = ThrottlingExceptionReason;
1243
- exports.UniqueAttribute$ = UniqueAttribute$;
1244
- exports.UpdateGroup$ = UpdateGroup$;
1245
450
  exports.UpdateGroupCommand = UpdateGroupCommand;
1246
- exports.UpdateGroupRequest$ = UpdateGroupRequest$;
1247
- exports.UpdateGroupResponse$ = UpdateGroupResponse$;
1248
- exports.UpdateUser$ = UpdateUser$;
1249
451
  exports.UpdateUserCommand = UpdateUserCommand;
1250
- exports.UpdateUserRequest$ = UpdateUserRequest$;
1251
- exports.UpdateUserResponse$ = UpdateUserResponse$;
1252
- exports.User$ = User$;
1253
452
  exports.UserStatus = UserStatus;
1254
- exports.ValidationException = ValidationException;
1255
- exports.ValidationException$ = ValidationException$;
1256
453
  exports.ValidationExceptionReason = ValidationExceptionReason;
1257
454
  exports.paginateListGroupMemberships = paginateListGroupMemberships;
1258
455
  exports.paginateListGroupMembershipsForMember = paginateListGroupMembershipsForMember;
1259
456
  exports.paginateListGroups = paginateListGroups;
1260
457
  exports.paginateListUsers = paginateListUsers;
458
+ Object.keys(schemas_0).forEach(function (k) {
459
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
460
+ enumerable: true,
461
+ get: function () { return schemas_0[k]; }
462
+ });
463
+ });
464
+ Object.keys(errors).forEach(function (k) {
465
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
466
+ enumerable: true,
467
+ get: function () { return errors[k]; }
468
+ });
469
+ });