@aws-sdk/client-database-migration-service 3.668.0 → 3.669.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/README.md +48 -0
- package/dist-cjs/index.js +549 -103
- package/dist-es/DatabaseMigrationService.js +12 -0
- package/dist-es/commands/CreateDataMigrationCommand.js +23 -0
- package/dist-es/commands/DeleteDataMigrationCommand.js +23 -0
- package/dist-es/commands/DescribeDataMigrationsCommand.js +23 -0
- package/dist-es/commands/ImportCertificateCommand.js +1 -1
- package/dist-es/commands/ModifyDataMigrationCommand.js +23 -0
- package/dist-es/commands/StartDataMigrationCommand.js +23 -0
- package/dist-es/commands/StopDataMigrationCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +87 -66
- package/dist-es/models/models_1.js +42 -1
- package/dist-es/pagination/DescribeDataMigrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -1
- package/dist-es/protocols/Aws_json1_1.js +262 -9
- package/dist-types/DatabaseMigrationService.d.ts +43 -0
- package/dist-types/DatabaseMigrationServiceClient.d.ts +8 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataMigrationCommand.d.ts +146 -0
- package/dist-types/commands/CreateDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/CreateInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/CreateMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDataMigrationCommand.d.ts +119 -0
- package/dist-types/commands/DeleteDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/DeleteFleetAdvisorCollectorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFleetAdvisorDatabasesCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDataMigrationsCommand.d.ts +133 -0
- package/dist-types/commands/DescribeDataProvidersCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInstanceProfilesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMigrationProjectsCommand.d.ts +3 -0
- package/dist-types/commands/ExportMetadataModelAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/ImportCertificateCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -1
- package/dist-types/commands/ModifyConversionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDataMigrationCommand.d.ts +133 -0
- package/dist-types/commands/ModifyDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/ModifyInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/ModifyMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartDataMigrationCommand.d.ts +126 -0
- package/dist-types/commands/StopDataMigrationCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +428 -244
- package/dist-types/models/models_1.d.ts +312 -1
- package/dist-types/pagination/DescribeDataMigrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +103 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDataMigrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExportMetadataModelAssessmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyConversionConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +131 -89
- package/dist-types/ts3.4/models/models_1.d.ts +102 -0
- package/dist-types/ts3.4/pagination/DescribeDataMigrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +6 -6
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CancelReplicationTaskAssessmentRunCommandInput,
|
|
20
20
|
CancelReplicationTaskAssessmentRunCommandOutput,
|
|
21
21
|
} from "../commands/CancelReplicationTaskAssessmentRunCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateDataMigrationCommandInput,
|
|
24
|
+
CreateDataMigrationCommandOutput,
|
|
25
|
+
} from "../commands/CreateDataMigrationCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateDataProviderCommandInput,
|
|
24
28
|
CreateDataProviderCommandOutput,
|
|
@@ -67,6 +71,10 @@ import {
|
|
|
67
71
|
DeleteConnectionCommandInput,
|
|
68
72
|
DeleteConnectionCommandOutput,
|
|
69
73
|
} from "../commands/DeleteConnectionCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteDataMigrationCommandInput,
|
|
76
|
+
DeleteDataMigrationCommandOutput,
|
|
77
|
+
} from "../commands/DeleteDataMigrationCommand";
|
|
70
78
|
import {
|
|
71
79
|
DeleteDataProviderCommandInput,
|
|
72
80
|
DeleteDataProviderCommandOutput,
|
|
@@ -135,6 +143,10 @@ import {
|
|
|
135
143
|
DescribeConversionConfigurationCommandInput,
|
|
136
144
|
DescribeConversionConfigurationCommandOutput,
|
|
137
145
|
} from "../commands/DescribeConversionConfigurationCommand";
|
|
146
|
+
import {
|
|
147
|
+
DescribeDataMigrationsCommandInput,
|
|
148
|
+
DescribeDataMigrationsCommandOutput,
|
|
149
|
+
} from "../commands/DescribeDataMigrationsCommand";
|
|
138
150
|
import {
|
|
139
151
|
DescribeDataProvidersCommandInput,
|
|
140
152
|
DescribeDataProvidersCommandOutput,
|
|
@@ -303,6 +315,10 @@ import {
|
|
|
303
315
|
ModifyConversionConfigurationCommandInput,
|
|
304
316
|
ModifyConversionConfigurationCommandOutput,
|
|
305
317
|
} from "../commands/ModifyConversionConfigurationCommand";
|
|
318
|
+
import {
|
|
319
|
+
ModifyDataMigrationCommandInput,
|
|
320
|
+
ModifyDataMigrationCommandOutput,
|
|
321
|
+
} from "../commands/ModifyDataMigrationCommand";
|
|
306
322
|
import {
|
|
307
323
|
ModifyDataProviderCommandInput,
|
|
308
324
|
ModifyDataProviderCommandOutput,
|
|
@@ -367,6 +383,10 @@ import {
|
|
|
367
383
|
RunFleetAdvisorLsaAnalysisCommandInput,
|
|
368
384
|
RunFleetAdvisorLsaAnalysisCommandOutput,
|
|
369
385
|
} from "../commands/RunFleetAdvisorLsaAnalysisCommand";
|
|
386
|
+
import {
|
|
387
|
+
StartDataMigrationCommandInput,
|
|
388
|
+
StartDataMigrationCommandOutput,
|
|
389
|
+
} from "../commands/StartDataMigrationCommand";
|
|
370
390
|
import {
|
|
371
391
|
StartExtensionPackAssociationCommandInput,
|
|
372
392
|
StartExtensionPackAssociationCommandOutput,
|
|
@@ -411,6 +431,10 @@ import {
|
|
|
411
431
|
StartReplicationTaskCommandInput,
|
|
412
432
|
StartReplicationTaskCommandOutput,
|
|
413
433
|
} from "../commands/StartReplicationTaskCommand";
|
|
434
|
+
import {
|
|
435
|
+
StopDataMigrationCommandInput,
|
|
436
|
+
StopDataMigrationCommandOutput,
|
|
437
|
+
} from "../commands/StopDataMigrationCommand";
|
|
414
438
|
import {
|
|
415
439
|
StopReplicationCommandInput,
|
|
416
440
|
StopReplicationCommandOutput,
|
|
@@ -443,6 +467,10 @@ export declare const se_CancelReplicationTaskAssessmentRunCommand: (
|
|
|
443
467
|
input: CancelReplicationTaskAssessmentRunCommandInput,
|
|
444
468
|
context: __SerdeContext
|
|
445
469
|
) => Promise<__HttpRequest>;
|
|
470
|
+
export declare const se_CreateDataMigrationCommand: (
|
|
471
|
+
input: CreateDataMigrationCommandInput,
|
|
472
|
+
context: __SerdeContext
|
|
473
|
+
) => Promise<__HttpRequest>;
|
|
446
474
|
export declare const se_CreateDataProviderCommand: (
|
|
447
475
|
input: CreateDataProviderCommandInput,
|
|
448
476
|
context: __SerdeContext
|
|
@@ -491,6 +519,10 @@ export declare const se_DeleteConnectionCommand: (
|
|
|
491
519
|
input: DeleteConnectionCommandInput,
|
|
492
520
|
context: __SerdeContext
|
|
493
521
|
) => Promise<__HttpRequest>;
|
|
522
|
+
export declare const se_DeleteDataMigrationCommand: (
|
|
523
|
+
input: DeleteDataMigrationCommandInput,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<__HttpRequest>;
|
|
494
526
|
export declare const se_DeleteDataProviderCommand: (
|
|
495
527
|
input: DeleteDataProviderCommandInput,
|
|
496
528
|
context: __SerdeContext
|
|
@@ -559,6 +591,10 @@ export declare const se_DescribeConversionConfigurationCommand: (
|
|
|
559
591
|
input: DescribeConversionConfigurationCommandInput,
|
|
560
592
|
context: __SerdeContext
|
|
561
593
|
) => Promise<__HttpRequest>;
|
|
594
|
+
export declare const se_DescribeDataMigrationsCommand: (
|
|
595
|
+
input: DescribeDataMigrationsCommandInput,
|
|
596
|
+
context: __SerdeContext
|
|
597
|
+
) => Promise<__HttpRequest>;
|
|
562
598
|
export declare const se_DescribeDataProvidersCommand: (
|
|
563
599
|
input: DescribeDataProvidersCommandInput,
|
|
564
600
|
context: __SerdeContext
|
|
@@ -727,6 +763,10 @@ export declare const se_ModifyConversionConfigurationCommand: (
|
|
|
727
763
|
input: ModifyConversionConfigurationCommandInput,
|
|
728
764
|
context: __SerdeContext
|
|
729
765
|
) => Promise<__HttpRequest>;
|
|
766
|
+
export declare const se_ModifyDataMigrationCommand: (
|
|
767
|
+
input: ModifyDataMigrationCommandInput,
|
|
768
|
+
context: __SerdeContext
|
|
769
|
+
) => Promise<__HttpRequest>;
|
|
730
770
|
export declare const se_ModifyDataProviderCommand: (
|
|
731
771
|
input: ModifyDataProviderCommandInput,
|
|
732
772
|
context: __SerdeContext
|
|
@@ -791,6 +831,10 @@ export declare const se_RunFleetAdvisorLsaAnalysisCommand: (
|
|
|
791
831
|
input: RunFleetAdvisorLsaAnalysisCommandInput,
|
|
792
832
|
context: __SerdeContext
|
|
793
833
|
) => Promise<__HttpRequest>;
|
|
834
|
+
export declare const se_StartDataMigrationCommand: (
|
|
835
|
+
input: StartDataMigrationCommandInput,
|
|
836
|
+
context: __SerdeContext
|
|
837
|
+
) => Promise<__HttpRequest>;
|
|
794
838
|
export declare const se_StartExtensionPackAssociationCommand: (
|
|
795
839
|
input: StartExtensionPackAssociationCommandInput,
|
|
796
840
|
context: __SerdeContext
|
|
@@ -835,6 +879,10 @@ export declare const se_StartReplicationTaskAssessmentRunCommand: (
|
|
|
835
879
|
input: StartReplicationTaskAssessmentRunCommandInput,
|
|
836
880
|
context: __SerdeContext
|
|
837
881
|
) => Promise<__HttpRequest>;
|
|
882
|
+
export declare const se_StopDataMigrationCommand: (
|
|
883
|
+
input: StopDataMigrationCommandInput,
|
|
884
|
+
context: __SerdeContext
|
|
885
|
+
) => Promise<__HttpRequest>;
|
|
838
886
|
export declare const se_StopReplicationCommand: (
|
|
839
887
|
input: StopReplicationCommandInput,
|
|
840
888
|
context: __SerdeContext
|
|
@@ -867,6 +915,10 @@ export declare const de_CancelReplicationTaskAssessmentRunCommand: (
|
|
|
867
915
|
output: __HttpResponse,
|
|
868
916
|
context: __SerdeContext
|
|
869
917
|
) => Promise<CancelReplicationTaskAssessmentRunCommandOutput>;
|
|
918
|
+
export declare const de_CreateDataMigrationCommand: (
|
|
919
|
+
output: __HttpResponse,
|
|
920
|
+
context: __SerdeContext
|
|
921
|
+
) => Promise<CreateDataMigrationCommandOutput>;
|
|
870
922
|
export declare const de_CreateDataProviderCommand: (
|
|
871
923
|
output: __HttpResponse,
|
|
872
924
|
context: __SerdeContext
|
|
@@ -915,6 +967,10 @@ export declare const de_DeleteConnectionCommand: (
|
|
|
915
967
|
output: __HttpResponse,
|
|
916
968
|
context: __SerdeContext
|
|
917
969
|
) => Promise<DeleteConnectionCommandOutput>;
|
|
970
|
+
export declare const de_DeleteDataMigrationCommand: (
|
|
971
|
+
output: __HttpResponse,
|
|
972
|
+
context: __SerdeContext
|
|
973
|
+
) => Promise<DeleteDataMigrationCommandOutput>;
|
|
918
974
|
export declare const de_DeleteDataProviderCommand: (
|
|
919
975
|
output: __HttpResponse,
|
|
920
976
|
context: __SerdeContext
|
|
@@ -983,6 +1039,10 @@ export declare const de_DescribeConversionConfigurationCommand: (
|
|
|
983
1039
|
output: __HttpResponse,
|
|
984
1040
|
context: __SerdeContext
|
|
985
1041
|
) => Promise<DescribeConversionConfigurationCommandOutput>;
|
|
1042
|
+
export declare const de_DescribeDataMigrationsCommand: (
|
|
1043
|
+
output: __HttpResponse,
|
|
1044
|
+
context: __SerdeContext
|
|
1045
|
+
) => Promise<DescribeDataMigrationsCommandOutput>;
|
|
986
1046
|
export declare const de_DescribeDataProvidersCommand: (
|
|
987
1047
|
output: __HttpResponse,
|
|
988
1048
|
context: __SerdeContext
|
|
@@ -1151,6 +1211,10 @@ export declare const de_ModifyConversionConfigurationCommand: (
|
|
|
1151
1211
|
output: __HttpResponse,
|
|
1152
1212
|
context: __SerdeContext
|
|
1153
1213
|
) => Promise<ModifyConversionConfigurationCommandOutput>;
|
|
1214
|
+
export declare const de_ModifyDataMigrationCommand: (
|
|
1215
|
+
output: __HttpResponse,
|
|
1216
|
+
context: __SerdeContext
|
|
1217
|
+
) => Promise<ModifyDataMigrationCommandOutput>;
|
|
1154
1218
|
export declare const de_ModifyDataProviderCommand: (
|
|
1155
1219
|
output: __HttpResponse,
|
|
1156
1220
|
context: __SerdeContext
|
|
@@ -1215,6 +1279,10 @@ export declare const de_RunFleetAdvisorLsaAnalysisCommand: (
|
|
|
1215
1279
|
output: __HttpResponse,
|
|
1216
1280
|
context: __SerdeContext
|
|
1217
1281
|
) => Promise<RunFleetAdvisorLsaAnalysisCommandOutput>;
|
|
1282
|
+
export declare const de_StartDataMigrationCommand: (
|
|
1283
|
+
output: __HttpResponse,
|
|
1284
|
+
context: __SerdeContext
|
|
1285
|
+
) => Promise<StartDataMigrationCommandOutput>;
|
|
1218
1286
|
export declare const de_StartExtensionPackAssociationCommand: (
|
|
1219
1287
|
output: __HttpResponse,
|
|
1220
1288
|
context: __SerdeContext
|
|
@@ -1259,6 +1327,10 @@ export declare const de_StartReplicationTaskAssessmentRunCommand: (
|
|
|
1259
1327
|
output: __HttpResponse,
|
|
1260
1328
|
context: __SerdeContext
|
|
1261
1329
|
) => Promise<StartReplicationTaskAssessmentRunCommandOutput>;
|
|
1330
|
+
export declare const de_StopDataMigrationCommand: (
|
|
1331
|
+
output: __HttpResponse,
|
|
1332
|
+
context: __SerdeContext
|
|
1333
|
+
) => Promise<StopDataMigrationCommandOutput>;
|
|
1262
1334
|
export declare const de_StopReplicationCommand: (
|
|
1263
1335
|
output: __HttpResponse,
|
|
1264
1336
|
context: __SerdeContext
|
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.669.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-database-migration-service",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.669.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.669.0",
|
|
25
25
|
"@aws-sdk/core": "3.667.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.669.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.667.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.667.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.667.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.669.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.667.0",
|
|
32
32
|
"@aws-sdk/types": "3.667.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.667.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.667.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.669.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|