@aws-sdk/client-chime-sdk-identity 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 +209 -145
- package/dist-es/ChimeSDKIdentityClient.js +1 -0
- package/dist-es/models/models_0.js +36 -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
|
@@ -217,7 +217,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
217
217
|
}, "resolveRuntimeExtensions");
|
|
218
218
|
|
|
219
219
|
// src/ChimeSDKIdentityClient.ts
|
|
220
|
-
var
|
|
220
|
+
var ChimeSDKIdentityClient = class extends import_smithy_client.Client {
|
|
221
|
+
static {
|
|
222
|
+
__name(this, "ChimeSDKIdentityClient");
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* The resolved configuration of ChimeSDKIdentityClient class. This is resolved and normalized from the {@link ChimeSDKIdentityClientConfig | constructor configuration interface}.
|
|
226
|
+
*/
|
|
227
|
+
config;
|
|
221
228
|
constructor(...[configuration]) {
|
|
222
229
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
223
230
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -227,7 +234,7 @@ var _ChimeSDKIdentityClient = class _ChimeSDKIdentityClient extends import_smith
|
|
|
227
234
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
228
235
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
229
236
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
230
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
237
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
231
238
|
super(_config_8);
|
|
232
239
|
this.config = _config_8;
|
|
233
240
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -255,8 +262,6 @@ var _ChimeSDKIdentityClient = class _ChimeSDKIdentityClient extends import_smith
|
|
|
255
262
|
super.destroy();
|
|
256
263
|
}
|
|
257
264
|
};
|
|
258
|
-
__name(_ChimeSDKIdentityClient, "ChimeSDKIdentityClient");
|
|
259
|
-
var ChimeSDKIdentityClient = _ChimeSDKIdentityClient;
|
|
260
265
|
|
|
261
266
|
// src/ChimeSDKIdentity.ts
|
|
262
267
|
|
|
@@ -271,7 +276,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
271
276
|
|
|
272
277
|
// src/models/ChimeSDKIdentityServiceException.ts
|
|
273
278
|
|
|
274
|
-
var
|
|
279
|
+
var ChimeSDKIdentityServiceException = class _ChimeSDKIdentityServiceException extends import_smithy_client.ServiceException {
|
|
280
|
+
static {
|
|
281
|
+
__name(this, "ChimeSDKIdentityServiceException");
|
|
282
|
+
}
|
|
275
283
|
/**
|
|
276
284
|
* @internal
|
|
277
285
|
*/
|
|
@@ -280,8 +288,6 @@ var _ChimeSDKIdentityServiceException = class _ChimeSDKIdentityServiceException
|
|
|
280
288
|
Object.setPrototypeOf(this, _ChimeSDKIdentityServiceException.prototype);
|
|
281
289
|
}
|
|
282
290
|
};
|
|
283
|
-
__name(_ChimeSDKIdentityServiceException, "ChimeSDKIdentityServiceException");
|
|
284
|
-
var ChimeSDKIdentityServiceException = _ChimeSDKIdentityServiceException;
|
|
285
291
|
|
|
286
292
|
// src/models/models_0.ts
|
|
287
293
|
var AllowMessages = {
|
|
@@ -334,7 +340,14 @@ var ErrorCode = {
|
|
|
334
340
|
Unprocessable: "Unprocessable",
|
|
335
341
|
VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist"
|
|
336
342
|
};
|
|
337
|
-
var
|
|
343
|
+
var BadRequestException = class _BadRequestException extends ChimeSDKIdentityServiceException {
|
|
344
|
+
static {
|
|
345
|
+
__name(this, "BadRequestException");
|
|
346
|
+
}
|
|
347
|
+
name = "BadRequestException";
|
|
348
|
+
$fault = "client";
|
|
349
|
+
Code;
|
|
350
|
+
Message;
|
|
338
351
|
/**
|
|
339
352
|
* @internal
|
|
340
353
|
*/
|
|
@@ -344,16 +357,19 @@ var _BadRequestException = class _BadRequestException extends ChimeSDKIdentitySe
|
|
|
344
357
|
$fault: "client",
|
|
345
358
|
...opts
|
|
346
359
|
});
|
|
347
|
-
this.name = "BadRequestException";
|
|
348
|
-
this.$fault = "client";
|
|
349
360
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
350
361
|
this.Code = opts.Code;
|
|
351
362
|
this.Message = opts.Message;
|
|
352
363
|
}
|
|
353
364
|
};
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
365
|
+
var ConflictException = class _ConflictException extends ChimeSDKIdentityServiceException {
|
|
366
|
+
static {
|
|
367
|
+
__name(this, "ConflictException");
|
|
368
|
+
}
|
|
369
|
+
name = "ConflictException";
|
|
370
|
+
$fault = "client";
|
|
371
|
+
Code;
|
|
372
|
+
Message;
|
|
357
373
|
/**
|
|
358
374
|
* @internal
|
|
359
375
|
*/
|
|
@@ -363,16 +379,19 @@ var _ConflictException = class _ConflictException extends ChimeSDKIdentityServic
|
|
|
363
379
|
$fault: "client",
|
|
364
380
|
...opts
|
|
365
381
|
});
|
|
366
|
-
this.name = "ConflictException";
|
|
367
|
-
this.$fault = "client";
|
|
368
382
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
369
383
|
this.Code = opts.Code;
|
|
370
384
|
this.Message = opts.Message;
|
|
371
385
|
}
|
|
372
386
|
};
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
387
|
+
var ForbiddenException = class _ForbiddenException extends ChimeSDKIdentityServiceException {
|
|
388
|
+
static {
|
|
389
|
+
__name(this, "ForbiddenException");
|
|
390
|
+
}
|
|
391
|
+
name = "ForbiddenException";
|
|
392
|
+
$fault = "client";
|
|
393
|
+
Code;
|
|
394
|
+
Message;
|
|
376
395
|
/**
|
|
377
396
|
* @internal
|
|
378
397
|
*/
|
|
@@ -382,16 +401,19 @@ var _ForbiddenException = class _ForbiddenException extends ChimeSDKIdentityServ
|
|
|
382
401
|
$fault: "client",
|
|
383
402
|
...opts
|
|
384
403
|
});
|
|
385
|
-
this.name = "ForbiddenException";
|
|
386
|
-
this.$fault = "client";
|
|
387
404
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
388
405
|
this.Code = opts.Code;
|
|
389
406
|
this.Message = opts.Message;
|
|
390
407
|
}
|
|
391
408
|
};
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
409
|
+
var ResourceLimitExceededException = class _ResourceLimitExceededException extends ChimeSDKIdentityServiceException {
|
|
410
|
+
static {
|
|
411
|
+
__name(this, "ResourceLimitExceededException");
|
|
412
|
+
}
|
|
413
|
+
name = "ResourceLimitExceededException";
|
|
414
|
+
$fault = "client";
|
|
415
|
+
Code;
|
|
416
|
+
Message;
|
|
395
417
|
/**
|
|
396
418
|
* @internal
|
|
397
419
|
*/
|
|
@@ -401,16 +423,19 @@ var _ResourceLimitExceededException = class _ResourceLimitExceededException exte
|
|
|
401
423
|
$fault: "client",
|
|
402
424
|
...opts
|
|
403
425
|
});
|
|
404
|
-
this.name = "ResourceLimitExceededException";
|
|
405
|
-
this.$fault = "client";
|
|
406
426
|
Object.setPrototypeOf(this, _ResourceLimitExceededException.prototype);
|
|
407
427
|
this.Code = opts.Code;
|
|
408
428
|
this.Message = opts.Message;
|
|
409
429
|
}
|
|
410
430
|
};
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
431
|
+
var ServiceFailureException = class _ServiceFailureException extends ChimeSDKIdentityServiceException {
|
|
432
|
+
static {
|
|
433
|
+
__name(this, "ServiceFailureException");
|
|
434
|
+
}
|
|
435
|
+
name = "ServiceFailureException";
|
|
436
|
+
$fault = "server";
|
|
437
|
+
Code;
|
|
438
|
+
Message;
|
|
414
439
|
/**
|
|
415
440
|
* @internal
|
|
416
441
|
*/
|
|
@@ -420,16 +445,19 @@ var _ServiceFailureException = class _ServiceFailureException extends ChimeSDKId
|
|
|
420
445
|
$fault: "server",
|
|
421
446
|
...opts
|
|
422
447
|
});
|
|
423
|
-
this.name = "ServiceFailureException";
|
|
424
|
-
this.$fault = "server";
|
|
425
448
|
Object.setPrototypeOf(this, _ServiceFailureException.prototype);
|
|
426
449
|
this.Code = opts.Code;
|
|
427
450
|
this.Message = opts.Message;
|
|
428
451
|
}
|
|
429
452
|
};
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
453
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends ChimeSDKIdentityServiceException {
|
|
454
|
+
static {
|
|
455
|
+
__name(this, "ServiceUnavailableException");
|
|
456
|
+
}
|
|
457
|
+
name = "ServiceUnavailableException";
|
|
458
|
+
$fault = "server";
|
|
459
|
+
Code;
|
|
460
|
+
Message;
|
|
433
461
|
/**
|
|
434
462
|
* @internal
|
|
435
463
|
*/
|
|
@@ -439,16 +467,19 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ch
|
|
|
439
467
|
$fault: "server",
|
|
440
468
|
...opts
|
|
441
469
|
});
|
|
442
|
-
this.name = "ServiceUnavailableException";
|
|
443
|
-
this.$fault = "server";
|
|
444
470
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
445
471
|
this.Code = opts.Code;
|
|
446
472
|
this.Message = opts.Message;
|
|
447
473
|
}
|
|
448
474
|
};
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
475
|
+
var ThrottledClientException = class _ThrottledClientException extends ChimeSDKIdentityServiceException {
|
|
476
|
+
static {
|
|
477
|
+
__name(this, "ThrottledClientException");
|
|
478
|
+
}
|
|
479
|
+
name = "ThrottledClientException";
|
|
480
|
+
$fault = "client";
|
|
481
|
+
Code;
|
|
482
|
+
Message;
|
|
452
483
|
/**
|
|
453
484
|
* @internal
|
|
454
485
|
*/
|
|
@@ -458,16 +489,19 @@ var _ThrottledClientException = class _ThrottledClientException extends ChimeSDK
|
|
|
458
489
|
$fault: "client",
|
|
459
490
|
...opts
|
|
460
491
|
});
|
|
461
|
-
this.name = "ThrottledClientException";
|
|
462
|
-
this.$fault = "client";
|
|
463
492
|
Object.setPrototypeOf(this, _ThrottledClientException.prototype);
|
|
464
493
|
this.Code = opts.Code;
|
|
465
494
|
this.Message = opts.Message;
|
|
466
495
|
}
|
|
467
496
|
};
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
497
|
+
var UnauthorizedClientException = class _UnauthorizedClientException extends ChimeSDKIdentityServiceException {
|
|
498
|
+
static {
|
|
499
|
+
__name(this, "UnauthorizedClientException");
|
|
500
|
+
}
|
|
501
|
+
name = "UnauthorizedClientException";
|
|
502
|
+
$fault = "client";
|
|
503
|
+
Code;
|
|
504
|
+
Message;
|
|
471
505
|
/**
|
|
472
506
|
* @internal
|
|
473
507
|
*/
|
|
@@ -477,16 +511,19 @@ var _UnauthorizedClientException = class _UnauthorizedClientException extends Ch
|
|
|
477
511
|
$fault: "client",
|
|
478
512
|
...opts
|
|
479
513
|
});
|
|
480
|
-
this.name = "UnauthorizedClientException";
|
|
481
|
-
this.$fault = "client";
|
|
482
514
|
Object.setPrototypeOf(this, _UnauthorizedClientException.prototype);
|
|
483
515
|
this.Code = opts.Code;
|
|
484
516
|
this.Message = opts.Message;
|
|
485
517
|
}
|
|
486
518
|
};
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
519
|
+
var NotFoundException = class _NotFoundException extends ChimeSDKIdentityServiceException {
|
|
520
|
+
static {
|
|
521
|
+
__name(this, "NotFoundException");
|
|
522
|
+
}
|
|
523
|
+
name = "NotFoundException";
|
|
524
|
+
$fault = "client";
|
|
525
|
+
Code;
|
|
526
|
+
Message;
|
|
490
527
|
/**
|
|
491
528
|
* @internal
|
|
492
529
|
*/
|
|
@@ -496,15 +533,11 @@ var _NotFoundException = class _NotFoundException extends ChimeSDKIdentityServic
|
|
|
496
533
|
$fault: "client",
|
|
497
534
|
...opts
|
|
498
535
|
});
|
|
499
|
-
this.name = "NotFoundException";
|
|
500
|
-
this.$fault = "client";
|
|
501
536
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
502
537
|
this.Code = opts.Code;
|
|
503
538
|
this.Message = opts.Message;
|
|
504
539
|
}
|
|
505
540
|
};
|
|
506
|
-
__name(_NotFoundException, "NotFoundException");
|
|
507
|
-
var NotFoundException = _NotFoundException;
|
|
508
541
|
var AppInstanceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
509
542
|
...obj,
|
|
510
543
|
...obj.Name && { Name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1767,421 +1800,451 @@ var _nt = "next-token";
|
|
|
1767
1800
|
var _o = "operation";
|
|
1768
1801
|
|
|
1769
1802
|
// src/commands/CreateAppInstanceAdminCommand.ts
|
|
1770
|
-
var
|
|
1803
|
+
var CreateAppInstanceAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1771
1804
|
return [
|
|
1772
1805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1773
1806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1774
1807
|
];
|
|
1775
1808
|
}).s("ChimeIdentityService", "CreateAppInstanceAdmin", {}).n("ChimeSDKIdentityClient", "CreateAppInstanceAdminCommand").f(void 0, CreateAppInstanceAdminResponseFilterSensitiveLog).ser(se_CreateAppInstanceAdminCommand).de(de_CreateAppInstanceAdminCommand).build() {
|
|
1809
|
+
static {
|
|
1810
|
+
__name(this, "CreateAppInstanceAdminCommand");
|
|
1811
|
+
}
|
|
1776
1812
|
};
|
|
1777
|
-
__name(_CreateAppInstanceAdminCommand, "CreateAppInstanceAdminCommand");
|
|
1778
|
-
var CreateAppInstanceAdminCommand = _CreateAppInstanceAdminCommand;
|
|
1779
1813
|
|
|
1780
1814
|
// src/commands/CreateAppInstanceBotCommand.ts
|
|
1781
1815
|
|
|
1782
1816
|
|
|
1783
1817
|
|
|
1784
|
-
var
|
|
1818
|
+
var CreateAppInstanceBotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1785
1819
|
return [
|
|
1786
1820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1787
1821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1788
1822
|
];
|
|
1789
1823
|
}).s("ChimeIdentityService", "CreateAppInstanceBot", {}).n("ChimeSDKIdentityClient", "CreateAppInstanceBotCommand").f(CreateAppInstanceBotRequestFilterSensitiveLog, void 0).ser(se_CreateAppInstanceBotCommand).de(de_CreateAppInstanceBotCommand).build() {
|
|
1824
|
+
static {
|
|
1825
|
+
__name(this, "CreateAppInstanceBotCommand");
|
|
1826
|
+
}
|
|
1790
1827
|
};
|
|
1791
|
-
__name(_CreateAppInstanceBotCommand, "CreateAppInstanceBotCommand");
|
|
1792
|
-
var CreateAppInstanceBotCommand = _CreateAppInstanceBotCommand;
|
|
1793
1828
|
|
|
1794
1829
|
// src/commands/CreateAppInstanceCommand.ts
|
|
1795
1830
|
|
|
1796
1831
|
|
|
1797
1832
|
|
|
1798
|
-
var
|
|
1833
|
+
var CreateAppInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1799
1834
|
return [
|
|
1800
1835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1801
1836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1802
1837
|
];
|
|
1803
1838
|
}).s("ChimeIdentityService", "CreateAppInstance", {}).n("ChimeSDKIdentityClient", "CreateAppInstanceCommand").f(CreateAppInstanceRequestFilterSensitiveLog, void 0).ser(se_CreateAppInstanceCommand).de(de_CreateAppInstanceCommand).build() {
|
|
1839
|
+
static {
|
|
1840
|
+
__name(this, "CreateAppInstanceCommand");
|
|
1841
|
+
}
|
|
1804
1842
|
};
|
|
1805
|
-
__name(_CreateAppInstanceCommand, "CreateAppInstanceCommand");
|
|
1806
|
-
var CreateAppInstanceCommand = _CreateAppInstanceCommand;
|
|
1807
1843
|
|
|
1808
1844
|
// src/commands/CreateAppInstanceUserCommand.ts
|
|
1809
1845
|
|
|
1810
1846
|
|
|
1811
1847
|
|
|
1812
|
-
var
|
|
1848
|
+
var CreateAppInstanceUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1813
1849
|
return [
|
|
1814
1850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1815
1851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1816
1852
|
];
|
|
1817
1853
|
}).s("ChimeIdentityService", "CreateAppInstanceUser", {}).n("ChimeSDKIdentityClient", "CreateAppInstanceUserCommand").f(CreateAppInstanceUserRequestFilterSensitiveLog, void 0).ser(se_CreateAppInstanceUserCommand).de(de_CreateAppInstanceUserCommand).build() {
|
|
1854
|
+
static {
|
|
1855
|
+
__name(this, "CreateAppInstanceUserCommand");
|
|
1856
|
+
}
|
|
1818
1857
|
};
|
|
1819
|
-
__name(_CreateAppInstanceUserCommand, "CreateAppInstanceUserCommand");
|
|
1820
|
-
var CreateAppInstanceUserCommand = _CreateAppInstanceUserCommand;
|
|
1821
1858
|
|
|
1822
1859
|
// src/commands/DeleteAppInstanceAdminCommand.ts
|
|
1823
1860
|
|
|
1824
1861
|
|
|
1825
1862
|
|
|
1826
|
-
var
|
|
1863
|
+
var DeleteAppInstanceAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1827
1864
|
return [
|
|
1828
1865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1829
1866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1830
1867
|
];
|
|
1831
1868
|
}).s("ChimeIdentityService", "DeleteAppInstanceAdmin", {}).n("ChimeSDKIdentityClient", "DeleteAppInstanceAdminCommand").f(void 0, void 0).ser(se_DeleteAppInstanceAdminCommand).de(de_DeleteAppInstanceAdminCommand).build() {
|
|
1869
|
+
static {
|
|
1870
|
+
__name(this, "DeleteAppInstanceAdminCommand");
|
|
1871
|
+
}
|
|
1832
1872
|
};
|
|
1833
|
-
__name(_DeleteAppInstanceAdminCommand, "DeleteAppInstanceAdminCommand");
|
|
1834
|
-
var DeleteAppInstanceAdminCommand = _DeleteAppInstanceAdminCommand;
|
|
1835
1873
|
|
|
1836
1874
|
// src/commands/DeleteAppInstanceBotCommand.ts
|
|
1837
1875
|
|
|
1838
1876
|
|
|
1839
1877
|
|
|
1840
|
-
var
|
|
1878
|
+
var DeleteAppInstanceBotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1841
1879
|
return [
|
|
1842
1880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1843
1881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1844
1882
|
];
|
|
1845
1883
|
}).s("ChimeIdentityService", "DeleteAppInstanceBot", {}).n("ChimeSDKIdentityClient", "DeleteAppInstanceBotCommand").f(void 0, void 0).ser(se_DeleteAppInstanceBotCommand).de(de_DeleteAppInstanceBotCommand).build() {
|
|
1884
|
+
static {
|
|
1885
|
+
__name(this, "DeleteAppInstanceBotCommand");
|
|
1886
|
+
}
|
|
1846
1887
|
};
|
|
1847
|
-
__name(_DeleteAppInstanceBotCommand, "DeleteAppInstanceBotCommand");
|
|
1848
|
-
var DeleteAppInstanceBotCommand = _DeleteAppInstanceBotCommand;
|
|
1849
1888
|
|
|
1850
1889
|
// src/commands/DeleteAppInstanceCommand.ts
|
|
1851
1890
|
|
|
1852
1891
|
|
|
1853
1892
|
|
|
1854
|
-
var
|
|
1893
|
+
var DeleteAppInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1855
1894
|
return [
|
|
1856
1895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1857
1896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1858
1897
|
];
|
|
1859
1898
|
}).s("ChimeIdentityService", "DeleteAppInstance", {}).n("ChimeSDKIdentityClient", "DeleteAppInstanceCommand").f(void 0, void 0).ser(se_DeleteAppInstanceCommand).de(de_DeleteAppInstanceCommand).build() {
|
|
1899
|
+
static {
|
|
1900
|
+
__name(this, "DeleteAppInstanceCommand");
|
|
1901
|
+
}
|
|
1860
1902
|
};
|
|
1861
|
-
__name(_DeleteAppInstanceCommand, "DeleteAppInstanceCommand");
|
|
1862
|
-
var DeleteAppInstanceCommand = _DeleteAppInstanceCommand;
|
|
1863
1903
|
|
|
1864
1904
|
// src/commands/DeleteAppInstanceUserCommand.ts
|
|
1865
1905
|
|
|
1866
1906
|
|
|
1867
1907
|
|
|
1868
|
-
var
|
|
1908
|
+
var DeleteAppInstanceUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1869
1909
|
return [
|
|
1870
1910
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1871
1911
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1872
1912
|
];
|
|
1873
1913
|
}).s("ChimeIdentityService", "DeleteAppInstanceUser", {}).n("ChimeSDKIdentityClient", "DeleteAppInstanceUserCommand").f(void 0, void 0).ser(se_DeleteAppInstanceUserCommand).de(de_DeleteAppInstanceUserCommand).build() {
|
|
1914
|
+
static {
|
|
1915
|
+
__name(this, "DeleteAppInstanceUserCommand");
|
|
1916
|
+
}
|
|
1874
1917
|
};
|
|
1875
|
-
__name(_DeleteAppInstanceUserCommand, "DeleteAppInstanceUserCommand");
|
|
1876
|
-
var DeleteAppInstanceUserCommand = _DeleteAppInstanceUserCommand;
|
|
1877
1918
|
|
|
1878
1919
|
// src/commands/DeregisterAppInstanceUserEndpointCommand.ts
|
|
1879
1920
|
|
|
1880
1921
|
|
|
1881
1922
|
|
|
1882
|
-
var
|
|
1923
|
+
var DeregisterAppInstanceUserEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1883
1924
|
return [
|
|
1884
1925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1885
1926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1886
1927
|
];
|
|
1887
1928
|
}).s("ChimeIdentityService", "DeregisterAppInstanceUserEndpoint", {}).n("ChimeSDKIdentityClient", "DeregisterAppInstanceUserEndpointCommand").f(void 0, void 0).ser(se_DeregisterAppInstanceUserEndpointCommand).de(de_DeregisterAppInstanceUserEndpointCommand).build() {
|
|
1929
|
+
static {
|
|
1930
|
+
__name(this, "DeregisterAppInstanceUserEndpointCommand");
|
|
1931
|
+
}
|
|
1888
1932
|
};
|
|
1889
|
-
__name(_DeregisterAppInstanceUserEndpointCommand, "DeregisterAppInstanceUserEndpointCommand");
|
|
1890
|
-
var DeregisterAppInstanceUserEndpointCommand = _DeregisterAppInstanceUserEndpointCommand;
|
|
1891
1933
|
|
|
1892
1934
|
// src/commands/DescribeAppInstanceAdminCommand.ts
|
|
1893
1935
|
|
|
1894
1936
|
|
|
1895
1937
|
|
|
1896
|
-
var
|
|
1938
|
+
var DescribeAppInstanceAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1897
1939
|
return [
|
|
1898
1940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1899
1941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1900
1942
|
];
|
|
1901
1943
|
}).s("ChimeIdentityService", "DescribeAppInstanceAdmin", {}).n("ChimeSDKIdentityClient", "DescribeAppInstanceAdminCommand").f(void 0, DescribeAppInstanceAdminResponseFilterSensitiveLog).ser(se_DescribeAppInstanceAdminCommand).de(de_DescribeAppInstanceAdminCommand).build() {
|
|
1944
|
+
static {
|
|
1945
|
+
__name(this, "DescribeAppInstanceAdminCommand");
|
|
1946
|
+
}
|
|
1902
1947
|
};
|
|
1903
|
-
__name(_DescribeAppInstanceAdminCommand, "DescribeAppInstanceAdminCommand");
|
|
1904
|
-
var DescribeAppInstanceAdminCommand = _DescribeAppInstanceAdminCommand;
|
|
1905
1948
|
|
|
1906
1949
|
// src/commands/DescribeAppInstanceBotCommand.ts
|
|
1907
1950
|
|
|
1908
1951
|
|
|
1909
1952
|
|
|
1910
|
-
var
|
|
1953
|
+
var DescribeAppInstanceBotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1911
1954
|
return [
|
|
1912
1955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1913
1956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1914
1957
|
];
|
|
1915
1958
|
}).s("ChimeIdentityService", "DescribeAppInstanceBot", {}).n("ChimeSDKIdentityClient", "DescribeAppInstanceBotCommand").f(void 0, DescribeAppInstanceBotResponseFilterSensitiveLog).ser(se_DescribeAppInstanceBotCommand).de(de_DescribeAppInstanceBotCommand).build() {
|
|
1959
|
+
static {
|
|
1960
|
+
__name(this, "DescribeAppInstanceBotCommand");
|
|
1961
|
+
}
|
|
1916
1962
|
};
|
|
1917
|
-
__name(_DescribeAppInstanceBotCommand, "DescribeAppInstanceBotCommand");
|
|
1918
|
-
var DescribeAppInstanceBotCommand = _DescribeAppInstanceBotCommand;
|
|
1919
1963
|
|
|
1920
1964
|
// src/commands/DescribeAppInstanceCommand.ts
|
|
1921
1965
|
|
|
1922
1966
|
|
|
1923
1967
|
|
|
1924
|
-
var
|
|
1968
|
+
var DescribeAppInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1925
1969
|
return [
|
|
1926
1970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1927
1971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1928
1972
|
];
|
|
1929
1973
|
}).s("ChimeIdentityService", "DescribeAppInstance", {}).n("ChimeSDKIdentityClient", "DescribeAppInstanceCommand").f(void 0, DescribeAppInstanceResponseFilterSensitiveLog).ser(se_DescribeAppInstanceCommand).de(de_DescribeAppInstanceCommand).build() {
|
|
1974
|
+
static {
|
|
1975
|
+
__name(this, "DescribeAppInstanceCommand");
|
|
1976
|
+
}
|
|
1930
1977
|
};
|
|
1931
|
-
__name(_DescribeAppInstanceCommand, "DescribeAppInstanceCommand");
|
|
1932
|
-
var DescribeAppInstanceCommand = _DescribeAppInstanceCommand;
|
|
1933
1978
|
|
|
1934
1979
|
// src/commands/DescribeAppInstanceUserCommand.ts
|
|
1935
1980
|
|
|
1936
1981
|
|
|
1937
1982
|
|
|
1938
|
-
var
|
|
1983
|
+
var DescribeAppInstanceUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1939
1984
|
return [
|
|
1940
1985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1941
1986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1942
1987
|
];
|
|
1943
1988
|
}).s("ChimeIdentityService", "DescribeAppInstanceUser", {}).n("ChimeSDKIdentityClient", "DescribeAppInstanceUserCommand").f(void 0, DescribeAppInstanceUserResponseFilterSensitiveLog).ser(se_DescribeAppInstanceUserCommand).de(de_DescribeAppInstanceUserCommand).build() {
|
|
1989
|
+
static {
|
|
1990
|
+
__name(this, "DescribeAppInstanceUserCommand");
|
|
1991
|
+
}
|
|
1944
1992
|
};
|
|
1945
|
-
__name(_DescribeAppInstanceUserCommand, "DescribeAppInstanceUserCommand");
|
|
1946
|
-
var DescribeAppInstanceUserCommand = _DescribeAppInstanceUserCommand;
|
|
1947
1993
|
|
|
1948
1994
|
// src/commands/DescribeAppInstanceUserEndpointCommand.ts
|
|
1949
1995
|
|
|
1950
1996
|
|
|
1951
1997
|
|
|
1952
|
-
var
|
|
1998
|
+
var DescribeAppInstanceUserEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1953
1999
|
return [
|
|
1954
2000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1955
2001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1956
2002
|
];
|
|
1957
2003
|
}).s("ChimeIdentityService", "DescribeAppInstanceUserEndpoint", {}).n("ChimeSDKIdentityClient", "DescribeAppInstanceUserEndpointCommand").f(void 0, DescribeAppInstanceUserEndpointResponseFilterSensitiveLog).ser(se_DescribeAppInstanceUserEndpointCommand).de(de_DescribeAppInstanceUserEndpointCommand).build() {
|
|
2004
|
+
static {
|
|
2005
|
+
__name(this, "DescribeAppInstanceUserEndpointCommand");
|
|
2006
|
+
}
|
|
1958
2007
|
};
|
|
1959
|
-
__name(_DescribeAppInstanceUserEndpointCommand, "DescribeAppInstanceUserEndpointCommand");
|
|
1960
|
-
var DescribeAppInstanceUserEndpointCommand = _DescribeAppInstanceUserEndpointCommand;
|
|
1961
2008
|
|
|
1962
2009
|
// src/commands/GetAppInstanceRetentionSettingsCommand.ts
|
|
1963
2010
|
|
|
1964
2011
|
|
|
1965
2012
|
|
|
1966
|
-
var
|
|
2013
|
+
var GetAppInstanceRetentionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1967
2014
|
return [
|
|
1968
2015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1969
2016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1970
2017
|
];
|
|
1971
2018
|
}).s("ChimeIdentityService", "GetAppInstanceRetentionSettings", {}).n("ChimeSDKIdentityClient", "GetAppInstanceRetentionSettingsCommand").f(void 0, void 0).ser(se_GetAppInstanceRetentionSettingsCommand).de(de_GetAppInstanceRetentionSettingsCommand).build() {
|
|
2019
|
+
static {
|
|
2020
|
+
__name(this, "GetAppInstanceRetentionSettingsCommand");
|
|
2021
|
+
}
|
|
1972
2022
|
};
|
|
1973
|
-
__name(_GetAppInstanceRetentionSettingsCommand, "GetAppInstanceRetentionSettingsCommand");
|
|
1974
|
-
var GetAppInstanceRetentionSettingsCommand = _GetAppInstanceRetentionSettingsCommand;
|
|
1975
2023
|
|
|
1976
2024
|
// src/commands/ListAppInstanceAdminsCommand.ts
|
|
1977
2025
|
|
|
1978
2026
|
|
|
1979
2027
|
|
|
1980
|
-
var
|
|
2028
|
+
var ListAppInstanceAdminsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1981
2029
|
return [
|
|
1982
2030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1983
2031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1984
2032
|
];
|
|
1985
2033
|
}).s("ChimeIdentityService", "ListAppInstanceAdmins", {}).n("ChimeSDKIdentityClient", "ListAppInstanceAdminsCommand").f(ListAppInstanceAdminsRequestFilterSensitiveLog, ListAppInstanceAdminsResponseFilterSensitiveLog).ser(se_ListAppInstanceAdminsCommand).de(de_ListAppInstanceAdminsCommand).build() {
|
|
2034
|
+
static {
|
|
2035
|
+
__name(this, "ListAppInstanceAdminsCommand");
|
|
2036
|
+
}
|
|
1986
2037
|
};
|
|
1987
|
-
__name(_ListAppInstanceAdminsCommand, "ListAppInstanceAdminsCommand");
|
|
1988
|
-
var ListAppInstanceAdminsCommand = _ListAppInstanceAdminsCommand;
|
|
1989
2038
|
|
|
1990
2039
|
// src/commands/ListAppInstanceBotsCommand.ts
|
|
1991
2040
|
|
|
1992
2041
|
|
|
1993
2042
|
|
|
1994
|
-
var
|
|
2043
|
+
var ListAppInstanceBotsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1995
2044
|
return [
|
|
1996
2045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1997
2046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1998
2047
|
];
|
|
1999
2048
|
}).s("ChimeIdentityService", "ListAppInstanceBots", {}).n("ChimeSDKIdentityClient", "ListAppInstanceBotsCommand").f(ListAppInstanceBotsRequestFilterSensitiveLog, ListAppInstanceBotsResponseFilterSensitiveLog).ser(se_ListAppInstanceBotsCommand).de(de_ListAppInstanceBotsCommand).build() {
|
|
2049
|
+
static {
|
|
2050
|
+
__name(this, "ListAppInstanceBotsCommand");
|
|
2051
|
+
}
|
|
2000
2052
|
};
|
|
2001
|
-
__name(_ListAppInstanceBotsCommand, "ListAppInstanceBotsCommand");
|
|
2002
|
-
var ListAppInstanceBotsCommand = _ListAppInstanceBotsCommand;
|
|
2003
2053
|
|
|
2004
2054
|
// src/commands/ListAppInstancesCommand.ts
|
|
2005
2055
|
|
|
2006
2056
|
|
|
2007
2057
|
|
|
2008
|
-
var
|
|
2058
|
+
var ListAppInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2009
2059
|
return [
|
|
2010
2060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2011
2061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2012
2062
|
];
|
|
2013
2063
|
}).s("ChimeIdentityService", "ListAppInstances", {}).n("ChimeSDKIdentityClient", "ListAppInstancesCommand").f(ListAppInstancesRequestFilterSensitiveLog, ListAppInstancesResponseFilterSensitiveLog).ser(se_ListAppInstancesCommand).de(de_ListAppInstancesCommand).build() {
|
|
2064
|
+
static {
|
|
2065
|
+
__name(this, "ListAppInstancesCommand");
|
|
2066
|
+
}
|
|
2014
2067
|
};
|
|
2015
|
-
__name(_ListAppInstancesCommand, "ListAppInstancesCommand");
|
|
2016
|
-
var ListAppInstancesCommand = _ListAppInstancesCommand;
|
|
2017
2068
|
|
|
2018
2069
|
// src/commands/ListAppInstanceUserEndpointsCommand.ts
|
|
2019
2070
|
|
|
2020
2071
|
|
|
2021
2072
|
|
|
2022
|
-
var
|
|
2073
|
+
var ListAppInstanceUserEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2023
2074
|
return [
|
|
2024
2075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2025
2076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2026
2077
|
];
|
|
2027
2078
|
}).s("ChimeIdentityService", "ListAppInstanceUserEndpoints", {}).n("ChimeSDKIdentityClient", "ListAppInstanceUserEndpointsCommand").f(ListAppInstanceUserEndpointsRequestFilterSensitiveLog, ListAppInstanceUserEndpointsResponseFilterSensitiveLog).ser(se_ListAppInstanceUserEndpointsCommand).de(de_ListAppInstanceUserEndpointsCommand).build() {
|
|
2079
|
+
static {
|
|
2080
|
+
__name(this, "ListAppInstanceUserEndpointsCommand");
|
|
2081
|
+
}
|
|
2028
2082
|
};
|
|
2029
|
-
__name(_ListAppInstanceUserEndpointsCommand, "ListAppInstanceUserEndpointsCommand");
|
|
2030
|
-
var ListAppInstanceUserEndpointsCommand = _ListAppInstanceUserEndpointsCommand;
|
|
2031
2083
|
|
|
2032
2084
|
// src/commands/ListAppInstanceUsersCommand.ts
|
|
2033
2085
|
|
|
2034
2086
|
|
|
2035
2087
|
|
|
2036
|
-
var
|
|
2088
|
+
var ListAppInstanceUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2037
2089
|
return [
|
|
2038
2090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2039
2091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2040
2092
|
];
|
|
2041
2093
|
}).s("ChimeIdentityService", "ListAppInstanceUsers", {}).n("ChimeSDKIdentityClient", "ListAppInstanceUsersCommand").f(ListAppInstanceUsersRequestFilterSensitiveLog, ListAppInstanceUsersResponseFilterSensitiveLog).ser(se_ListAppInstanceUsersCommand).de(de_ListAppInstanceUsersCommand).build() {
|
|
2094
|
+
static {
|
|
2095
|
+
__name(this, "ListAppInstanceUsersCommand");
|
|
2096
|
+
}
|
|
2042
2097
|
};
|
|
2043
|
-
__name(_ListAppInstanceUsersCommand, "ListAppInstanceUsersCommand");
|
|
2044
|
-
var ListAppInstanceUsersCommand = _ListAppInstanceUsersCommand;
|
|
2045
2098
|
|
|
2046
2099
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2047
2100
|
|
|
2048
2101
|
|
|
2049
2102
|
|
|
2050
|
-
var
|
|
2103
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2051
2104
|
return [
|
|
2052
2105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2053
2106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2054
2107
|
];
|
|
2055
2108
|
}).s("ChimeIdentityService", "ListTagsForResource", {}).n("ChimeSDKIdentityClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2109
|
+
static {
|
|
2110
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2111
|
+
}
|
|
2056
2112
|
};
|
|
2057
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2058
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2059
2113
|
|
|
2060
2114
|
// src/commands/PutAppInstanceRetentionSettingsCommand.ts
|
|
2061
2115
|
|
|
2062
2116
|
|
|
2063
2117
|
|
|
2064
|
-
var
|
|
2118
|
+
var PutAppInstanceRetentionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2065
2119
|
return [
|
|
2066
2120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2067
2121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2068
2122
|
];
|
|
2069
2123
|
}).s("ChimeIdentityService", "PutAppInstanceRetentionSettings", {}).n("ChimeSDKIdentityClient", "PutAppInstanceRetentionSettingsCommand").f(void 0, void 0).ser(se_PutAppInstanceRetentionSettingsCommand).de(de_PutAppInstanceRetentionSettingsCommand).build() {
|
|
2124
|
+
static {
|
|
2125
|
+
__name(this, "PutAppInstanceRetentionSettingsCommand");
|
|
2126
|
+
}
|
|
2070
2127
|
};
|
|
2071
|
-
__name(_PutAppInstanceRetentionSettingsCommand, "PutAppInstanceRetentionSettingsCommand");
|
|
2072
|
-
var PutAppInstanceRetentionSettingsCommand = _PutAppInstanceRetentionSettingsCommand;
|
|
2073
2128
|
|
|
2074
2129
|
// src/commands/PutAppInstanceUserExpirationSettingsCommand.ts
|
|
2075
2130
|
|
|
2076
2131
|
|
|
2077
2132
|
|
|
2078
|
-
var
|
|
2133
|
+
var PutAppInstanceUserExpirationSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2079
2134
|
return [
|
|
2080
2135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2081
2136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2082
2137
|
];
|
|
2083
2138
|
}).s("ChimeIdentityService", "PutAppInstanceUserExpirationSettings", {}).n("ChimeSDKIdentityClient", "PutAppInstanceUserExpirationSettingsCommand").f(void 0, void 0).ser(se_PutAppInstanceUserExpirationSettingsCommand).de(de_PutAppInstanceUserExpirationSettingsCommand).build() {
|
|
2139
|
+
static {
|
|
2140
|
+
__name(this, "PutAppInstanceUserExpirationSettingsCommand");
|
|
2141
|
+
}
|
|
2084
2142
|
};
|
|
2085
|
-
__name(_PutAppInstanceUserExpirationSettingsCommand, "PutAppInstanceUserExpirationSettingsCommand");
|
|
2086
|
-
var PutAppInstanceUserExpirationSettingsCommand = _PutAppInstanceUserExpirationSettingsCommand;
|
|
2087
2143
|
|
|
2088
2144
|
// src/commands/RegisterAppInstanceUserEndpointCommand.ts
|
|
2089
2145
|
|
|
2090
2146
|
|
|
2091
2147
|
|
|
2092
|
-
var
|
|
2148
|
+
var RegisterAppInstanceUserEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2093
2149
|
return [
|
|
2094
2150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2095
2151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2096
2152
|
];
|
|
2097
2153
|
}).s("ChimeIdentityService", "RegisterAppInstanceUserEndpoint", {}).n("ChimeSDKIdentityClient", "RegisterAppInstanceUserEndpointCommand").f(RegisterAppInstanceUserEndpointRequestFilterSensitiveLog, void 0).ser(se_RegisterAppInstanceUserEndpointCommand).de(de_RegisterAppInstanceUserEndpointCommand).build() {
|
|
2154
|
+
static {
|
|
2155
|
+
__name(this, "RegisterAppInstanceUserEndpointCommand");
|
|
2156
|
+
}
|
|
2098
2157
|
};
|
|
2099
|
-
__name(_RegisterAppInstanceUserEndpointCommand, "RegisterAppInstanceUserEndpointCommand");
|
|
2100
|
-
var RegisterAppInstanceUserEndpointCommand = _RegisterAppInstanceUserEndpointCommand;
|
|
2101
2158
|
|
|
2102
2159
|
// src/commands/TagResourceCommand.ts
|
|
2103
2160
|
|
|
2104
2161
|
|
|
2105
2162
|
|
|
2106
|
-
var
|
|
2163
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2107
2164
|
return [
|
|
2108
2165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2109
2166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2110
2167
|
];
|
|
2111
2168
|
}).s("ChimeIdentityService", "TagResource", {}).n("ChimeSDKIdentityClient", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2169
|
+
static {
|
|
2170
|
+
__name(this, "TagResourceCommand");
|
|
2171
|
+
}
|
|
2112
2172
|
};
|
|
2113
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2114
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2115
2173
|
|
|
2116
2174
|
// src/commands/UntagResourceCommand.ts
|
|
2117
2175
|
|
|
2118
2176
|
|
|
2119
2177
|
|
|
2120
|
-
var
|
|
2178
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2121
2179
|
return [
|
|
2122
2180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2123
2181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2124
2182
|
];
|
|
2125
2183
|
}).s("ChimeIdentityService", "UntagResource", {}).n("ChimeSDKIdentityClient", "UntagResourceCommand").f(UntagResourceRequestFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2184
|
+
static {
|
|
2185
|
+
__name(this, "UntagResourceCommand");
|
|
2186
|
+
}
|
|
2126
2187
|
};
|
|
2127
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2128
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2129
2188
|
|
|
2130
2189
|
// src/commands/UpdateAppInstanceBotCommand.ts
|
|
2131
2190
|
|
|
2132
2191
|
|
|
2133
2192
|
|
|
2134
|
-
var
|
|
2193
|
+
var UpdateAppInstanceBotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2135
2194
|
return [
|
|
2136
2195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2137
2196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2138
2197
|
];
|
|
2139
2198
|
}).s("ChimeIdentityService", "UpdateAppInstanceBot", {}).n("ChimeSDKIdentityClient", "UpdateAppInstanceBotCommand").f(UpdateAppInstanceBotRequestFilterSensitiveLog, void 0).ser(se_UpdateAppInstanceBotCommand).de(de_UpdateAppInstanceBotCommand).build() {
|
|
2199
|
+
static {
|
|
2200
|
+
__name(this, "UpdateAppInstanceBotCommand");
|
|
2201
|
+
}
|
|
2140
2202
|
};
|
|
2141
|
-
__name(_UpdateAppInstanceBotCommand, "UpdateAppInstanceBotCommand");
|
|
2142
|
-
var UpdateAppInstanceBotCommand = _UpdateAppInstanceBotCommand;
|
|
2143
2203
|
|
|
2144
2204
|
// src/commands/UpdateAppInstanceCommand.ts
|
|
2145
2205
|
|
|
2146
2206
|
|
|
2147
2207
|
|
|
2148
|
-
var
|
|
2208
|
+
var UpdateAppInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2149
2209
|
return [
|
|
2150
2210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2151
2211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2152
2212
|
];
|
|
2153
2213
|
}).s("ChimeIdentityService", "UpdateAppInstance", {}).n("ChimeSDKIdentityClient", "UpdateAppInstanceCommand").f(UpdateAppInstanceRequestFilterSensitiveLog, void 0).ser(se_UpdateAppInstanceCommand).de(de_UpdateAppInstanceCommand).build() {
|
|
2214
|
+
static {
|
|
2215
|
+
__name(this, "UpdateAppInstanceCommand");
|
|
2216
|
+
}
|
|
2154
2217
|
};
|
|
2155
|
-
__name(_UpdateAppInstanceCommand, "UpdateAppInstanceCommand");
|
|
2156
|
-
var UpdateAppInstanceCommand = _UpdateAppInstanceCommand;
|
|
2157
2218
|
|
|
2158
2219
|
// src/commands/UpdateAppInstanceUserCommand.ts
|
|
2159
2220
|
|
|
2160
2221
|
|
|
2161
2222
|
|
|
2162
|
-
var
|
|
2223
|
+
var UpdateAppInstanceUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2163
2224
|
return [
|
|
2164
2225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2165
2226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2166
2227
|
];
|
|
2167
2228
|
}).s("ChimeIdentityService", "UpdateAppInstanceUser", {}).n("ChimeSDKIdentityClient", "UpdateAppInstanceUserCommand").f(UpdateAppInstanceUserRequestFilterSensitiveLog, void 0).ser(se_UpdateAppInstanceUserCommand).de(de_UpdateAppInstanceUserCommand).build() {
|
|
2229
|
+
static {
|
|
2230
|
+
__name(this, "UpdateAppInstanceUserCommand");
|
|
2231
|
+
}
|
|
2168
2232
|
};
|
|
2169
|
-
__name(_UpdateAppInstanceUserCommand, "UpdateAppInstanceUserCommand");
|
|
2170
|
-
var UpdateAppInstanceUserCommand = _UpdateAppInstanceUserCommand;
|
|
2171
2233
|
|
|
2172
2234
|
// src/commands/UpdateAppInstanceUserEndpointCommand.ts
|
|
2173
2235
|
|
|
2174
2236
|
|
|
2175
2237
|
|
|
2176
|
-
var
|
|
2238
|
+
var UpdateAppInstanceUserEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2177
2239
|
return [
|
|
2178
2240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2179
2241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2180
2242
|
];
|
|
2181
2243
|
}).s("ChimeIdentityService", "UpdateAppInstanceUserEndpoint", {}).n("ChimeSDKIdentityClient", "UpdateAppInstanceUserEndpointCommand").f(UpdateAppInstanceUserEndpointRequestFilterSensitiveLog, void 0).ser(se_UpdateAppInstanceUserEndpointCommand).de(de_UpdateAppInstanceUserEndpointCommand).build() {
|
|
2244
|
+
static {
|
|
2245
|
+
__name(this, "UpdateAppInstanceUserEndpointCommand");
|
|
2246
|
+
}
|
|
2182
2247
|
};
|
|
2183
|
-
__name(_UpdateAppInstanceUserEndpointCommand, "UpdateAppInstanceUserEndpointCommand");
|
|
2184
|
-
var UpdateAppInstanceUserEndpointCommand = _UpdateAppInstanceUserEndpointCommand;
|
|
2185
2248
|
|
|
2186
2249
|
// src/ChimeSDKIdentity.ts
|
|
2187
2250
|
var commands = {
|
|
@@ -2216,10 +2279,11 @@ var commands = {
|
|
|
2216
2279
|
UpdateAppInstanceUserCommand,
|
|
2217
2280
|
UpdateAppInstanceUserEndpointCommand
|
|
2218
2281
|
};
|
|
2219
|
-
var
|
|
2282
|
+
var ChimeSDKIdentity = class extends ChimeSDKIdentityClient {
|
|
2283
|
+
static {
|
|
2284
|
+
__name(this, "ChimeSDKIdentity");
|
|
2285
|
+
}
|
|
2220
2286
|
};
|
|
2221
|
-
__name(_ChimeSDKIdentity, "ChimeSDKIdentity");
|
|
2222
|
-
var ChimeSDKIdentity = _ChimeSDKIdentity;
|
|
2223
2287
|
(0, import_smithy_client.createAggregatedClient)(commands, ChimeSDKIdentity);
|
|
2224
2288
|
|
|
2225
2289
|
// src/pagination/ListAppInstanceAdminsPaginator.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 ChimeSDKIdentityClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -51,126 +51,144 @@ export const ErrorCode = {
|
|
|
51
51
|
VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist",
|
|
52
52
|
};
|
|
53
53
|
export class BadRequestException extends __BaseException {
|
|
54
|
+
name = "BadRequestException";
|
|
55
|
+
$fault = "client";
|
|
56
|
+
Code;
|
|
57
|
+
Message;
|
|
54
58
|
constructor(opts) {
|
|
55
59
|
super({
|
|
56
60
|
name: "BadRequestException",
|
|
57
61
|
$fault: "client",
|
|
58
62
|
...opts,
|
|
59
63
|
});
|
|
60
|
-
this.name = "BadRequestException";
|
|
61
|
-
this.$fault = "client";
|
|
62
64
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
63
65
|
this.Code = opts.Code;
|
|
64
66
|
this.Message = opts.Message;
|
|
65
67
|
}
|
|
66
68
|
}
|
|
67
69
|
export class ConflictException extends __BaseException {
|
|
70
|
+
name = "ConflictException";
|
|
71
|
+
$fault = "client";
|
|
72
|
+
Code;
|
|
73
|
+
Message;
|
|
68
74
|
constructor(opts) {
|
|
69
75
|
super({
|
|
70
76
|
name: "ConflictException",
|
|
71
77
|
$fault: "client",
|
|
72
78
|
...opts,
|
|
73
79
|
});
|
|
74
|
-
this.name = "ConflictException";
|
|
75
|
-
this.$fault = "client";
|
|
76
80
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
77
81
|
this.Code = opts.Code;
|
|
78
82
|
this.Message = opts.Message;
|
|
79
83
|
}
|
|
80
84
|
}
|
|
81
85
|
export class ForbiddenException extends __BaseException {
|
|
86
|
+
name = "ForbiddenException";
|
|
87
|
+
$fault = "client";
|
|
88
|
+
Code;
|
|
89
|
+
Message;
|
|
82
90
|
constructor(opts) {
|
|
83
91
|
super({
|
|
84
92
|
name: "ForbiddenException",
|
|
85
93
|
$fault: "client",
|
|
86
94
|
...opts,
|
|
87
95
|
});
|
|
88
|
-
this.name = "ForbiddenException";
|
|
89
|
-
this.$fault = "client";
|
|
90
96
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
91
97
|
this.Code = opts.Code;
|
|
92
98
|
this.Message = opts.Message;
|
|
93
99
|
}
|
|
94
100
|
}
|
|
95
101
|
export class ResourceLimitExceededException extends __BaseException {
|
|
102
|
+
name = "ResourceLimitExceededException";
|
|
103
|
+
$fault = "client";
|
|
104
|
+
Code;
|
|
105
|
+
Message;
|
|
96
106
|
constructor(opts) {
|
|
97
107
|
super({
|
|
98
108
|
name: "ResourceLimitExceededException",
|
|
99
109
|
$fault: "client",
|
|
100
110
|
...opts,
|
|
101
111
|
});
|
|
102
|
-
this.name = "ResourceLimitExceededException";
|
|
103
|
-
this.$fault = "client";
|
|
104
112
|
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
105
113
|
this.Code = opts.Code;
|
|
106
114
|
this.Message = opts.Message;
|
|
107
115
|
}
|
|
108
116
|
}
|
|
109
117
|
export class ServiceFailureException extends __BaseException {
|
|
118
|
+
name = "ServiceFailureException";
|
|
119
|
+
$fault = "server";
|
|
120
|
+
Code;
|
|
121
|
+
Message;
|
|
110
122
|
constructor(opts) {
|
|
111
123
|
super({
|
|
112
124
|
name: "ServiceFailureException",
|
|
113
125
|
$fault: "server",
|
|
114
126
|
...opts,
|
|
115
127
|
});
|
|
116
|
-
this.name = "ServiceFailureException";
|
|
117
|
-
this.$fault = "server";
|
|
118
128
|
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
119
129
|
this.Code = opts.Code;
|
|
120
130
|
this.Message = opts.Message;
|
|
121
131
|
}
|
|
122
132
|
}
|
|
123
133
|
export class ServiceUnavailableException extends __BaseException {
|
|
134
|
+
name = "ServiceUnavailableException";
|
|
135
|
+
$fault = "server";
|
|
136
|
+
Code;
|
|
137
|
+
Message;
|
|
124
138
|
constructor(opts) {
|
|
125
139
|
super({
|
|
126
140
|
name: "ServiceUnavailableException",
|
|
127
141
|
$fault: "server",
|
|
128
142
|
...opts,
|
|
129
143
|
});
|
|
130
|
-
this.name = "ServiceUnavailableException";
|
|
131
|
-
this.$fault = "server";
|
|
132
144
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
133
145
|
this.Code = opts.Code;
|
|
134
146
|
this.Message = opts.Message;
|
|
135
147
|
}
|
|
136
148
|
}
|
|
137
149
|
export class ThrottledClientException extends __BaseException {
|
|
150
|
+
name = "ThrottledClientException";
|
|
151
|
+
$fault = "client";
|
|
152
|
+
Code;
|
|
153
|
+
Message;
|
|
138
154
|
constructor(opts) {
|
|
139
155
|
super({
|
|
140
156
|
name: "ThrottledClientException",
|
|
141
157
|
$fault: "client",
|
|
142
158
|
...opts,
|
|
143
159
|
});
|
|
144
|
-
this.name = "ThrottledClientException";
|
|
145
|
-
this.$fault = "client";
|
|
146
160
|
Object.setPrototypeOf(this, ThrottledClientException.prototype);
|
|
147
161
|
this.Code = opts.Code;
|
|
148
162
|
this.Message = opts.Message;
|
|
149
163
|
}
|
|
150
164
|
}
|
|
151
165
|
export class UnauthorizedClientException extends __BaseException {
|
|
166
|
+
name = "UnauthorizedClientException";
|
|
167
|
+
$fault = "client";
|
|
168
|
+
Code;
|
|
169
|
+
Message;
|
|
152
170
|
constructor(opts) {
|
|
153
171
|
super({
|
|
154
172
|
name: "UnauthorizedClientException",
|
|
155
173
|
$fault: "client",
|
|
156
174
|
...opts,
|
|
157
175
|
});
|
|
158
|
-
this.name = "UnauthorizedClientException";
|
|
159
|
-
this.$fault = "client";
|
|
160
176
|
Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
|
|
161
177
|
this.Code = opts.Code;
|
|
162
178
|
this.Message = opts.Message;
|
|
163
179
|
}
|
|
164
180
|
}
|
|
165
181
|
export class NotFoundException extends __BaseException {
|
|
182
|
+
name = "NotFoundException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Code;
|
|
185
|
+
Message;
|
|
166
186
|
constructor(opts) {
|
|
167
187
|
super({
|
|
168
188
|
name: "NotFoundException",
|
|
169
189
|
$fault: "client",
|
|
170
190
|
...opts,
|
|
171
191
|
});
|
|
172
|
-
this.name = "NotFoundException";
|
|
173
|
-
this.$fault = "client";
|
|
174
192
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
175
193
|
this.Code = opts.Code;
|
|
176
194
|
this.Message = opts.Message;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKIdentityClientConfig) =>
|
|
|
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: ChimeSDKIdentityClientConfig) =>
|
|
|
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: ChimeSDKIdentityClientConfig) =>
|
|
|
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: ChimeSDKIdentityClientConfig) =>
|
|
|
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;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-identity",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Identity 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-chime-sdk-identity",
|
|
@@ -20,58 +20,58 @@
|
|
|
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
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|