@aws-sdk/client-identitystore 3.721.0 → 3.723.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 +224 -106
- package/dist-es/IdentitystoreClient.js +1 -0
- package/dist-es/models/models_0.js +37 -18
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -179,7 +179,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
179
179
|
}, "resolveRuntimeExtensions");
|
|
180
180
|
|
|
181
181
|
// src/IdentitystoreClient.ts
|
|
182
|
-
var
|
|
182
|
+
var IdentitystoreClient = class extends import_smithy_client.Client {
|
|
183
|
+
static {
|
|
184
|
+
__name(this, "IdentitystoreClient");
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* The resolved configuration of IdentitystoreClient class. This is resolved and normalized from the {@link IdentitystoreClientConfig | constructor configuration interface}.
|
|
188
|
+
*/
|
|
189
|
+
config;
|
|
183
190
|
constructor(...[configuration]) {
|
|
184
191
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
185
192
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -189,7 +196,7 @@ var _IdentitystoreClient = class _IdentitystoreClient extends import_smithy_clie
|
|
|
189
196
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
190
197
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
191
198
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
192
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
199
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
193
200
|
super(_config_8);
|
|
194
201
|
this.config = _config_8;
|
|
195
202
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -217,8 +224,6 @@ var _IdentitystoreClient = class _IdentitystoreClient extends import_smithy_clie
|
|
|
217
224
|
super.destroy();
|
|
218
225
|
}
|
|
219
226
|
};
|
|
220
|
-
__name(_IdentitystoreClient, "IdentitystoreClient");
|
|
221
|
-
var IdentitystoreClient = _IdentitystoreClient;
|
|
222
227
|
|
|
223
228
|
// src/Identitystore.ts
|
|
224
229
|
|
|
@@ -233,7 +238,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
233
238
|
|
|
234
239
|
// src/models/IdentitystoreServiceException.ts
|
|
235
240
|
|
|
236
|
-
var
|
|
241
|
+
var IdentitystoreServiceException = class _IdentitystoreServiceException extends import_smithy_client.ServiceException {
|
|
242
|
+
static {
|
|
243
|
+
__name(this, "IdentitystoreServiceException");
|
|
244
|
+
}
|
|
237
245
|
/**
|
|
238
246
|
* @internal
|
|
239
247
|
*/
|
|
@@ -242,11 +250,22 @@ var _IdentitystoreServiceException = class _IdentitystoreServiceException extend
|
|
|
242
250
|
Object.setPrototypeOf(this, _IdentitystoreServiceException.prototype);
|
|
243
251
|
}
|
|
244
252
|
};
|
|
245
|
-
__name(_IdentitystoreServiceException, "IdentitystoreServiceException");
|
|
246
|
-
var IdentitystoreServiceException = _IdentitystoreServiceException;
|
|
247
253
|
|
|
248
254
|
// src/models/models_0.ts
|
|
249
|
-
var
|
|
255
|
+
var AccessDeniedException = class _AccessDeniedException extends IdentitystoreServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "AccessDeniedException");
|
|
258
|
+
}
|
|
259
|
+
name = "AccessDeniedException";
|
|
260
|
+
$fault = "client";
|
|
261
|
+
Message;
|
|
262
|
+
/**
|
|
263
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
264
|
+
* the identity store service for each sent request, and is then returned inside the exception
|
|
265
|
+
* if the request fails.</p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
RequestId;
|
|
250
269
|
/**
|
|
251
270
|
* @internal
|
|
252
271
|
*/
|
|
@@ -256,15 +275,11 @@ var _AccessDeniedException = class _AccessDeniedException extends IdentitystoreS
|
|
|
256
275
|
$fault: "client",
|
|
257
276
|
...opts
|
|
258
277
|
});
|
|
259
|
-
this.name = "AccessDeniedException";
|
|
260
|
-
this.$fault = "client";
|
|
261
278
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
262
279
|
this.Message = opts.Message;
|
|
263
280
|
this.RequestId = opts.RequestId;
|
|
264
281
|
}
|
|
265
282
|
};
|
|
266
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
267
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
268
283
|
var AlternateIdentifier;
|
|
269
284
|
((AlternateIdentifier2) => {
|
|
270
285
|
AlternateIdentifier2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -275,7 +290,26 @@ var AlternateIdentifier;
|
|
|
275
290
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
276
291
|
}, "visit");
|
|
277
292
|
})(AlternateIdentifier || (AlternateIdentifier = {}));
|
|
278
|
-
var
|
|
293
|
+
var InternalServerException = class _InternalServerException extends IdentitystoreServiceException {
|
|
294
|
+
static {
|
|
295
|
+
__name(this, "InternalServerException");
|
|
296
|
+
}
|
|
297
|
+
name = "InternalServerException";
|
|
298
|
+
$fault = "server";
|
|
299
|
+
$retryable = {};
|
|
300
|
+
Message;
|
|
301
|
+
/**
|
|
302
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
303
|
+
* the identity store service for each sent request, and is then returned inside the exception
|
|
304
|
+
* if the request fails.</p>
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
RequestId;
|
|
308
|
+
/**
|
|
309
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
RetryAfterSeconds;
|
|
279
313
|
/**
|
|
280
314
|
* @internal
|
|
281
315
|
*/
|
|
@@ -285,24 +319,42 @@ var _InternalServerException = class _InternalServerException extends Identityst
|
|
|
285
319
|
$fault: "server",
|
|
286
320
|
...opts
|
|
287
321
|
});
|
|
288
|
-
this.name = "InternalServerException";
|
|
289
|
-
this.$fault = "server";
|
|
290
|
-
this.$retryable = {};
|
|
291
322
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
292
323
|
this.Message = opts.Message;
|
|
293
324
|
this.RequestId = opts.RequestId;
|
|
294
325
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
295
326
|
}
|
|
296
327
|
};
|
|
297
|
-
__name(_InternalServerException, "InternalServerException");
|
|
298
|
-
var InternalServerException = _InternalServerException;
|
|
299
328
|
var ResourceType = {
|
|
300
329
|
GROUP: "GROUP",
|
|
301
330
|
GROUP_MEMBERSHIP: "GROUP_MEMBERSHIP",
|
|
302
331
|
IDENTITY_STORE: "IDENTITY_STORE",
|
|
303
332
|
USER: "USER"
|
|
304
333
|
};
|
|
305
|
-
var
|
|
334
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends IdentitystoreServiceException {
|
|
335
|
+
static {
|
|
336
|
+
__name(this, "ResourceNotFoundException");
|
|
337
|
+
}
|
|
338
|
+
name = "ResourceNotFoundException";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
/**
|
|
341
|
+
* <p>An enum object indicating the type of resource in the identity store service. Valid values include USER, GROUP, and IDENTITY_STORE.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
ResourceType;
|
|
345
|
+
/**
|
|
346
|
+
* <p>The identifier for a resource in the identity store that can be used as <code>UserId</code> or <code>GroupId</code>. The format for <code>ResourceId</code> is either <code>UUID</code> or <code>1234567890-UUID</code>, where <code>UUID</code> is a randomly generated value for each resource when it is created and <code>1234567890</code> represents the <code>IdentityStoreId</code> string value. In the case that the identity store is migrated from a legacy SSO identity store, the <code>ResourceId</code> for that identity store will be in the format of <code>UUID</code>. Otherwise, it will be in the <code>1234567890-UUID</code> format.</p>
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
ResourceId;
|
|
350
|
+
Message;
|
|
351
|
+
/**
|
|
352
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
353
|
+
* the identity store service for each sent request, and is then returned inside the exception
|
|
354
|
+
* if the request fails.</p>
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
RequestId;
|
|
306
358
|
/**
|
|
307
359
|
* @internal
|
|
308
360
|
*/
|
|
@@ -312,8 +364,6 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Identi
|
|
|
312
364
|
$fault: "client",
|
|
313
365
|
...opts
|
|
314
366
|
});
|
|
315
|
-
this.name = "ResourceNotFoundException";
|
|
316
|
-
this.$fault = "client";
|
|
317
367
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
318
368
|
this.ResourceType = opts.ResourceType;
|
|
319
369
|
this.ResourceId = opts.ResourceId;
|
|
@@ -321,9 +371,28 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Identi
|
|
|
321
371
|
this.RequestId = opts.RequestId;
|
|
322
372
|
}
|
|
323
373
|
};
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
374
|
+
var ThrottlingException = class _ThrottlingException extends IdentitystoreServiceException {
|
|
375
|
+
static {
|
|
376
|
+
__name(this, "ThrottlingException");
|
|
377
|
+
}
|
|
378
|
+
name = "ThrottlingException";
|
|
379
|
+
$fault = "client";
|
|
380
|
+
$retryable = {
|
|
381
|
+
throttling: true
|
|
382
|
+
};
|
|
383
|
+
Message;
|
|
384
|
+
/**
|
|
385
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
386
|
+
* the identity store service for each sent request, and is then returned inside the exception
|
|
387
|
+
* if the request fails.</p>
|
|
388
|
+
* @public
|
|
389
|
+
*/
|
|
390
|
+
RequestId;
|
|
391
|
+
/**
|
|
392
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
393
|
+
* @public
|
|
394
|
+
*/
|
|
395
|
+
RetryAfterSeconds;
|
|
327
396
|
/**
|
|
328
397
|
* @internal
|
|
329
398
|
*/
|
|
@@ -333,20 +402,26 @@ var _ThrottlingException = class _ThrottlingException extends IdentitystoreServi
|
|
|
333
402
|
$fault: "client",
|
|
334
403
|
...opts
|
|
335
404
|
});
|
|
336
|
-
this.name = "ThrottlingException";
|
|
337
|
-
this.$fault = "client";
|
|
338
|
-
this.$retryable = {
|
|
339
|
-
throttling: true
|
|
340
|
-
};
|
|
341
405
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
342
406
|
this.Message = opts.Message;
|
|
343
407
|
this.RequestId = opts.RequestId;
|
|
344
408
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
345
409
|
}
|
|
346
410
|
};
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
411
|
+
var ValidationException = class _ValidationException extends IdentitystoreServiceException {
|
|
412
|
+
static {
|
|
413
|
+
__name(this, "ValidationException");
|
|
414
|
+
}
|
|
415
|
+
name = "ValidationException";
|
|
416
|
+
$fault = "client";
|
|
417
|
+
Message;
|
|
418
|
+
/**
|
|
419
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
420
|
+
* the identity store service for each sent request, and is then returned inside the exception
|
|
421
|
+
* if the request fails.</p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
RequestId;
|
|
350
425
|
/**
|
|
351
426
|
* @internal
|
|
352
427
|
*/
|
|
@@ -356,15 +431,11 @@ var _ValidationException = class _ValidationException extends IdentitystoreServi
|
|
|
356
431
|
$fault: "client",
|
|
357
432
|
...opts
|
|
358
433
|
});
|
|
359
|
-
this.name = "ValidationException";
|
|
360
|
-
this.$fault = "client";
|
|
361
434
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
362
435
|
this.Message = opts.Message;
|
|
363
436
|
this.RequestId = opts.RequestId;
|
|
364
437
|
}
|
|
365
438
|
};
|
|
366
|
-
__name(_ValidationException, "ValidationException");
|
|
367
|
-
var ValidationException = _ValidationException;
|
|
368
439
|
var MemberId;
|
|
369
440
|
((MemberId3) => {
|
|
370
441
|
MemberId3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -377,7 +448,31 @@ var ConflictExceptionReason = {
|
|
|
377
448
|
CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION",
|
|
378
449
|
UNIQUENESS_CONSTRAINT_VIOLATION: "UNIQUENESS_CONSTRAINT_VIOLATION"
|
|
379
450
|
};
|
|
380
|
-
var
|
|
451
|
+
var ConflictException = class _ConflictException extends IdentitystoreServiceException {
|
|
452
|
+
static {
|
|
453
|
+
__name(this, "ConflictException");
|
|
454
|
+
}
|
|
455
|
+
name = "ConflictException";
|
|
456
|
+
$fault = "client";
|
|
457
|
+
Message;
|
|
458
|
+
/**
|
|
459
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.</p>
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
RequestId;
|
|
463
|
+
/**
|
|
464
|
+
* <p>This request cannot be completed for one of the following reasons:</p>
|
|
465
|
+
* <ul>
|
|
466
|
+
* <li>
|
|
467
|
+
* <p>Performing the requested operation would violate an existing uniqueness claim in the identity store. Resolve the conflict before retrying this request.</p>
|
|
468
|
+
* </li>
|
|
469
|
+
* <li>
|
|
470
|
+
* <p>The requested resource was being concurrently modified by another request.</p>
|
|
471
|
+
* </li>
|
|
472
|
+
* </ul>
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
475
|
+
Reason;
|
|
381
476
|
/**
|
|
382
477
|
* @internal
|
|
383
478
|
*/
|
|
@@ -387,17 +482,24 @@ var _ConflictException = class _ConflictException extends IdentitystoreServiceEx
|
|
|
387
482
|
$fault: "client",
|
|
388
483
|
...opts
|
|
389
484
|
});
|
|
390
|
-
this.name = "ConflictException";
|
|
391
|
-
this.$fault = "client";
|
|
392
485
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
393
486
|
this.Message = opts.Message;
|
|
394
487
|
this.RequestId = opts.RequestId;
|
|
395
488
|
this.Reason = opts.Reason;
|
|
396
489
|
}
|
|
397
490
|
};
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
491
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends IdentitystoreServiceException {
|
|
492
|
+
static {
|
|
493
|
+
__name(this, "ServiceQuotaExceededException");
|
|
494
|
+
}
|
|
495
|
+
name = "ServiceQuotaExceededException";
|
|
496
|
+
$fault = "client";
|
|
497
|
+
Message;
|
|
498
|
+
/**
|
|
499
|
+
* <p>The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.</p>
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
RequestId;
|
|
401
503
|
/**
|
|
402
504
|
* @internal
|
|
403
505
|
*/
|
|
@@ -407,15 +509,11 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
407
509
|
$fault: "client",
|
|
408
510
|
...opts
|
|
409
511
|
});
|
|
410
|
-
this.name = "ServiceQuotaExceededException";
|
|
411
|
-
this.$fault = "client";
|
|
412
512
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
413
513
|
this.Message = opts.Message;
|
|
414
514
|
this.RequestId = opts.RequestId;
|
|
415
515
|
}
|
|
416
516
|
};
|
|
417
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
418
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
419
517
|
var AddressFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
420
518
|
...obj,
|
|
421
519
|
...obj.StreetAddress && { StreetAddress: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1122,267 +1220,286 @@ function sharedHeaders(operation) {
|
|
|
1122
1220
|
__name(sharedHeaders, "sharedHeaders");
|
|
1123
1221
|
|
|
1124
1222
|
// src/commands/CreateGroupCommand.ts
|
|
1125
|
-
var
|
|
1223
|
+
var CreateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1126
1224
|
return [
|
|
1127
1225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1128
1226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1129
1227
|
];
|
|
1130
1228
|
}).s("AWSIdentityStore", "CreateGroup", {}).n("IdentitystoreClient", "CreateGroupCommand").f(CreateGroupRequestFilterSensitiveLog, void 0).ser(se_CreateGroupCommand).de(de_CreateGroupCommand).build() {
|
|
1229
|
+
static {
|
|
1230
|
+
__name(this, "CreateGroupCommand");
|
|
1231
|
+
}
|
|
1131
1232
|
};
|
|
1132
|
-
__name(_CreateGroupCommand, "CreateGroupCommand");
|
|
1133
|
-
var CreateGroupCommand = _CreateGroupCommand;
|
|
1134
1233
|
|
|
1135
1234
|
// src/commands/CreateGroupMembershipCommand.ts
|
|
1136
1235
|
|
|
1137
1236
|
|
|
1138
1237
|
|
|
1139
|
-
var
|
|
1238
|
+
var CreateGroupMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1140
1239
|
return [
|
|
1141
1240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1142
1241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1143
1242
|
];
|
|
1144
1243
|
}).s("AWSIdentityStore", "CreateGroupMembership", {}).n("IdentitystoreClient", "CreateGroupMembershipCommand").f(void 0, void 0).ser(se_CreateGroupMembershipCommand).de(de_CreateGroupMembershipCommand).build() {
|
|
1244
|
+
static {
|
|
1245
|
+
__name(this, "CreateGroupMembershipCommand");
|
|
1246
|
+
}
|
|
1145
1247
|
};
|
|
1146
|
-
__name(_CreateGroupMembershipCommand, "CreateGroupMembershipCommand");
|
|
1147
|
-
var CreateGroupMembershipCommand = _CreateGroupMembershipCommand;
|
|
1148
1248
|
|
|
1149
1249
|
// src/commands/CreateUserCommand.ts
|
|
1150
1250
|
|
|
1151
1251
|
|
|
1152
1252
|
|
|
1153
|
-
var
|
|
1253
|
+
var CreateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1154
1254
|
return [
|
|
1155
1255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1156
1256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1157
1257
|
];
|
|
1158
1258
|
}).s("AWSIdentityStore", "CreateUser", {}).n("IdentitystoreClient", "CreateUserCommand").f(CreateUserRequestFilterSensitiveLog, void 0).ser(se_CreateUserCommand).de(de_CreateUserCommand).build() {
|
|
1259
|
+
static {
|
|
1260
|
+
__name(this, "CreateUserCommand");
|
|
1261
|
+
}
|
|
1159
1262
|
};
|
|
1160
|
-
__name(_CreateUserCommand, "CreateUserCommand");
|
|
1161
|
-
var CreateUserCommand = _CreateUserCommand;
|
|
1162
1263
|
|
|
1163
1264
|
// src/commands/DeleteGroupCommand.ts
|
|
1164
1265
|
|
|
1165
1266
|
|
|
1166
1267
|
|
|
1167
|
-
var
|
|
1268
|
+
var DeleteGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1168
1269
|
return [
|
|
1169
1270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1170
1271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1171
1272
|
];
|
|
1172
1273
|
}).s("AWSIdentityStore", "DeleteGroup", {}).n("IdentitystoreClient", "DeleteGroupCommand").f(void 0, void 0).ser(se_DeleteGroupCommand).de(de_DeleteGroupCommand).build() {
|
|
1274
|
+
static {
|
|
1275
|
+
__name(this, "DeleteGroupCommand");
|
|
1276
|
+
}
|
|
1173
1277
|
};
|
|
1174
|
-
__name(_DeleteGroupCommand, "DeleteGroupCommand");
|
|
1175
|
-
var DeleteGroupCommand = _DeleteGroupCommand;
|
|
1176
1278
|
|
|
1177
1279
|
// src/commands/DeleteGroupMembershipCommand.ts
|
|
1178
1280
|
|
|
1179
1281
|
|
|
1180
1282
|
|
|
1181
|
-
var
|
|
1283
|
+
var DeleteGroupMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1182
1284
|
return [
|
|
1183
1285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1184
1286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1185
1287
|
];
|
|
1186
1288
|
}).s("AWSIdentityStore", "DeleteGroupMembership", {}).n("IdentitystoreClient", "DeleteGroupMembershipCommand").f(void 0, void 0).ser(se_DeleteGroupMembershipCommand).de(de_DeleteGroupMembershipCommand).build() {
|
|
1289
|
+
static {
|
|
1290
|
+
__name(this, "DeleteGroupMembershipCommand");
|
|
1291
|
+
}
|
|
1187
1292
|
};
|
|
1188
|
-
__name(_DeleteGroupMembershipCommand, "DeleteGroupMembershipCommand");
|
|
1189
|
-
var DeleteGroupMembershipCommand = _DeleteGroupMembershipCommand;
|
|
1190
1293
|
|
|
1191
1294
|
// src/commands/DeleteUserCommand.ts
|
|
1192
1295
|
|
|
1193
1296
|
|
|
1194
1297
|
|
|
1195
|
-
var
|
|
1298
|
+
var DeleteUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1196
1299
|
return [
|
|
1197
1300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1198
1301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1199
1302
|
];
|
|
1200
1303
|
}).s("AWSIdentityStore", "DeleteUser", {}).n("IdentitystoreClient", "DeleteUserCommand").f(void 0, void 0).ser(se_DeleteUserCommand).de(de_DeleteUserCommand).build() {
|
|
1304
|
+
static {
|
|
1305
|
+
__name(this, "DeleteUserCommand");
|
|
1306
|
+
}
|
|
1201
1307
|
};
|
|
1202
|
-
__name(_DeleteUserCommand, "DeleteUserCommand");
|
|
1203
|
-
var DeleteUserCommand = _DeleteUserCommand;
|
|
1204
1308
|
|
|
1205
1309
|
// src/commands/DescribeGroupCommand.ts
|
|
1206
1310
|
|
|
1207
1311
|
|
|
1208
1312
|
|
|
1209
|
-
var
|
|
1313
|
+
var DescribeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1210
1314
|
return [
|
|
1211
1315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1212
1316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1213
1317
|
];
|
|
1214
1318
|
}).s("AWSIdentityStore", "DescribeGroup", {}).n("IdentitystoreClient", "DescribeGroupCommand").f(void 0, DescribeGroupResponseFilterSensitiveLog).ser(se_DescribeGroupCommand).de(de_DescribeGroupCommand).build() {
|
|
1319
|
+
static {
|
|
1320
|
+
__name(this, "DescribeGroupCommand");
|
|
1321
|
+
}
|
|
1215
1322
|
};
|
|
1216
|
-
__name(_DescribeGroupCommand, "DescribeGroupCommand");
|
|
1217
|
-
var DescribeGroupCommand = _DescribeGroupCommand;
|
|
1218
1323
|
|
|
1219
1324
|
// src/commands/DescribeGroupMembershipCommand.ts
|
|
1220
1325
|
|
|
1221
1326
|
|
|
1222
1327
|
|
|
1223
|
-
var
|
|
1328
|
+
var DescribeGroupMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1224
1329
|
return [
|
|
1225
1330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1226
1331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1227
1332
|
];
|
|
1228
1333
|
}).s("AWSIdentityStore", "DescribeGroupMembership", {}).n("IdentitystoreClient", "DescribeGroupMembershipCommand").f(void 0, void 0).ser(se_DescribeGroupMembershipCommand).de(de_DescribeGroupMembershipCommand).build() {
|
|
1334
|
+
static {
|
|
1335
|
+
__name(this, "DescribeGroupMembershipCommand");
|
|
1336
|
+
}
|
|
1229
1337
|
};
|
|
1230
|
-
__name(_DescribeGroupMembershipCommand, "DescribeGroupMembershipCommand");
|
|
1231
|
-
var DescribeGroupMembershipCommand = _DescribeGroupMembershipCommand;
|
|
1232
1338
|
|
|
1233
1339
|
// src/commands/DescribeUserCommand.ts
|
|
1234
1340
|
|
|
1235
1341
|
|
|
1236
1342
|
|
|
1237
|
-
var
|
|
1343
|
+
var DescribeUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1238
1344
|
return [
|
|
1239
1345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1240
1346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1241
1347
|
];
|
|
1242
1348
|
}).s("AWSIdentityStore", "DescribeUser", {}).n("IdentitystoreClient", "DescribeUserCommand").f(void 0, DescribeUserResponseFilterSensitiveLog).ser(se_DescribeUserCommand).de(de_DescribeUserCommand).build() {
|
|
1349
|
+
static {
|
|
1350
|
+
__name(this, "DescribeUserCommand");
|
|
1351
|
+
}
|
|
1243
1352
|
};
|
|
1244
|
-
__name(_DescribeUserCommand, "DescribeUserCommand");
|
|
1245
|
-
var DescribeUserCommand = _DescribeUserCommand;
|
|
1246
1353
|
|
|
1247
1354
|
// src/commands/GetGroupIdCommand.ts
|
|
1248
1355
|
|
|
1249
1356
|
|
|
1250
1357
|
|
|
1251
|
-
var
|
|
1358
|
+
var GetGroupIdCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1252
1359
|
return [
|
|
1253
1360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1254
1361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1255
1362
|
];
|
|
1256
1363
|
}).s("AWSIdentityStore", "GetGroupId", {}).n("IdentitystoreClient", "GetGroupIdCommand").f(GetGroupIdRequestFilterSensitiveLog, void 0).ser(se_GetGroupIdCommand).de(de_GetGroupIdCommand).build() {
|
|
1364
|
+
static {
|
|
1365
|
+
__name(this, "GetGroupIdCommand");
|
|
1366
|
+
}
|
|
1257
1367
|
};
|
|
1258
|
-
__name(_GetGroupIdCommand, "GetGroupIdCommand");
|
|
1259
|
-
var GetGroupIdCommand = _GetGroupIdCommand;
|
|
1260
1368
|
|
|
1261
1369
|
// src/commands/GetGroupMembershipIdCommand.ts
|
|
1262
1370
|
|
|
1263
1371
|
|
|
1264
1372
|
|
|
1265
|
-
var
|
|
1373
|
+
var GetGroupMembershipIdCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1266
1374
|
return [
|
|
1267
1375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1268
1376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1269
1377
|
];
|
|
1270
1378
|
}).s("AWSIdentityStore", "GetGroupMembershipId", {}).n("IdentitystoreClient", "GetGroupMembershipIdCommand").f(void 0, void 0).ser(se_GetGroupMembershipIdCommand).de(de_GetGroupMembershipIdCommand).build() {
|
|
1379
|
+
static {
|
|
1380
|
+
__name(this, "GetGroupMembershipIdCommand");
|
|
1381
|
+
}
|
|
1271
1382
|
};
|
|
1272
|
-
__name(_GetGroupMembershipIdCommand, "GetGroupMembershipIdCommand");
|
|
1273
|
-
var GetGroupMembershipIdCommand = _GetGroupMembershipIdCommand;
|
|
1274
1383
|
|
|
1275
1384
|
// src/commands/GetUserIdCommand.ts
|
|
1276
1385
|
|
|
1277
1386
|
|
|
1278
1387
|
|
|
1279
|
-
var
|
|
1388
|
+
var GetUserIdCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1280
1389
|
return [
|
|
1281
1390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1282
1391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1283
1392
|
];
|
|
1284
1393
|
}).s("AWSIdentityStore", "GetUserId", {}).n("IdentitystoreClient", "GetUserIdCommand").f(GetUserIdRequestFilterSensitiveLog, void 0).ser(se_GetUserIdCommand).de(de_GetUserIdCommand).build() {
|
|
1394
|
+
static {
|
|
1395
|
+
__name(this, "GetUserIdCommand");
|
|
1396
|
+
}
|
|
1285
1397
|
};
|
|
1286
|
-
__name(_GetUserIdCommand, "GetUserIdCommand");
|
|
1287
|
-
var GetUserIdCommand = _GetUserIdCommand;
|
|
1288
1398
|
|
|
1289
1399
|
// src/commands/IsMemberInGroupsCommand.ts
|
|
1290
1400
|
|
|
1291
1401
|
|
|
1292
1402
|
|
|
1293
|
-
var
|
|
1403
|
+
var IsMemberInGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1294
1404
|
return [
|
|
1295
1405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1296
1406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1297
1407
|
];
|
|
1298
1408
|
}).s("AWSIdentityStore", "IsMemberInGroups", {}).n("IdentitystoreClient", "IsMemberInGroupsCommand").f(void 0, IsMemberInGroupsResponseFilterSensitiveLog).ser(se_IsMemberInGroupsCommand).de(de_IsMemberInGroupsCommand).build() {
|
|
1409
|
+
static {
|
|
1410
|
+
__name(this, "IsMemberInGroupsCommand");
|
|
1411
|
+
}
|
|
1299
1412
|
};
|
|
1300
|
-
__name(_IsMemberInGroupsCommand, "IsMemberInGroupsCommand");
|
|
1301
|
-
var IsMemberInGroupsCommand = _IsMemberInGroupsCommand;
|
|
1302
1413
|
|
|
1303
1414
|
// src/commands/ListGroupMembershipsCommand.ts
|
|
1304
1415
|
|
|
1305
1416
|
|
|
1306
1417
|
|
|
1307
|
-
var
|
|
1418
|
+
var ListGroupMembershipsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1308
1419
|
return [
|
|
1309
1420
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1310
1421
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1311
1422
|
];
|
|
1312
1423
|
}).s("AWSIdentityStore", "ListGroupMemberships", {}).n("IdentitystoreClient", "ListGroupMembershipsCommand").f(void 0, void 0).ser(se_ListGroupMembershipsCommand).de(de_ListGroupMembershipsCommand).build() {
|
|
1424
|
+
static {
|
|
1425
|
+
__name(this, "ListGroupMembershipsCommand");
|
|
1426
|
+
}
|
|
1313
1427
|
};
|
|
1314
|
-
__name(_ListGroupMembershipsCommand, "ListGroupMembershipsCommand");
|
|
1315
|
-
var ListGroupMembershipsCommand = _ListGroupMembershipsCommand;
|
|
1316
1428
|
|
|
1317
1429
|
// src/commands/ListGroupMembershipsForMemberCommand.ts
|
|
1318
1430
|
|
|
1319
1431
|
|
|
1320
1432
|
|
|
1321
|
-
var
|
|
1433
|
+
var ListGroupMembershipsForMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1322
1434
|
return [
|
|
1323
1435
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1324
1436
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1325
1437
|
];
|
|
1326
1438
|
}).s("AWSIdentityStore", "ListGroupMembershipsForMember", {}).n("IdentitystoreClient", "ListGroupMembershipsForMemberCommand").f(void 0, void 0).ser(se_ListGroupMembershipsForMemberCommand).de(de_ListGroupMembershipsForMemberCommand).build() {
|
|
1439
|
+
static {
|
|
1440
|
+
__name(this, "ListGroupMembershipsForMemberCommand");
|
|
1441
|
+
}
|
|
1327
1442
|
};
|
|
1328
|
-
__name(_ListGroupMembershipsForMemberCommand, "ListGroupMembershipsForMemberCommand");
|
|
1329
|
-
var ListGroupMembershipsForMemberCommand = _ListGroupMembershipsForMemberCommand;
|
|
1330
1443
|
|
|
1331
1444
|
// src/commands/ListGroupsCommand.ts
|
|
1332
1445
|
|
|
1333
1446
|
|
|
1334
1447
|
|
|
1335
|
-
var
|
|
1448
|
+
var ListGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1336
1449
|
return [
|
|
1337
1450
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1338
1451
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1339
1452
|
];
|
|
1340
1453
|
}).s("AWSIdentityStore", "ListGroups", {}).n("IdentitystoreClient", "ListGroupsCommand").f(ListGroupsRequestFilterSensitiveLog, ListGroupsResponseFilterSensitiveLog).ser(se_ListGroupsCommand).de(de_ListGroupsCommand).build() {
|
|
1454
|
+
static {
|
|
1455
|
+
__name(this, "ListGroupsCommand");
|
|
1456
|
+
}
|
|
1341
1457
|
};
|
|
1342
|
-
__name(_ListGroupsCommand, "ListGroupsCommand");
|
|
1343
|
-
var ListGroupsCommand = _ListGroupsCommand;
|
|
1344
1458
|
|
|
1345
1459
|
// src/commands/ListUsersCommand.ts
|
|
1346
1460
|
|
|
1347
1461
|
|
|
1348
1462
|
|
|
1349
|
-
var
|
|
1463
|
+
var ListUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1350
1464
|
return [
|
|
1351
1465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1352
1466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1353
1467
|
];
|
|
1354
1468
|
}).s("AWSIdentityStore", "ListUsers", {}).n("IdentitystoreClient", "ListUsersCommand").f(ListUsersRequestFilterSensitiveLog, ListUsersResponseFilterSensitiveLog).ser(se_ListUsersCommand).de(de_ListUsersCommand).build() {
|
|
1469
|
+
static {
|
|
1470
|
+
__name(this, "ListUsersCommand");
|
|
1471
|
+
}
|
|
1355
1472
|
};
|
|
1356
|
-
__name(_ListUsersCommand, "ListUsersCommand");
|
|
1357
|
-
var ListUsersCommand = _ListUsersCommand;
|
|
1358
1473
|
|
|
1359
1474
|
// src/commands/UpdateGroupCommand.ts
|
|
1360
1475
|
|
|
1361
1476
|
|
|
1362
1477
|
|
|
1363
|
-
var
|
|
1478
|
+
var UpdateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1364
1479
|
return [
|
|
1365
1480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1366
1481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1367
1482
|
];
|
|
1368
1483
|
}).s("AWSIdentityStore", "UpdateGroup", {}).n("IdentitystoreClient", "UpdateGroupCommand").f(void 0, void 0).ser(se_UpdateGroupCommand).de(de_UpdateGroupCommand).build() {
|
|
1484
|
+
static {
|
|
1485
|
+
__name(this, "UpdateGroupCommand");
|
|
1486
|
+
}
|
|
1369
1487
|
};
|
|
1370
|
-
__name(_UpdateGroupCommand, "UpdateGroupCommand");
|
|
1371
|
-
var UpdateGroupCommand = _UpdateGroupCommand;
|
|
1372
1488
|
|
|
1373
1489
|
// src/commands/UpdateUserCommand.ts
|
|
1374
1490
|
|
|
1375
1491
|
|
|
1376
1492
|
|
|
1377
|
-
var
|
|
1493
|
+
var UpdateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1378
1494
|
return [
|
|
1379
1495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1380
1496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1381
1497
|
];
|
|
1382
1498
|
}).s("AWSIdentityStore", "UpdateUser", {}).n("IdentitystoreClient", "UpdateUserCommand").f(void 0, void 0).ser(se_UpdateUserCommand).de(de_UpdateUserCommand).build() {
|
|
1499
|
+
static {
|
|
1500
|
+
__name(this, "UpdateUserCommand");
|
|
1501
|
+
}
|
|
1383
1502
|
};
|
|
1384
|
-
__name(_UpdateUserCommand, "UpdateUserCommand");
|
|
1385
|
-
var UpdateUserCommand = _UpdateUserCommand;
|
|
1386
1503
|
|
|
1387
1504
|
// src/Identitystore.ts
|
|
1388
1505
|
var commands = {
|
|
@@ -1406,10 +1523,11 @@ var commands = {
|
|
|
1406
1523
|
UpdateGroupCommand,
|
|
1407
1524
|
UpdateUserCommand
|
|
1408
1525
|
};
|
|
1409
|
-
var
|
|
1526
|
+
var Identitystore = class extends IdentitystoreClient {
|
|
1527
|
+
static {
|
|
1528
|
+
__name(this, "Identitystore");
|
|
1529
|
+
}
|
|
1410
1530
|
};
|
|
1411
|
-
__name(_Identitystore, "Identitystore");
|
|
1412
|
-
var Identitystore = _Identitystore;
|
|
1413
1531
|
(0, import_smithy_client.createAggregatedClient)(commands, Identitystore);
|
|
1414
1532
|
|
|
1415
1533
|
// src/pagination/ListGroupMembershipsForMemberPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class IdentitystoreClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
Message;
|
|
7
|
+
RequestId;
|
|
4
8
|
constructor(opts) {
|
|
5
9
|
super({
|
|
6
10
|
name: "AccessDeniedException",
|
|
7
11
|
$fault: "client",
|
|
8
12
|
...opts,
|
|
9
13
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
14
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
15
|
this.Message = opts.Message;
|
|
14
16
|
this.RequestId = opts.RequestId;
|
|
@@ -25,15 +27,18 @@ export var AlternateIdentifier;
|
|
|
25
27
|
};
|
|
26
28
|
})(AlternateIdentifier || (AlternateIdentifier = {}));
|
|
27
29
|
export class InternalServerException extends __BaseException {
|
|
30
|
+
name = "InternalServerException";
|
|
31
|
+
$fault = "server";
|
|
32
|
+
$retryable = {};
|
|
33
|
+
Message;
|
|
34
|
+
RequestId;
|
|
35
|
+
RetryAfterSeconds;
|
|
28
36
|
constructor(opts) {
|
|
29
37
|
super({
|
|
30
38
|
name: "InternalServerException",
|
|
31
39
|
$fault: "server",
|
|
32
40
|
...opts,
|
|
33
41
|
});
|
|
34
|
-
this.name = "InternalServerException";
|
|
35
|
-
this.$fault = "server";
|
|
36
|
-
this.$retryable = {};
|
|
37
42
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
38
43
|
this.Message = opts.Message;
|
|
39
44
|
this.RequestId = opts.RequestId;
|
|
@@ -47,14 +52,18 @@ export const ResourceType = {
|
|
|
47
52
|
USER: "USER",
|
|
48
53
|
};
|
|
49
54
|
export class ResourceNotFoundException extends __BaseException {
|
|
55
|
+
name = "ResourceNotFoundException";
|
|
56
|
+
$fault = "client";
|
|
57
|
+
ResourceType;
|
|
58
|
+
ResourceId;
|
|
59
|
+
Message;
|
|
60
|
+
RequestId;
|
|
50
61
|
constructor(opts) {
|
|
51
62
|
super({
|
|
52
63
|
name: "ResourceNotFoundException",
|
|
53
64
|
$fault: "client",
|
|
54
65
|
...opts,
|
|
55
66
|
});
|
|
56
|
-
this.name = "ResourceNotFoundException";
|
|
57
|
-
this.$fault = "client";
|
|
58
67
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
59
68
|
this.ResourceType = opts.ResourceType;
|
|
60
69
|
this.ResourceId = opts.ResourceId;
|
|
@@ -63,17 +72,20 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
63
72
|
}
|
|
64
73
|
}
|
|
65
74
|
export class ThrottlingException extends __BaseException {
|
|
75
|
+
name = "ThrottlingException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
$retryable = {
|
|
78
|
+
throttling: true,
|
|
79
|
+
};
|
|
80
|
+
Message;
|
|
81
|
+
RequestId;
|
|
82
|
+
RetryAfterSeconds;
|
|
66
83
|
constructor(opts) {
|
|
67
84
|
super({
|
|
68
85
|
name: "ThrottlingException",
|
|
69
86
|
$fault: "client",
|
|
70
87
|
...opts,
|
|
71
88
|
});
|
|
72
|
-
this.name = "ThrottlingException";
|
|
73
|
-
this.$fault = "client";
|
|
74
|
-
this.$retryable = {
|
|
75
|
-
throttling: true,
|
|
76
|
-
};
|
|
77
89
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
78
90
|
this.Message = opts.Message;
|
|
79
91
|
this.RequestId = opts.RequestId;
|
|
@@ -81,14 +93,16 @@ export class ThrottlingException extends __BaseException {
|
|
|
81
93
|
}
|
|
82
94
|
}
|
|
83
95
|
export class ValidationException extends __BaseException {
|
|
96
|
+
name = "ValidationException";
|
|
97
|
+
$fault = "client";
|
|
98
|
+
Message;
|
|
99
|
+
RequestId;
|
|
84
100
|
constructor(opts) {
|
|
85
101
|
super({
|
|
86
102
|
name: "ValidationException",
|
|
87
103
|
$fault: "client",
|
|
88
104
|
...opts,
|
|
89
105
|
});
|
|
90
|
-
this.name = "ValidationException";
|
|
91
|
-
this.$fault = "client";
|
|
92
106
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
93
107
|
this.Message = opts.Message;
|
|
94
108
|
this.RequestId = opts.RequestId;
|
|
@@ -107,14 +121,17 @@ export const ConflictExceptionReason = {
|
|
|
107
121
|
UNIQUENESS_CONSTRAINT_VIOLATION: "UNIQUENESS_CONSTRAINT_VIOLATION",
|
|
108
122
|
};
|
|
109
123
|
export class ConflictException extends __BaseException {
|
|
124
|
+
name = "ConflictException";
|
|
125
|
+
$fault = "client";
|
|
126
|
+
Message;
|
|
127
|
+
RequestId;
|
|
128
|
+
Reason;
|
|
110
129
|
constructor(opts) {
|
|
111
130
|
super({
|
|
112
131
|
name: "ConflictException",
|
|
113
132
|
$fault: "client",
|
|
114
133
|
...opts,
|
|
115
134
|
});
|
|
116
|
-
this.name = "ConflictException";
|
|
117
|
-
this.$fault = "client";
|
|
118
135
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
119
136
|
this.Message = opts.Message;
|
|
120
137
|
this.RequestId = opts.RequestId;
|
|
@@ -122,14 +139,16 @@ export class ConflictException extends __BaseException {
|
|
|
122
139
|
}
|
|
123
140
|
}
|
|
124
141
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
142
|
+
name = "ServiceQuotaExceededException";
|
|
143
|
+
$fault = "client";
|
|
144
|
+
Message;
|
|
145
|
+
RequestId;
|
|
125
146
|
constructor(opts) {
|
|
126
147
|
super({
|
|
127
148
|
name: "ServiceQuotaExceededException",
|
|
128
149
|
$fault: "client",
|
|
129
150
|
...opts,
|
|
130
151
|
});
|
|
131
|
-
this.name = "ServiceQuotaExceededException";
|
|
132
|
-
this.$fault = "client";
|
|
133
152
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
134
153
|
this.Message = opts.Message;
|
|
135
154
|
this.RequestId = opts.RequestId;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-identitystore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Identitystore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-identitystore",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|