@aws-sdk/client-chime-sdk-identity 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ChimeSDKIdentityServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +123 -2
- package/dist-cjs/protocols/Aws_restJson1.js +319 -1287
- package/dist-es/index.js +1 -0
- package/dist-es/models/ChimeSDKIdentityServiceException.js +12 -0
- package/dist-es/models/models_0.js +114 -1
- package/dist-es/protocols/Aws_restJson1.js +659 -1392
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ChimeSDKIdentityServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -25
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ChimeSDKIdentityServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -25
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ChimeSDKIdentity service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ChimeSDKIdentityServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException";
|
|
2
3
|
export declare enum AllowMessages {
|
|
3
4
|
ALL = "ALL",
|
|
4
5
|
NONE = "NONE"
|
|
@@ -398,21 +399,29 @@ export declare enum ErrorCode {
|
|
|
398
399
|
/**
|
|
399
400
|
* <p>The input parameters don't match the service's restrictions.</p>
|
|
400
401
|
*/
|
|
401
|
-
export
|
|
402
|
-
name: "BadRequestException";
|
|
403
|
-
$fault: "client";
|
|
402
|
+
export declare class BadRequestException extends __BaseException {
|
|
403
|
+
readonly name: "BadRequestException";
|
|
404
|
+
readonly $fault: "client";
|
|
404
405
|
Code?: ErrorCode | string;
|
|
405
406
|
Message?: string;
|
|
407
|
+
/**
|
|
408
|
+
* @internal
|
|
409
|
+
*/
|
|
410
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
406
411
|
}
|
|
407
412
|
/**
|
|
408
413
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
409
414
|
* resource.</p>
|
|
410
415
|
*/
|
|
411
|
-
export
|
|
412
|
-
name: "ConflictException";
|
|
413
|
-
$fault: "client";
|
|
416
|
+
export declare class ConflictException extends __BaseException {
|
|
417
|
+
readonly name: "ConflictException";
|
|
418
|
+
readonly $fault: "client";
|
|
414
419
|
Code?: ErrorCode | string;
|
|
415
420
|
Message?: string;
|
|
421
|
+
/**
|
|
422
|
+
* @internal
|
|
423
|
+
*/
|
|
424
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
416
425
|
}
|
|
417
426
|
/**
|
|
418
427
|
* <p>A tag object containing a key-value pair.</p>
|
|
@@ -472,56 +481,80 @@ export declare namespace CreateAppInstanceResponse {
|
|
|
472
481
|
/**
|
|
473
482
|
* <p>The client is permanently forbidden from making the request.</p>
|
|
474
483
|
*/
|
|
475
|
-
export
|
|
476
|
-
name: "ForbiddenException";
|
|
477
|
-
$fault: "client";
|
|
484
|
+
export declare class ForbiddenException extends __BaseException {
|
|
485
|
+
readonly name: "ForbiddenException";
|
|
486
|
+
readonly $fault: "client";
|
|
478
487
|
Code?: ErrorCode | string;
|
|
479
488
|
Message?: string;
|
|
489
|
+
/**
|
|
490
|
+
* @internal
|
|
491
|
+
*/
|
|
492
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
480
493
|
}
|
|
481
494
|
/**
|
|
482
495
|
* <p>The request exceeds the resource limit.</p>
|
|
483
496
|
*/
|
|
484
|
-
export
|
|
485
|
-
name: "ResourceLimitExceededException";
|
|
486
|
-
$fault: "client";
|
|
497
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
498
|
+
readonly name: "ResourceLimitExceededException";
|
|
499
|
+
readonly $fault: "client";
|
|
487
500
|
Code?: ErrorCode | string;
|
|
488
501
|
Message?: string;
|
|
502
|
+
/**
|
|
503
|
+
* @internal
|
|
504
|
+
*/
|
|
505
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
489
506
|
}
|
|
490
507
|
/**
|
|
491
508
|
* <p>The service encountered an unexpected error.</p>
|
|
492
509
|
*/
|
|
493
|
-
export
|
|
494
|
-
name: "ServiceFailureException";
|
|
495
|
-
$fault: "server";
|
|
510
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
511
|
+
readonly name: "ServiceFailureException";
|
|
512
|
+
readonly $fault: "server";
|
|
496
513
|
Code?: ErrorCode | string;
|
|
497
514
|
Message?: string;
|
|
515
|
+
/**
|
|
516
|
+
* @internal
|
|
517
|
+
*/
|
|
518
|
+
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
498
519
|
}
|
|
499
520
|
/**
|
|
500
521
|
* <p>The service is currently unavailable.</p>
|
|
501
522
|
*/
|
|
502
|
-
export
|
|
503
|
-
name: "ServiceUnavailableException";
|
|
504
|
-
$fault: "server";
|
|
523
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
524
|
+
readonly name: "ServiceUnavailableException";
|
|
525
|
+
readonly $fault: "server";
|
|
505
526
|
Code?: ErrorCode | string;
|
|
506
527
|
Message?: string;
|
|
528
|
+
/**
|
|
529
|
+
* @internal
|
|
530
|
+
*/
|
|
531
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
507
532
|
}
|
|
508
533
|
/**
|
|
509
534
|
* <p>The client exceeded its request rate limit.</p>
|
|
510
535
|
*/
|
|
511
|
-
export
|
|
512
|
-
name: "ThrottledClientException";
|
|
513
|
-
$fault: "client";
|
|
536
|
+
export declare class ThrottledClientException extends __BaseException {
|
|
537
|
+
readonly name: "ThrottledClientException";
|
|
538
|
+
readonly $fault: "client";
|
|
514
539
|
Code?: ErrorCode | string;
|
|
515
540
|
Message?: string;
|
|
541
|
+
/**
|
|
542
|
+
* @internal
|
|
543
|
+
*/
|
|
544
|
+
constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
|
|
516
545
|
}
|
|
517
546
|
/**
|
|
518
547
|
* <p>The client is not currently authorized to make the request.</p>
|
|
519
548
|
*/
|
|
520
|
-
export
|
|
521
|
-
name: "UnauthorizedClientException";
|
|
522
|
-
$fault: "client";
|
|
549
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
550
|
+
readonly name: "UnauthorizedClientException";
|
|
551
|
+
readonly $fault: "client";
|
|
523
552
|
Code?: ErrorCode | string;
|
|
524
553
|
Message?: string;
|
|
554
|
+
/**
|
|
555
|
+
* @internal
|
|
556
|
+
*/
|
|
557
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
525
558
|
}
|
|
526
559
|
export interface CreateAppInstanceAdminRequest {
|
|
527
560
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ChimeSDKIdentityServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException";
|
|
2
3
|
export declare enum AllowMessages {
|
|
3
4
|
ALL = "ALL",
|
|
4
5
|
NONE = "NONE"
|
|
@@ -213,18 +214,22 @@ export declare enum ErrorCode {
|
|
|
213
214
|
VoiceConnectorGroupAssociationsExist = "VoiceConnectorGroupAssociationsExist"
|
|
214
215
|
}
|
|
215
216
|
|
|
216
|
-
export
|
|
217
|
-
name: "BadRequestException";
|
|
218
|
-
$fault: "client";
|
|
217
|
+
export declare class BadRequestException extends __BaseException {
|
|
218
|
+
readonly name: "BadRequestException";
|
|
219
|
+
readonly $fault: "client";
|
|
219
220
|
Code?: ErrorCode | string;
|
|
220
221
|
Message?: string;
|
|
222
|
+
|
|
223
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
221
224
|
}
|
|
222
225
|
|
|
223
|
-
export
|
|
224
|
-
name: "ConflictException";
|
|
225
|
-
$fault: "client";
|
|
226
|
+
export declare class ConflictException extends __BaseException {
|
|
227
|
+
readonly name: "ConflictException";
|
|
228
|
+
readonly $fault: "client";
|
|
226
229
|
Code?: ErrorCode | string;
|
|
227
230
|
Message?: string;
|
|
231
|
+
|
|
232
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
228
233
|
}
|
|
229
234
|
|
|
230
235
|
export interface Tag {
|
|
@@ -260,46 +265,58 @@ export declare namespace CreateAppInstanceResponse {
|
|
|
260
265
|
const filterSensitiveLog: (obj: CreateAppInstanceResponse) => any;
|
|
261
266
|
}
|
|
262
267
|
|
|
263
|
-
export
|
|
264
|
-
name: "ForbiddenException";
|
|
265
|
-
$fault: "client";
|
|
268
|
+
export declare class ForbiddenException extends __BaseException {
|
|
269
|
+
readonly name: "ForbiddenException";
|
|
270
|
+
readonly $fault: "client";
|
|
266
271
|
Code?: ErrorCode | string;
|
|
267
272
|
Message?: string;
|
|
273
|
+
|
|
274
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
268
275
|
}
|
|
269
276
|
|
|
270
|
-
export
|
|
271
|
-
name: "ResourceLimitExceededException";
|
|
272
|
-
$fault: "client";
|
|
277
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
278
|
+
readonly name: "ResourceLimitExceededException";
|
|
279
|
+
readonly $fault: "client";
|
|
273
280
|
Code?: ErrorCode | string;
|
|
274
281
|
Message?: string;
|
|
282
|
+
|
|
283
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
275
284
|
}
|
|
276
285
|
|
|
277
|
-
export
|
|
278
|
-
name: "ServiceFailureException";
|
|
279
|
-
$fault: "server";
|
|
286
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
287
|
+
readonly name: "ServiceFailureException";
|
|
288
|
+
readonly $fault: "server";
|
|
280
289
|
Code?: ErrorCode | string;
|
|
281
290
|
Message?: string;
|
|
291
|
+
|
|
292
|
+
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
282
293
|
}
|
|
283
294
|
|
|
284
|
-
export
|
|
285
|
-
name: "ServiceUnavailableException";
|
|
286
|
-
$fault: "server";
|
|
295
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
296
|
+
readonly name: "ServiceUnavailableException";
|
|
297
|
+
readonly $fault: "server";
|
|
287
298
|
Code?: ErrorCode | string;
|
|
288
299
|
Message?: string;
|
|
300
|
+
|
|
301
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
289
302
|
}
|
|
290
303
|
|
|
291
|
-
export
|
|
292
|
-
name: "ThrottledClientException";
|
|
293
|
-
$fault: "client";
|
|
304
|
+
export declare class ThrottledClientException extends __BaseException {
|
|
305
|
+
readonly name: "ThrottledClientException";
|
|
306
|
+
readonly $fault: "client";
|
|
294
307
|
Code?: ErrorCode | string;
|
|
295
308
|
Message?: string;
|
|
309
|
+
|
|
310
|
+
constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
|
|
296
311
|
}
|
|
297
312
|
|
|
298
|
-
export
|
|
299
|
-
name: "UnauthorizedClientException";
|
|
300
|
-
$fault: "client";
|
|
313
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
314
|
+
readonly name: "UnauthorizedClientException";
|
|
315
|
+
readonly $fault: "client";
|
|
301
316
|
Code?: ErrorCode | string;
|
|
302
317
|
Message?: string;
|
|
318
|
+
|
|
319
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
303
320
|
}
|
|
304
321
|
export interface CreateAppInstanceAdminRequest {
|
|
305
322
|
|
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.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|