@aws-sdk/client-database-migration-service 3.667.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
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CancelReplicationTaskAssessmentRunCommandInput,
|
|
16
16
|
CancelReplicationTaskAssessmentRunCommandOutput,
|
|
17
17
|
} from "./commands/CancelReplicationTaskAssessmentRunCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateDataMigrationCommandInput,
|
|
20
|
+
CreateDataMigrationCommandOutput,
|
|
21
|
+
} from "./commands/CreateDataMigrationCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateDataProviderCommandInput,
|
|
20
24
|
CreateDataProviderCommandOutput,
|
|
@@ -63,6 +67,10 @@ import {
|
|
|
63
67
|
DeleteConnectionCommandInput,
|
|
64
68
|
DeleteConnectionCommandOutput,
|
|
65
69
|
} from "./commands/DeleteConnectionCommand";
|
|
70
|
+
import {
|
|
71
|
+
DeleteDataMigrationCommandInput,
|
|
72
|
+
DeleteDataMigrationCommandOutput,
|
|
73
|
+
} from "./commands/DeleteDataMigrationCommand";
|
|
66
74
|
import {
|
|
67
75
|
DeleteDataProviderCommandInput,
|
|
68
76
|
DeleteDataProviderCommandOutput,
|
|
@@ -131,6 +139,10 @@ import {
|
|
|
131
139
|
DescribeConversionConfigurationCommandInput,
|
|
132
140
|
DescribeConversionConfigurationCommandOutput,
|
|
133
141
|
} from "./commands/DescribeConversionConfigurationCommand";
|
|
142
|
+
import {
|
|
143
|
+
DescribeDataMigrationsCommandInput,
|
|
144
|
+
DescribeDataMigrationsCommandOutput,
|
|
145
|
+
} from "./commands/DescribeDataMigrationsCommand";
|
|
134
146
|
import {
|
|
135
147
|
DescribeDataProvidersCommandInput,
|
|
136
148
|
DescribeDataProvidersCommandOutput,
|
|
@@ -299,6 +311,10 @@ import {
|
|
|
299
311
|
ModifyConversionConfigurationCommandInput,
|
|
300
312
|
ModifyConversionConfigurationCommandOutput,
|
|
301
313
|
} from "./commands/ModifyConversionConfigurationCommand";
|
|
314
|
+
import {
|
|
315
|
+
ModifyDataMigrationCommandInput,
|
|
316
|
+
ModifyDataMigrationCommandOutput,
|
|
317
|
+
} from "./commands/ModifyDataMigrationCommand";
|
|
302
318
|
import {
|
|
303
319
|
ModifyDataProviderCommandInput,
|
|
304
320
|
ModifyDataProviderCommandOutput,
|
|
@@ -363,6 +379,10 @@ import {
|
|
|
363
379
|
RunFleetAdvisorLsaAnalysisCommandInput,
|
|
364
380
|
RunFleetAdvisorLsaAnalysisCommandOutput,
|
|
365
381
|
} from "./commands/RunFleetAdvisorLsaAnalysisCommand";
|
|
382
|
+
import {
|
|
383
|
+
StartDataMigrationCommandInput,
|
|
384
|
+
StartDataMigrationCommandOutput,
|
|
385
|
+
} from "./commands/StartDataMigrationCommand";
|
|
366
386
|
import {
|
|
367
387
|
StartExtensionPackAssociationCommandInput,
|
|
368
388
|
StartExtensionPackAssociationCommandOutput,
|
|
@@ -407,6 +427,10 @@ import {
|
|
|
407
427
|
StartReplicationTaskCommandInput,
|
|
408
428
|
StartReplicationTaskCommandOutput,
|
|
409
429
|
} from "./commands/StartReplicationTaskCommand";
|
|
430
|
+
import {
|
|
431
|
+
StopDataMigrationCommandInput,
|
|
432
|
+
StopDataMigrationCommandOutput,
|
|
433
|
+
} from "./commands/StopDataMigrationCommand";
|
|
410
434
|
import {
|
|
411
435
|
StopReplicationCommandInput,
|
|
412
436
|
StopReplicationCommandOutput,
|
|
@@ -484,6 +508,19 @@ export interface DatabaseMigrationService {
|
|
|
484
508
|
data?: CancelReplicationTaskAssessmentRunCommandOutput
|
|
485
509
|
) => void
|
|
486
510
|
): void;
|
|
511
|
+
createDataMigration(
|
|
512
|
+
args: CreateDataMigrationCommandInput,
|
|
513
|
+
options?: __HttpHandlerOptions
|
|
514
|
+
): Promise<CreateDataMigrationCommandOutput>;
|
|
515
|
+
createDataMigration(
|
|
516
|
+
args: CreateDataMigrationCommandInput,
|
|
517
|
+
cb: (err: any, data?: CreateDataMigrationCommandOutput) => void
|
|
518
|
+
): void;
|
|
519
|
+
createDataMigration(
|
|
520
|
+
args: CreateDataMigrationCommandInput,
|
|
521
|
+
options: __HttpHandlerOptions,
|
|
522
|
+
cb: (err: any, data?: CreateDataMigrationCommandOutput) => void
|
|
523
|
+
): void;
|
|
487
524
|
createDataProvider(
|
|
488
525
|
args: CreateDataProviderCommandInput,
|
|
489
526
|
options?: __HttpHandlerOptions
|
|
@@ -641,6 +678,19 @@ export interface DatabaseMigrationService {
|
|
|
641
678
|
options: __HttpHandlerOptions,
|
|
642
679
|
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
643
680
|
): void;
|
|
681
|
+
deleteDataMigration(
|
|
682
|
+
args: DeleteDataMigrationCommandInput,
|
|
683
|
+
options?: __HttpHandlerOptions
|
|
684
|
+
): Promise<DeleteDataMigrationCommandOutput>;
|
|
685
|
+
deleteDataMigration(
|
|
686
|
+
args: DeleteDataMigrationCommandInput,
|
|
687
|
+
cb: (err: any, data?: DeleteDataMigrationCommandOutput) => void
|
|
688
|
+
): void;
|
|
689
|
+
deleteDataMigration(
|
|
690
|
+
args: DeleteDataMigrationCommandInput,
|
|
691
|
+
options: __HttpHandlerOptions,
|
|
692
|
+
cb: (err: any, data?: DeleteDataMigrationCommandOutput) => void
|
|
693
|
+
): void;
|
|
644
694
|
deleteDataProvider(
|
|
645
695
|
args: DeleteDataProviderCommandInput,
|
|
646
696
|
options?: __HttpHandlerOptions
|
|
@@ -878,6 +928,20 @@ export interface DatabaseMigrationService {
|
|
|
878
928
|
options: __HttpHandlerOptions,
|
|
879
929
|
cb: (err: any, data?: DescribeConversionConfigurationCommandOutput) => void
|
|
880
930
|
): void;
|
|
931
|
+
describeDataMigrations(): Promise<DescribeDataMigrationsCommandOutput>;
|
|
932
|
+
describeDataMigrations(
|
|
933
|
+
args: DescribeDataMigrationsCommandInput,
|
|
934
|
+
options?: __HttpHandlerOptions
|
|
935
|
+
): Promise<DescribeDataMigrationsCommandOutput>;
|
|
936
|
+
describeDataMigrations(
|
|
937
|
+
args: DescribeDataMigrationsCommandInput,
|
|
938
|
+
cb: (err: any, data?: DescribeDataMigrationsCommandOutput) => void
|
|
939
|
+
): void;
|
|
940
|
+
describeDataMigrations(
|
|
941
|
+
args: DescribeDataMigrationsCommandInput,
|
|
942
|
+
options: __HttpHandlerOptions,
|
|
943
|
+
cb: (err: any, data?: DescribeDataMigrationsCommandOutput) => void
|
|
944
|
+
): void;
|
|
881
945
|
describeDataProviders(): Promise<DescribeDataProvidersCommandOutput>;
|
|
882
946
|
describeDataProviders(
|
|
883
947
|
args: DescribeDataProvidersCommandInput,
|
|
@@ -1523,6 +1587,19 @@ export interface DatabaseMigrationService {
|
|
|
1523
1587
|
options: __HttpHandlerOptions,
|
|
1524
1588
|
cb: (err: any, data?: ModifyConversionConfigurationCommandOutput) => void
|
|
1525
1589
|
): void;
|
|
1590
|
+
modifyDataMigration(
|
|
1591
|
+
args: ModifyDataMigrationCommandInput,
|
|
1592
|
+
options?: __HttpHandlerOptions
|
|
1593
|
+
): Promise<ModifyDataMigrationCommandOutput>;
|
|
1594
|
+
modifyDataMigration(
|
|
1595
|
+
args: ModifyDataMigrationCommandInput,
|
|
1596
|
+
cb: (err: any, data?: ModifyDataMigrationCommandOutput) => void
|
|
1597
|
+
): void;
|
|
1598
|
+
modifyDataMigration(
|
|
1599
|
+
args: ModifyDataMigrationCommandInput,
|
|
1600
|
+
options: __HttpHandlerOptions,
|
|
1601
|
+
cb: (err: any, data?: ModifyDataMigrationCommandOutput) => void
|
|
1602
|
+
): void;
|
|
1526
1603
|
modifyDataProvider(
|
|
1527
1604
|
args: ModifyDataProviderCommandInput,
|
|
1528
1605
|
options?: __HttpHandlerOptions
|
|
@@ -1732,6 +1809,19 @@ export interface DatabaseMigrationService {
|
|
|
1732
1809
|
options: __HttpHandlerOptions,
|
|
1733
1810
|
cb: (err: any, data?: RunFleetAdvisorLsaAnalysisCommandOutput) => void
|
|
1734
1811
|
): void;
|
|
1812
|
+
startDataMigration(
|
|
1813
|
+
args: StartDataMigrationCommandInput,
|
|
1814
|
+
options?: __HttpHandlerOptions
|
|
1815
|
+
): Promise<StartDataMigrationCommandOutput>;
|
|
1816
|
+
startDataMigration(
|
|
1817
|
+
args: StartDataMigrationCommandInput,
|
|
1818
|
+
cb: (err: any, data?: StartDataMigrationCommandOutput) => void
|
|
1819
|
+
): void;
|
|
1820
|
+
startDataMigration(
|
|
1821
|
+
args: StartDataMigrationCommandInput,
|
|
1822
|
+
options: __HttpHandlerOptions,
|
|
1823
|
+
cb: (err: any, data?: StartDataMigrationCommandOutput) => void
|
|
1824
|
+
): void;
|
|
1735
1825
|
startExtensionPackAssociation(
|
|
1736
1826
|
args: StartExtensionPackAssociationCommandInput,
|
|
1737
1827
|
options?: __HttpHandlerOptions
|
|
@@ -1881,6 +1971,19 @@ export interface DatabaseMigrationService {
|
|
|
1881
1971
|
data?: StartReplicationTaskAssessmentRunCommandOutput
|
|
1882
1972
|
) => void
|
|
1883
1973
|
): void;
|
|
1974
|
+
stopDataMigration(
|
|
1975
|
+
args: StopDataMigrationCommandInput,
|
|
1976
|
+
options?: __HttpHandlerOptions
|
|
1977
|
+
): Promise<StopDataMigrationCommandOutput>;
|
|
1978
|
+
stopDataMigration(
|
|
1979
|
+
args: StopDataMigrationCommandInput,
|
|
1980
|
+
cb: (err: any, data?: StopDataMigrationCommandOutput) => void
|
|
1981
|
+
): void;
|
|
1982
|
+
stopDataMigration(
|
|
1983
|
+
args: StopDataMigrationCommandInput,
|
|
1984
|
+
options: __HttpHandlerOptions,
|
|
1985
|
+
cb: (err: any, data?: StopDataMigrationCommandOutput) => void
|
|
1986
|
+
): void;
|
|
1884
1987
|
stopReplication(
|
|
1885
1988
|
args: StopReplicationCommandInput,
|
|
1886
1989
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
CancelReplicationTaskAssessmentRunCommandInput,
|
|
62
62
|
CancelReplicationTaskAssessmentRunCommandOutput,
|
|
63
63
|
} from "./commands/CancelReplicationTaskAssessmentRunCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateDataMigrationCommandInput,
|
|
66
|
+
CreateDataMigrationCommandOutput,
|
|
67
|
+
} from "./commands/CreateDataMigrationCommand";
|
|
64
68
|
import {
|
|
65
69
|
CreateDataProviderCommandInput,
|
|
66
70
|
CreateDataProviderCommandOutput,
|
|
@@ -109,6 +113,10 @@ import {
|
|
|
109
113
|
DeleteConnectionCommandInput,
|
|
110
114
|
DeleteConnectionCommandOutput,
|
|
111
115
|
} from "./commands/DeleteConnectionCommand";
|
|
116
|
+
import {
|
|
117
|
+
DeleteDataMigrationCommandInput,
|
|
118
|
+
DeleteDataMigrationCommandOutput,
|
|
119
|
+
} from "./commands/DeleteDataMigrationCommand";
|
|
112
120
|
import {
|
|
113
121
|
DeleteDataProviderCommandInput,
|
|
114
122
|
DeleteDataProviderCommandOutput,
|
|
@@ -177,6 +185,10 @@ import {
|
|
|
177
185
|
DescribeConversionConfigurationCommandInput,
|
|
178
186
|
DescribeConversionConfigurationCommandOutput,
|
|
179
187
|
} from "./commands/DescribeConversionConfigurationCommand";
|
|
188
|
+
import {
|
|
189
|
+
DescribeDataMigrationsCommandInput,
|
|
190
|
+
DescribeDataMigrationsCommandOutput,
|
|
191
|
+
} from "./commands/DescribeDataMigrationsCommand";
|
|
180
192
|
import {
|
|
181
193
|
DescribeDataProvidersCommandInput,
|
|
182
194
|
DescribeDataProvidersCommandOutput,
|
|
@@ -345,6 +357,10 @@ import {
|
|
|
345
357
|
ModifyConversionConfigurationCommandInput,
|
|
346
358
|
ModifyConversionConfigurationCommandOutput,
|
|
347
359
|
} from "./commands/ModifyConversionConfigurationCommand";
|
|
360
|
+
import {
|
|
361
|
+
ModifyDataMigrationCommandInput,
|
|
362
|
+
ModifyDataMigrationCommandOutput,
|
|
363
|
+
} from "./commands/ModifyDataMigrationCommand";
|
|
348
364
|
import {
|
|
349
365
|
ModifyDataProviderCommandInput,
|
|
350
366
|
ModifyDataProviderCommandOutput,
|
|
@@ -409,6 +425,10 @@ import {
|
|
|
409
425
|
RunFleetAdvisorLsaAnalysisCommandInput,
|
|
410
426
|
RunFleetAdvisorLsaAnalysisCommandOutput,
|
|
411
427
|
} from "./commands/RunFleetAdvisorLsaAnalysisCommand";
|
|
428
|
+
import {
|
|
429
|
+
StartDataMigrationCommandInput,
|
|
430
|
+
StartDataMigrationCommandOutput,
|
|
431
|
+
} from "./commands/StartDataMigrationCommand";
|
|
412
432
|
import {
|
|
413
433
|
StartExtensionPackAssociationCommandInput,
|
|
414
434
|
StartExtensionPackAssociationCommandOutput,
|
|
@@ -453,6 +473,10 @@ import {
|
|
|
453
473
|
StartReplicationTaskCommandInput,
|
|
454
474
|
StartReplicationTaskCommandOutput,
|
|
455
475
|
} from "./commands/StartReplicationTaskCommand";
|
|
476
|
+
import {
|
|
477
|
+
StopDataMigrationCommandInput,
|
|
478
|
+
StopDataMigrationCommandOutput,
|
|
479
|
+
} from "./commands/StopDataMigrationCommand";
|
|
456
480
|
import {
|
|
457
481
|
StopReplicationCommandInput,
|
|
458
482
|
StopReplicationCommandOutput,
|
|
@@ -481,6 +505,7 @@ export type ServiceInputTypes =
|
|
|
481
505
|
| ApplyPendingMaintenanceActionCommandInput
|
|
482
506
|
| BatchStartRecommendationsCommandInput
|
|
483
507
|
| CancelReplicationTaskAssessmentRunCommandInput
|
|
508
|
+
| CreateDataMigrationCommandInput
|
|
484
509
|
| CreateDataProviderCommandInput
|
|
485
510
|
| CreateEndpointCommandInput
|
|
486
511
|
| CreateEventSubscriptionCommandInput
|
|
@@ -493,6 +518,7 @@ export type ServiceInputTypes =
|
|
|
493
518
|
| CreateReplicationTaskCommandInput
|
|
494
519
|
| DeleteCertificateCommandInput
|
|
495
520
|
| DeleteConnectionCommandInput
|
|
521
|
+
| DeleteDataMigrationCommandInput
|
|
496
522
|
| DeleteDataProviderCommandInput
|
|
497
523
|
| DeleteEndpointCommandInput
|
|
498
524
|
| DeleteEventSubscriptionCommandInput
|
|
@@ -510,6 +536,7 @@ export type ServiceInputTypes =
|
|
|
510
536
|
| DescribeCertificatesCommandInput
|
|
511
537
|
| DescribeConnectionsCommandInput
|
|
512
538
|
| DescribeConversionConfigurationCommandInput
|
|
539
|
+
| DescribeDataMigrationsCommandInput
|
|
513
540
|
| DescribeDataProvidersCommandInput
|
|
514
541
|
| DescribeEndpointSettingsCommandInput
|
|
515
542
|
| DescribeEndpointTypesCommandInput
|
|
@@ -552,6 +579,7 @@ export type ServiceInputTypes =
|
|
|
552
579
|
| ImportCertificateCommandInput
|
|
553
580
|
| ListTagsForResourceCommandInput
|
|
554
581
|
| ModifyConversionConfigurationCommandInput
|
|
582
|
+
| ModifyDataMigrationCommandInput
|
|
555
583
|
| ModifyDataProviderCommandInput
|
|
556
584
|
| ModifyEndpointCommandInput
|
|
557
585
|
| ModifyEventSubscriptionCommandInput
|
|
@@ -568,6 +596,7 @@ export type ServiceInputTypes =
|
|
|
568
596
|
| ReloadTablesCommandInput
|
|
569
597
|
| RemoveTagsFromResourceCommandInput
|
|
570
598
|
| RunFleetAdvisorLsaAnalysisCommandInput
|
|
599
|
+
| StartDataMigrationCommandInput
|
|
571
600
|
| StartExtensionPackAssociationCommandInput
|
|
572
601
|
| StartMetadataModelAssessmentCommandInput
|
|
573
602
|
| StartMetadataModelConversionCommandInput
|
|
@@ -579,6 +608,7 @@ export type ServiceInputTypes =
|
|
|
579
608
|
| StartReplicationTaskAssessmentCommandInput
|
|
580
609
|
| StartReplicationTaskAssessmentRunCommandInput
|
|
581
610
|
| StartReplicationTaskCommandInput
|
|
611
|
+
| StopDataMigrationCommandInput
|
|
582
612
|
| StopReplicationCommandInput
|
|
583
613
|
| StopReplicationTaskCommandInput
|
|
584
614
|
| TestConnectionCommandInput
|
|
@@ -588,6 +618,7 @@ export type ServiceOutputTypes =
|
|
|
588
618
|
| ApplyPendingMaintenanceActionCommandOutput
|
|
589
619
|
| BatchStartRecommendationsCommandOutput
|
|
590
620
|
| CancelReplicationTaskAssessmentRunCommandOutput
|
|
621
|
+
| CreateDataMigrationCommandOutput
|
|
591
622
|
| CreateDataProviderCommandOutput
|
|
592
623
|
| CreateEndpointCommandOutput
|
|
593
624
|
| CreateEventSubscriptionCommandOutput
|
|
@@ -600,6 +631,7 @@ export type ServiceOutputTypes =
|
|
|
600
631
|
| CreateReplicationTaskCommandOutput
|
|
601
632
|
| DeleteCertificateCommandOutput
|
|
602
633
|
| DeleteConnectionCommandOutput
|
|
634
|
+
| DeleteDataMigrationCommandOutput
|
|
603
635
|
| DeleteDataProviderCommandOutput
|
|
604
636
|
| DeleteEndpointCommandOutput
|
|
605
637
|
| DeleteEventSubscriptionCommandOutput
|
|
@@ -617,6 +649,7 @@ export type ServiceOutputTypes =
|
|
|
617
649
|
| DescribeCertificatesCommandOutput
|
|
618
650
|
| DescribeConnectionsCommandOutput
|
|
619
651
|
| DescribeConversionConfigurationCommandOutput
|
|
652
|
+
| DescribeDataMigrationsCommandOutput
|
|
620
653
|
| DescribeDataProvidersCommandOutput
|
|
621
654
|
| DescribeEndpointSettingsCommandOutput
|
|
622
655
|
| DescribeEndpointTypesCommandOutput
|
|
@@ -659,6 +692,7 @@ export type ServiceOutputTypes =
|
|
|
659
692
|
| ImportCertificateCommandOutput
|
|
660
693
|
| ListTagsForResourceCommandOutput
|
|
661
694
|
| ModifyConversionConfigurationCommandOutput
|
|
695
|
+
| ModifyDataMigrationCommandOutput
|
|
662
696
|
| ModifyDataProviderCommandOutput
|
|
663
697
|
| ModifyEndpointCommandOutput
|
|
664
698
|
| ModifyEventSubscriptionCommandOutput
|
|
@@ -675,6 +709,7 @@ export type ServiceOutputTypes =
|
|
|
675
709
|
| ReloadTablesCommandOutput
|
|
676
710
|
| RemoveTagsFromResourceCommandOutput
|
|
677
711
|
| RunFleetAdvisorLsaAnalysisCommandOutput
|
|
712
|
+
| StartDataMigrationCommandOutput
|
|
678
713
|
| StartExtensionPackAssociationCommandOutput
|
|
679
714
|
| StartMetadataModelAssessmentCommandOutput
|
|
680
715
|
| StartMetadataModelConversionCommandOutput
|
|
@@ -686,6 +721,7 @@ export type ServiceOutputTypes =
|
|
|
686
721
|
| StartReplicationTaskAssessmentCommandOutput
|
|
687
722
|
| StartReplicationTaskAssessmentRunCommandOutput
|
|
688
723
|
| StartReplicationTaskCommandOutput
|
|
724
|
+
| StopDataMigrationCommandOutput
|
|
689
725
|
| StopReplicationCommandOutput
|
|
690
726
|
| StopReplicationTaskCommandOutput
|
|
691
727
|
| TestConnectionCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DatabaseMigrationServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateDataMigrationMessage,
|
|
10
|
+
CreateDataMigrationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDataMigrationCommandInput
|
|
15
|
+
extends CreateDataMigrationMessage {}
|
|
16
|
+
export interface CreateDataMigrationCommandOutput
|
|
17
|
+
extends CreateDataMigrationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDataMigrationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDataMigrationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDataMigrationCommandInput,
|
|
24
|
+
CreateDataMigrationCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateDataMigrationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDataMigrationCommandInput,
|
|
33
|
+
CreateDataMigrationCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDataMigrationCommand extends CreateDataMigrationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDataMigrationMessage;
|
|
44
|
+
output: CreateDataMigrationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDataMigrationCommandInput;
|
|
48
|
+
output: CreateDataMigrationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DatabaseMigrationServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteDataMigrationMessage,
|
|
10
|
+
DeleteDataMigrationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataMigrationCommandInput
|
|
15
|
+
extends DeleteDataMigrationMessage {}
|
|
16
|
+
export interface DeleteDataMigrationCommandOutput
|
|
17
|
+
extends DeleteDataMigrationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataMigrationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataMigrationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataMigrationCommandInput,
|
|
24
|
+
DeleteDataMigrationCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteDataMigrationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataMigrationCommandInput,
|
|
33
|
+
DeleteDataMigrationCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataMigrationCommand extends DeleteDataMigrationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataMigrationMessage;
|
|
44
|
+
output: DeleteDataMigrationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataMigrationCommandInput;
|
|
48
|
+
output: DeleteDataMigrationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DatabaseMigrationServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeDataMigrationsMessage,
|
|
10
|
+
DescribeDataMigrationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeDataMigrationsCommandInput
|
|
15
|
+
extends DescribeDataMigrationsMessage {}
|
|
16
|
+
export interface DescribeDataMigrationsCommandOutput
|
|
17
|
+
extends DescribeDataMigrationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeDataMigrationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeDataMigrationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeDataMigrationsCommandInput,
|
|
24
|
+
DescribeDataMigrationsCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeDataMigrationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeDataMigrationsCommandInput,
|
|
33
|
+
DescribeDataMigrationsCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeDataMigrationsCommand extends DescribeDataMigrationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeDataMigrationsMessage;
|
|
44
|
+
output: DescribeDataMigrationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeDataMigrationsCommandInput;
|
|
48
|
+
output: DescribeDataMigrationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ExportMetadataModelAssessmentMessage,
|
|
10
10
|
ExportMetadataModelAssessmentResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ExportMetadataModelAssessmentCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ModifyConversionConfigurationMessage,
|
|
10
10
|
ModifyConversionConfigurationResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ModifyConversionConfigurationCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DatabaseMigrationServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
ModifyDataMigrationMessage,
|
|
10
|
+
ModifyDataMigrationResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ModifyDataMigrationCommandInput
|
|
15
|
+
extends ModifyDataMigrationMessage {}
|
|
16
|
+
export interface ModifyDataMigrationCommandOutput
|
|
17
|
+
extends ModifyDataMigrationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ModifyDataMigrationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ModifyDataMigrationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ModifyDataMigrationCommandInput,
|
|
24
|
+
ModifyDataMigrationCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ModifyDataMigrationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ModifyDataMigrationCommandInput,
|
|
33
|
+
ModifyDataMigrationCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ModifyDataMigrationCommand extends ModifyDataMigrationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ModifyDataMigrationMessage;
|
|
44
|
+
output: ModifyDataMigrationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ModifyDataMigrationCommandInput;
|
|
48
|
+
output: ModifyDataMigrationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DatabaseMigrationServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
StartDataMigrationMessage,
|
|
10
|
+
StartDataMigrationResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartDataMigrationCommandInput
|
|
15
|
+
extends StartDataMigrationMessage {}
|
|
16
|
+
export interface StartDataMigrationCommandOutput
|
|
17
|
+
extends StartDataMigrationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartDataMigrationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartDataMigrationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartDataMigrationCommandInput,
|
|
24
|
+
StartDataMigrationCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartDataMigrationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartDataMigrationCommandInput,
|
|
33
|
+
StartDataMigrationCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartDataMigrationCommand extends StartDataMigrationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartDataMigrationMessage;
|
|
44
|
+
output: StartDataMigrationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartDataMigrationCommandInput;
|
|
48
|
+
output: StartDataMigrationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DatabaseMigrationServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
StopDataMigrationMessage,
|
|
10
|
+
StopDataMigrationResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopDataMigrationCommandInput
|
|
15
|
+
extends StopDataMigrationMessage {}
|
|
16
|
+
export interface StopDataMigrationCommandOutput
|
|
17
|
+
extends StopDataMigrationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StopDataMigrationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StopDataMigrationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StopDataMigrationCommandInput,
|
|
24
|
+
StopDataMigrationCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StopDataMigrationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StopDataMigrationCommandInput,
|
|
33
|
+
StopDataMigrationCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StopDataMigrationCommand extends StopDataMigrationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StopDataMigrationMessage;
|
|
44
|
+
output: StopDataMigrationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StopDataMigrationCommandInput;
|
|
48
|
+
output: StopDataMigrationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|