@aws-sdk/client-database-migration-service 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/DatabaseMigrationServiceServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +306 -4
- package/dist-cjs/protocols/Aws_json1_1.js +512 -1639
- package/dist-es/index.js +1 -0
- package/dist-es/models/DatabaseMigrationServiceServiceException.js +12 -0
- package/dist-es/models/models_0.js +279 -1
- package/dist-es/protocols/Aws_json1_1.js +1086 -1772
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DatabaseMigrationServiceServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +136 -108
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DatabaseMigrationServiceServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -94
- package/package.json +26 -26
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedFault";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedFault extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedFault";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedFault, __BaseException>);
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
export interface AccountQuota {
|
|
@@ -51,11 +52,11 @@ export declare namespace AddTagsToResourceResponse {
|
|
|
51
52
|
const filterSensitiveLog: (obj: AddTagsToResourceResponse) => any;
|
|
52
53
|
}
|
|
53
54
|
|
|
54
|
-
export
|
|
55
|
-
name: "ResourceNotFoundFault";
|
|
56
|
-
$fault: "client";
|
|
55
|
+
export declare class ResourceNotFoundFault extends __BaseException {
|
|
56
|
+
readonly name: "ResourceNotFoundFault";
|
|
57
|
+
readonly $fault: "client";
|
|
57
58
|
|
|
58
|
-
|
|
59
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>);
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
export interface ApplyPendingMaintenanceActionMessage {
|
|
@@ -170,11 +171,11 @@ export declare namespace CancelReplicationTaskAssessmentRunResponse {
|
|
|
170
171
|
const filterSensitiveLog: (obj: CancelReplicationTaskAssessmentRunResponse) => any;
|
|
171
172
|
}
|
|
172
173
|
|
|
173
|
-
export
|
|
174
|
-
name: "InvalidResourceStateFault";
|
|
175
|
-
$fault: "client";
|
|
174
|
+
export declare class InvalidResourceStateFault extends __BaseException {
|
|
175
|
+
readonly name: "InvalidResourceStateFault";
|
|
176
|
+
readonly $fault: "client";
|
|
176
177
|
|
|
177
|
-
|
|
178
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>);
|
|
178
179
|
}
|
|
179
180
|
|
|
180
181
|
export interface DmsTransferSettings {
|
|
@@ -1087,32 +1088,33 @@ export declare namespace CreateEndpointResponse {
|
|
|
1087
1088
|
const filterSensitiveLog: (obj: CreateEndpointResponse) => any;
|
|
1088
1089
|
}
|
|
1089
1090
|
|
|
1090
|
-
export
|
|
1091
|
-
name: "KMSKeyNotAccessibleFault";
|
|
1092
|
-
$fault: "client";
|
|
1091
|
+
export declare class KMSKeyNotAccessibleFault extends __BaseException {
|
|
1092
|
+
readonly name: "KMSKeyNotAccessibleFault";
|
|
1093
|
+
readonly $fault: "client";
|
|
1093
1094
|
|
|
1094
|
-
|
|
1095
|
+
constructor(opts: __ExceptionOptionType<KMSKeyNotAccessibleFault, __BaseException>);
|
|
1095
1096
|
}
|
|
1096
1097
|
|
|
1097
|
-
export
|
|
1098
|
-
name: "ResourceAlreadyExistsFault";
|
|
1099
|
-
$fault: "client";
|
|
1100
|
-
|
|
1101
|
-
message?: string;
|
|
1098
|
+
export declare class ResourceAlreadyExistsFault extends __BaseException {
|
|
1099
|
+
readonly name: "ResourceAlreadyExistsFault";
|
|
1100
|
+
readonly $fault: "client";
|
|
1102
1101
|
resourceArn?: string;
|
|
1102
|
+
|
|
1103
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsFault, __BaseException>);
|
|
1103
1104
|
}
|
|
1104
1105
|
|
|
1105
|
-
export
|
|
1106
|
-
name: "ResourceQuotaExceededFault";
|
|
1107
|
-
$fault: "client";
|
|
1106
|
+
export declare class ResourceQuotaExceededFault extends __BaseException {
|
|
1107
|
+
readonly name: "ResourceQuotaExceededFault";
|
|
1108
|
+
readonly $fault: "client";
|
|
1108
1109
|
|
|
1109
|
-
|
|
1110
|
+
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededFault, __BaseException>);
|
|
1110
1111
|
}
|
|
1111
1112
|
|
|
1112
|
-
export
|
|
1113
|
-
name: "S3AccessDeniedFault";
|
|
1114
|
-
$fault: "client";
|
|
1115
|
-
|
|
1113
|
+
export declare class S3AccessDeniedFault extends __BaseException {
|
|
1114
|
+
readonly name: "S3AccessDeniedFault";
|
|
1115
|
+
readonly $fault: "client";
|
|
1116
|
+
|
|
1117
|
+
constructor(opts: __ExceptionOptionType<S3AccessDeniedFault, __BaseException>);
|
|
1116
1118
|
}
|
|
1117
1119
|
|
|
1118
1120
|
export interface CreateEventSubscriptionMessage {
|
|
@@ -1170,48 +1172,53 @@ export declare namespace CreateEventSubscriptionResponse {
|
|
|
1170
1172
|
const filterSensitiveLog: (obj: CreateEventSubscriptionResponse) => any;
|
|
1171
1173
|
}
|
|
1172
1174
|
|
|
1173
|
-
export
|
|
1174
|
-
name: "KMSAccessDeniedFault";
|
|
1175
|
-
$fault: "client";
|
|
1176
|
-
|
|
1175
|
+
export declare class KMSAccessDeniedFault extends __BaseException {
|
|
1176
|
+
readonly name: "KMSAccessDeniedFault";
|
|
1177
|
+
readonly $fault: "client";
|
|
1178
|
+
|
|
1179
|
+
constructor(opts: __ExceptionOptionType<KMSAccessDeniedFault, __BaseException>);
|
|
1177
1180
|
}
|
|
1178
1181
|
|
|
1179
|
-
export
|
|
1180
|
-
name: "KMSDisabledFault";
|
|
1181
|
-
$fault: "client";
|
|
1182
|
-
|
|
1182
|
+
export declare class KMSDisabledFault extends __BaseException {
|
|
1183
|
+
readonly name: "KMSDisabledFault";
|
|
1184
|
+
readonly $fault: "client";
|
|
1185
|
+
|
|
1186
|
+
constructor(opts: __ExceptionOptionType<KMSDisabledFault, __BaseException>);
|
|
1183
1187
|
}
|
|
1184
1188
|
|
|
1185
|
-
export
|
|
1186
|
-
name: "KMSInvalidStateFault";
|
|
1187
|
-
$fault: "client";
|
|
1188
|
-
|
|
1189
|
+
export declare class KMSInvalidStateFault extends __BaseException {
|
|
1190
|
+
readonly name: "KMSInvalidStateFault";
|
|
1191
|
+
readonly $fault: "client";
|
|
1192
|
+
|
|
1193
|
+
constructor(opts: __ExceptionOptionType<KMSInvalidStateFault, __BaseException>);
|
|
1189
1194
|
}
|
|
1190
1195
|
|
|
1191
|
-
export
|
|
1192
|
-
name: "KMSNotFoundFault";
|
|
1193
|
-
$fault: "client";
|
|
1194
|
-
|
|
1196
|
+
export declare class KMSNotFoundFault extends __BaseException {
|
|
1197
|
+
readonly name: "KMSNotFoundFault";
|
|
1198
|
+
readonly $fault: "client";
|
|
1199
|
+
|
|
1200
|
+
constructor(opts: __ExceptionOptionType<KMSNotFoundFault, __BaseException>);
|
|
1195
1201
|
}
|
|
1196
1202
|
|
|
1197
|
-
export
|
|
1198
|
-
name: "KMSThrottlingFault";
|
|
1199
|
-
$fault: "client";
|
|
1200
|
-
|
|
1203
|
+
export declare class KMSThrottlingFault extends __BaseException {
|
|
1204
|
+
readonly name: "KMSThrottlingFault";
|
|
1205
|
+
readonly $fault: "client";
|
|
1206
|
+
|
|
1207
|
+
constructor(opts: __ExceptionOptionType<KMSThrottlingFault, __BaseException>);
|
|
1201
1208
|
}
|
|
1202
1209
|
|
|
1203
|
-
export
|
|
1204
|
-
name: "SNSInvalidTopicFault";
|
|
1205
|
-
$fault: "client";
|
|
1210
|
+
export declare class SNSInvalidTopicFault extends __BaseException {
|
|
1211
|
+
readonly name: "SNSInvalidTopicFault";
|
|
1212
|
+
readonly $fault: "client";
|
|
1206
1213
|
|
|
1207
|
-
|
|
1214
|
+
constructor(opts: __ExceptionOptionType<SNSInvalidTopicFault, __BaseException>);
|
|
1208
1215
|
}
|
|
1209
1216
|
|
|
1210
|
-
export
|
|
1211
|
-
name: "SNSNoAuthorizationFault";
|
|
1212
|
-
$fault: "client";
|
|
1217
|
+
export declare class SNSNoAuthorizationFault extends __BaseException {
|
|
1218
|
+
readonly name: "SNSNoAuthorizationFault";
|
|
1219
|
+
readonly $fault: "client";
|
|
1213
1220
|
|
|
1214
|
-
|
|
1221
|
+
constructor(opts: __ExceptionOptionType<SNSNoAuthorizationFault, __BaseException>);
|
|
1215
1222
|
}
|
|
1216
1223
|
|
|
1217
1224
|
export interface CreateReplicationInstanceMessage {
|
|
@@ -1378,32 +1385,32 @@ export declare namespace CreateReplicationInstanceResponse {
|
|
|
1378
1385
|
const filterSensitiveLog: (obj: CreateReplicationInstanceResponse) => any;
|
|
1379
1386
|
}
|
|
1380
1387
|
|
|
1381
|
-
export
|
|
1382
|
-
name: "InsufficientResourceCapacityFault";
|
|
1383
|
-
$fault: "client";
|
|
1388
|
+
export declare class InsufficientResourceCapacityFault extends __BaseException {
|
|
1389
|
+
readonly name: "InsufficientResourceCapacityFault";
|
|
1390
|
+
readonly $fault: "client";
|
|
1384
1391
|
|
|
1385
|
-
|
|
1392
|
+
constructor(opts: __ExceptionOptionType<InsufficientResourceCapacityFault, __BaseException>);
|
|
1386
1393
|
}
|
|
1387
1394
|
|
|
1388
|
-
export
|
|
1389
|
-
name: "InvalidSubnet";
|
|
1390
|
-
$fault: "client";
|
|
1395
|
+
export declare class InvalidSubnet extends __BaseException {
|
|
1396
|
+
readonly name: "InvalidSubnet";
|
|
1397
|
+
readonly $fault: "client";
|
|
1391
1398
|
|
|
1392
|
-
|
|
1399
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
|
|
1393
1400
|
}
|
|
1394
1401
|
|
|
1395
|
-
export
|
|
1396
|
-
name: "ReplicationSubnetGroupDoesNotCoverEnoughAZs";
|
|
1397
|
-
$fault: "client";
|
|
1402
|
+
export declare class ReplicationSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
|
|
1403
|
+
readonly name: "ReplicationSubnetGroupDoesNotCoverEnoughAZs";
|
|
1404
|
+
readonly $fault: "client";
|
|
1398
1405
|
|
|
1399
|
-
|
|
1406
|
+
constructor(opts: __ExceptionOptionType<ReplicationSubnetGroupDoesNotCoverEnoughAZs, __BaseException>);
|
|
1400
1407
|
}
|
|
1401
1408
|
|
|
1402
|
-
export
|
|
1403
|
-
name: "StorageQuotaExceededFault";
|
|
1404
|
-
$fault: "client";
|
|
1409
|
+
export declare class StorageQuotaExceededFault extends __BaseException {
|
|
1410
|
+
readonly name: "StorageQuotaExceededFault";
|
|
1411
|
+
readonly $fault: "client";
|
|
1405
1412
|
|
|
1406
|
-
|
|
1413
|
+
constructor(opts: __ExceptionOptionType<StorageQuotaExceededFault, __BaseException>);
|
|
1407
1414
|
}
|
|
1408
1415
|
|
|
1409
1416
|
export interface CreateReplicationSubnetGroupMessage {
|
|
@@ -2533,10 +2540,11 @@ export declare namespace ImportCertificateResponse {
|
|
|
2533
2540
|
const filterSensitiveLog: (obj: ImportCertificateResponse) => any;
|
|
2534
2541
|
}
|
|
2535
2542
|
|
|
2536
|
-
export
|
|
2537
|
-
name: "InvalidCertificateFault";
|
|
2538
|
-
$fault: "client";
|
|
2539
|
-
|
|
2543
|
+
export declare class InvalidCertificateFault extends __BaseException {
|
|
2544
|
+
readonly name: "InvalidCertificateFault";
|
|
2545
|
+
readonly $fault: "client";
|
|
2546
|
+
|
|
2547
|
+
constructor(opts: __ExceptionOptionType<InvalidCertificateFault, __BaseException>);
|
|
2540
2548
|
}
|
|
2541
2549
|
|
|
2542
2550
|
export interface ListTagsForResourceMessage {
|
|
@@ -2705,11 +2713,11 @@ export declare namespace ModifyReplicationInstanceResponse {
|
|
|
2705
2713
|
const filterSensitiveLog: (obj: ModifyReplicationInstanceResponse) => any;
|
|
2706
2714
|
}
|
|
2707
2715
|
|
|
2708
|
-
export
|
|
2709
|
-
name: "UpgradeDependencyFailureFault";
|
|
2710
|
-
$fault: "client";
|
|
2716
|
+
export declare class UpgradeDependencyFailureFault extends __BaseException {
|
|
2717
|
+
readonly name: "UpgradeDependencyFailureFault";
|
|
2718
|
+
readonly $fault: "client";
|
|
2711
2719
|
|
|
2712
|
-
|
|
2720
|
+
constructor(opts: __ExceptionOptionType<UpgradeDependencyFailureFault, __BaseException>);
|
|
2713
2721
|
}
|
|
2714
2722
|
|
|
2715
2723
|
export interface ModifyReplicationSubnetGroupMessage {
|
|
@@ -2734,11 +2742,11 @@ export declare namespace ModifyReplicationSubnetGroupResponse {
|
|
|
2734
2742
|
const filterSensitiveLog: (obj: ModifyReplicationSubnetGroupResponse) => any;
|
|
2735
2743
|
}
|
|
2736
2744
|
|
|
2737
|
-
export
|
|
2738
|
-
name: "SubnetAlreadyInUse";
|
|
2739
|
-
$fault: "client";
|
|
2745
|
+
export declare class SubnetAlreadyInUse extends __BaseException {
|
|
2746
|
+
readonly name: "SubnetAlreadyInUse";
|
|
2747
|
+
readonly $fault: "client";
|
|
2740
2748
|
|
|
2741
|
-
|
|
2749
|
+
constructor(opts: __ExceptionOptionType<SubnetAlreadyInUse, __BaseException>);
|
|
2742
2750
|
}
|
|
2743
2751
|
|
|
2744
2752
|
export interface ModifyReplicationTaskMessage {
|
|
@@ -2937,16 +2945,18 @@ export declare namespace StartReplicationTaskAssessmentResponse {
|
|
|
2937
2945
|
const filterSensitiveLog: (obj: StartReplicationTaskAssessmentResponse) => any;
|
|
2938
2946
|
}
|
|
2939
2947
|
|
|
2940
|
-
export
|
|
2941
|
-
name: "KMSFault";
|
|
2942
|
-
$fault: "client";
|
|
2943
|
-
|
|
2948
|
+
export declare class KMSFault extends __BaseException {
|
|
2949
|
+
readonly name: "KMSFault";
|
|
2950
|
+
readonly $fault: "client";
|
|
2951
|
+
|
|
2952
|
+
constructor(opts: __ExceptionOptionType<KMSFault, __BaseException>);
|
|
2944
2953
|
}
|
|
2945
2954
|
|
|
2946
|
-
export
|
|
2947
|
-
name: "S3ResourceNotFoundFault";
|
|
2948
|
-
$fault: "client";
|
|
2949
|
-
|
|
2955
|
+
export declare class S3ResourceNotFoundFault extends __BaseException {
|
|
2956
|
+
readonly name: "S3ResourceNotFoundFault";
|
|
2957
|
+
readonly $fault: "client";
|
|
2958
|
+
|
|
2959
|
+
constructor(opts: __ExceptionOptionType<S3ResourceNotFoundFault, __BaseException>);
|
|
2950
2960
|
}
|
|
2951
2961
|
|
|
2952
2962
|
export interface StartReplicationTaskAssessmentRunMessage {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-database-migration-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Database Migration Service 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,37 +18,37 @@
|
|
|
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
|
-
"@aws-sdk/util-waiter": "3.
|
|
51
|
+
"@aws-sdk/util-waiter": "3.53.0",
|
|
52
52
|
"tslib": "^2.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|