@aws-sdk/client-appintegrations 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 +14 -13
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +13 -0
- package/dist-es/models/errors.js +113 -0
- package/dist-es/models/models_0.js +1 -126
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +37 -0
- package/dist-types/models/errors.d.ts +106 -0
- package/dist-types/models/models_0.d.ts +1 -143
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -84
- 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
package/dist-cjs/index.js
CHANGED
|
@@ -131,10 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends AppIntegration
|
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
-
const ContactHandlingScope = {
|
|
135
|
-
CROSS_CONTACTS: "CROSS_CONTACTS",
|
|
136
|
-
PER_CONTACT: "PER_CONTACT",
|
|
137
|
-
};
|
|
138
134
|
let DuplicateResourceException$1 = class DuplicateResourceException extends AppIntegrationsServiceException$1 {
|
|
139
135
|
name = "DuplicateResourceException";
|
|
140
136
|
$fault = "client";
|
|
@@ -219,10 +215,6 @@ let UnsupportedOperationException$1 = class UnsupportedOperationException extend
|
|
|
219
215
|
this.Message = opts.Message;
|
|
220
216
|
}
|
|
221
217
|
};
|
|
222
|
-
const ExecutionMode = {
|
|
223
|
-
ON_DEMAND: "ON_DEMAND",
|
|
224
|
-
SCHEDULED: "SCHEDULED",
|
|
225
|
-
};
|
|
226
218
|
let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppIntegrationsServiceException$1 {
|
|
227
219
|
name = "ResourceNotFoundException";
|
|
228
220
|
$fault = "client";
|
|
@@ -237,11 +229,6 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppInt
|
|
|
237
229
|
this.Message = opts.Message;
|
|
238
230
|
}
|
|
239
231
|
};
|
|
240
|
-
const ExecutionStatus = {
|
|
241
|
-
COMPLETED: "COMPLETED",
|
|
242
|
-
FAILED: "FAILED",
|
|
243
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
244
|
-
};
|
|
245
232
|
|
|
246
233
|
const _A = "Arn";
|
|
247
234
|
const _AA = "ApplicationArn";
|
|
@@ -1507,6 +1494,20 @@ const paginateListEventIntegrationAssociations = core.createPaginator(AppIntegra
|
|
|
1507
1494
|
|
|
1508
1495
|
const paginateListEventIntegrations = core.createPaginator(AppIntegrationsClient, ListEventIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1509
1496
|
|
|
1497
|
+
const ContactHandlingScope = {
|
|
1498
|
+
CROSS_CONTACTS: "CROSS_CONTACTS",
|
|
1499
|
+
PER_CONTACT: "PER_CONTACT",
|
|
1500
|
+
};
|
|
1501
|
+
const ExecutionMode = {
|
|
1502
|
+
ON_DEMAND: "ON_DEMAND",
|
|
1503
|
+
SCHEDULED: "SCHEDULED",
|
|
1504
|
+
};
|
|
1505
|
+
const ExecutionStatus = {
|
|
1506
|
+
COMPLETED: "COMPLETED",
|
|
1507
|
+
FAILED: "FAILED",
|
|
1508
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1509
|
+
};
|
|
1510
|
+
|
|
1510
1511
|
Object.defineProperty(exports, "$Command", {
|
|
1511
1512
|
enumerable: true,
|
|
1512
1513
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./AppIntegrationsClient";
|
|
|
2
2
|
export * from "./AppIntegrations";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export const ContactHandlingScope = {
|
|
2
|
+
CROSS_CONTACTS: "CROSS_CONTACTS",
|
|
3
|
+
PER_CONTACT: "PER_CONTACT",
|
|
4
|
+
};
|
|
5
|
+
export const ExecutionMode = {
|
|
6
|
+
ON_DEMAND: "ON_DEMAND",
|
|
7
|
+
SCHEDULED: "SCHEDULED",
|
|
8
|
+
};
|
|
9
|
+
export const ExecutionStatus = {
|
|
10
|
+
COMPLETED: "COMPLETED",
|
|
11
|
+
FAILED: "FAILED",
|
|
12
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
13
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class DuplicateResourceException extends __BaseException {
|
|
17
|
+
name = "DuplicateResourceException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "DuplicateResourceException",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, DuplicateResourceException.prototype);
|
|
27
|
+
this.Message = opts.Message;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InternalServiceError extends __BaseException {
|
|
31
|
+
name = "InternalServiceError";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
Message;
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InternalServiceError",
|
|
37
|
+
$fault: "server",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export class InvalidRequestException extends __BaseException {
|
|
45
|
+
name = "InvalidRequestException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "InvalidRequestException",
|
|
51
|
+
$fault: "client",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
55
|
+
this.Message = opts.Message;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
export class ResourceQuotaExceededException extends __BaseException {
|
|
59
|
+
name = "ResourceQuotaExceededException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
Message;
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "ResourceQuotaExceededException",
|
|
65
|
+
$fault: "client",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
export class ThrottlingException extends __BaseException {
|
|
73
|
+
name = "ThrottlingException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
Message;
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ThrottlingException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
83
|
+
this.Message = opts.Message;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class UnsupportedOperationException extends __BaseException {
|
|
87
|
+
name = "UnsupportedOperationException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
Message;
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "UnsupportedOperationException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
97
|
+
this.Message = opts.Message;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
101
|
+
name = "ResourceNotFoundException";
|
|
102
|
+
$fault = "client";
|
|
103
|
+
Message;
|
|
104
|
+
constructor(opts) {
|
|
105
|
+
super({
|
|
106
|
+
name: "ResourceNotFoundException",
|
|
107
|
+
$fault: "client",
|
|
108
|
+
...opts,
|
|
109
|
+
});
|
|
110
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
111
|
+
this.Message = opts.Message;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -1,126 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export const ContactHandlingScope = {
|
|
17
|
-
CROSS_CONTACTS: "CROSS_CONTACTS",
|
|
18
|
-
PER_CONTACT: "PER_CONTACT",
|
|
19
|
-
};
|
|
20
|
-
export class DuplicateResourceException extends __BaseException {
|
|
21
|
-
name = "DuplicateResourceException";
|
|
22
|
-
$fault = "client";
|
|
23
|
-
Message;
|
|
24
|
-
constructor(opts) {
|
|
25
|
-
super({
|
|
26
|
-
name: "DuplicateResourceException",
|
|
27
|
-
$fault: "client",
|
|
28
|
-
...opts,
|
|
29
|
-
});
|
|
30
|
-
Object.setPrototypeOf(this, DuplicateResourceException.prototype);
|
|
31
|
-
this.Message = opts.Message;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
export class InternalServiceError extends __BaseException {
|
|
35
|
-
name = "InternalServiceError";
|
|
36
|
-
$fault = "server";
|
|
37
|
-
Message;
|
|
38
|
-
constructor(opts) {
|
|
39
|
-
super({
|
|
40
|
-
name: "InternalServiceError",
|
|
41
|
-
$fault: "server",
|
|
42
|
-
...opts,
|
|
43
|
-
});
|
|
44
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
45
|
-
this.Message = opts.Message;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
export class InvalidRequestException extends __BaseException {
|
|
49
|
-
name = "InvalidRequestException";
|
|
50
|
-
$fault = "client";
|
|
51
|
-
Message;
|
|
52
|
-
constructor(opts) {
|
|
53
|
-
super({
|
|
54
|
-
name: "InvalidRequestException",
|
|
55
|
-
$fault: "client",
|
|
56
|
-
...opts,
|
|
57
|
-
});
|
|
58
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
59
|
-
this.Message = opts.Message;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export class ResourceQuotaExceededException extends __BaseException {
|
|
63
|
-
name = "ResourceQuotaExceededException";
|
|
64
|
-
$fault = "client";
|
|
65
|
-
Message;
|
|
66
|
-
constructor(opts) {
|
|
67
|
-
super({
|
|
68
|
-
name: "ResourceQuotaExceededException",
|
|
69
|
-
$fault: "client",
|
|
70
|
-
...opts,
|
|
71
|
-
});
|
|
72
|
-
Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
|
|
73
|
-
this.Message = opts.Message;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
export class ThrottlingException extends __BaseException {
|
|
77
|
-
name = "ThrottlingException";
|
|
78
|
-
$fault = "client";
|
|
79
|
-
Message;
|
|
80
|
-
constructor(opts) {
|
|
81
|
-
super({
|
|
82
|
-
name: "ThrottlingException",
|
|
83
|
-
$fault: "client",
|
|
84
|
-
...opts,
|
|
85
|
-
});
|
|
86
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
87
|
-
this.Message = opts.Message;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
export class UnsupportedOperationException extends __BaseException {
|
|
91
|
-
name = "UnsupportedOperationException";
|
|
92
|
-
$fault = "client";
|
|
93
|
-
Message;
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "UnsupportedOperationException",
|
|
97
|
-
$fault: "client",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
101
|
-
this.Message = opts.Message;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
export const ExecutionMode = {
|
|
105
|
-
ON_DEMAND: "ON_DEMAND",
|
|
106
|
-
SCHEDULED: "SCHEDULED",
|
|
107
|
-
};
|
|
108
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
109
|
-
name = "ResourceNotFoundException";
|
|
110
|
-
$fault = "client";
|
|
111
|
-
Message;
|
|
112
|
-
constructor(opts) {
|
|
113
|
-
super({
|
|
114
|
-
name: "ResourceNotFoundException",
|
|
115
|
-
$fault: "client",
|
|
116
|
-
...opts,
|
|
117
|
-
});
|
|
118
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
119
|
-
this.Message = opts.Message;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
export const ExecutionStatus = {
|
|
123
|
-
COMPLETED: "COMPLETED",
|
|
124
|
-
FAILED: "FAILED",
|
|
125
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
126
|
-
};
|
|
1
|
+
export {};
|
|
@@ -181,7 +181,7 @@ const _tK = "tagKeys";
|
|
|
181
181
|
const n0 = "com.amazonaws.appintegrations";
|
|
182
182
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
183
183
|
import { AppIntegrationsServiceException as __AppIntegrationsServiceException } from "../models/AppIntegrationsServiceException";
|
|
184
|
-
import { AccessDeniedException as __AccessDeniedException, DuplicateResourceException as __DuplicateResourceException, InternalServiceError as __InternalServiceError, InvalidRequestException as __InvalidRequestException, ResourceNotFoundException as __ResourceNotFoundException, ResourceQuotaExceededException as __ResourceQuotaExceededException, ThrottlingException as __ThrottlingException, UnsupportedOperationException as __UnsupportedOperationException, } from "../models/
|
|
184
|
+
import { AccessDeniedException as __AccessDeniedException, DuplicateResourceException as __DuplicateResourceException, InternalServiceError as __InternalServiceError, InvalidRequestException as __InvalidRequestException, ResourceNotFoundException as __ResourceNotFoundException, ResourceQuotaExceededException as __ResourceQuotaExceededException, ThrottlingException as __ThrottlingException, UnsupportedOperationException as __UnsupportedOperationException, } from "../models/errors";
|
|
185
185
|
export var AccessDeniedException = [
|
|
186
186
|
-3,
|
|
187
187
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -43,5 +43,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
43
43
|
export type { AppIntegrationsExtensionConfiguration } from "./extensionConfiguration";
|
|
44
44
|
export * from "./commands";
|
|
45
45
|
export * from "./pagination";
|
|
46
|
-
export * from "./models";
|
|
46
|
+
export * from "./models/enums";
|
|
47
|
+
export * from "./models/errors";
|
|
48
|
+
export type * from "./models/models_0";
|
|
47
49
|
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ContactHandlingScope: {
|
|
6
|
+
readonly CROSS_CONTACTS: "CROSS_CONTACTS";
|
|
7
|
+
readonly PER_CONTACT: "PER_CONTACT";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ContactHandlingScope = (typeof ContactHandlingScope)[keyof typeof ContactHandlingScope];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ExecutionMode: {
|
|
18
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
19
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* @enum
|
|
28
|
+
*/
|
|
29
|
+
export declare const ExecutionStatus: {
|
|
30
|
+
readonly COMPLETED: "COMPLETED";
|
|
31
|
+
readonly FAILED: "FAILED";
|
|
32
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>A resource with the specified name already exists.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class DuplicateResourceException extends __BaseException {
|
|
21
|
+
readonly name: "DuplicateResourceException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Request processing failed due to an error or failure with the service.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class InternalServiceError extends __BaseException {
|
|
34
|
+
readonly name: "InternalServiceError";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The request is not valid. </p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
47
|
+
readonly name: "InvalidRequestException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>The allowed quota for the resource has been exceeded.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ResourceQuotaExceededException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceQuotaExceededException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class ThrottlingException extends __BaseException {
|
|
73
|
+
readonly name: "ThrottlingException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>The operation is not supported.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
86
|
+
readonly name: "UnsupportedOperationException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p>The specified resource was not found.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
99
|
+
readonly name: "ResourceNotFoundException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
Message?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
106
|
+
}
|
|
@@ -1,30 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @public
|
|
18
|
-
* @enum
|
|
19
|
-
*/
|
|
20
|
-
export declare const ContactHandlingScope: {
|
|
21
|
-
readonly CROSS_CONTACTS: "CROSS_CONTACTS";
|
|
22
|
-
readonly PER_CONTACT: "PER_CONTACT";
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* @public
|
|
26
|
-
*/
|
|
27
|
-
export type ContactHandlingScope = (typeof ContactHandlingScope)[keyof typeof ContactHandlingScope];
|
|
1
|
+
import { ContactHandlingScope, ExecutionMode, ExecutionStatus } from "./enums";
|
|
28
2
|
/**
|
|
29
3
|
* <p>The contact handling configuration for the application.</p>
|
|
30
4
|
* @public
|
|
@@ -219,84 +193,6 @@ export interface CreateApplicationResponse {
|
|
|
219
193
|
*/
|
|
220
194
|
Id?: string | undefined;
|
|
221
195
|
}
|
|
222
|
-
/**
|
|
223
|
-
* <p>A resource with the specified name already exists.</p>
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export declare class DuplicateResourceException extends __BaseException {
|
|
227
|
-
readonly name: "DuplicateResourceException";
|
|
228
|
-
readonly $fault: "client";
|
|
229
|
-
Message?: string | undefined;
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
constructor(opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>);
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* <p>Request processing failed due to an error or failure with the service.</p>
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
export declare class InternalServiceError extends __BaseException {
|
|
240
|
-
readonly name: "InternalServiceError";
|
|
241
|
-
readonly $fault: "server";
|
|
242
|
-
Message?: string | undefined;
|
|
243
|
-
/**
|
|
244
|
-
* @internal
|
|
245
|
-
*/
|
|
246
|
-
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
247
|
-
}
|
|
248
|
-
/**
|
|
249
|
-
* <p>The request is not valid. </p>
|
|
250
|
-
* @public
|
|
251
|
-
*/
|
|
252
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
253
|
-
readonly name: "InvalidRequestException";
|
|
254
|
-
readonly $fault: "client";
|
|
255
|
-
Message?: string | undefined;
|
|
256
|
-
/**
|
|
257
|
-
* @internal
|
|
258
|
-
*/
|
|
259
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
260
|
-
}
|
|
261
|
-
/**
|
|
262
|
-
* <p>The allowed quota for the resource has been exceeded.</p>
|
|
263
|
-
* @public
|
|
264
|
-
*/
|
|
265
|
-
export declare class ResourceQuotaExceededException extends __BaseException {
|
|
266
|
-
readonly name: "ResourceQuotaExceededException";
|
|
267
|
-
readonly $fault: "client";
|
|
268
|
-
Message?: string | undefined;
|
|
269
|
-
/**
|
|
270
|
-
* @internal
|
|
271
|
-
*/
|
|
272
|
-
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>);
|
|
273
|
-
}
|
|
274
|
-
/**
|
|
275
|
-
* <p>The throttling limit has been exceeded.</p>
|
|
276
|
-
* @public
|
|
277
|
-
*/
|
|
278
|
-
export declare class ThrottlingException extends __BaseException {
|
|
279
|
-
readonly name: "ThrottlingException";
|
|
280
|
-
readonly $fault: "client";
|
|
281
|
-
Message?: string | undefined;
|
|
282
|
-
/**
|
|
283
|
-
* @internal
|
|
284
|
-
*/
|
|
285
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
286
|
-
}
|
|
287
|
-
/**
|
|
288
|
-
* <p>The operation is not supported.</p>
|
|
289
|
-
* @public
|
|
290
|
-
*/
|
|
291
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
292
|
-
readonly name: "UnsupportedOperationException";
|
|
293
|
-
readonly $fault: "client";
|
|
294
|
-
Message?: string | undefined;
|
|
295
|
-
/**
|
|
296
|
-
* @internal
|
|
297
|
-
*/
|
|
298
|
-
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
299
|
-
}
|
|
300
196
|
/**
|
|
301
197
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
302
198
|
* @public
|
|
@@ -451,18 +347,6 @@ export interface CreateDataIntegrationResponse {
|
|
|
451
347
|
*/
|
|
452
348
|
ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
|
|
453
349
|
}
|
|
454
|
-
/**
|
|
455
|
-
* @public
|
|
456
|
-
* @enum
|
|
457
|
-
*/
|
|
458
|
-
export declare const ExecutionMode: {
|
|
459
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
460
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
461
|
-
};
|
|
462
|
-
/**
|
|
463
|
-
* @public
|
|
464
|
-
*/
|
|
465
|
-
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
466
350
|
/**
|
|
467
351
|
* <p>The start and end time for data pull from the source.</p>
|
|
468
352
|
* @public
|
|
@@ -561,19 +445,6 @@ export interface CreateDataIntegrationAssociationResponse {
|
|
|
561
445
|
*/
|
|
562
446
|
DataIntegrationArn?: string | undefined;
|
|
563
447
|
}
|
|
564
|
-
/**
|
|
565
|
-
* <p>The specified resource was not found.</p>
|
|
566
|
-
* @public
|
|
567
|
-
*/
|
|
568
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
569
|
-
readonly name: "ResourceNotFoundException";
|
|
570
|
-
readonly $fault: "client";
|
|
571
|
-
Message?: string | undefined;
|
|
572
|
-
/**
|
|
573
|
-
* @internal
|
|
574
|
-
*/
|
|
575
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
576
|
-
}
|
|
577
448
|
/**
|
|
578
449
|
* <p>The event filter.</p>
|
|
579
450
|
* @public
|
|
@@ -1037,19 +908,6 @@ export interface ListDataIntegrationAssociationsRequest {
|
|
|
1037
908
|
*/
|
|
1038
909
|
MaxResults?: number | undefined;
|
|
1039
910
|
}
|
|
1040
|
-
/**
|
|
1041
|
-
* @public
|
|
1042
|
-
* @enum
|
|
1043
|
-
*/
|
|
1044
|
-
export declare const ExecutionStatus: {
|
|
1045
|
-
readonly COMPLETED: "COMPLETED";
|
|
1046
|
-
readonly FAILED: "FAILED";
|
|
1047
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1048
|
-
};
|
|
1049
|
-
/**
|
|
1050
|
-
* @public
|
|
1051
|
-
*/
|
|
1052
|
-
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
1053
911
|
/**
|
|
1054
912
|
* <p>The execution status of the last job.</p>
|
|
1055
913
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { AppIntegrationsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const ContactHandlingScope: {
|
|
2
|
+
readonly CROSS_CONTACTS: "CROSS_CONTACTS";
|
|
3
|
+
readonly PER_CONTACT: "PER_CONTACT";
|
|
4
|
+
};
|
|
5
|
+
export type ContactHandlingScope =
|
|
6
|
+
(typeof ContactHandlingScope)[keyof typeof ContactHandlingScope];
|
|
7
|
+
export declare const ExecutionMode: {
|
|
8
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
9
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
10
|
+
};
|
|
11
|
+
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
12
|
+
export declare const ExecutionStatus: {
|
|
13
|
+
readonly COMPLETED: "COMPLETED";
|
|
14
|
+
readonly FAILED: "FAILED";
|
|
15
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
16
|
+
};
|
|
17
|
+
export type ExecutionStatus =
|
|
18
|
+
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class DuplicateResourceException extends __BaseException {
|
|
12
|
+
readonly name: "DuplicateResourceException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class InternalServiceError extends __BaseException {
|
|
20
|
+
readonly name: "InternalServiceError";
|
|
21
|
+
readonly $fault: "server";
|
|
22
|
+
Message?: string | undefined;
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
28
|
+
readonly name: "InvalidRequestException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
Message?: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ResourceQuotaExceededException extends __BaseException {
|
|
36
|
+
readonly name: "ResourceQuotaExceededException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ThrottlingException extends __BaseException {
|
|
44
|
+
readonly name: "ThrottlingException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
52
|
+
readonly name: "UnsupportedOperationException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
Message?: string | undefined;
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceNotFoundException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
10
|
-
}
|
|
11
|
-
export declare const ContactHandlingScope: {
|
|
12
|
-
readonly CROSS_CONTACTS: "CROSS_CONTACTS";
|
|
13
|
-
readonly PER_CONTACT: "PER_CONTACT";
|
|
14
|
-
};
|
|
15
|
-
export type ContactHandlingScope =
|
|
16
|
-
(typeof ContactHandlingScope)[keyof typeof ContactHandlingScope];
|
|
1
|
+
import { ContactHandlingScope, ExecutionMode, ExecutionStatus } from "./enums";
|
|
17
2
|
export interface ContactHandling {
|
|
18
3
|
Scope?: ContactHandlingScope | undefined;
|
|
19
4
|
}
|
|
@@ -59,54 +44,6 @@ export interface CreateApplicationResponse {
|
|
|
59
44
|
Arn?: string | undefined;
|
|
60
45
|
Id?: string | undefined;
|
|
61
46
|
}
|
|
62
|
-
export declare class DuplicateResourceException extends __BaseException {
|
|
63
|
-
readonly name: "DuplicateResourceException";
|
|
64
|
-
readonly $fault: "client";
|
|
65
|
-
Message?: string | undefined;
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
|
-
export declare class InternalServiceError extends __BaseException {
|
|
71
|
-
readonly name: "InternalServiceError";
|
|
72
|
-
readonly $fault: "server";
|
|
73
|
-
Message?: string | undefined;
|
|
74
|
-
constructor(
|
|
75
|
-
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
76
|
-
);
|
|
77
|
-
}
|
|
78
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
79
|
-
readonly name: "InvalidRequestException";
|
|
80
|
-
readonly $fault: "client";
|
|
81
|
-
Message?: string | undefined;
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
84
|
-
);
|
|
85
|
-
}
|
|
86
|
-
export declare class ResourceQuotaExceededException extends __BaseException {
|
|
87
|
-
readonly name: "ResourceQuotaExceededException";
|
|
88
|
-
readonly $fault: "client";
|
|
89
|
-
Message?: string | undefined;
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
export declare class ThrottlingException extends __BaseException {
|
|
95
|
-
readonly name: "ThrottlingException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
Message?: string | undefined;
|
|
98
|
-
constructor(
|
|
99
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
100
|
-
);
|
|
101
|
-
}
|
|
102
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
103
|
-
readonly name: "UnsupportedOperationException";
|
|
104
|
-
readonly $fault: "client";
|
|
105
|
-
Message?: string | undefined;
|
|
106
|
-
constructor(
|
|
107
|
-
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
108
|
-
);
|
|
109
|
-
}
|
|
110
47
|
export interface FileConfiguration {
|
|
111
48
|
Folders: string[] | undefined;
|
|
112
49
|
Filters?: Record<string, string[]> | undefined;
|
|
@@ -140,11 +77,6 @@ export interface CreateDataIntegrationResponse {
|
|
|
140
77
|
FileConfiguration?: FileConfiguration | undefined;
|
|
141
78
|
ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
|
|
142
79
|
}
|
|
143
|
-
export declare const ExecutionMode: {
|
|
144
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
145
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
146
|
-
};
|
|
147
|
-
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
148
80
|
export interface OnDemandConfiguration {
|
|
149
81
|
StartTime: string | undefined;
|
|
150
82
|
EndTime?: string | undefined;
|
|
@@ -167,14 +99,6 @@ export interface CreateDataIntegrationAssociationResponse {
|
|
|
167
99
|
DataIntegrationAssociationId?: string | undefined;
|
|
168
100
|
DataIntegrationArn?: string | undefined;
|
|
169
101
|
}
|
|
170
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
171
|
-
readonly name: "ResourceNotFoundException";
|
|
172
|
-
readonly $fault: "client";
|
|
173
|
-
Message?: string | undefined;
|
|
174
|
-
constructor(
|
|
175
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
176
|
-
);
|
|
177
|
-
}
|
|
178
102
|
export interface EventFilter {
|
|
179
103
|
Source: string | undefined;
|
|
180
104
|
}
|
|
@@ -284,13 +208,6 @@ export interface ListDataIntegrationAssociationsRequest {
|
|
|
284
208
|
NextToken?: string | undefined;
|
|
285
209
|
MaxResults?: number | undefined;
|
|
286
210
|
}
|
|
287
|
-
export declare const ExecutionStatus: {
|
|
288
|
-
readonly COMPLETED: "COMPLETED";
|
|
289
|
-
readonly FAILED: "FAILED";
|
|
290
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
291
|
-
};
|
|
292
|
-
export type ExecutionStatus =
|
|
293
|
-
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
294
211
|
export interface LastExecutionStatus {
|
|
295
212
|
ExecutionStatus?: ExecutionStatus | undefined;
|
|
296
213
|
StatusMessage?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations 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-appintegrations",
|
|
@@ -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";
|