@aws-sdk/client-appfabric 3.427.0 → 3.429.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-types/models/models_0.d.ts +14 -14
- package/dist-types/ts3.4/models/models_0.d.ts +14 -14
- package/package.json +31 -31
|
@@ -107,7 +107,7 @@ export interface AppAuthorization {
|
|
|
107
107
|
* @public
|
|
108
108
|
* <p>The authorization type.</p>
|
|
109
109
|
*/
|
|
110
|
-
authType: AuthType |
|
|
110
|
+
authType: AuthType | undefined;
|
|
111
111
|
/**
|
|
112
112
|
* @public
|
|
113
113
|
* <p>The state of the app authorization.</p>
|
|
@@ -138,7 +138,7 @@ export interface AppAuthorization {
|
|
|
138
138
|
* </li>
|
|
139
139
|
* </ul>
|
|
140
140
|
*/
|
|
141
|
-
status: AppAuthorizationStatus |
|
|
141
|
+
status: AppAuthorizationStatus | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
144
144
|
* <p>The timestamp of when the app authorization was created.</p>
|
|
@@ -154,7 +154,7 @@ export interface AppAuthorization {
|
|
|
154
154
|
* <p>The user persona of the app authorization.</p>
|
|
155
155
|
* <p>This field should always be <code>admin</code>.</p>
|
|
156
156
|
*/
|
|
157
|
-
persona?: Persona
|
|
157
|
+
persona?: Persona;
|
|
158
158
|
/**
|
|
159
159
|
* @public
|
|
160
160
|
* <p>The application URL for the OAuth flow.</p>
|
|
@@ -217,7 +217,7 @@ export interface AppAuthorizationSummary {
|
|
|
217
217
|
* </li>
|
|
218
218
|
* </ul>
|
|
219
219
|
*/
|
|
220
|
-
status: AppAuthorizationStatus |
|
|
220
|
+
status: AppAuthorizationStatus | undefined;
|
|
221
221
|
/**
|
|
222
222
|
* @public
|
|
223
223
|
* <p>Timestamp for when the app authorization was last updated.</p>
|
|
@@ -365,12 +365,12 @@ export interface AuditLogProcessingConfiguration {
|
|
|
365
365
|
* @public
|
|
366
366
|
* <p>The event schema in which the audit logs need to be formatted.</p>
|
|
367
367
|
*/
|
|
368
|
-
schema: Schema |
|
|
368
|
+
schema: Schema | undefined;
|
|
369
369
|
/**
|
|
370
370
|
* @public
|
|
371
371
|
* <p>The format in which the audit logs need to be formatted.</p>
|
|
372
372
|
*/
|
|
373
|
-
format: Format |
|
|
373
|
+
format: Format | undefined;
|
|
374
374
|
}
|
|
375
375
|
/**
|
|
376
376
|
* @public
|
|
@@ -484,7 +484,7 @@ export interface UserAccessResultItem {
|
|
|
484
484
|
* </li>
|
|
485
485
|
* </ul>
|
|
486
486
|
*/
|
|
487
|
-
resultStatus?: ResultStatus
|
|
487
|
+
resultStatus?: ResultStatus;
|
|
488
488
|
/**
|
|
489
489
|
* @public
|
|
490
490
|
* <p>The email address of the target user.</p>
|
|
@@ -644,7 +644,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
644
644
|
* @public
|
|
645
645
|
* <p>The reason for the exception.</p>
|
|
646
646
|
*/
|
|
647
|
-
reason: ValidationExceptionReason |
|
|
647
|
+
reason: ValidationExceptionReason | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* @public
|
|
650
650
|
* <p>The field list.</p>
|
|
@@ -883,7 +883,7 @@ export interface CreateAppAuthorizationRequest {
|
|
|
883
883
|
* @public
|
|
884
884
|
* <p>The authorization type for the app authorization.</p>
|
|
885
885
|
*/
|
|
886
|
-
authType: AuthType |
|
|
886
|
+
authType: AuthType | undefined;
|
|
887
887
|
/**
|
|
888
888
|
* @public
|
|
889
889
|
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
@@ -1084,7 +1084,7 @@ export interface CreateIngestionRequest {
|
|
|
1084
1084
|
* @public
|
|
1085
1085
|
* <p>The ingestion type.</p>
|
|
1086
1086
|
*/
|
|
1087
|
-
ingestionType: IngestionType |
|
|
1087
|
+
ingestionType: IngestionType | undefined;
|
|
1088
1088
|
/**
|
|
1089
1089
|
* @public
|
|
1090
1090
|
* <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
@@ -1156,12 +1156,12 @@ export interface Ingestion {
|
|
|
1156
1156
|
* @public
|
|
1157
1157
|
* <p>The status of the ingestion.</p>
|
|
1158
1158
|
*/
|
|
1159
|
-
state: IngestionState |
|
|
1159
|
+
state: IngestionState | undefined;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* @public
|
|
1162
1162
|
* <p>The type of the ingestion.</p>
|
|
1163
1163
|
*/
|
|
1164
|
-
ingestionType: IngestionType |
|
|
1164
|
+
ingestionType: IngestionType | undefined;
|
|
1165
1165
|
}
|
|
1166
1166
|
/**
|
|
1167
1167
|
* @public
|
|
@@ -1334,7 +1334,7 @@ export interface IngestionDestination {
|
|
|
1334
1334
|
* </li>
|
|
1335
1335
|
* </ul>
|
|
1336
1336
|
*/
|
|
1337
|
-
status?: IngestionDestinationStatus
|
|
1337
|
+
status?: IngestionDestinationStatus;
|
|
1338
1338
|
/**
|
|
1339
1339
|
* @public
|
|
1340
1340
|
* <p>The reason for the current status of the ingestion destination.</p>
|
|
@@ -1762,7 +1762,7 @@ export interface IngestionSummary {
|
|
|
1762
1762
|
* @public
|
|
1763
1763
|
* <p>The status of the ingestion.</p>
|
|
1764
1764
|
*/
|
|
1765
|
-
state: IngestionState |
|
|
1765
|
+
state: IngestionState | undefined;
|
|
1766
1766
|
}
|
|
1767
1767
|
/**
|
|
1768
1768
|
* @public
|
|
@@ -37,11 +37,11 @@ export interface AppAuthorization {
|
|
|
37
37
|
appBundleArn: string | undefined;
|
|
38
38
|
app: string | undefined;
|
|
39
39
|
tenant: Tenant | undefined;
|
|
40
|
-
authType: AuthType |
|
|
41
|
-
status: AppAuthorizationStatus |
|
|
40
|
+
authType: AuthType | undefined;
|
|
41
|
+
status: AppAuthorizationStatus | undefined;
|
|
42
42
|
createdAt: Date | undefined;
|
|
43
43
|
updatedAt: Date | undefined;
|
|
44
|
-
persona?: Persona
|
|
44
|
+
persona?: Persona;
|
|
45
45
|
authUrl?: string;
|
|
46
46
|
}
|
|
47
47
|
export interface AppAuthorizationSummary {
|
|
@@ -49,7 +49,7 @@ export interface AppAuthorizationSummary {
|
|
|
49
49
|
appBundleArn: string | undefined;
|
|
50
50
|
app: string | undefined;
|
|
51
51
|
tenant: Tenant | undefined;
|
|
52
|
-
status: AppAuthorizationStatus |
|
|
52
|
+
status: AppAuthorizationStatus | undefined;
|
|
53
53
|
updatedAt: Date | undefined;
|
|
54
54
|
}
|
|
55
55
|
export interface AppBundle {
|
|
@@ -107,8 +107,8 @@ export declare const Schema: {
|
|
|
107
107
|
};
|
|
108
108
|
export type Schema = (typeof Schema)[keyof typeof Schema];
|
|
109
109
|
export interface AuditLogProcessingConfiguration {
|
|
110
|
-
schema: Schema |
|
|
111
|
-
format: Format |
|
|
110
|
+
schema: Schema | undefined;
|
|
111
|
+
format: Format | undefined;
|
|
112
112
|
}
|
|
113
113
|
export interface AuthRequest {
|
|
114
114
|
redirectUri: string | undefined;
|
|
@@ -134,7 +134,7 @@ export interface UserAccessResultItem {
|
|
|
134
134
|
tenantId?: string;
|
|
135
135
|
tenantDisplayName?: string;
|
|
136
136
|
taskId?: string;
|
|
137
|
-
resultStatus?: ResultStatus
|
|
137
|
+
resultStatus?: ResultStatus;
|
|
138
138
|
email?: string;
|
|
139
139
|
userId?: string;
|
|
140
140
|
userFullName?: string;
|
|
@@ -192,7 +192,7 @@ export type ValidationExceptionReason =
|
|
|
192
192
|
export declare class ValidationException extends __BaseException {
|
|
193
193
|
readonly name: "ValidationException";
|
|
194
194
|
readonly $fault: "client";
|
|
195
|
-
reason: ValidationExceptionReason |
|
|
195
|
+
reason: ValidationExceptionReason | undefined;
|
|
196
196
|
fieldList?: ValidationExceptionField[];
|
|
197
197
|
constructor(
|
|
198
198
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
@@ -253,7 +253,7 @@ export interface CreateAppAuthorizationRequest {
|
|
|
253
253
|
app: string | undefined;
|
|
254
254
|
credential: Credential | undefined;
|
|
255
255
|
tenant: Tenant | undefined;
|
|
256
|
-
authType: AuthType |
|
|
256
|
+
authType: AuthType | undefined;
|
|
257
257
|
clientToken?: string;
|
|
258
258
|
tags?: Tag[];
|
|
259
259
|
}
|
|
@@ -287,7 +287,7 @@ export interface CreateIngestionRequest {
|
|
|
287
287
|
appBundleIdentifier: string | undefined;
|
|
288
288
|
app: string | undefined;
|
|
289
289
|
tenantId: string | undefined;
|
|
290
|
-
ingestionType: IngestionType |
|
|
290
|
+
ingestionType: IngestionType | undefined;
|
|
291
291
|
clientToken?: string;
|
|
292
292
|
tags?: Tag[];
|
|
293
293
|
}
|
|
@@ -304,8 +304,8 @@ export interface Ingestion {
|
|
|
304
304
|
tenantId: string | undefined;
|
|
305
305
|
createdAt: Date | undefined;
|
|
306
306
|
updatedAt: Date | undefined;
|
|
307
|
-
state: IngestionState |
|
|
308
|
-
ingestionType: IngestionType |
|
|
307
|
+
state: IngestionState | undefined;
|
|
308
|
+
ingestionType: IngestionType | undefined;
|
|
309
309
|
}
|
|
310
310
|
export interface CreateIngestionResponse {
|
|
311
311
|
ingestion: Ingestion | undefined;
|
|
@@ -365,7 +365,7 @@ export interface IngestionDestination {
|
|
|
365
365
|
ingestionArn: string | undefined;
|
|
366
366
|
processingConfiguration: ProcessingConfiguration | undefined;
|
|
367
367
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
368
|
-
status?: IngestionDestinationStatus
|
|
368
|
+
status?: IngestionDestinationStatus;
|
|
369
369
|
statusReason?: string;
|
|
370
370
|
createdAt?: Date;
|
|
371
371
|
updatedAt?: Date;
|
|
@@ -460,7 +460,7 @@ export interface IngestionSummary {
|
|
|
460
460
|
arn: string | undefined;
|
|
461
461
|
app: string | undefined;
|
|
462
462
|
tenantId: string | undefined;
|
|
463
|
-
state: IngestionState |
|
|
463
|
+
state: IngestionState | undefined;
|
|
464
464
|
}
|
|
465
465
|
export interface ListIngestionsResponse {
|
|
466
466
|
ingestions: IngestionSummary[] | 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.429.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "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": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|