@aws-sdk/client-identitystore 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Identitystore.d.ts +0 -19
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -214
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,49 +1,33 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
3
|
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
4
|
-
|
|
5
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
5
|
readonly name: "AccessDeniedException";
|
|
7
6
|
readonly $fault: "client";
|
|
8
7
|
Message?: string;
|
|
9
|
-
|
|
10
8
|
RequestId?: string;
|
|
11
|
-
|
|
12
9
|
constructor(
|
|
13
10
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
14
11
|
);
|
|
15
12
|
}
|
|
16
|
-
|
|
17
13
|
export interface Address {
|
|
18
14
|
StreetAddress?: string;
|
|
19
|
-
|
|
20
15
|
Locality?: string;
|
|
21
|
-
|
|
22
16
|
Region?: string;
|
|
23
|
-
|
|
24
17
|
PostalCode?: string;
|
|
25
|
-
|
|
26
18
|
Country?: string;
|
|
27
|
-
|
|
28
19
|
Formatted?: string;
|
|
29
|
-
|
|
30
20
|
Type?: string;
|
|
31
|
-
|
|
32
21
|
Primary?: boolean;
|
|
33
22
|
}
|
|
34
|
-
|
|
35
23
|
export interface ExternalId {
|
|
36
24
|
Issuer: string | undefined;
|
|
37
|
-
|
|
38
25
|
Id: string | undefined;
|
|
39
26
|
}
|
|
40
|
-
|
|
41
27
|
export interface UniqueAttribute {
|
|
42
28
|
AttributePath: string | undefined;
|
|
43
|
-
|
|
44
29
|
AttributeValue: __DocumentType | undefined;
|
|
45
30
|
}
|
|
46
|
-
|
|
47
31
|
export declare type AlternateIdentifier =
|
|
48
32
|
| AlternateIdentifier.ExternalIdMember
|
|
49
33
|
| AlternateIdentifier.UniqueAttributeMember
|
|
@@ -54,7 +38,6 @@ export declare namespace AlternateIdentifier {
|
|
|
54
38
|
UniqueAttribute?: never;
|
|
55
39
|
$unknown?: never;
|
|
56
40
|
}
|
|
57
|
-
|
|
58
41
|
interface UniqueAttributeMember {
|
|
59
42
|
ExternalId?: never;
|
|
60
43
|
UniqueAttribute: UniqueAttribute;
|
|
@@ -72,20 +55,16 @@ export declare namespace AlternateIdentifier {
|
|
|
72
55
|
}
|
|
73
56
|
const visit: <T>(value: AlternateIdentifier, visitor: Visitor<T>) => T;
|
|
74
57
|
}
|
|
75
|
-
|
|
76
58
|
export interface AttributeOperation {
|
|
77
59
|
AttributePath: string | undefined;
|
|
78
|
-
|
|
79
60
|
AttributeValue?: __DocumentType;
|
|
80
61
|
}
|
|
81
62
|
export interface GetGroupIdRequest {
|
|
82
63
|
IdentityStoreId: string | undefined;
|
|
83
|
-
|
|
84
64
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
85
65
|
}
|
|
86
66
|
export interface GetGroupIdResponse {
|
|
87
67
|
GroupId: string | undefined;
|
|
88
|
-
|
|
89
68
|
IdentityStoreId: string | undefined;
|
|
90
69
|
}
|
|
91
70
|
export declare enum ResourceType {
|
|
@@ -94,35 +73,26 @@ export declare enum ResourceType {
|
|
|
94
73
|
IDENTITY_STORE = "IDENTITY_STORE",
|
|
95
74
|
USER = "USER",
|
|
96
75
|
}
|
|
97
|
-
|
|
98
76
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
99
77
|
readonly name: "ResourceNotFoundException";
|
|
100
78
|
readonly $fault: "client";
|
|
101
|
-
|
|
102
79
|
ResourceType?: ResourceType | string;
|
|
103
|
-
|
|
104
80
|
ResourceId?: string;
|
|
105
81
|
Message?: string;
|
|
106
|
-
|
|
107
82
|
RequestId?: string;
|
|
108
|
-
|
|
109
83
|
constructor(
|
|
110
84
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
111
85
|
);
|
|
112
86
|
}
|
|
113
|
-
|
|
114
87
|
export declare class ValidationException extends __BaseException {
|
|
115
88
|
readonly name: "ValidationException";
|
|
116
89
|
readonly $fault: "client";
|
|
117
90
|
Message?: string;
|
|
118
|
-
|
|
119
91
|
RequestId?: string;
|
|
120
|
-
|
|
121
92
|
constructor(
|
|
122
93
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
123
94
|
);
|
|
124
95
|
}
|
|
125
|
-
|
|
126
96
|
export declare type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
127
97
|
export declare namespace MemberId {
|
|
128
98
|
interface UserIdMember {
|
|
@@ -141,212 +111,153 @@ export declare namespace MemberId {
|
|
|
141
111
|
}
|
|
142
112
|
export interface GetGroupMembershipIdRequest {
|
|
143
113
|
IdentityStoreId: string | undefined;
|
|
144
|
-
|
|
145
114
|
GroupId: string | undefined;
|
|
146
|
-
|
|
147
115
|
MemberId: MemberId | undefined;
|
|
148
116
|
}
|
|
149
117
|
export interface GetGroupMembershipIdResponse {
|
|
150
118
|
MembershipId: string | undefined;
|
|
151
|
-
|
|
152
119
|
IdentityStoreId: string | undefined;
|
|
153
120
|
}
|
|
154
121
|
export interface GetUserIdRequest {
|
|
155
122
|
IdentityStoreId: string | undefined;
|
|
156
|
-
|
|
157
123
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
158
124
|
}
|
|
159
125
|
export interface GetUserIdResponse {
|
|
160
126
|
UserId: string | undefined;
|
|
161
|
-
|
|
162
127
|
IdentityStoreId: string | undefined;
|
|
163
128
|
}
|
|
164
129
|
export declare enum ConflictExceptionReason {
|
|
165
130
|
CONCURRENT_MODIFICATION = "CONCURRENT_MODIFICATION",
|
|
166
131
|
UNIQUENESS_CONSTRAINT_VIOLATION = "UNIQUENESS_CONSTRAINT_VIOLATION",
|
|
167
132
|
}
|
|
168
|
-
|
|
169
133
|
export declare class ConflictException extends __BaseException {
|
|
170
134
|
readonly name: "ConflictException";
|
|
171
135
|
readonly $fault: "client";
|
|
172
136
|
Message?: string;
|
|
173
|
-
|
|
174
137
|
RequestId?: string;
|
|
175
|
-
|
|
176
138
|
Reason?: ConflictExceptionReason | string;
|
|
177
|
-
|
|
178
139
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
179
140
|
}
|
|
180
141
|
export interface CreateGroupMembershipRequest {
|
|
181
142
|
IdentityStoreId: string | undefined;
|
|
182
|
-
|
|
183
143
|
GroupId: string | undefined;
|
|
184
|
-
|
|
185
144
|
MemberId: MemberId | undefined;
|
|
186
145
|
}
|
|
187
146
|
export interface CreateGroupMembershipResponse {
|
|
188
147
|
MembershipId: string | undefined;
|
|
189
|
-
|
|
190
148
|
IdentityStoreId: string | undefined;
|
|
191
149
|
}
|
|
192
|
-
|
|
193
150
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
194
151
|
readonly name: "ServiceQuotaExceededException";
|
|
195
152
|
readonly $fault: "client";
|
|
196
153
|
Message?: string;
|
|
197
|
-
|
|
198
154
|
RequestId?: string;
|
|
199
|
-
|
|
200
155
|
constructor(
|
|
201
156
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
202
157
|
);
|
|
203
158
|
}
|
|
204
159
|
export interface DeleteGroupMembershipRequest {
|
|
205
160
|
IdentityStoreId: string | undefined;
|
|
206
|
-
|
|
207
161
|
MembershipId: string | undefined;
|
|
208
162
|
}
|
|
209
163
|
export interface DeleteGroupMembershipResponse {}
|
|
210
164
|
export interface DescribeGroupMembershipRequest {
|
|
211
165
|
IdentityStoreId: string | undefined;
|
|
212
|
-
|
|
213
166
|
MembershipId: string | undefined;
|
|
214
167
|
}
|
|
215
168
|
export interface DescribeGroupMembershipResponse {
|
|
216
169
|
IdentityStoreId: string | undefined;
|
|
217
|
-
|
|
218
170
|
MembershipId: string | undefined;
|
|
219
|
-
|
|
220
171
|
GroupId: string | undefined;
|
|
221
|
-
|
|
222
172
|
MemberId: MemberId | undefined;
|
|
223
173
|
}
|
|
224
174
|
export interface ListGroupMembershipsRequest {
|
|
225
175
|
IdentityStoreId: string | undefined;
|
|
226
|
-
|
|
227
176
|
GroupId: string | undefined;
|
|
228
|
-
|
|
229
177
|
MaxResults?: number;
|
|
230
|
-
|
|
231
178
|
NextToken?: string;
|
|
232
179
|
}
|
|
233
|
-
|
|
234
180
|
export interface GroupMembership {
|
|
235
181
|
IdentityStoreId: string | undefined;
|
|
236
|
-
|
|
237
182
|
MembershipId?: string;
|
|
238
|
-
|
|
239
183
|
GroupId?: string;
|
|
240
|
-
|
|
241
184
|
MemberId?: MemberId;
|
|
242
185
|
}
|
|
243
186
|
export interface ListGroupMembershipsResponse {
|
|
244
187
|
GroupMemberships: GroupMembership[] | undefined;
|
|
245
|
-
|
|
246
188
|
NextToken?: string;
|
|
247
189
|
}
|
|
248
190
|
export interface CreateGroupRequest {
|
|
249
191
|
IdentityStoreId: string | undefined;
|
|
250
|
-
|
|
251
192
|
DisplayName?: string;
|
|
252
|
-
|
|
253
193
|
Description?: string;
|
|
254
194
|
}
|
|
255
195
|
export interface CreateGroupResponse {
|
|
256
196
|
GroupId: string | undefined;
|
|
257
|
-
|
|
258
197
|
IdentityStoreId: string | undefined;
|
|
259
198
|
}
|
|
260
199
|
export interface DeleteGroupRequest {
|
|
261
200
|
IdentityStoreId: string | undefined;
|
|
262
|
-
|
|
263
201
|
GroupId: string | undefined;
|
|
264
202
|
}
|
|
265
203
|
export interface DeleteGroupResponse {}
|
|
266
204
|
export interface DescribeGroupRequest {
|
|
267
205
|
IdentityStoreId: string | undefined;
|
|
268
|
-
|
|
269
206
|
GroupId: string | undefined;
|
|
270
207
|
}
|
|
271
208
|
export interface DescribeGroupResponse {
|
|
272
209
|
GroupId: string | undefined;
|
|
273
|
-
|
|
274
210
|
DisplayName?: string;
|
|
275
|
-
|
|
276
211
|
ExternalIds?: ExternalId[];
|
|
277
|
-
|
|
278
212
|
Description?: string;
|
|
279
|
-
|
|
280
213
|
IdentityStoreId: string | undefined;
|
|
281
214
|
}
|
|
282
|
-
|
|
283
215
|
export interface Filter {
|
|
284
216
|
AttributePath: string | undefined;
|
|
285
|
-
|
|
286
217
|
AttributeValue: string | undefined;
|
|
287
218
|
}
|
|
288
219
|
export interface ListGroupsRequest {
|
|
289
220
|
IdentityStoreId: string | undefined;
|
|
290
|
-
|
|
291
221
|
MaxResults?: number;
|
|
292
|
-
|
|
293
222
|
NextToken?: string;
|
|
294
|
-
|
|
295
223
|
Filters?: Filter[];
|
|
296
224
|
}
|
|
297
|
-
|
|
298
225
|
export interface Group {
|
|
299
226
|
GroupId: string | undefined;
|
|
300
|
-
|
|
301
227
|
DisplayName?: string;
|
|
302
|
-
|
|
303
228
|
ExternalIds?: ExternalId[];
|
|
304
|
-
|
|
305
229
|
Description?: string;
|
|
306
|
-
|
|
307
230
|
IdentityStoreId: string | undefined;
|
|
308
231
|
}
|
|
309
232
|
export interface ListGroupsResponse {
|
|
310
233
|
Groups: Group[] | undefined;
|
|
311
|
-
|
|
312
234
|
NextToken?: string;
|
|
313
235
|
}
|
|
314
236
|
export interface UpdateGroupRequest {
|
|
315
237
|
IdentityStoreId: string | undefined;
|
|
316
|
-
|
|
317
238
|
GroupId: string | undefined;
|
|
318
|
-
|
|
319
239
|
Operations: AttributeOperation[] | undefined;
|
|
320
240
|
}
|
|
321
241
|
export interface UpdateGroupResponse {}
|
|
322
|
-
|
|
323
242
|
export declare class InternalServerException extends __BaseException {
|
|
324
243
|
readonly name: "InternalServerException";
|
|
325
244
|
readonly $fault: "server";
|
|
326
245
|
$retryable: {};
|
|
327
246
|
Message?: string;
|
|
328
|
-
|
|
329
247
|
RequestId?: string;
|
|
330
|
-
|
|
331
248
|
RetryAfterSeconds?: number;
|
|
332
|
-
|
|
333
249
|
constructor(
|
|
334
250
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
335
251
|
);
|
|
336
252
|
}
|
|
337
253
|
export interface IsMemberInGroupsRequest {
|
|
338
254
|
IdentityStoreId: string | undefined;
|
|
339
|
-
|
|
340
255
|
MemberId: MemberId | undefined;
|
|
341
|
-
|
|
342
256
|
GroupIds: string[] | undefined;
|
|
343
257
|
}
|
|
344
|
-
|
|
345
258
|
export interface GroupMembershipExistenceResult {
|
|
346
259
|
GroupId?: string;
|
|
347
|
-
|
|
348
260
|
MemberId?: MemberId;
|
|
349
|
-
|
|
350
261
|
MembershipExists?: boolean;
|
|
351
262
|
}
|
|
352
263
|
export interface IsMemberInGroupsResponse {
|
|
@@ -354,19 +265,14 @@ export interface IsMemberInGroupsResponse {
|
|
|
354
265
|
}
|
|
355
266
|
export interface ListGroupMembershipsForMemberRequest {
|
|
356
267
|
IdentityStoreId: string | undefined;
|
|
357
|
-
|
|
358
268
|
MemberId: MemberId | undefined;
|
|
359
|
-
|
|
360
269
|
MaxResults?: number;
|
|
361
|
-
|
|
362
270
|
NextToken?: string;
|
|
363
271
|
}
|
|
364
272
|
export interface ListGroupMembershipsForMemberResponse {
|
|
365
273
|
GroupMemberships: GroupMembership[] | undefined;
|
|
366
|
-
|
|
367
274
|
NextToken?: string;
|
|
368
275
|
}
|
|
369
|
-
|
|
370
276
|
export declare class ThrottlingException extends __BaseException {
|
|
371
277
|
readonly name: "ThrottlingException";
|
|
372
278
|
readonly $fault: "client";
|
|
@@ -374,366 +280,246 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
374
280
|
throttling: boolean;
|
|
375
281
|
};
|
|
376
282
|
Message?: string;
|
|
377
|
-
|
|
378
283
|
RequestId?: string;
|
|
379
|
-
|
|
380
284
|
RetryAfterSeconds?: number;
|
|
381
|
-
|
|
382
285
|
constructor(
|
|
383
286
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
384
287
|
);
|
|
385
288
|
}
|
|
386
|
-
|
|
387
289
|
export interface Email {
|
|
388
290
|
Value?: string;
|
|
389
|
-
|
|
390
291
|
Type?: string;
|
|
391
|
-
|
|
392
292
|
Primary?: boolean;
|
|
393
293
|
}
|
|
394
|
-
|
|
395
294
|
export interface Name {
|
|
396
295
|
Formatted?: string;
|
|
397
|
-
|
|
398
296
|
FamilyName?: string;
|
|
399
|
-
|
|
400
297
|
GivenName?: string;
|
|
401
|
-
|
|
402
298
|
MiddleName?: string;
|
|
403
|
-
|
|
404
299
|
HonorificPrefix?: string;
|
|
405
|
-
|
|
406
300
|
HonorificSuffix?: string;
|
|
407
301
|
}
|
|
408
|
-
|
|
409
302
|
export interface PhoneNumber {
|
|
410
303
|
Value?: string;
|
|
411
|
-
|
|
412
304
|
Type?: string;
|
|
413
|
-
|
|
414
305
|
Primary?: boolean;
|
|
415
306
|
}
|
|
416
307
|
export interface CreateUserRequest {
|
|
417
308
|
IdentityStoreId: string | undefined;
|
|
418
|
-
|
|
419
309
|
UserName?: string;
|
|
420
|
-
|
|
421
310
|
Name?: Name;
|
|
422
|
-
|
|
423
311
|
DisplayName?: string;
|
|
424
|
-
|
|
425
312
|
NickName?: string;
|
|
426
|
-
|
|
427
313
|
ProfileUrl?: string;
|
|
428
|
-
|
|
429
314
|
Emails?: Email[];
|
|
430
|
-
|
|
431
315
|
Addresses?: Address[];
|
|
432
|
-
|
|
433
316
|
PhoneNumbers?: PhoneNumber[];
|
|
434
|
-
|
|
435
317
|
UserType?: string;
|
|
436
|
-
|
|
437
318
|
Title?: string;
|
|
438
|
-
|
|
439
319
|
PreferredLanguage?: string;
|
|
440
|
-
|
|
441
320
|
Locale?: string;
|
|
442
|
-
|
|
443
321
|
Timezone?: string;
|
|
444
322
|
}
|
|
445
323
|
export interface CreateUserResponse {
|
|
446
324
|
UserId: string | undefined;
|
|
447
|
-
|
|
448
325
|
IdentityStoreId: string | undefined;
|
|
449
326
|
}
|
|
450
327
|
export interface DeleteUserRequest {
|
|
451
328
|
IdentityStoreId: string | undefined;
|
|
452
|
-
|
|
453
329
|
UserId: string | undefined;
|
|
454
330
|
}
|
|
455
331
|
export interface DeleteUserResponse {}
|
|
456
332
|
export interface DescribeUserRequest {
|
|
457
333
|
IdentityStoreId: string | undefined;
|
|
458
|
-
|
|
459
334
|
UserId: string | undefined;
|
|
460
335
|
}
|
|
461
336
|
export interface DescribeUserResponse {
|
|
462
337
|
UserName?: string;
|
|
463
|
-
|
|
464
338
|
UserId: string | undefined;
|
|
465
|
-
|
|
466
339
|
ExternalIds?: ExternalId[];
|
|
467
|
-
|
|
468
340
|
Name?: Name;
|
|
469
|
-
|
|
470
341
|
DisplayName?: string;
|
|
471
|
-
|
|
472
342
|
NickName?: string;
|
|
473
|
-
|
|
474
343
|
ProfileUrl?: string;
|
|
475
|
-
|
|
476
344
|
Emails?: Email[];
|
|
477
|
-
|
|
478
345
|
Addresses?: Address[];
|
|
479
|
-
|
|
480
346
|
PhoneNumbers?: PhoneNumber[];
|
|
481
|
-
|
|
482
347
|
UserType?: string;
|
|
483
|
-
|
|
484
348
|
Title?: string;
|
|
485
|
-
|
|
486
349
|
PreferredLanguage?: string;
|
|
487
|
-
|
|
488
350
|
Locale?: string;
|
|
489
|
-
|
|
490
351
|
Timezone?: string;
|
|
491
|
-
|
|
492
352
|
IdentityStoreId: string | undefined;
|
|
493
353
|
}
|
|
494
354
|
export interface ListUsersRequest {
|
|
495
355
|
IdentityStoreId: string | undefined;
|
|
496
|
-
|
|
497
356
|
MaxResults?: number;
|
|
498
|
-
|
|
499
357
|
NextToken?: string;
|
|
500
|
-
|
|
501
358
|
Filters?: Filter[];
|
|
502
359
|
}
|
|
503
|
-
|
|
504
360
|
export interface User {
|
|
505
361
|
UserName?: string;
|
|
506
|
-
|
|
507
362
|
UserId: string | undefined;
|
|
508
|
-
|
|
509
363
|
ExternalIds?: ExternalId[];
|
|
510
|
-
|
|
511
364
|
Name?: Name;
|
|
512
|
-
|
|
513
365
|
DisplayName?: string;
|
|
514
|
-
|
|
515
366
|
NickName?: string;
|
|
516
|
-
|
|
517
367
|
ProfileUrl?: string;
|
|
518
|
-
|
|
519
368
|
Emails?: Email[];
|
|
520
|
-
|
|
521
369
|
Addresses?: Address[];
|
|
522
|
-
|
|
523
370
|
PhoneNumbers?: PhoneNumber[];
|
|
524
|
-
|
|
525
371
|
UserType?: string;
|
|
526
|
-
|
|
527
372
|
Title?: string;
|
|
528
|
-
|
|
529
373
|
PreferredLanguage?: string;
|
|
530
|
-
|
|
531
374
|
Locale?: string;
|
|
532
|
-
|
|
533
375
|
Timezone?: string;
|
|
534
|
-
|
|
535
376
|
IdentityStoreId: string | undefined;
|
|
536
377
|
}
|
|
537
378
|
export interface ListUsersResponse {
|
|
538
379
|
Users: User[] | undefined;
|
|
539
|
-
|
|
540
380
|
NextToken?: string;
|
|
541
381
|
}
|
|
542
382
|
export interface UpdateUserRequest {
|
|
543
383
|
IdentityStoreId: string | undefined;
|
|
544
|
-
|
|
545
384
|
UserId: string | undefined;
|
|
546
|
-
|
|
547
385
|
Operations: AttributeOperation[] | undefined;
|
|
548
386
|
}
|
|
549
387
|
export interface UpdateUserResponse {}
|
|
550
|
-
|
|
551
388
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
552
|
-
|
|
553
389
|
export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
|
|
554
|
-
|
|
555
390
|
export declare const UniqueAttributeFilterSensitiveLog: (
|
|
556
391
|
obj: UniqueAttribute
|
|
557
392
|
) => any;
|
|
558
|
-
|
|
559
393
|
export declare const AlternateIdentifierFilterSensitiveLog: (
|
|
560
394
|
obj: AlternateIdentifier
|
|
561
395
|
) => any;
|
|
562
|
-
|
|
563
396
|
export declare const AttributeOperationFilterSensitiveLog: (
|
|
564
397
|
obj: AttributeOperation
|
|
565
398
|
) => any;
|
|
566
|
-
|
|
567
399
|
export declare const GetGroupIdRequestFilterSensitiveLog: (
|
|
568
400
|
obj: GetGroupIdRequest
|
|
569
401
|
) => any;
|
|
570
|
-
|
|
571
402
|
export declare const GetGroupIdResponseFilterSensitiveLog: (
|
|
572
403
|
obj: GetGroupIdResponse
|
|
573
404
|
) => any;
|
|
574
|
-
|
|
575
405
|
export declare const MemberIdFilterSensitiveLog: (obj: MemberId) => any;
|
|
576
|
-
|
|
577
406
|
export declare const GetGroupMembershipIdRequestFilterSensitiveLog: (
|
|
578
407
|
obj: GetGroupMembershipIdRequest
|
|
579
408
|
) => any;
|
|
580
|
-
|
|
581
409
|
export declare const GetGroupMembershipIdResponseFilterSensitiveLog: (
|
|
582
410
|
obj: GetGroupMembershipIdResponse
|
|
583
411
|
) => any;
|
|
584
|
-
|
|
585
412
|
export declare const GetUserIdRequestFilterSensitiveLog: (
|
|
586
413
|
obj: GetUserIdRequest
|
|
587
414
|
) => any;
|
|
588
|
-
|
|
589
415
|
export declare const GetUserIdResponseFilterSensitiveLog: (
|
|
590
416
|
obj: GetUserIdResponse
|
|
591
417
|
) => any;
|
|
592
|
-
|
|
593
418
|
export declare const CreateGroupMembershipRequestFilterSensitiveLog: (
|
|
594
419
|
obj: CreateGroupMembershipRequest
|
|
595
420
|
) => any;
|
|
596
|
-
|
|
597
421
|
export declare const CreateGroupMembershipResponseFilterSensitiveLog: (
|
|
598
422
|
obj: CreateGroupMembershipResponse
|
|
599
423
|
) => any;
|
|
600
|
-
|
|
601
424
|
export declare const DeleteGroupMembershipRequestFilterSensitiveLog: (
|
|
602
425
|
obj: DeleteGroupMembershipRequest
|
|
603
426
|
) => any;
|
|
604
|
-
|
|
605
427
|
export declare const DeleteGroupMembershipResponseFilterSensitiveLog: (
|
|
606
428
|
obj: DeleteGroupMembershipResponse
|
|
607
429
|
) => any;
|
|
608
|
-
|
|
609
430
|
export declare const DescribeGroupMembershipRequestFilterSensitiveLog: (
|
|
610
431
|
obj: DescribeGroupMembershipRequest
|
|
611
432
|
) => any;
|
|
612
|
-
|
|
613
433
|
export declare const DescribeGroupMembershipResponseFilterSensitiveLog: (
|
|
614
434
|
obj: DescribeGroupMembershipResponse
|
|
615
435
|
) => any;
|
|
616
|
-
|
|
617
436
|
export declare const ListGroupMembershipsRequestFilterSensitiveLog: (
|
|
618
437
|
obj: ListGroupMembershipsRequest
|
|
619
438
|
) => any;
|
|
620
|
-
|
|
621
439
|
export declare const GroupMembershipFilterSensitiveLog: (
|
|
622
440
|
obj: GroupMembership
|
|
623
441
|
) => any;
|
|
624
|
-
|
|
625
442
|
export declare const ListGroupMembershipsResponseFilterSensitiveLog: (
|
|
626
443
|
obj: ListGroupMembershipsResponse
|
|
627
444
|
) => any;
|
|
628
|
-
|
|
629
445
|
export declare const CreateGroupRequestFilterSensitiveLog: (
|
|
630
446
|
obj: CreateGroupRequest
|
|
631
447
|
) => any;
|
|
632
|
-
|
|
633
448
|
export declare const CreateGroupResponseFilterSensitiveLog: (
|
|
634
449
|
obj: CreateGroupResponse
|
|
635
450
|
) => any;
|
|
636
|
-
|
|
637
451
|
export declare const DeleteGroupRequestFilterSensitiveLog: (
|
|
638
452
|
obj: DeleteGroupRequest
|
|
639
453
|
) => any;
|
|
640
|
-
|
|
641
454
|
export declare const DeleteGroupResponseFilterSensitiveLog: (
|
|
642
455
|
obj: DeleteGroupResponse
|
|
643
456
|
) => any;
|
|
644
|
-
|
|
645
457
|
export declare const DescribeGroupRequestFilterSensitiveLog: (
|
|
646
458
|
obj: DescribeGroupRequest
|
|
647
459
|
) => any;
|
|
648
|
-
|
|
649
460
|
export declare const DescribeGroupResponseFilterSensitiveLog: (
|
|
650
461
|
obj: DescribeGroupResponse
|
|
651
462
|
) => any;
|
|
652
|
-
|
|
653
463
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
654
|
-
|
|
655
464
|
export declare const ListGroupsRequestFilterSensitiveLog: (
|
|
656
465
|
obj: ListGroupsRequest
|
|
657
466
|
) => any;
|
|
658
|
-
|
|
659
467
|
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
660
|
-
|
|
661
468
|
export declare const ListGroupsResponseFilterSensitiveLog: (
|
|
662
469
|
obj: ListGroupsResponse
|
|
663
470
|
) => any;
|
|
664
|
-
|
|
665
471
|
export declare const UpdateGroupRequestFilterSensitiveLog: (
|
|
666
472
|
obj: UpdateGroupRequest
|
|
667
473
|
) => any;
|
|
668
|
-
|
|
669
474
|
export declare const UpdateGroupResponseFilterSensitiveLog: (
|
|
670
475
|
obj: UpdateGroupResponse
|
|
671
476
|
) => any;
|
|
672
|
-
|
|
673
477
|
export declare const IsMemberInGroupsRequestFilterSensitiveLog: (
|
|
674
478
|
obj: IsMemberInGroupsRequest
|
|
675
479
|
) => any;
|
|
676
|
-
|
|
677
480
|
export declare const GroupMembershipExistenceResultFilterSensitiveLog: (
|
|
678
481
|
obj: GroupMembershipExistenceResult
|
|
679
482
|
) => any;
|
|
680
|
-
|
|
681
483
|
export declare const IsMemberInGroupsResponseFilterSensitiveLog: (
|
|
682
484
|
obj: IsMemberInGroupsResponse
|
|
683
485
|
) => any;
|
|
684
|
-
|
|
685
486
|
export declare const ListGroupMembershipsForMemberRequestFilterSensitiveLog: (
|
|
686
487
|
obj: ListGroupMembershipsForMemberRequest
|
|
687
488
|
) => any;
|
|
688
|
-
|
|
689
489
|
export declare const ListGroupMembershipsForMemberResponseFilterSensitiveLog: (
|
|
690
490
|
obj: ListGroupMembershipsForMemberResponse
|
|
691
491
|
) => any;
|
|
692
|
-
|
|
693
492
|
export declare const EmailFilterSensitiveLog: (obj: Email) => any;
|
|
694
|
-
|
|
695
493
|
export declare const NameFilterSensitiveLog: (obj: Name) => any;
|
|
696
|
-
|
|
697
494
|
export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
|
|
698
|
-
|
|
699
495
|
export declare const CreateUserRequestFilterSensitiveLog: (
|
|
700
496
|
obj: CreateUserRequest
|
|
701
497
|
) => any;
|
|
702
|
-
|
|
703
498
|
export declare const CreateUserResponseFilterSensitiveLog: (
|
|
704
499
|
obj: CreateUserResponse
|
|
705
500
|
) => any;
|
|
706
|
-
|
|
707
501
|
export declare const DeleteUserRequestFilterSensitiveLog: (
|
|
708
502
|
obj: DeleteUserRequest
|
|
709
503
|
) => any;
|
|
710
|
-
|
|
711
504
|
export declare const DeleteUserResponseFilterSensitiveLog: (
|
|
712
505
|
obj: DeleteUserResponse
|
|
713
506
|
) => any;
|
|
714
|
-
|
|
715
507
|
export declare const DescribeUserRequestFilterSensitiveLog: (
|
|
716
508
|
obj: DescribeUserRequest
|
|
717
509
|
) => any;
|
|
718
|
-
|
|
719
510
|
export declare const DescribeUserResponseFilterSensitiveLog: (
|
|
720
511
|
obj: DescribeUserResponse
|
|
721
512
|
) => any;
|
|
722
|
-
|
|
723
513
|
export declare const ListUsersRequestFilterSensitiveLog: (
|
|
724
514
|
obj: ListUsersRequest
|
|
725
515
|
) => any;
|
|
726
|
-
|
|
727
516
|
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
728
|
-
|
|
729
517
|
export declare const ListUsersResponseFilterSensitiveLog: (
|
|
730
518
|
obj: ListUsersResponse
|
|
731
519
|
) => any;
|
|
732
|
-
|
|
733
520
|
export declare const UpdateUserRequestFilterSensitiveLog: (
|
|
734
521
|
obj: UpdateUserRequest
|
|
735
522
|
) => any;
|
|
736
|
-
|
|
737
523
|
export declare const UpdateUserResponseFilterSensitiveLog: (
|
|
738
524
|
obj: UpdateUserResponse
|
|
739
525
|
) => any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { IdentitystoreClientConfig } from "./IdentitystoreClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|