@aws-sdk/client-appfabric 3.934.0 → 3.936.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 +46 -45
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +45 -0
- package/dist-es/models/errors.js +117 -0
- package/dist-es/models/models_0.js +1 -162
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +125 -0
- package/dist-types/models/errors.d.ts +163 -0
- package/dist-types/models/models_0.d.ts +1 -286
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +59 -0
- package/dist-types/ts3.4/models/errors.d.ts +69 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -126
- package/package.json +19 -19
- 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,33 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
AppAuthorizationStatus,
|
|
3
|
+
AuthType,
|
|
4
|
+
Format,
|
|
5
|
+
IngestionDestinationStatus,
|
|
6
|
+
IngestionState,
|
|
7
|
+
IngestionType,
|
|
8
|
+
Persona,
|
|
9
|
+
ResultStatus,
|
|
10
|
+
Schema,
|
|
11
|
+
} from "./enums";
|
|
10
12
|
export interface ApiKeyCredential {
|
|
11
13
|
apiKey: string | undefined;
|
|
12
14
|
}
|
|
13
|
-
export declare const AuthType: {
|
|
14
|
-
readonly API_KEY: "apiKey";
|
|
15
|
-
readonly OAUTH2: "oauth2";
|
|
16
|
-
};
|
|
17
|
-
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
18
|
-
export declare const Persona: {
|
|
19
|
-
readonly ADMIN: "admin";
|
|
20
|
-
readonly ENDUSER: "endUser";
|
|
21
|
-
};
|
|
22
|
-
export type Persona = (typeof Persona)[keyof typeof Persona];
|
|
23
|
-
export declare const AppAuthorizationStatus: {
|
|
24
|
-
readonly CONNECTED: "Connected";
|
|
25
|
-
readonly CONNECTION_VALIDATION_FAILED: "ConnectionValidationFailed";
|
|
26
|
-
readonly PENDING_CONNECT: "PendingConnect";
|
|
27
|
-
readonly TOKEN_AUTO_ROTATION_FAILED: "TokenAutoRotationFailed";
|
|
28
|
-
};
|
|
29
|
-
export type AppAuthorizationStatus =
|
|
30
|
-
(typeof AppAuthorizationStatus)[keyof typeof AppAuthorizationStatus];
|
|
31
15
|
export interface Tenant {
|
|
32
16
|
tenantIdentifier: string | undefined;
|
|
33
17
|
tenantDisplayName: string | undefined;
|
|
@@ -95,16 +79,6 @@ export declare namespace Destination {
|
|
|
95
79
|
export interface AuditLogDestinationConfiguration {
|
|
96
80
|
destination: Destination | undefined;
|
|
97
81
|
}
|
|
98
|
-
export declare const Format: {
|
|
99
|
-
readonly JSON: "json";
|
|
100
|
-
readonly PARQUET: "parquet";
|
|
101
|
-
};
|
|
102
|
-
export type Format = (typeof Format)[keyof typeof Format];
|
|
103
|
-
export declare const Schema: {
|
|
104
|
-
readonly OCSF: "ocsf";
|
|
105
|
-
readonly RAW: "raw";
|
|
106
|
-
};
|
|
107
|
-
export type Schema = (typeof Schema)[keyof typeof Schema];
|
|
108
82
|
export interface AuditLogProcessingConfiguration {
|
|
109
83
|
schema: Schema | undefined;
|
|
110
84
|
format: Format | undefined;
|
|
@@ -117,13 +91,6 @@ export interface BatchGetUserAccessTasksRequest {
|
|
|
117
91
|
appBundleIdentifier: string | undefined;
|
|
118
92
|
taskIdList: string[] | undefined;
|
|
119
93
|
}
|
|
120
|
-
export declare const ResultStatus: {
|
|
121
|
-
readonly COMPLETED: "COMPLETED";
|
|
122
|
-
readonly EXPIRED: "EXPIRED";
|
|
123
|
-
readonly FAILED: "FAILED";
|
|
124
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
125
|
-
};
|
|
126
|
-
export type ResultStatus = (typeof ResultStatus)[keyof typeof ResultStatus];
|
|
127
94
|
export interface TaskError {
|
|
128
95
|
errorCode?: string | undefined;
|
|
129
96
|
errorMessage?: string | undefined;
|
|
@@ -145,65 +112,10 @@ export interface UserAccessResultItem {
|
|
|
145
112
|
export interface BatchGetUserAccessTasksResponse {
|
|
146
113
|
userAccessResultsList?: UserAccessResultItem[] | undefined;
|
|
147
114
|
}
|
|
148
|
-
export declare class InternalServerException extends __BaseException {
|
|
149
|
-
readonly name: "InternalServerException";
|
|
150
|
-
readonly $fault: "server";
|
|
151
|
-
$retryable: {};
|
|
152
|
-
retryAfterSeconds?: number | undefined;
|
|
153
|
-
constructor(
|
|
154
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
155
|
-
);
|
|
156
|
-
}
|
|
157
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
158
|
-
readonly name: "ResourceNotFoundException";
|
|
159
|
-
readonly $fault: "client";
|
|
160
|
-
resourceId: string | undefined;
|
|
161
|
-
resourceType: string | undefined;
|
|
162
|
-
constructor(
|
|
163
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
164
|
-
);
|
|
165
|
-
}
|
|
166
|
-
export declare class ThrottlingException extends __BaseException {
|
|
167
|
-
readonly name: "ThrottlingException";
|
|
168
|
-
readonly $fault: "client";
|
|
169
|
-
$retryable: {
|
|
170
|
-
throttling: boolean;
|
|
171
|
-
};
|
|
172
|
-
serviceCode?: string | undefined;
|
|
173
|
-
quotaCode?: string | undefined;
|
|
174
|
-
retryAfterSeconds?: number | undefined;
|
|
175
|
-
constructor(
|
|
176
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
177
|
-
);
|
|
178
|
-
}
|
|
179
115
|
export interface ValidationExceptionField {
|
|
180
116
|
name: string | undefined;
|
|
181
117
|
message: string | undefined;
|
|
182
118
|
}
|
|
183
|
-
export declare const ValidationExceptionReason: {
|
|
184
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
185
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
186
|
-
readonly OTHER: "other";
|
|
187
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
188
|
-
};
|
|
189
|
-
export type ValidationExceptionReason =
|
|
190
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
191
|
-
export declare class ValidationException extends __BaseException {
|
|
192
|
-
readonly name: "ValidationException";
|
|
193
|
-
readonly $fault: "client";
|
|
194
|
-
reason: ValidationExceptionReason | undefined;
|
|
195
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
196
|
-
constructor(
|
|
197
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
198
|
-
);
|
|
199
|
-
}
|
|
200
|
-
export declare class ConflictException extends __BaseException {
|
|
201
|
-
readonly name: "ConflictException";
|
|
202
|
-
readonly $fault: "client";
|
|
203
|
-
resourceId: string | undefined;
|
|
204
|
-
resourceType: string | undefined;
|
|
205
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
206
|
-
}
|
|
207
119
|
export interface ConnectAppAuthorizationRequest {
|
|
208
120
|
appBundleIdentifier: string | undefined;
|
|
209
121
|
appAuthorizationIdentifier: string | undefined;
|
|
@@ -258,17 +170,6 @@ export interface CreateAppAuthorizationRequest {
|
|
|
258
170
|
export interface CreateAppAuthorizationResponse {
|
|
259
171
|
appAuthorization: AppAuthorization | undefined;
|
|
260
172
|
}
|
|
261
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
262
|
-
readonly name: "ServiceQuotaExceededException";
|
|
263
|
-
readonly $fault: "client";
|
|
264
|
-
resourceId: string | undefined;
|
|
265
|
-
resourceType: string | undefined;
|
|
266
|
-
serviceCode: string | undefined;
|
|
267
|
-
quotaCode: string | undefined;
|
|
268
|
-
constructor(
|
|
269
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
270
|
-
);
|
|
271
|
-
}
|
|
272
173
|
export interface CreateAppBundleRequest {
|
|
273
174
|
clientToken?: string | undefined;
|
|
274
175
|
customerManagedKeyIdentifier?: string | undefined;
|
|
@@ -277,10 +178,6 @@ export interface CreateAppBundleRequest {
|
|
|
277
178
|
export interface CreateAppBundleResponse {
|
|
278
179
|
appBundle: AppBundle | undefined;
|
|
279
180
|
}
|
|
280
|
-
export declare const IngestionType: {
|
|
281
|
-
readonly AUDIT_LOG: "auditLog";
|
|
282
|
-
};
|
|
283
|
-
export type IngestionType = (typeof IngestionType)[keyof typeof IngestionType];
|
|
284
181
|
export interface CreateIngestionRequest {
|
|
285
182
|
appBundleIdentifier: string | undefined;
|
|
286
183
|
app: string | undefined;
|
|
@@ -289,12 +186,6 @@ export interface CreateIngestionRequest {
|
|
|
289
186
|
clientToken?: string | undefined;
|
|
290
187
|
tags?: Tag[] | undefined;
|
|
291
188
|
}
|
|
292
|
-
export declare const IngestionState: {
|
|
293
|
-
readonly DISABLED: "disabled";
|
|
294
|
-
readonly ENABLED: "enabled";
|
|
295
|
-
};
|
|
296
|
-
export type IngestionState =
|
|
297
|
-
(typeof IngestionState)[keyof typeof IngestionState];
|
|
298
189
|
export interface Ingestion {
|
|
299
190
|
arn: string | undefined;
|
|
300
191
|
appBundleArn: string | undefined;
|
|
@@ -350,12 +241,6 @@ export interface CreateIngestionDestinationRequest {
|
|
|
350
241
|
clientToken?: string | undefined;
|
|
351
242
|
tags?: Tag[] | undefined;
|
|
352
243
|
}
|
|
353
|
-
export declare const IngestionDestinationStatus: {
|
|
354
|
-
readonly ACTIVE: "Active";
|
|
355
|
-
readonly FAILED: "Failed";
|
|
356
|
-
};
|
|
357
|
-
export type IngestionDestinationStatus =
|
|
358
|
-
(typeof IngestionDestinationStatus)[keyof typeof IngestionDestinationStatus];
|
|
359
244
|
export interface IngestionDestination {
|
|
360
245
|
arn: string | undefined;
|
|
361
246
|
ingestionArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appfabric",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appfabric Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-appfabric",
|
|
@@ -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.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.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";
|