@aws-sdk/client-identitystore 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/IdentitystoreServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +79 -1
- package/dist-cjs/protocols/Aws_json1_1.js +57 -187
- package/dist-es/index.js +1 -0
- package/dist-es/models/IdentitystoreServiceException.js +12 -0
- package/dist-es/models/models_0.js +74 -1
- package/dist-es/protocols/Aws_json1_1.js +110 -194
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IdentitystoreServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +37 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -16
- package/package.json +25 -25
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
7
8
|
|
|
8
9
|
RequestId?: string;
|
|
10
|
+
|
|
11
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
12
|
}
|
|
10
13
|
export interface DescribeGroupRequest {
|
|
11
14
|
|
|
@@ -28,12 +31,14 @@ export declare namespace DescribeGroupResponse {
|
|
|
28
31
|
const filterSensitiveLog: (obj: DescribeGroupResponse) => any;
|
|
29
32
|
}
|
|
30
33
|
|
|
31
|
-
export
|
|
32
|
-
name: "InternalServerException";
|
|
33
|
-
$fault: "server";
|
|
34
|
+
export declare class InternalServerException extends __BaseException {
|
|
35
|
+
readonly name: "InternalServerException";
|
|
36
|
+
readonly $fault: "server";
|
|
34
37
|
Message?: string;
|
|
35
38
|
|
|
36
39
|
RequestId?: string;
|
|
40
|
+
|
|
41
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
37
42
|
}
|
|
38
43
|
export declare enum ResourceType {
|
|
39
44
|
GROUP = "GROUP",
|
|
@@ -41,9 +46,9 @@ export declare enum ResourceType {
|
|
|
41
46
|
USER = "USER"
|
|
42
47
|
}
|
|
43
48
|
|
|
44
|
-
export
|
|
45
|
-
name: "ResourceNotFoundException";
|
|
46
|
-
$fault: "client";
|
|
49
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
50
|
+
readonly name: "ResourceNotFoundException";
|
|
51
|
+
readonly $fault: "client";
|
|
47
52
|
|
|
48
53
|
ResourceType?: ResourceType | string;
|
|
49
54
|
|
|
@@ -51,22 +56,28 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
51
56
|
Message?: string;
|
|
52
57
|
|
|
53
58
|
RequestId?: string;
|
|
59
|
+
|
|
60
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
54
61
|
}
|
|
55
62
|
|
|
56
|
-
export
|
|
57
|
-
name: "ThrottlingException";
|
|
58
|
-
$fault: "client";
|
|
63
|
+
export declare class ThrottlingException extends __BaseException {
|
|
64
|
+
readonly name: "ThrottlingException";
|
|
65
|
+
readonly $fault: "client";
|
|
59
66
|
Message?: string;
|
|
60
67
|
|
|
61
68
|
RequestId?: string;
|
|
69
|
+
|
|
70
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
62
71
|
}
|
|
63
72
|
|
|
64
|
-
export
|
|
65
|
-
name: "ValidationException";
|
|
66
|
-
$fault: "client";
|
|
73
|
+
export declare class ValidationException extends __BaseException {
|
|
74
|
+
readonly name: "ValidationException";
|
|
75
|
+
readonly $fault: "client";
|
|
67
76
|
Message?: string;
|
|
68
77
|
|
|
69
78
|
RequestId?: string;
|
|
79
|
+
|
|
80
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
70
81
|
}
|
|
71
82
|
export interface DescribeUserRequest {
|
|
72
83
|
|
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.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"
|