@aws-sdk/client-identitystore 3.934.0 → 3.935.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 +30 -29
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +29 -0
- package/dist-es/models/errors.js +135 -0
- package/dist-es/models/models_0.js +1 -164
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +85 -0
- package/dist-types/models/errors.d.ts +178 -0
- package/dist-types/models/models_0.d.ts +1 -262
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +41 -0
- package/dist-types/ts3.4/models/errors.d.ts +84 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -117
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,21 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
export declare const AccessDeniedExceptionReason: {
|
|
5
|
-
readonly KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED";
|
|
6
|
-
};
|
|
7
|
-
export type AccessDeniedExceptionReason =
|
|
8
|
-
(typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
9
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
-
readonly name: "AccessDeniedException";
|
|
11
|
-
readonly $fault: "client";
|
|
12
|
-
Message?: string | undefined;
|
|
13
|
-
RequestId?: string | undefined;
|
|
14
|
-
Reason?: AccessDeniedExceptionReason | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
17
|
-
);
|
|
18
|
-
}
|
|
2
|
+
import { UserStatus } from "./enums";
|
|
19
3
|
export interface Address {
|
|
20
4
|
StreetAddress?: string | undefined;
|
|
21
5
|
Locality?: string | undefined;
|
|
@@ -72,78 +56,6 @@ export interface GetGroupIdResponse {
|
|
|
72
56
|
GroupId: string | undefined;
|
|
73
57
|
IdentityStoreId: string | undefined;
|
|
74
58
|
}
|
|
75
|
-
export declare class InternalServerException extends __BaseException {
|
|
76
|
-
readonly name: "InternalServerException";
|
|
77
|
-
readonly $fault: "server";
|
|
78
|
-
$retryable: {};
|
|
79
|
-
Message?: string | undefined;
|
|
80
|
-
RequestId?: string | undefined;
|
|
81
|
-
RetryAfterSeconds?: number | undefined;
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
export declare const ResourceNotFoundExceptionReason: {
|
|
87
|
-
readonly KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND";
|
|
88
|
-
};
|
|
89
|
-
export type ResourceNotFoundExceptionReason =
|
|
90
|
-
(typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
|
|
91
|
-
export declare const ResourceType: {
|
|
92
|
-
readonly GROUP: "GROUP";
|
|
93
|
-
readonly GROUP_MEMBERSHIP: "GROUP_MEMBERSHIP";
|
|
94
|
-
readonly IDENTITY_STORE: "IDENTITY_STORE";
|
|
95
|
-
readonly USER: "USER";
|
|
96
|
-
};
|
|
97
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
98
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
99
|
-
readonly name: "ResourceNotFoundException";
|
|
100
|
-
readonly $fault: "client";
|
|
101
|
-
ResourceType?: ResourceType | undefined;
|
|
102
|
-
ResourceId?: string | undefined;
|
|
103
|
-
Reason?: ResourceNotFoundExceptionReason | undefined;
|
|
104
|
-
Message?: string | undefined;
|
|
105
|
-
RequestId?: string | undefined;
|
|
106
|
-
constructor(
|
|
107
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
108
|
-
);
|
|
109
|
-
}
|
|
110
|
-
export declare const ThrottlingExceptionReason: {
|
|
111
|
-
readonly KMS_THROTTLING: "KMS_THROTTLING";
|
|
112
|
-
};
|
|
113
|
-
export type ThrottlingExceptionReason =
|
|
114
|
-
(typeof ThrottlingExceptionReason)[keyof typeof ThrottlingExceptionReason];
|
|
115
|
-
export declare class ThrottlingException extends __BaseException {
|
|
116
|
-
readonly name: "ThrottlingException";
|
|
117
|
-
readonly $fault: "client";
|
|
118
|
-
$retryable: {
|
|
119
|
-
throttling: boolean;
|
|
120
|
-
};
|
|
121
|
-
Message?: string | undefined;
|
|
122
|
-
RequestId?: string | undefined;
|
|
123
|
-
RetryAfterSeconds?: number | undefined;
|
|
124
|
-
Reason?: ThrottlingExceptionReason | undefined;
|
|
125
|
-
constructor(
|
|
126
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
127
|
-
);
|
|
128
|
-
}
|
|
129
|
-
export declare const ValidationExceptionReason: {
|
|
130
|
-
readonly KMS_DISABLED: "KMS_DISABLED";
|
|
131
|
-
readonly KMS_INVALID_ARN: "KMS_INVALID_ARN";
|
|
132
|
-
readonly KMS_INVALID_KEY_USAGE: "KMS_INVALID_KEY_USAGE";
|
|
133
|
-
readonly KMS_INVALID_STATE: "KMS_INVALID_STATE";
|
|
134
|
-
};
|
|
135
|
-
export type ValidationExceptionReason =
|
|
136
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
137
|
-
export declare class ValidationException extends __BaseException {
|
|
138
|
-
readonly name: "ValidationException";
|
|
139
|
-
readonly $fault: "client";
|
|
140
|
-
Message?: string | undefined;
|
|
141
|
-
RequestId?: string | undefined;
|
|
142
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
143
|
-
constructor(
|
|
144
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
145
|
-
);
|
|
146
|
-
}
|
|
147
59
|
export type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
148
60
|
export declare namespace MemberId {
|
|
149
61
|
interface UserIdMember {
|
|
@@ -176,20 +88,6 @@ export interface GetUserIdResponse {
|
|
|
176
88
|
IdentityStoreId: string | undefined;
|
|
177
89
|
UserId: string | undefined;
|
|
178
90
|
}
|
|
179
|
-
export declare const ConflictExceptionReason: {
|
|
180
|
-
readonly CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION";
|
|
181
|
-
readonly UNIQUENESS_CONSTRAINT_VIOLATION: "UNIQUENESS_CONSTRAINT_VIOLATION";
|
|
182
|
-
};
|
|
183
|
-
export type ConflictExceptionReason =
|
|
184
|
-
(typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
185
|
-
export declare class ConflictException extends __BaseException {
|
|
186
|
-
readonly name: "ConflictException";
|
|
187
|
-
readonly $fault: "client";
|
|
188
|
-
Message?: string | undefined;
|
|
189
|
-
RequestId?: string | undefined;
|
|
190
|
-
Reason?: ConflictExceptionReason | undefined;
|
|
191
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
192
|
-
}
|
|
193
91
|
export interface CreateGroupMembershipRequest {
|
|
194
92
|
IdentityStoreId: string | undefined;
|
|
195
93
|
GroupId: string | undefined;
|
|
@@ -199,15 +97,6 @@ export interface CreateGroupMembershipResponse {
|
|
|
199
97
|
MembershipId: string | undefined;
|
|
200
98
|
IdentityStoreId: string | undefined;
|
|
201
99
|
}
|
|
202
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
203
|
-
readonly name: "ServiceQuotaExceededException";
|
|
204
|
-
readonly $fault: "client";
|
|
205
|
-
Message?: string | undefined;
|
|
206
|
-
RequestId?: string | undefined;
|
|
207
|
-
constructor(
|
|
208
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
209
|
-
);
|
|
210
|
-
}
|
|
211
100
|
export interface DeleteGroupMembershipRequest {
|
|
212
101
|
IdentityStoreId: string | undefined;
|
|
213
102
|
MembershipId: string | undefined;
|
|
@@ -386,11 +275,6 @@ export interface DescribeUserRequest {
|
|
|
386
275
|
IdentityStoreId: string | undefined;
|
|
387
276
|
UserId: string | undefined;
|
|
388
277
|
}
|
|
389
|
-
export declare const UserStatus: {
|
|
390
|
-
readonly DISABLED: "DISABLED";
|
|
391
|
-
readonly ENABLED: "ENABLED";
|
|
392
|
-
};
|
|
393
|
-
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
394
278
|
export interface DescribeUserResponse {
|
|
395
279
|
IdentityStoreId: string | undefined;
|
|
396
280
|
UserId: string | undefined;
|
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.935.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,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|